:root {
    --bg: #090b0f;
    --bg-2: #121722;
    --card: rgba(16, 21, 31, 0.9);
    --card-2: rgba(255, 255, 255, 0.03);
    --line: rgba(255, 255, 255, 0.1);
    --text: #edf1f8;
    --muted: #b2bfd3;
    --brand: #ec4613;
    --brand-soft: #ff8a45;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: "Sora", "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.home {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0 0 64px;
}

.home-backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 84% 14%, rgba(236, 70, 19, 0.35), transparent 30%),
        radial-gradient(circle at 16% 24%, rgba(255, 138, 69, 0.15), transparent 26%),
        linear-gradient(165deg, var(--bg) 0%, var(--bg-2) 42%, #0a0f17 100%);
}

.hero,
.panel,
.newsletter,
.site-footer {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(4px);
}

.hero {
    position: relative;
    min-height: 82vh;
    margin: 0 0 18px;
    border-radius: 0 0 26px 26px;
    padding: 0 0 30px;
    overflow: hidden;
    --hero-parallax: 0px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(8, 11, 16, 0.68) 0%, rgba(8, 11, 16, 0.48) 45%, rgba(8, 11, 16, 0.26) 100%),
        radial-gradient(circle at 85% 25%, rgba(236, 70, 19, 0.16), transparent 34%),
        var(--hero-image) center/cover no-repeat;
    transform: translateY(var(--hero-parallax)) scale(1.06);
}

.hero > * {
    position: relative;
    z-index: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(236, 70, 19, 0.22) 0%, rgba(8, 11, 16, 0.72) 35%, rgba(8, 11, 16, 0.72) 100%);
    margin-bottom: 0;
}

.top-info-bar p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
}

.top-info-tagline {
    color: #f1f5fb;
}

.top-info-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-info-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--brand-soft);
}

.top-cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffd3b6;
    background: rgba(236, 70, 19, 0.18);
}

.top-cart-link:hover {
    border-color: rgba(236, 70, 19, 0.75);
    color: #fff;
}

.phone-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(236, 70, 19, 0.2);
    color: #ffba8d;
    font-size: 0.8rem;
}

.top-socials {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-socials a {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.top-socials a svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.top-socials a.social-instagram {
    color: #e1306c;
}

.top-socials a.social-facebook {
    color: #1877f2;
}

.top-socials a.social-youtube {
    color: #ff0000;
}

.top-socials a.social-linkedin {
    color: #0a66c2;
}

.top-socials a.social-x {
    color: #111111;
}

.top-socials a.social-tiktok {
    color: #25f4ee;
}

.top-socials a span {
    font-size: 0.68rem;
    font-weight: 700;
}

.top-socials a:hover {
    border-color: rgba(236, 70, 19, 0.7);
    transform: translateY(-1px);
}

.main-nav-shell {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 10px 12px 0;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background: rgba(8, 11, 16, 0.86);
    backdrop-filter: blur(7px);
}

.main-nav-divider {
    margin-top: 10px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--brand) 30%, var(--brand-soft) 70%, transparent 100%);
    opacity: 0.82;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.nav-item-group {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.nav-link-parent::after {
    content: "▾";
    margin-left: 6px;
    font-size: 0.7rem;
    color: var(--muted);
}

.nav-submenu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    min-width: 210px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(8, 11, 16, 0.96);
    box-shadow: var(--shadow-soft);
    padding: 8px;
    display: grid;
    gap: 4px;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 30;
}

.nav-item-group::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.nav-item-group:hover .nav-submenu,
.nav-item-group:focus-within .nav-submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-submenu-link {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--text);
    font-size: 0.88rem;
}

.nav-submenu-link:hover {
    background: rgba(255, 255, 255, 0.06);
}

.auth-section {
    width: min(640px, calc(100% - 32px));
    margin: 0 auto 28px;
}

.auth-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8, 11, 16, 0.82);
    box-shadow: var(--shadow-soft);
    padding: 26px 24px;
}

.auth-card h2 {
    margin: 0;
    font-family: "Bebas Neue", "Sora", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
}

.auth-card > p {
    margin: 8px 0 0;
    color: var(--muted);
}

.auth-form {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.auth-form label {
    font-size: 0.9rem;
    color: #d9e1ef;
}

.auth-form input {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 12px 14px;
    font: inherit;
}

.auth-form select {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 12px 14px;
    font: inherit;
}

.auth-form textarea {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 12px 14px;
    font: inherit;
    resize: vertical;
    min-height: 96px;
}

.auth-form input:focus {
    outline: none;
    border-color: rgba(236, 70, 19, 0.75);
    box-shadow: 0 0 0 3px rgba(236, 70, 19, 0.16);
}

.auth-form select:focus {
    outline: none;
    border-color: rgba(236, 70, 19, 0.75);
    box-shadow: 0 0 0 3px rgba(236, 70, 19, 0.16);
}

.auth-form textarea:focus {
    outline: none;
    border-color: rgba(236, 70, 19, 0.75);
    box-shadow: 0 0 0 3px rgba(236, 70, 19, 0.16);
}

.auth-form .btn {
    margin-top: 6px;
    justify-self: start;
}

.auth-form ul {
    margin: 0;
    padding-left: 18px;
    color: #ffd1d1;
    font-size: 0.86rem;
}

.auth-alert {
    margin-top: 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 10px 12px;
    font-size: 0.9rem;
}

.auth-alert-success {
    background: rgba(36, 160, 76, 0.16);
    border-color: rgba(58, 190, 101, 0.45);
    color: #bbf0ca;
}

.auth-alert-danger {
    background: rgba(194, 54, 54, 0.18);
    border-color: rgba(244, 103, 103, 0.45);
    color: #ffd1d1;
}

.auth-links {
    margin-top: 18px;
}

.auth-links a {
    color: var(--brand-soft);
}

.contact-flash-panel {
    width: min(1100px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.contact-shell {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: 16px;
}

.contact-info-card,
.contact-form-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.contact-info-card {
    background:
        radial-gradient(circle at 85% 15%, rgba(236, 70, 19, 0.2), transparent 45%),
        linear-gradient(160deg, rgba(7, 10, 16, 0.96), rgba(11, 16, 25, 0.9));
}

.contact-form-card {
    background: rgba(8, 11, 16, 0.88);
}

.contact-info-card h2,
.contact-form-card h2 {
    margin: 0;
    font-family: "Bebas Neue", "Sora", sans-serif;
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    letter-spacing: 0.03em;
}

.contact-info-card > p,
.contact-form-card > p {
    margin: 10px 0 0;
    color: var(--muted);
}

.contact-point-list {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.contact-point {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    padding: 11px 12px;
    display: grid;
    gap: 3px;
}

.contact-point strong {
    font-size: 0.92rem;
    color: #fff;
}

.contact-point span {
    color: #cfd8e8;
    font-size: 0.88rem;
}

.contact-form-premium {
    margin-top: 16px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.contact-field {
    display: grid;
    gap: 6px;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-form-premium .btn {
    margin-top: 12px;
}

.main-nav,
.hero-copy,
.hero-media {
    animation: reveal-up 0.7s ease both;
}

.hero-copy {
    animation-delay: 0.08s;
}

.hero-media {
    animation-delay: 0.16s;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.nav-link {
    color: var(--muted);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text);
}

.nav-pill {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.9rem;
}

.nav-pill-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
    color: #d7e1f2;
}

.nav-pill-secondary:hover {
    border-color: rgba(236, 70, 19, 0.65);
    color: #fff;
}

.mobile-menu {
    display: none;
}

.mobile-menu summary {
    list-style: none;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.86rem;
}

.mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-menu-panel {
    margin-top: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(8, 11, 16, 0.9);
    display: grid;
    gap: 8px;
}

.mobile-menu-panel a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--text);
    font-size: 0.9rem;
}

.mobile-menu-panel a:hover {
    background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-panel .mobile-menu-cta {
    color: #1d0f08;
    font-weight: 700;
    background: linear-gradient(130deg, var(--brand), var(--brand-soft));
}

.mobile-submenu {
    display: grid;
    gap: 6px;
}

.mobile-submenu-title {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--text);
    font-size: 0.9rem;
}

.mobile-submenu-links {
    display: grid;
    gap: 6px;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid rgba(236, 70, 19, 0.4);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 28px;
    margin-top: 20px;
    padding: 0 clamp(16px, 5vw, 64px);
    align-items: end;
}

.eyebrow {
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-soft);
    font-weight: 700;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Bebas Neue", Impact, sans-serif;
    font-weight: 400;
    letter-spacing: 0.03em;
}

h1 {
    margin-top: 10px;
    font-size: clamp(2.5rem, 8vw, 5.2rem);
    line-height: 0.96;
}

.hero-copy p {
    color: var(--muted);
    max-width: 56ch;
}

.hero-copy {
    padding-bottom: 8px;
}

.hero-cta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 11px 16px;
    font-size: 0.93rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.btn-solid {
    color: #1d0f08;
    background: linear-gradient(135deg, var(--brand), var(--brand-soft));
}

.btn-outline {
    border-color: var(--line);
}

.hero-stats {
    margin-top: 24px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stat {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: var(--shadow-soft);
}

.hero-stat strong {
    display: block;
    color: var(--text);
    font-size: 1.3rem;
}

.hero-stat span {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-media {
    position: relative;
    min-height: 520px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.hero-float {
    position: absolute;
    max-width: 260px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    background: rgba(8, 11, 16, 0.78);
    box-shadow: var(--shadow-soft);
}

.hero-float-top {
    top: 14px;
    left: 14px;
}

.hero-float-bottom {
    left: 14px;
    bottom: 14px;
}

.hero-float h2 {
    font-size: 1.6rem;
}

.hero-float p {
    margin: 7px 0 0;
    font-size: 0.84rem;
}

.hero-date {
    color: var(--brand-soft);
    font-weight: 700;
}

.hero-event {
    max-width: 360px;
}

.hero-event-kicker {
    margin: 0;
    color: var(--brand-soft);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-event .hero-event-meta {
    margin: 10px 0 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-event .hero-event-meta span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.74rem;
    color: var(--muted);
}

.hero-event .btn {
    width: 100%;
}

.quick-links {
    margin: 0 clamp(12px, 2.5vw, 32px);
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-link {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--card);
    padding: 16px;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    box-shadow: var(--shadow-soft);
}

.quick-link-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--quick-bg-image) center/cover no-repeat;
    opacity: 0.16;
    z-index: -2;
}

.quick-link-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(8, 11, 16, 0.72) 0%, rgba(8, 11, 16, 0.6) 45%, rgba(8, 11, 16, 0.72) 100%);
    z-index: -1;
}

.quick-link:hover {
    transform: translateY(-4px);
    border-color: rgba(236, 70, 19, 0.55);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.26);
}

.quick-link-icon {
    display: inline-flex;
    color: var(--brand-soft);
    font-weight: 700;
    font-size: 0.86rem;
}

.quick-link h2 {
    margin-top: 8px;
    font-size: 1.65rem;
}

.quick-link p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.panel {
    margin-top: 18px;
    margin-left: clamp(12px, 2.5vw, 32px);
    margin-right: clamp(12px, 2.5vw, 32px);
    padding: 20px;
    animation: reveal-up 0.7s ease both;
    animation-delay: 0.04s;
}

.panel-with-bg {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.panel-with-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--panel-bg-image) center/cover no-repeat;
    opacity: 0.16;
    transform: scale(1.04);
    z-index: -2;
}

.panel-with-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(8, 11, 16, 0.72) 0%, rgba(8, 11, 16, 0.62) 45%, rgba(8, 11, 16, 0.72) 100%);
    z-index: -1;
}

.panel-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.panel-head h2 {
    font-size: 2.3rem;
}

.panel-head a {
    color: var(--brand-soft);
    font-weight: 700;
    font-size: 0.88rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
}

.featured-main,
.featured-item,
.product-card,
.club-card,
.instagram-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card-2);
    box-shadow: var(--shadow-soft);
}

.featured-main {
    padding: 18px;
}

.featured-main img,
.featured-item img,
.product-card img,
.club-card img,
.instagram-item img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
}

.featured-main img {
    height: 240px;
    margin-bottom: 12px;
}

.featured-main h3 {
    font-size: 2rem;
}

.featured-main p:last-of-type {
    color: var(--muted);
}

.meta {
    margin: 0 0 10px;
    color: var(--brand-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.featured-list-shell {
    display: grid;
    gap: 10px;
}

.featured-list-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.featured-list-track::-webkit-scrollbar {
    height: 8px;
}

.featured-list-track::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

.featured-item {
    padding: 14px;
    flex: 0 0 calc((100% - 20px) / 3);
    scroll-snap-align: start;
}

.featured-item img {
    height: 120px;
    margin-bottom: 10px;
}

.featured-item h3 {
    font-size: 1.45rem;
}

.featured-item-empty {
    display: grid;
    align-content: center;
    min-height: 206px;
}

.featured-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.carousel-btn {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(236, 70, 19, 0.64);
}

.carousel-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.featured-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
    background: var(--brand-soft);
    transform: scale(1.2);
}

.text-link {
    color: var(--text);
    font-size: 0.87rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: var(--brand-soft);
}

.product-carousel-shell {
    display: grid;
    gap: 10px;
}

.product-grid-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.product-grid-track::-webkit-scrollbar {
    height: 8px;
}

.product-grid-track::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

.product-card {
    padding: 14px;
    flex: 0 0 calc((100% - 36px) / 4);
    scroll-snap-align: start;
}

.product-card img {
    height: 170px;
    margin-bottom: 10px;
}

.product-card,
.club-card,
.featured-item {
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover,
.club-card:hover,
.featured-item:hover {
    transform: translateY(-3px);
    border-color: rgba(236, 70, 19, 0.5);
}

.product-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.product-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-card h3 {
    font-size: 1.45rem;
}

.product-card p {
    margin: 10px 0;
    color: var(--brand-soft);
    font-weight: 800;
}

.badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #1a0f09;
    background: linear-gradient(130deg, var(--brand), var(--brand-soft));
}

.club-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.club-card {
    padding: 15px;
}

.club-card img {
    height: 190px;
    margin-bottom: 10px;
}

#programmes .club-card img {
    width: 100%;
    object-fit: cover;
    object-position: center top;
}

.club-card h3 {
    font-size: 1.6rem;
}

.club-card p {
    color: var(--muted);
}

.club-block-separator {
    height: 1px;
    margin: 22px 0 20px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.24) 20%, rgba(236, 70, 19, 0.72) 50%, rgba(255, 255, 255, 0.24) 80%, transparent 100%);
}

.instagram-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    background:
        linear-gradient(160deg, rgba(236, 70, 19, 0.35), rgba(255, 255, 255, 0.03)),
        var(--card-2);
}

.instagram-item img {
    position: absolute;
    inset: 0;
    height: 100%;
    border-radius: 16px;
    z-index: 0;
}

.instagram-item span,
.instagram-item p {
    position: relative;
    z-index: 1;
}

.instagram-item span {
    font-size: 0.78rem;
    font-weight: 700;
}

.instagram-item p {
    margin: 6px 0 0;
    font-size: 0.82rem;
}

.newsletter {
    margin-top: 18px;
    margin-left: clamp(12px, 2.5vw, 32px);
    margin-right: clamp(12px, 2.5vw, 32px);
    padding: 22px;
    text-align: center;
    animation: reveal-up 0.7s ease both;
    animation-delay: 0.08s;
}

.newsletter h2 {
    font-size: 2.4rem;
}

.newsletter p {
    color: var(--muted);
    margin: 8px auto 0;
    max-width: 70ch;
}

.newsletter-form {
    margin: 18px auto 10px;
    max-width: 560px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.newsletter-form input,
.newsletter-form button {
    border-radius: 12px;
    border: 1px solid var(--line);
    padding: 12px 14px;
    font: inherit;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.newsletter-form button {
    border: none;
    color: #1a0f09;
    font-weight: 700;
    background: linear-gradient(130deg, var(--brand), var(--brand-soft));
}

.newsletter small {
    color: var(--muted);
}

.site-footer {
    margin-top: 18px;
    margin-left: clamp(12px, 2.5vw, 32px);
    margin-right: clamp(12px, 2.5vw, 32px);
    padding: 22px;
    display: grid;
    gap: 16px;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    animation: reveal-up 0.7s ease both;
    animation-delay: 0.12s;
}

.site-footer img {
    width: 54px;
    height: 54px;
}

.site-footer h3 {
    font-size: 1.5rem;
}

.site-footer p,
.site-footer a {
    margin: 6px 0;
    color: var(--muted);
    display: block;
    font-size: 0.9rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.club-page {
    position: relative;
    min-height: 100vh;
    padding-bottom: 42px;
}

.club-page-backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 84% 14%, rgba(236, 70, 19, 0.3), transparent 32%),
        radial-gradient(circle at 14% 26%, rgba(255, 138, 69, 0.12), transparent 28%),
        linear-gradient(165deg, var(--bg) 0%, var(--bg-2) 45%, #0a0f17 100%);
}

.club-page-header {
    margin-bottom: 10px;
}

.club-topbar {
    margin: 0 12px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 0 0 14px 14px;
    background: rgba(8, 11, 16, 0.82);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.club-topbar p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.club-topbar-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.club-topbar-socials a {
    font-size: 0.72rem;
    color: var(--brand-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 8px;
}

.club-hero,
.club-sections,
.club-page-cta {
    margin-left: clamp(12px, 2.5vw, 32px);
    margin-right: clamp(12px, 2.5vw, 32px);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--card);
    box-shadow: var(--shadow);
}

.club-hero {
    padding: 30px clamp(16px, 4vw, 48px);
}

.club-hero h1 {
    margin-top: 6px;
    font-size: clamp(2.3rem, 7vw, 4.3rem);
}

.club-hero p {
    max-width: 75ch;
    color: var(--muted);
}

.club-hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.club-sections {
    margin-top: 14px;
    padding: 16px;
    display: grid;
    gap: 12px;
}

.club-section-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card-2);
    padding: 16px;
    display: grid;
    gap: 14px;
}

.club-section-card.has-image {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
}

.club-section-card.has-image.is-alt {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.club-section-card.has-image.is-alt .club-section-media {
    order: 2;
}

.club-section-card.has-image.is-alt .club-section-content {
    order: 1;
}

.club-section-media {
    min-height: 100%;
}

.club-section-media img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
}

.club-section-card h2 {
    font-size: 1.9rem;
}

.club-section-content {
    display: grid;
    align-content: start;
    gap: 10px;
}

.club-section-body {
    color: var(--muted);
    line-height: 1.65;
}

.club-section-body p {
    margin: 0 0 12px;
}

.club-section-body ul,
.club-section-body ol {
    margin: 0 0 12px;
    padding-left: 20px;
}

.club-section-highlight {
    border-color: rgba(236, 70, 19, 0.5);
    background:
        linear-gradient(155deg, rgba(236, 70, 19, 0.15), rgba(255, 138, 69, 0.05)),
        var(--card-2);
}

.club-section-cta {
    text-align: center;
    background:
        linear-gradient(145deg, rgba(255, 138, 69, 0.13), rgba(8, 11, 16, 0.35)),
        var(--card-2);
}

.club-section-cta .club-section-content {
    justify-items: center;
}

.club-page-cta {
    margin-top: 14px;
    padding: 22px;
    text-align: center;
}

.club-page-cta h2 {
    font-size: 2.2rem;
}

.club-page-cta p {
    color: var(--muted);
}

.staff-grid-panel {
    margin-top: 14px;
    margin-left: clamp(12px, 2.5vw, 32px);
    margin-right: clamp(12px, 2.5vw, 32px);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--card);
    box-shadow: var(--shadow);
}

.staff-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.staff-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card-2);
    padding: 14px;
}

.staff-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    margin-bottom: 10px;
}

.staff-card h3 {
    font-size: 1.55rem;
}

.staff-role {
    margin: 6px 0 10px;
    color: var(--brand-soft);
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.staff-card p {
    color: var(--muted);
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        border-radius: 22px;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-content,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-item {
        flex-basis: calc((100% - 10px) / 2);
    }

    .top-info-bar {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-media {
        min-height: 420px;
    }

    .hero-media img {
        min-height: 420px;
    }

    .quick-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-desktop,
    .main-nav > .nav-pill {
        display: none;
    }

    .mobile-menu {
        display: block;
        margin-left: auto;
    }

    .product-card {
        flex-basis: calc((100% - 12px) / 2);
    }

    .club-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .club-topbar {
        flex-wrap: wrap;
    }

    .club-section-card.has-image,
    .club-section-card.has-image.is-alt {
        grid-template-columns: 1fr;
    }

    .club-section-card.has-image.is-alt .club-section-media,
    .club-section-card.has-image.is-alt .club-section-content {
        order: initial;
    }

    .staff-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home {
        padding: 0 0 36px;
    }

    .hero,
    .panel,
    .newsletter,
    .site-footer {
        border-radius: 18px;
    }

    .hero {
        margin: 0 0 14px;
    }

    .main-nav-shell {
        top: 8px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .main-nav {
        gap: 8px;
        align-items: center;
    }

    .brand {
        gap: 8px;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .brand span {
        font-size: 0.9rem;
    }

    .mobile-menu summary {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
    }

    .mobile-menu-panel {
        max-height: 70vh;
        overflow-y: auto;
    }

    .top-info-right {
        width: 100%;
        justify-content: space-between;
    }

    .top-info-phone {
        font-size: 0.8rem;
    }

    .top-cart-link {
        display: none;
    }

    .hero-media {
        min-height: 320px;
    }

    .hero-media img {
        min-height: 320px;
    }

    .hero-float {
        position: static;
        max-width: none;
        margin: 10px;
    }

    .quick-links,
    .instagram-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .product-card {
        flex-basis: 100%;
    }

    .featured-item {
        flex-basis: 100%;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(2.1rem, 12vw, 3.6rem);
    }

    .club-hero,
    .club-sections,
    .club-page-cta {
        border-radius: 18px;
    }

    .staff-grid-panel {
        border-radius: 18px;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .auth-section {
        width: min(100%, calc(100% - 20px));
    }

    .auth-card {
        padding: 18px 16px;
    }

    .club-hero-cta .btn,
    .hero-cta .btn {
        width: 100%;
    }
}

.program-page .club-hero {
    margin-bottom: 16px;
}

.program-track-grid,
.program-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 clamp(12px, 4vw, 28px) 16px;
}

.program-track-card,
.program-offer-card,
.program-description-panel,
.program-tryout-panel {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(9, 13, 20, 0.82);
    box-shadow: var(--shadow-soft);
}

.program-track-card,
.program-offer-card {
    padding: 20px;
    display: grid;
    gap: 10px;
}

.program-track-kicker,
.program-session-type,
.program-meta {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-soft);
    font-weight: 700;
}

.program-description-panel {
    margin: 0 clamp(12px, 4vw, 28px) 16px;
    padding: 20px;
}

.program-description-panel h2 {
    margin-top: 0;
}

.program-offer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.program-status {
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.status-open,
.status-tryout_open {
    background: rgba(35, 170, 95, 0.2);
    color: #94f0bb;
}

.status-waitlist {
    background: rgba(255, 185, 59, 0.2);
    color: #ffd58a;
}

.status-sold_out {
    background: rgba(242, 83, 78, 0.2);
    color: #ffaaa7;
}

.status-coming_soon {
    background: rgba(132, 161, 255, 0.2);
    color: #c0d2ff;
}

.program-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
}

.program-meta-grid p {
    margin: 0;
    color: var(--muted);
}

.program-session-list,
.program-tryout-list {
    display: grid;
    gap: 10px;
}

.program-session-item,
.program-tryout-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
}

.program-session-item p,
.program-tryout-item p,
.program-tryout-item h3 {
    margin: 0;
}

.program-tryout-panel {
    margin: 0 clamp(12px, 4vw, 28px);
    padding: 16px;
}

.program-tryout-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-groups {
    margin: 0 clamp(12px, 4vw, 28px) 16px;
    display: grid;
    gap: 14px;
}

.faq-group-panel {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(9, 13, 20, 0.82);
    box-shadow: var(--shadow-soft);
    padding: 18px;
}

.faq-group-panel h2 {
    margin: 0 0 12px;
}

.faq-group-panel p {
    margin: 0;
    color: var(--muted);
}

.faq-group-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.faq-item[open] {
    border-color: rgba(236, 70, 19, 0.6);
}

.faq-question {
    cursor: pointer;
    list-style: none;
    display: block;
    padding: 12px 14px;
    font-weight: 700;
    color: #fff;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    float: right;
    color: var(--brand-soft);
}

.faq-item[open] .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 14px 14px;
    color: var(--muted);
    line-height: 1.65;
}

@media (max-width: 940px) {
    .program-track-grid,
    .program-offer-grid,
    .program-tryout-list {
        grid-template-columns: 1fr;
    }

    .program-meta-grid {
        grid-template-columns: 1fr;
    }

    .program-offer-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

.shop-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.shop-hero-pill {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    display: grid;
    gap: 4px;
    min-width: 170px;
    text-align: center;
}

.shop-hero-pill strong {
    font-size: 1.8rem;
    color: #fff;
}

.shop-hero-pill span {
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.shop-filter-panel {
    margin: 0 clamp(12px, 4vw, 28px) 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(9, 13, 20, 0.82);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 12px;
}

.shop-filter-header h2,
.shop-filter-header p {
    margin: 0;
}

.shop-filter-header p {
    color: var(--muted);
}

.shop-filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-filter-btn {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    border-radius: 999px;
    padding: 8px 14px;
    font: inherit;
    cursor: pointer;
}

.shop-filter-btn.is-active {
    background: rgba(236, 70, 19, 0.25);
    border-color: rgba(236, 70, 19, 0.55);
    color: #fff;
}

.shop-grid {
    margin: 0 clamp(12px, 4vw, 28px) 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.shop-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(9, 13, 20, 0.82);
    box-shadow: var(--shadow-soft);
    padding: 18px;
    display: grid;
    gap: 12px;
}

.shop-card.is-hidden {
    display: none;
}

.shop-media {
    position: relative;
}

.shop-main-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.shop-page .shop-main-image {
    object-fit: contain;
    background: rgba(5, 8, 13, 0.9);
}

.shop-grid .shop-main-image {
    height: 280px;
    padding: 8px;
}

.shop-detail-gallery .shop-main-image {
    height: min(68vh, 560px);
    padding: 10px;
}

.shop-zoom-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--line);
    background: rgba(8, 11, 16, 0.8);
    color: #fff;
    border-radius: 999px;
    font: inherit;
    font-size: 0.82rem;
    padding: 6px 12px;
    cursor: pointer;
}

.shop-thumbs {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.shop-thumb {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0;
    background: rgba(255, 255, 255, 0.03);
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    cursor: pointer;
}

.shop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.shop-thumb.is-active {
    border-color: rgba(236, 70, 19, 0.75);
    box-shadow: 0 0 0 2px rgba(236, 70, 19, 0.2);
}

.shop-content {
    display: grid;
    gap: 6px;
}

.shop-category {
    margin: 0;
    color: var(--brand-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 700;
}

.shop-content h2 {
    margin: 0;
}

.shop-sku {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.shop-description {
    margin: 0;
    color: #d5deed;
}

.shop-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.shop-pricing strong {
    font-size: 1.1rem;
    color: #fff;
}

.shop-pricing span {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.shop-stock {
    margin: 0;
    color: #9be6bb;
    font-weight: 600;
}

.shop-stock.is-out {
    color: #ffaaa7;
}

.shop-buy-form {
    display: grid;
    grid-template-columns: auto minmax(70px, 90px) 1fr;
    align-items: center;
    gap: 10px;
}

.shop-buy-form label {
    color: var(--muted);
    font-size: 0.88rem;
}

.shop-buy-form input {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font: inherit;
}

.shop-buy-form select {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font: inherit;
    appearance: auto;
}

.shop-buy-form select option {
    color: #111827;
    background: #ffffff;
}

.shop-buy-form select optgroup {
    color: #374151;
    background: #f3f4f6;
    font-weight: 700;
}

.shop-buy-form-preview input {
    opacity: 0.7;
    cursor: not-allowed;
}

.shop-card-actions {
    display: grid;
    gap: 10px;
}

.mini-cart {
    position: relative;
}

.mini-cart-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(360px, 88vw);
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(8, 11, 16, 0.97);
    box-shadow: var(--shadow-soft);
    padding: 12px;
    display: grid;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 40;
}

.mini-cart:hover .mini-cart-dropdown,
.mini-cart:focus-within .mini-cart-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mini-cart-line {
    display: grid;
    gap: 2px;
}

.mini-cart-line a {
    font-weight: 700;
}

.mini-cart-line span,
.mini-cart-empty {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.mini-cart-dropdown p {
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
}

.mini-cart-dropdown p strong {
    color: #fff;
}

.mini-cart-total strong {
    color: var(--brand-soft);
}

.mini-cart-dropdown hr {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--line);
}

.shop-zoom-modal {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    background: rgba(8, 11, 16, 0.94);
    max-width: min(900px, 94vw);
    box-shadow: var(--shadow);
}

.shop-zoom-modal::backdrop {
    background: rgba(0, 0, 0, 0.8);
}

.shop-zoom-modal img {
    display: block;
    margin: 0 auto;
    width: min(860px, 92vw);
    max-width: min(860px, 92vw);
    max-height: 84vh;
    object-fit: contain;
    border-radius: 12px;
}

.shop-zoom-close {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 999px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    margin-bottom: 8px;
}

.shop-detail-panel {
    margin: 0 clamp(12px, 4vw, 28px) 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(9, 13, 20, 0.82);
    box-shadow: var(--shadow-soft);
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.shop-detail-content {
    display: grid;
    align-content: start;
    gap: 10px;
}

.shop-detail-content h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.shop-related-panel {
    margin: 0 clamp(12px, 4vw, 28px) 16px;
}

.shop-cart-layout {
    margin: 0 clamp(12px, 4vw, 28px) 16px;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
    gap: 16px;
}

.shop-cart-items {
    display: grid;
    gap: 12px;
}

.shop-cart-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(9, 13, 20, 0.82);
    box-shadow: var(--shadow-soft);
    padding: 14px;
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) minmax(160px, 220px) auto;
    gap: 12px;
    align-items: center;
}

.shop-cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
}

.shop-cart-item-content h2 {
    margin: 0;
    font-size: 1.02rem;
}

.shop-cart-item-content p {
    margin: 6px 0 0;
}

.shop-cart-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.shop-cart-actions input {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font: inherit;
}

.shop-cart-summary {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(9, 13, 20, 0.82);
    box-shadow: var(--shadow-soft);
    padding: 16px;
    display: grid;
    align-content: start;
    gap: 12px;
    height: fit-content;
    position: sticky;
    top: 84px;
}

.shop-cart-summary h2 {
    margin: 0;
}

.shop-delivery-form {
    display: grid;
    gap: 6px;
}

.shop-delivery-form label {
    color: var(--muted);
    font-size: 0.85rem;
}

.shop-delivery-form select {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 9px 10px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font: inherit;
}

.shop-cart-summary p {
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
}

.shop-cart-summary strong {
    color: #fff;
    text-align: right;
}

.shop-cart-summary hr {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--line);
}

@media (max-width: 940px) {
    .shop-hero {
        flex-direction: column;
        align-items: start;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-buy-form {
        grid-template-columns: 1fr;
    }

    .mini-cart {
        width: 100%;
    }

    .mini-cart-dropdown {
        right: auto;
        left: 0;
    }

    .shop-detail-panel {
        grid-template-columns: 1fr;
    }

    .shop-cart-layout {
        grid-template-columns: 1fr;
    }

    .shop-cart-item {
        grid-template-columns: 1fr;
    }

    .shop-cart-item img {
        width: 100%;
        height: 220px;
    }

    .shop-cart-summary {
        position: static;
    }

    .contact-shell {
        grid-template-columns: 1fr;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}
