/* ==========================================================================
   TEAM SPIRIT SPORTS — Design System (Cập nhật Brand Colors & Typography 2026)
   ========================================================================== */

:root {
    --ink: #212529;
    --navy: #343A40;
    --navy-2: #00766B;
    --canvas: #FFFFFF;
    --canvas-2: #F8F9FA;
    --white: #FFFFFF;

    --gold: #25B5A6;
    --gold-soft: #25B5A6;
    --red: #8E2A24;

    --teal-mid: #008A7E;
    --teal-dark: #009F8E;
    --teal-deep: #00766B;

    --line: #E9ECEF;
    --line-dark: #495057;
    --text-muted: #6C757D;

    --f-display: 'Arial Black', 'Arial', sans-serif;
    --f-body: 'Arial', sans-serif;
    --f-mono: 'Arial', sans-serif;

    --maxw: 1280px;
    --pad: clamp(20px, 5vw, 64px);
    --radius: 2px;

    /* Chiều cao header trên mobile — nav fixed nằm ngay dưới header.
       Đặt đúng chiều cao thực của .header-main trên mobile (70px) để menu
       xổ sát ngay dưới cụm Logo + Icon Header, không hở hay đè. */
    --header-height: 70px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--f-body);
    background: var(--canvas);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--f-display);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-transform: uppercase;
}

p {
    margin: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    /* Marquee logo đối tác: cho phép chạy tiếp dù máy bật Reduce Motion,
       vì đây chỉ là chuyển động trang trí nhẹ, không nhấp nháy/giật mạnh */
    .partners-track {
        animation-duration: 26s !important;
        animation-iteration-count: infinite !important;
    }
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

/* ---- Tagline & Labels ---- */
.tag {
    display: none !important;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-style: italic;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 12px 6px 10px;
    border: 1px dashed var(--navy);
    color: var(--navy);
    position: relative;
}

.tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    flex: none;
}

.tag.on-dark {
    border-color: var(--gold-soft);
    color: var(--gold-soft);
}

.tag.on-dark::before {
    background: var(--gold);
}

/* ---- Logo ---- */
.logo {
    display: inline-block;
    height: 48px;
    vertical-align: middle;
    transition: opacity .2s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

footer .logo {
    height: 42px;
    margin-bottom: 20px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 15px 26px;
    border: 1px solid var(--navy);
    background: var(--navy);
    color: var(--white);
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
    white-space: nowrap;
}

.btn:hover {
    background: var(--ink);
    transform: translateY(-1px);
}

.btn.ghost {
    background: transparent;
    color: var(--navy);
}

.btn.ghost:hover {
    background: var(--navy);
    color: var(--white);
}

.btn.on-dark {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
}

.btn.on-dark:hover {
    background: var(--teal-dark);
    color: var(--white);
}

.btn.on-dark.ghost {
    background: transparent;
    color: var(--gold-soft);
    border-color: var(--line-dark);
}

.btn.on-dark.ghost:hover {
    background: var(--line-dark);
    color: var(--white);
}

.btn svg {
    width: 14px;
    height: 14px;
    flex: none;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    /* Header cụm (Logo + Cart + User + Burger) LUÔN nằm cố định trên cùng.
       position: sticky + top:0 giữ header đỉnh trang khi cuộn; z-index cao
       nhất để menu mobile (999) không bao giờ đè lên. */
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--canvas);
    border-bottom: 1px solid var(--line);
    overflow: visible;
}

/* Header luôn nằm trên cùng, không bị nav mobile che. */
.site-header {
    z-index: 1000;
}

.site-header .logo img {
    filter: invert(1) brightness(0.2);
}

.header-strip {
    background: var(--ink);
    color: var(--white);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 7px 0 !important;
    text-transform: uppercase;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.header-strip .marquee-wrap {
    display: block !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.header-strip .marquee-track {
    display: flex !important;
    width: max-content !important;
    gap: 2rem !important;
    white-space: nowrap !important;
    will-change: transform;
    animation: marquee-scroll 20s linear infinite !important;
    transform: translate3d(0, 0, 0);
}

.header-strip .marquee-track:hover {
    animation-play-state: paused !important;
}

.header-strip .marquee-track span {
    display: inline-flex;
    align-items: center;
}

.header-strip b {
    color: var(--gold);
}

@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.header-main {
    /* position: relative; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 18px var(--pad);
    gap: 24px;
}

/* Header actions (account/cart/burger) must sit above the full-screen mobile
   nav so the burger stays tappable to close the menu. */
.header-actions {
    position: relative;
    z-index: 101;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    min-width: 0;
}

.main-nav>ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 10px;
    min-width: 0;
}

.main-nav>ul>li>a, .main-nav>ul>li>button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: bold;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--navy);
    background: none;
    border: none;
    white-space: nowrap;
}

.main-nav .nav-pill {
    background: var(--teal-dark);
    color: #fff;
    padding: 10px 20px;
    font-family: var(--f-mono);
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-left: 8px;
    white-space: nowrap;
}

.main-nav>ul>li {
    position: relative;
}

/* Mega dropdown needs a static parent so full-width mega menu can span the viewport. */
.nav-item--mega {
    position: static !important;
    /* Tạo vùng hover liền mạch xuống mega menu */
    padding-bottom: 20px !important;
    /* keep a hoverable strip */
    margin-bottom: -20px !important;
    /* pull layout back so visual doesn't move */
}

.main-nav>ul>li>a:hover, .main-nav>ul>li>button:hover {
    color: var(--gold);
}

.main-nav svg.chev {
    width: 9px;
    height: 9px;
}

/* ---- Dropdown (base 2-column link list) ---- */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 460px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 16px 36px rgba(16, 21, 31, 0.12);
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
}

.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
    transition: background .16s ease, color .16s ease;
}

.dropdown a:hover {
    background: var(--canvas-2);
    color: var(--teal-mid);
}

.dropdown a .n {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: normal;
    color: var(--text-muted);
    margin-left: auto;
}

/* ---- Mega menu — full-bleed dropdown with centered content ----
   Add class "mega" alongside "dropdown". .nav-item--mega remains static so
   the menu spans the viewport and the inner panel can stay centered. */
.nav-item--mega {
    position: static;
}

.dropdown.mega {
    position: absolute;
    /* sit flush beneath the header — no translateY to avoid hover gaps */
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff !important;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: 0 26px 60px rgba(16, 21, 31, 0.14);
    padding: 0 24px;
    display: block;
    opacity: 0;
    visibility: hidden;
    /* no translateY — show/hide via opacity and visibility only */
    transform: none;
    transition: opacity .16s ease, visibility .16s;
    z-index: 999;
}

/* invisible block that bridges the gap between nav item and the dropdown so hover doesn't get lost */
.dropdown.mega::before {
    content: "";
    position: absolute;
    top: -25px;
    /* larger bridge per request */
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
    /* allow this element to capture the pointer so the cursor can travel across */
    pointer-events: auto;
    z-index: 1000;
}

.nav-item:hover .dropdown.mega,
.nav-item:focus-within .dropdown.mega,
.main-nav .nav-item--mega:hover .dropdown.mega,
.main-nav .nav-item--mega:focus-within .dropdown.mega {
    opacity: 1;
    visibility: visible;
}

/* Center the mega menu content inside the full-width panel. */
.dropdown-mega-inner {
    display: flex;
    /* align content to the top so columns start at same baseline */
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    /* keep vertical padding small: ~24px total top spacing */
    padding: 24px 0 0;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.dropdown-links {
    flex: 0 0 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: min-content;
    /* align items to the top so columns start flush with the top of the mega */
    align-content: start;
    gap: 8px 28px;
    padding-top: 0;
}

.dropdown.mega a {
    justify-content: flex-start;
    gap: 8px;
    border-bottom: none;
    padding: 14px 10px;
}

.dropdown a {
    justify-content: flex-start;
    gap: 8px;
}

.dropdown a .n {
    margin-left: auto;
}

/* Khối banner: giờ nằm NGANG, chiếm phần còn lại của mega menu —
   đủ rộng/cao để chạy 1-2 banner khuyến mãi thật sự nổi bật. */
.dropdown-promo-stack {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dropdown-promo-card {
    position: relative;
    width: 100%;
    /* slightly smaller so promo fits the reduced mega height */
    min-height: 180px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--line);
    border-radius: 0 !important;
    background: var(--canvas-2);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    cursor: pointer;
}

.dropdown-promo-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 18px 30px rgba(16, 21, 31, 0.12);
}

.dropdown-promo-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease, filter .25s ease;
    filter: saturate(1.08);
    /* ensure sharp corners match the overall site aesthetic */
    border-radius: 0 !important;
}

.dropdown-promo-card:hover img {
    transform: scale(1.04);
}

/* hide the textual overlay on promo cards so only the raw image shows */
.dropdown-promo-card .cap {
    display: none !important;
}

.main-nav .nav-pill {
    background: var(--teal-dark);
    color: #fff;
    padding: 10px 20px;
    font-family: var(--f-mono);
    font-weight: bold;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-left: 8px;
}

.main-nav .nav-pill:hover {
    background: var(--teal-deep);
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--navy);
}

.icon-btn svg {
    width: 19px;
    height: 19px;
}

.burger {
    display: none;
    background: none;
    border: none;
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
        position: fixed;
        /* Nằm ngay bên dưới header (header luôn cố định top:0, z-index:1000) */
        top: var(--header-height, 70px);
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - var(--header-height, 70px));
        height: calc(100dvh - var(--header-height, 70px));
        background: #ffffff;
        border-top: 1px solid var(--line);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        box-shadow: 0 18px 40px rgba(16, 21, 31, 0.12);
        /* Căn lề với Header: padding trái/phải thống nhất, gióng thẳng mép Logo */
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }

    .main-nav.is-open {
        display: block;
    }

    /* Khóa cuộn trang chính khi menu mở (toggle qua JS thêm class menu-open) */
    body.menu-open {
        overflow: hidden;
    }

    .main-nav>ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 24px;
    }

    .main-nav>ul>li {
        width: 100%;
        border: none !important;
        border-bottom: none !important;
    }

    /* Top-level items: full width inside padded container, borderless, airy. */
    .main-nav>ul>li>a,
    .main-nav>ul>li>button {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding: 14px 0 !important;
        font-size: 14px;
        border: none !important;
        border-bottom: none !important;
    }

    /* Submenu item text: borderless, indented, spacious. */
    .main-nav .dropdown a,
    .main-nav .dropdown-links a {
        border: none !important;
        border-bottom: none !important;
        padding: 10px 0 10px 16px;
        gap: 8px;
    }

    /* Submenu container: thụt lề nhẹ vào trong */
    .main-nav .dropdown,
    .main-nav .dropdown.mega,
    .main-nav .submenu {
        padding-left: 12px !important;
    }

    /* Chevron chỉ báo trạng thái: xoay khi mở (color change is enough — no teal underline). */
    .main-nav .chev {
        transition: transform .2s ease;
    }

    .nav-item.is-open .chev {
        transform: rotate(180deg);
    }

    /* Parent item đang mở: đổi màu chữ để chỉ báo trạng thái (không dùng gạch chân). */
    .main-nav .nav-item.is-open>button,
    .main-nav .nav-item.is-open>a {
        color: var(--teal-mid);
    }

    /* Bỏ gạch chân màu xanh ngọc khi hover/active trên mobile — chỉ đổi màu chữ. */
    .main-nav>ul>li>a::after,
    .main-nav>ul>li>button::after {
        display: none !important;
    }

    /* dropdown/mega trên mobile: xổ xuống dạng accordion, 1 cột, không hover.
       position:static giúp item con sổ dọc xuống, đẩy các item phía dưới trượt
       xuống tự nhiên bên trong khung menu (không tràn lên header). */
    .dropdown, .dropdown.mega {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 0;
        box-shadow: none;
        border: none !important;
        padding: 0 0 8px 12px;
    }

    .nav-item.is-open .dropdown,
    .nav-item.is-open .dropdown.mega {
        display: flex;
        flex-direction: column;
    }

    .nav-item .dropdown {
        grid-template-columns: 1fr;
    }

    /* Mega menu trên mobile: quay lại accordion 1 cột; CHỈ hiện link chữ,
       ẩn hoàn toàn banner/hình quảng cáo để không tràn vỡ layout. */
    .dropdown-mega-inner {
        flex-direction: column;
        gap: 4px;
        padding: 0;
    }

    .dropdown-links {
        flex: none;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .dropdown-promo-stack,
    .dropdown-promo-card,
    .mega-banner {
        display: none !important;
    }

    .burger {
        display: flex;
    }

    /* Mobile: ẩn thanh chạy chữ quảng cáo để cụm Logo + Icon Header nằm gọn
       trên cùng (top:0) với đúng chiều cao --header-height (70px). */
    .header-strip {
        display: none !important;
    }

    .header-main {
        /* Căn lề khớp chính xác với padding menu (20px) để mép chữ menu
           gióng thẳng hàng vuông góc với mép Logo trên Header. */
        padding: 11px 20px;
    }

    /* Nút CTA (BULK PRICING): full-width nằm gọn trong padding 20px của menu,
       chữ CĂN GIỮA TUYỆT ĐỐI, có khoảng trống đẹp phía trên + dưới. */
    .main-nav .nav-pill,
    .mobile-menu-cta,
    .btn-bulk-pricing {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 28px auto 20px !important;
        padding: 14px 24px !important;
        white-space: normal !important;
        border-radius: 999px;
        line-height: 1.2;
    }

    .main-nav>ul>li:has(.nav-pill) {
        border-bottom: none;
        padding: 4px 0;
    }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.18;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
    padding-top: 76px;
    padding-bottom: 0;
    min-height: 640px;
}

/* Allow the text column to shrink below its content's min-content width on
   narrow screens so buttons/CTAs never force the grid wider than the viewport. */
.hero-inner>* {
    min-width: 0;
}

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

.hero-copy .tag {
    margin-bottom: 26px;
}

.hero-copy h1 {
    font-size: clamp(46px, 5.5vw, 76px);
    color: var(--white);
    margin-bottom: 22px;
}

.hero-copy h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-copy .lede {
    font-size: 18px;
    color: #C9CFDC;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--line-dark);
    max-width: 520px;
}

.hero-stats div {
    flex: 1;
    padding: 18px 22px 0 0;
}

.hero-stats div+div {
    border-left: 1px solid var(--line-dark);
    padding-left: 22px;
}

.hero-stats b {
    display: block;
    font-family: var(--f-display);
    font-size: 34px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stats span {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: #9AA3B8;
}

.hero-art {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.hero-art svg {
    width: 100%;
    height: auto;
    max-width: 520px;
}

/* ---- Hero video teaser — floating "watch the process" chip over hero art.
   Links to the video section instead of autoplaying in the first fold. ---- */
.hero-video-teaser {
    position: absolute;
    left: 4px;
    bottom: 30px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(33, 37, 41, 0.72);
    backdrop-filter: blur(2px);
    border: 1px solid var(--line-dark);
    padding: 8px 18px 8px 8px;
    transition: background .18s ease, border-color .18s ease;
}

.hero-video-teaser:hover {
    background: rgba(33, 37, 41, 0.92);
    border-color: var(--gold);
}

.hero-video-teaser .play-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.hero-video-teaser .play-dot svg {
    width: 12px;
    height: 12px;
}

.hero-video-teaser span {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 44px;
    }

    .hero-art {
        display: none;
    }

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

/* ==========================================================================
   SECTIONS — general
   ========================================================================== */
section {
    padding: 96px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.section-head .tag {
    margin-bottom: 18px;
}

.section-head h2 {
    font-size: clamp(30px, 3.6vw, 46px);
    color: var(--navy);
    max-width: 640px;
}

.section-head p {
    color: var(--text-muted);
    max-width: 420px;
    font-size: 15px;
}

.section-alt {
    background: var(--canvas-2);
}

.about-metrics {
    background: var(--canvas-2);
}

.about-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.about-metric-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0;
}

.about-metric-card b {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(26px, 2.2vw, 36px);
    color: var(--gold);
    margin-bottom: 12px;
    word-break: break-word;
}

.about-metric-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.about-story-copy p {
    margin: 0 0 24px;
    color: var(--ink);
    line-height: 1.7;
    font-size: 16px;
}

.about-story-media {
    border: 1px solid var(--line);
    background: var(--canvas-2);
    overflow: hidden;
    border-radius: 0;
}

.about-story-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

/* Global figure captions — subtle, muted, distinct from body copy. */
figcaption {
    font-family: var(--f-body);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: 0.625rem;
    font-style: italic;
}

.about-story-media figcaption {
    padding: 22px 24px;
    margin-top: 0;
    font-family: var(--f-mono);
    font-size: 12px;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-top: 34px;
}

.timeline-line {
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--line);
}

.timeline-item {
    position: relative;
    padding: 0 24px 0 0;
}

.timeline-dot {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--canvas-2);
    position: absolute;
    top: -34px;
    left: 0;
    z-index: 1;
}

.timeline-year {
    display: block;
    font-family: var(--f-display);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
}

.timeline-item h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: var(--navy);
}

.timeline-item p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.advantage-card {
    border: 1px solid var(--line);
    background: var(--canvas-2);
    border-radius: 0;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 260px;
}

.advantage-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--white);
    font-size: 18px;
    border-radius: 0;
}

.advantage-card h3 {
    margin: 0;
    font-size: 22px;
    color: var(--navy);
}

.advantage-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.quote-banner {
    background: var(--ink);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.quote-banner .wrap {
    max-width: 900px;
}

.quote-banner .quote-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    color: var(--gold);
}

.quote-banner .quote-mark svg {
    width: 40px;
    height: 40px;
}

.quote-banner blockquote {
    margin: 0 auto 28px;
    max-width: 62ch;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.5;
    font-weight: 500;
    font-style: italic;
}

.quote-banner cite {
    display: block;
    color: #C7CCD1;
    font-family: var(--f-mono);
    font-size: 13px;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-about {
    background: linear-gradient(180deg, #0a1320 0%, #111b2d 100%);
    color: var(--white);
}

.hero-about::after {
    background-image: none;
    background:
        linear-gradient(90deg, rgba(10, 19, 32, 0.96) 0%, rgba(10, 19, 32, 0.88) 26%, rgba(10, 19, 32, 0.3) 52%, rgba(10, 19, 32, 0.1) 74%, rgba(10, 19, 32, 0.4) 100%),
        linear-gradient(180deg, rgba(10, 19, 32, 0.3) 0%, rgba(10, 19, 32, 0.05) 35%, rgba(10, 19, 32, 0.55) 100%);
    opacity: 1;
}

.hero-about .hero-copy h1 {
    color: var(--white);
}

.hero-about .hero-copy .lede {
    color: #D9E2F0;
}

.hero-about .hero-inner {
    padding-top: 40px;
    min-height: 0;
    align-items: start;
    padding-bottom: 56px;
}

.hero-about .hero-copy {
    padding-bottom: 0;
}

.hero-about .hero-bg-photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
    z-index: 0;
}

.hero-about .hero-ctas {
    justify-content: flex-start;
}

/* About hero: tag is normally hidden site-wide; show it here since the
   hero is designed around it (small tag above the H1). */
.hero-about .hero-copy .tag {
    display: inline-flex !important;
}

.cta-band .hero-ctas {
    justify-content: center;
}

/* On mobile the hero collapses to one column — let the full-bleed photo
   span the whole width behind a stronger dark overlay so the text stays
   readable over it. */
@media (max-width: 900px) {
    .hero-about .hero-bg-photo {
        left: 0;
        width: 100%;
        object-position: 60% center;
    }

    .hero-about::after {
        background:
            linear-gradient(180deg, rgba(10, 19, 32, 0.92) 0%, rgba(10, 19, 32, 0.78) 45%, rgba(10, 19, 32, 0.9) 100%);
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .hero-art {
        display: none;
    }
}

@media (max-width: 980px) {

    .about-metrics-grid,
    .timeline-track,
    .advantage-grid,
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .timeline-track {
        padding-top: 0;
        gap: 40px;
    }

    .timeline-line {
        top: 0;
        bottom: 0;
        left: 6px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .timeline-item {
        padding-left: 32px;
    }

    .timeline-dot {
        top: 2px;
        left: 0;
    }
}

@media (max-width: 700px) {
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-art {
        display: none;
    }

    .about-metrics-grid {
        grid-template-columns: 1fr;
    }
}

.eyebrow-line {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.eyebrow-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* ---- Category directory ---- */
.kit-directory {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.kit-card {
    background: var(--white);
    padding: 30px 24px 26px;
    position: relative;
    transition: background .2s ease;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kit-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--canvas-2);
    border-radius: 0;
    overflow: hidden;
}

.kit-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kit-card:hover {
    background: var(--canvas-2);
}

.kit-card .num {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--text-muted);
}

.kit-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin: 30px 0 6px;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--f-body);
    font-weight: bold;
}

.kit-card .go {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--teal-mid);
    display: flex;
    align-items: center;
    gap: 6px;
}

.kit-card .go svg {
    width: 11px;
    height: 11px;
    transition: transform .18s ease;
}

.kit-card:hover .go svg {
    transform: translateX(4px);
}

.code-card-media,
.leaver-card-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: var(--canvas-2, #f5f5f5);
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 16px;
}

.code-card-media img,
.leaver-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.code-card:hover .code-card-media img,
.leaver-card:hover .leaver-card-media img {
    transform: scale(1.03);
}

.code-card-content,
.leaver-card-content {
    display: grid;
    gap: 14px;
}

.card-number,
.num {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.view-range,
.go {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--teal-mid);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.view-range svg {
    width: 11px;
    height: 11px;
    transition: transform .18s ease;
}

.view-range:hover svg,
.view-range:focus svg,
.go:hover svg,
.go:focus svg {
    transform: translateX(4px);
}


@media (max-width:900px) {
    .kit-directory {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .kit-directory {
        grid-template-columns: 1fr;
    }
}

/* ---- Process / spec strip ---- */
.spec-strip {
    background: var(--ink);
    color: var(--white);
    padding: 80px 0;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Homepage "How an order runs" keeps the joined 4-tile strip look. */
.spec-grid--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line-dark);
    border: 1px solid var(--line-dark);
}

.spec-item {
    background: var(--ink);
    padding: 32px 26px;
}

.spec-item .idx {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.spec-item h4 {
    font-size: 18px;
    text-transform: none;
    font-family: var(--f-body);
    font-weight: bold;
    letter-spacing: 0;
    margin-bottom: 10px;
    color: var(--white);
}

.spec-item p {
    font-size: 13.5px;
    color: #A6ADBE;
}

@media (max-width:900px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }
}

@media (max-width:560px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .spec-grid--4 {
        grid-template-columns: 1fr;
        gap: 1px;
    }
}

/* ---- Video feature (production reel) ----
   Placed right after the process/spec strip: the strip explains the 4 steps
   in words, this shows step 3 ("cut, sew, sublimate") in motion. ---- */
.video-feature {
    background: var(--canvas-2);
    border-bottom: 1px solid var(--line);
}

.video-feature-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.video-feature-copy .lede {
    color: var(--text-muted);
    font-size: 15.5px;
    max-width: 420px;
    margin-top: 16px;
}

.video-feature-media {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--ink);
    overflow: hidden;
}

.video-feature-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-feature-media .vf-caption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    font-family: var(--f-mono);
    font-size: 10.5px;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(33, 37, 41, 0.6);
    padding: 6px 10px;
}

@media (max-width:900px) {
    .video-feature-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ---- Fabric / feature split ---- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.swatch {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 6px),
        linear-gradient(135deg, var(--navy-2), var(--navy) 60%, var(--ink));
    display: flex;
    align-items: center;
    justify-content: center;
}

.swatch svg {
    width: 60%;
}

.split-copy .stat-row {
    display: flex;
    gap: 36px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.split-copy .stat-row div b {
    display: block;
    font-family: var(--f-display);
    font-size: 30px;
    color: var(--navy);
}

.split-copy .stat-row div span {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.split-copy h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    color: var(--navy);
    margin: 16px 0 20px;
}

.split-copy p.lede {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 460px;
    margin-bottom: 8px;
}

@media (max-width:900px) {
    .split {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ---- Trust strip ---- */
.trust {
    background: var(--canvas-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
    padding: 36px var(--pad);
    max-width: var(--maxw);
    margin: 0 auto;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rating-block .stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-block b {
    font-family: var(--f-display);
    font-size: 22px;
    color: var(--navy);
}

.rating-block span {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.trust-logos {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ---- Community feed ---- */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feed-card {
    background: var(--white);
    border: 1px solid var(--line);
}

.feed-media {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--navy-2), var(--navy));
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.feed-media span {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
}

.feed-body {
    padding: 16px 18px 20px;
}

.feed-body p {
    font-size: 13.5px;
    color: var(--ink);
}

.feed-body .h {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

@media (max-width:1024px) {
    .feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .feed-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Partners / associations wall ---- */
.partners {
    padding: 26px 0;
    overflow: hidden;
    position: relative;
}

.partners .eyebrow-line {
    display: block;
    font-family: var(--f-mono);
    font-size: 20px;
    /* Kích thước vừa vặn, chuẩn hơn so với 11px cũ */
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 24px;
}

.partners .eyebrow-line::after {
    content: none;
}

.partners::before, .partners::after {
    content: '';
    position: absolute;
    top: 90px;
    bottom: 0;
    width: 80px;
    z-index: 2;
}

.partners::before {
    left: 0;
    background: linear-gradient(90deg, var(--canvas), transparent);
}

.partners::after {
    right: 0;
    background: linear-gradient(270deg, var(--canvas), transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 56px;
    /* giảm nhẹ từ 72px vì logo to hơn, tránh quá thưa */
    width: max-content;
    padding: 0 var(--pad);
    animation: partners-scroll 26s linear infinite;
}

.partners:hover .partners-track {
    animation-play-state: paused;
}

.partners-track img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: opacity .2s ease, filter .2s ease;
}

.partners-track img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes partners-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-25%);
    }
}

/* ---- Club / bulk pricing band ---- */
.club-bulk-section {
    padding: 24px 0 56px;
}

.club-bulk-band {
    background: var(--canvas-2);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 34px 40px;
}

.club-bulk-band .ctext strong {
    display: block;
    font-family: var(--f-display);
    font-size: 21px;
    color: var(--navy);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
}

.club-bulk-band .ctext span {
    font-family: var(--f-mono);
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ---- CTA banner ---- */
.cta-band {
    background: var(--gold);
    color: var(--ink);
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(32px, 4.5vw, 58px);
    color: var(--ink);
    margin-bottom: 22px;
}

.cta-band p {
    font-family: var(--f-mono);
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 34px;
}

.cta-band .btn {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.cta-band .btn:hover {
    background: var(--white);
    color: var(--ink);
}

.cta-band .btn.ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.cta-band .btn.ghost:hover {
    background: var(--ink);
    color: var(--white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: var(--ink);
    color: #B9BECB;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line-dark);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo span {
    color: #7C879C;
}

.footer-brand p {
    font-size: 14px;
    color: #8890A0;
    max-width: 280px;
    margin-bottom: 22px;
}

.footer-col h5 {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 14px;
    color: #B9BECB;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col address {
    font-style: normal;
    font-size: 13.5px;
    color: #8890A0;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    padding-bottom: 26px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: #6E7688;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: #6E7688;
}

.footer-bottom a:hover {
    color: var(--white);
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-row a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-row a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.social-row svg {
    width: 15px;
    height: 15px;
}

@media (max-width:1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---- Builder promo band ---- */
.builder-band {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0;
}

.builder-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.builder-copy {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.builder-copy h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    color: var(--white);
    margin: 16px 0 18px;
}

.builder-copy p {
    color: #C9CFDC;
    max-width: 420px;
    margin-bottom: 28px;
    font-size: 15px;
}

.builder-art {
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    aspect-ratio: 4 / 3;
}

.builder-art svg {
    width: 80%;
    max-width: 280px;
}

.builder-art video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.builder-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.builder-art--photo {
    padding: 0;
}

@media (max-width: 900px) {
    .builder-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .builder-art {
        aspect-ratio: auto;
        padding: 48px 20px;
    }
}

@media (max-width: 560px) {
    .footer-top {
        gap: 44px;
        padding-top: 56px;
        padding-bottom: 40px;
    }

    .footer-col {
        padding-top: 0;
        border-top: none;
    }

    .footer-brand {
        border-top: none;
        margin-bottom: 4px;
    }

    .footer-col h5 {
        margin-top: 0;
    }
}

/* ============================================================
   HUB & SUB-CATEGORY PAGE COMPONENTS
   (used by /custom-{sport}-uniforms/ and its sub-pages)
   ============================================================ */

/* ---- Breadcrumb ---- */
.breadcrumb-bar {
    border-bottom: 1px solid var(--line);
    background: var(--canvas-2);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
}

.breadcrumb a:hover {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

.breadcrumb .sep {
    opacity: 0.5;
}

.breadcrumb .current {
    color: var(--navy);
    font-weight: 600;
}

/* ---- Compact hub/sub hero (sits under breadcrumb, above fold, no giant image bleed) ---- */
.hub-hero {
    padding: 56px 0 48px;
    border-bottom: 1px solid var(--line);
}

.hub-hero .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hub-hero-media {
    display: block;
    background: var(--canvas-2);
    border: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    min-height: 340px;
}

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

.hub-hero h1 {
    font-size: clamp(30px, 4vw, 48px);
    color: var(--navy);
    margin: 14px 0 18px;
    line-height: 1.05;
}

.hub-hero p.lede {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 26px;
}

.hub-hero .hero-ctas {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .hub-hero .wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ---- Sub-category grid (variant of kit-directory, sized for 3-6 cards within one sport) ---- */
.subcat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

@media (max-width: 900px) {
    .subcat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .subcat-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Product hero (sub-category page: copy left, annotated garment image right) ---- */
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    padding-top: 56px;
    padding-bottom: 56px;
}

.product-hero-copy h1 {
    font-size: clamp(28px, 3.4vw, 42px);
    color: var(--navy);
    margin: 14px 0 18px;
}

.product-hero-copy p.lede {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 480px;
    margin-bottom: 10px;
}

.product-hero-media {
    position: relative;
    background: var(--canvas-2);
    border: 1px solid var(--line);
    padding: 24px;
}

.product-hero-media img {
    width: 100%;
    display: block;
}

.product-callouts {
    list-style: none;
    margin: 22px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--navy);
}

.product-callouts li {
    padding-left: 14px;
    position: relative;
}

.product-callouts li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: var(--gold);
}

@media (max-width: 900px) {
    .product-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ---- Helpful files row ---- */
.helpful-files {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    align-items: flex-start;
}

/* Keep the tiles flush with the container's left edge (no visual indent) —
   icon + label start exactly where the heading/paragraph text starts. */
.product-hero-copy .helpful-file {
    align-items: flex-start;
    text-align: left;
}

.contact-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.contact-tools-grid .helpful-file {
    width: 100%;
}

/* Mobile: giữ 3 nút trên 1 hàng ngang, thu nhỏ icon + nhãn để gọn gàng,
   không còn xếp dọc 1 cột gây khoảng trống thừa 2 bên. */
@media (max-width: 768px) {
    .contact-tools-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 0;
        box-sizing: border-box;
    }

    .contact-tools-grid .helpful-file {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        width: 100% !important;
    }

    .contact-tools-grid .helpful-file .ic {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 6px !important;
    }

    .contact-tools-grid .helpful-file {
        font-size: 11px !important;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
}

.helpful-file {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 84px;
    text-decoration: none;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    text-align: center;
}

.helpful-file .ic {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-mid);
    color: var(--white);
    border-radius: var(--radius);
}

.helpful-file .ic svg {
    width: 24px;
    height: 24px;
}

.helpful-file:hover .ic {
    background: var(--navy);
}

/* ---- Fabric / cut comparison table ---- */
.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--line);
    margin-bottom: 1rem;
}

.fabric-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 32px;
}

.fabric-preview-card {
    overflow: hidden;
    border-radius: 0;
    background: var(--canvas-2);
    border: 1px solid var(--line);
    min-height: 140px;
}

/* Fallback cho ảnh bị lỗi link: ẩn ảnh gãy, hiển thị placeholder theo phong cách
   thẻ vải (màu nền + tên chất liệu) — tránh biểu tượng broken-image. */
.fabric-preview-card {
    position: relative;
}

.fabric-preview-card img.is-broken {
    opacity: 0;
}

.fabric-preview-card .fabric-placeholder {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    text-align: center;
    background:
        repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.04) 0 2px, transparent 2px 8px),
        linear-gradient(135deg, var(--canvas-2), #eef0f2);
}

.fabric-preview-card .fabric-placeholder span {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.fabric-preview-card.is-broken .fabric-placeholder {
    display: flex;
}

.fabric-preview-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 900px) {
    .fabric-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .fabric-preview-grid {
        grid-template-columns: 1fr;
    }
}

table.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    font-size: 14px;
}

table.compare-table caption {
    caption-side: top;
    text-align: left;
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    padding: 14px 18px;
    background: var(--canvas-2);
    border-bottom: 1px solid var(--line);
}

table.compare-table th,
table.compare-table td {
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

table.compare-table thead th {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy);
    background: var(--canvas-2);
}

table.compare-table tbody th {
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}

table.compare-table tbody tr:last-child td,
table.compare-table tbody tr:last-child th {
    border-bottom: none;
}

/* ============================================================
   MOBILE TABLE → ACCORDION CARD VIEW (≤ 768px)
   Mỗi dòng tr thành 1 card bấm được: chỉ hiện OPTION + mũi tên,
   bấm để xổ chi tiết. thead ẩn. Không còn tràn lề / lướt ngang.
   ============================================================ */
@media (max-width: 768px) {
    .compare-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
        margin-bottom: 0;
    }

    table.compare-table,
    table.compare-table caption,
    table.compare-table thead,
    table.compare-table tbody,
    table.compare-table tr,
    table.compare-table th,
    table.compare-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    table.compare-table {
        min-width: 0;
        border-collapse: collapse;
        font-size: 14px;
    }

    /* Ẩn hàng tiêu đề cột (CUT/FIT/SIZING...) */
    table.compare-table thead {
        display: none;
    }

    /* Caption giữ làm tiêu đề nhóm bảng */
    table.compare-table caption {
        padding: 0 0 10px;
        background: transparent;
        border-bottom: none;
    }

    /* Mỗi tbody là 1 nhóm; mỗi tr là 1 card accordion */
    table.compare-table tbody {
        margin-bottom: 16px;
    }

    table.compare-table tbody tr {
        margin-bottom: 12px;
        background: var(--canvas-2);
        border: 1px solid var(--line);
        border-radius: 0;
        padding: 14px 16px;
        cursor: pointer;
        transition: border-color .18s ease, background .18s ease;
    }

    table.compare-table tbody tr:hover {
        border-color: var(--line-dark);
    }

    table.compare-table tbody tr.is-expanded {
        border-color: var(--gold);
        background: var(--canvas);
    }

    /* Tên OPTION — header luôn hiển thị, có mũi tên bên phải */
    table.compare-table tbody th {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 700;
        font-size: 15px;
        color: var(--navy);
        white-space: normal;
        padding: 0;
        border-bottom: none;
    }

    table.compare-table tbody th::after {
        content: '+';
        font-family: var(--f-mono);
        font-size: 20px;
        line-height: 1;
        color: var(--gold);
        flex: none;
        margin-left: 12px;
        transition: transform .2s ease;
    }

    table.compare-table tbody tr.is-expanded th::after {
        content: '−';
    }

    /* Chi tiết — ẩn mặc định, xổ ra khi mở */
    table.compare-table tbody td {
        display: none;
        padding: 10px 0 0;
        border-bottom: none;
        font-size: 14px;
        color: var(--ink);
    }

    table.compare-table tbody tr.is-expanded td {
        display: block;
    }

    /* Phân tách nhẹ giữa các dòng chi tiết */
    table.compare-table tbody tr.is-expanded td+td {
        border-top: 1px solid var(--line);
        margin-top: 8px;
    }
}

/* ---- FAQ (AEO-friendly: plain question/answer pairs, no JS required) ---- */
.faq-list {
    max-width: 760px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 6px 0;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 2px;
    font-weight: 600;
    color: var(--navy);
    font-size: 16px;
}

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

.faq-item summary::after {
    content: "+";
    font-family: var(--f-mono);
    font-size: 20px;
    color: var(--gold);
    flex: none;
}

.faq-item[open] summary::after {
    content: "\2212";
}

.faq-item p {
    color: var(--text-muted);
    padding: 0 2px 18px;
    max-width: 640px;
    line-height: 1.6;
}

/* ---- Related sub-category strip (internal linking within a sport hub) ---- */
.related-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.related-chip {
    font-family: var(--f-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 10px 18px;
    border: 1px solid var(--line-dark);
    color: var(--navy);
    text-decoration: none;
    background: var(--canvas);
}

.related-chip:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.related-chip.is-current {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ============================================================
   CONTACT PAGE COMPONENTS
   ============================================================ */

.page-intro {
    padding: 56px 0 44px;
    border-bottom: 1px solid var(--line);
}

.page-intro h1 {
    font-size: clamp(30px, 4vw, 48px);
    color: var(--navy);
    margin: 14px 0 16px;
}

.page-intro p.lede {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 560px;
}

/* ---- Contact form + side info ---- */
.section-quote-form {
    padding: 64px 0;
}

/* Contact page wrapper — keeps the form grid aligned with the page heading
   container. Shares the exact max-width + horizontal padding as .wrap. */
.contact-section {
    width: 100%;
    max-width: var(--maxw);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 56px 0;
}

/* Inner .wrap keeps its standard horizontal padding (var(--pad)), so the
   form/sidebar edges line up with the heading text above. Only strip the
   vertical padding the grid would otherwise add on top of .contact-section. */
.contact-section .contact-grid {
    padding: 0;
}

.section-quote-form .contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    padding: 0;
    align-items: start;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 64px;
    padding: 56px 0;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy);
}

.form-field label .req {
    color: var(--red);
}

.form-field input,
.form-field select,
.form-field textarea {
    border: 1px solid var(--line);
    background: var(--canvas-2);
    padding: 14px 16px;
    font-family: var(--f-body);
    font-size: 15px;
    color: var(--ink);
    border-radius: var(--radius);
    width: 100%;
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 2px solid var(--gold);
    outline-offset: 1px;
    background: var(--canvas);
}

.form-note {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.contact-form .btn {
    justify-self: start;
}

/* ---- Side info card ---- */
.contact-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    border: 1px solid var(--line);
    background: var(--canvas-2);
    padding: 30px;
}

.info-card h3 {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    margin-bottom: 16px;
}

.info-card ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.info-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--ink);
}

.info-card li svg {
    flex: none;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--teal-mid);
}

.info-card li a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px dashed var(--line-dark);
}

.info-card li a:hover {
    color: var(--navy);
}

@media (max-width: 900px) {

    .contact-grid,
    .section-quote-form .contact-grid,
    .contact-section .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row,
    .section-quote-form .form-row,
    .contact-section .form-row {
        grid-template-columns: 1fr;
    }
}

/* ---- Mobile (≤ 768px): contact form component refinements ----
   These apply GLOBALLY to every page that embeds the form grid
   (main /contact.html, sport sub-category pages, school leavers,
   workwear, indigenous collection, etc.) — not just contact.html. */
@media (max-width: 768px) {
    .contact-form {
        gap: 18px;
    }

    .contact-form .form-field input,
    .contact-form .form-field select,
    .contact-form .form-field textarea {
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form .form-field textarea {
        min-height: 110px;
    }

    .contact-form .btn {
        width: 100%;
        justify-self: stretch;
    }

    .contact-side {
        width: 100%;
        min-width: 0;
    }

    .info-card {
        padding: 24px 20px;
    }
}

/* ---- Mobile (≤ 640px): equal-width buttons in stacked groups ----
   When CTA/button groups wrap to a vertical stack on small screens,
   every button stretches to the full container width so no button is
   visibly longer/shorter than its siblings. */
@media (max-width: 640px) {

    .hero-ctas,
    .btn-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-ctas .btn,
    .btn-group .btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
        white-space: normal;
    }
}

/* ---- Location cards ---- */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.location-card {
    border: 1px solid var(--line);
    padding: 30px;
}

.location-card .loc-tag {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teal-mid);
    display: block;
    margin-bottom: 10px;
}

.location-card h4 {
    font-family: var(--f-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 14px;
}

.location-card address {
    font-style: normal;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

.location-card address b {
    color: var(--ink);
    display: block;
    margin-top: 10px;
}

@media (max-width: 700px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   FIX DỰ DỰNG MEGA MENU TRÀN MAN HÌNH 100%
   (CHỈ ÁP DỤNG TRÊN DESKTOP — mobile dùng accordion)
   ========================================== */

/* 1. Đảm bảo header là gốc tọa độ chuẩn — nhưng VẪN giữ sticky để luôn
   nằm cố định trên cùng khi cuộn (sticky làm gốc tọa độ tuyệt đối cho
   dropdown.mega tràn 100% viewport). */
.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

/* 2. Bắt buộc thẻ li chứa mega menu KHÔNG làm gốc tọa độ nữa */
.main-nav .nav-item--mega {
    position: static !important;
}

/* 3. Bắt buộc mega menu tràn 100% chiều ngang header (desktop) */
@media (min-width: 1025px) {
    .dropdown.mega {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        min-width: 100% !important;

        /* Bỏ layout grid/flex của dropdown thường nếu có */
        display: block !important;

        /* Reset transform gây lệch tâm */
        transform: translateY(8px) !important;

        background-color: #ffffff !important;
        border-top: 1px solid var(--line, #e5e7eb) !important;
        border-bottom: 1px solid var(--line, #e5e7eb) !important;
        border-left: none !important;
        border-right: none !important;
        border-radius: 0 !important;
        box-shadow: 0 26px 60px rgba(16, 21, 31, 0.14) !important;
        padding: 24px 0 !important;
        z-index: 9999 !important;
    }

    /* 4. Hiệu ứng Hover / Focus */
    .main-nav .nav-item--mega:hover .dropdown.mega,
    .main-nav .nav-item--mega:focus-within .dropdown.mega {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}

/* 5. Căn giữa khung nội dung bên trong mega menu */
.dropdown-mega-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   SHOPS PAGE — club & school shop directory
   ========================================================================== */

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

/* Nav hover underline — all menu links get teal underline on hover via ::after */
.main-nav>ul>li>a,
.main-nav>ul>li>button {
    position: relative;
}

.main-nav>ul>li>a::after,
.main-nav>ul>li>button::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .18s ease;
}

.main-nav>ul>li>a:hover::after,
.main-nav>ul>li>button:hover::after {
    transform: scaleX(1);
}

/* ---- Breadcrumb bar with inline search ---- */
.breadcrumb-bar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.breadcrumb-bar-row .breadcrumb {
    padding: 14px 0;
}

.shop-search {
    position: relative;
    flex: 1;
    min-width: 240px;
    max-width: 380px;
}

.shop-search input {
    width: 100%;
    padding: 13px 46px 13px 16px;
    border: 1px solid var(--line-dark);
    background: var(--white);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 14px;
}

.shop-search input::placeholder {
    color: var(--text-muted);
}

.shop-search input:focus {
    outline: none;
    border-color: var(--navy);
}

.shop-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
}

.shop-search button:hover {
    background: var(--ink);
}

.shop-search button svg {
    width: 16px;
    height: 16px;
}

.shop-search--breadcrumb {
    max-width: 300px;
    min-width: 220px;
    flex: 0 1 300px;
}

.shop-search--breadcrumb input {
    padding: 9px 40px 9px 14px;
    font-size: 13px;
    border-color: var(--line);
    background: var(--white);
}

.shop-search--breadcrumb button {
    width: 38px;
}

.shop-search--breadcrumb button svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 640px) {
    .breadcrumb-bar-row {
        justify-content: flex-start;
    }

    .shop-search--breadcrumb {
        flex: 1 1 100%;
        max-width: none;
    }
}

/* ---- Directory top spacing ---- */
.directory-top {
    padding-top: 32px;
}

/* ---- Featured shop card (school shops banner) ---- */
.featured-shop-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: stretch;
    background: var(--navy);
    color: var(--white);
    margin-bottom: 40px;
    overflow: hidden;
}

.featured-shop-media {
    background: var(--ink);
}

.featured-shop-media img {
    width: 100%;
    height: 100%;
    min-height: 108px;
    object-fit: cover;
    display: block;
}

.featured-shop-body {
    position: relative;
    padding: 18px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    overflow: hidden;
}

.featured-shop-body::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 42%;
    background-image: radial-gradient(rgba(37, 181, 166, 0.22) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.featured-shop-body>* {
    position: relative;
    z-index: 1;
}

.featured-shop-body .tag {
    display: inline-flex !important;
    align-self: flex-start;
    font-size: 9px;
    padding: 3px 8px;
}

.featured-shop-body h3 {
    font-size: 21px;
    color: var(--white);
    text-transform: none;
    letter-spacing: -0.01em;
    font-family: var(--f-body);
    font-weight: 900;
    margin: 0;
}

.featured-shop-body p {
    color: #C7CCD1;
    font-size: 13px;
    max-width: 460px;
    margin: 0;
}

.featured-shop-body .go {
    margin-top: 2px;
    font-family: var(--f-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-shop-body .go svg {
    width: 12px;
    height: 12px;
    transition: transform .18s ease;
}

.featured-shop-card:hover .go svg {
    transform: translateX(4px);
}

@media (max-width: 700px) {
    .featured-shop-card {
        grid-template-columns: 1fr;
    }

    .featured-shop-media img {
        min-height: 140px;
    }
}

/* ---- Shop grid (club logos) ---- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 24px;
}

.shop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.shop-logo {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: var(--canvas-2);
    padding: 12px;
}

.shop-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .2s ease;
}

.shop-card:hover .shop-logo img {
    transform: scale(1.05);
}

.shop-card h3 {
    font-size: 15px;
    color: var(--navy);
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--f-body);
    font-weight: bold;
    line-height: 1.3;
    transition: color .18s ease;
}

.shop-card:hover h3 {
    color: var(--teal-mid);
}

.shop-card .go {
    margin-top: auto;
    font-family: var(--f-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--teal-mid);
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateY(2px);
    transition: opacity .18s ease, transform .18s ease;
}

.shop-card:hover .go {
    opacity: 1;
    transform: translateY(0);
}

.shop-card .go svg {
    width: 10px;
    height: 10px;
}

@media (max-width: 900px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Pagination ---- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 44px;
}

.page-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-mono);
    font-size: 13px;
    color: var(--navy);
    border: 1px solid var(--line);
    background: var(--white);
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.page-btn:hover {
    background: var(--canvas-2);
    border-color: var(--line-dark);
}

.page-btn.is-current {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.page-arrow svg {
    width: 14px;
    height: 14px;
}

.page-arrow.is-disabled {
    opacity: 0.35;
    pointer-events: none;
}