@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,700&family=Poppins:wght@300;400;500;600;700&display=swap");

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

:root {
    --bg: #ffffff;
    --bg-secondary: #f4f4f4;
    --card-bg: #ffffff;
    --black: #0a0a0a;
    --black-soft: #1a1a1a;
    --red: #cc0000;
    --red-hover: #ff0000;
    --blue-label: #1565c0;
    --gray: #555555;
    --gray-light: #eeeeee;
    --border: #dddddd;
    --white: #ffffff;
    --radius: 14px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes heroFadeZoom {
    from {
        opacity: 0;
        transform: scale(1.06);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroContentRise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introLogoIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes introTextReveal {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introLogoGlow {
    0%,
    100% {
        box-shadow:
            0 24px 60px rgba(0, 0, 0, 0.26),
            0 0 0 rgba(204, 0, 0, 0),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }
    50% {
        box-shadow:
            0 24px 60px rgba(0, 0, 0, 0.28),
            0 0 24px rgba(204, 0, 0, 0.12),
            0 0 52px rgba(204, 0, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--bg);
    color: var(--black-soft);
    line-height: 1.6;
    overflow-x: hidden;
    animation: pageFadeIn 0.6s ease forwards;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: inline-block;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== SITE INTRO ===== */
.site-intro {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(circle at top, rgba(204, 0, 0, 0.16), transparent 36%),
        linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    color: var(--white);
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.85s cubic-bezier(0.19, 1, 0.22, 1),
        visibility 0.85s cubic-bezier(0.19, 1, 0.22, 1),
        transform 0.85s cubic-bezier(0.19, 1, 0.22, 1);
}

.site-intro::before,
.site-intro::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.site-intro::before {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04),
        transparent 40%,
        rgba(255, 255, 255, 0.02)
    );
}

.site-intro::after {
    inset: auto 0 0;
    height: 24%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent);
}

.site-intro.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
}

.site-intro-inner {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    text-align: center;
}

.site-intro-logo-wrap {
    width: 92px;
    height: 92px;
    margin: 0 auto 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation:
        introLogoIn 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.14s forwards,
        introLogoGlow 4.8s ease-in-out 1.2s infinite;
}

.site-intro-logo-wrap::after {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(
        circle,
        rgba(204, 0, 0, 0.18) 0%,
        rgba(204, 0, 0, 0.08) 28%,
        transparent 62%
    );
    opacity: 0.42;
    pointer-events: none;
    transform: scale(0.94);
}

.site-intro-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 14px rgba(204, 0, 0, 0.12));
}

.site-intro-kicker,
.site-intro-title,
.site-intro-text,
.site-intro-skip {
    opacity: 0;
    animation: introTextReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.site-intro-kicker {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: 0.76rem;
    font-weight: 500;
    animation-delay: 0.34s;
}

.site-intro-title {
    color: var(--white);
    font-size: clamp(3rem, 8vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: 0.03em;
    font-weight: 800;
    margin-bottom: 16px;
    animation-delay: 0.48s;
}

.site-intro-text {
    max-width: 36ch;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.72;
    font-weight: 400;
    animation-delay: 0.64s;
}

.site-intro-skip {
    margin-top: 28px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    font-family: "Poppins", sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        color 0.3s ease;
    animation-delay: 0.82s;
}

.site-intro-skip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    min-height: 48px; /* Touch friendly */
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 0.5px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--black);
    padding: 10px 0;
    font-size: 0.75rem;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1002;
}

.top-bar .container {
    display: inline-block;
    max-width: none;
    width: auto;
    padding: 0;
    animation: marquee 20s linear infinite;
}

.top-bar-desktop {
    display: inline;
}
.top-bar-mobile {
    display: none;
}

/* ===== HEADER / NAVBAR ===== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        padding 0.3s ease;
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    border-bottom-color: rgba(10, 10, 10, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.nav-logo:hover {
    opacity: 0.92;
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.08));
    }
    50% {
        transform: translateY(-1px) scale(1.008);
        filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.12));
    }
}

@keyframes logoGlow {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(204, 0, 0, 0.16),
            0 8px 18px rgba(204, 0, 0, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(204, 0, 0, 0.22),
            0 12px 24px rgba(204, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
}

@keyframes logoShine {
    0% {
        transform: translateX(-130%);
        opacity: 0;
    }
    18% {
        opacity: 0.18;
    }
    40% {
        transform: translateX(130%);
        opacity: 0;
    }
    100% {
        transform: translateX(130%);
        opacity: 0;
    }
}

.logo-img-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid #cc0000;
    box-shadow:
        0 0 0 1px rgba(204, 0, 0, 0.2),
        0 6px 20px rgba(204, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease,
        border-color 0.32s ease;
    animation: logoGlow 9.5s ease-in-out infinite;
}

.logo-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 18%,
        rgba(255, 255, 255, 0.06) 34%,
        rgba(255, 255, 255, 0.14) 50%,
        rgba(255, 255, 255, 0.06) 66%,
        transparent 82%
    );
    pointer-events: none;
    mix-blend-mode: screen;
    animation: logoShine 10.5s ease-in-out infinite;
}
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    display: block;
    transform-origin: center;
    animation: logoFloat 9.5s ease-in-out infinite;
    transition:
        transform 0.32s ease,
        filter 0.32s ease;
}

.nav-logo:hover .logo-img-box,
.nav-logo:focus-visible .logo-img-box {
    transform: translateY(-1px);
    border-color: #e00000;
}

.nav-logo:hover .logo-img,
.nav-logo:focus-visible .logo-img {
    transform: scale(1.025);
    filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.12));
}
.logo-img-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    width: 100%;
    height: 100%;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    line-height: 1;
    text-align: right;
}
.logo-pro {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #0a0a0a;
    letter-spacing: 5px;
    line-height: 1;
    text-transform: uppercase;
}
.logo-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, #cc0000, transparent);
    margin: 2px 0;
}
.logo-sports {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #cc0000;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1;
}
.logo-tagline {
    font-family: "Poppins", sans-serif;
    font-size: 8px;
    font-weight: 500;
    color: #aaa;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .logo-img-box {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        animation-duration: 10.5s;
    }

    .logo-img-box::after {
        animation-duration: 11.5s;
    }

    .logo-text-group {
        align-items: flex-end;
        text-align: right;
    }

    .logo-pro {
        font-size: 26px;
        letter-spacing: 4px;
    }

    .logo-sports {
        font-size: 11px;
        letter-spacing: 6px;
    }

    .logo-tagline {
        display: none;
    }

    .nav-logo {
        gap: 10px;
    }

    .logo-img {
        animation-duration: 10.8s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-img-box,
    .logo-img {
        animation: none;
        transition: none;
    }
}

/* DARK BACKGROUND PAGES - if navbar is dark */
.header.dark .logo-pro {
    color: white;
}
.header.dark .logo-sports {
    color: #cc0000;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black-soft);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}
.nav-links a.active {
    border-bottom: 2px solid var(--red);
}

.nav-dropdown {
    position: relative;
}
.nav-dropdown > a span {
    font-size: 0.75em;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
    white-space: nowrap;
    border-bottom: none;
}
.dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--red);
}

.mobile-nav-label {
    display: block;
    padding: 18px 24px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
}

.btn-quote {
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.9rem;
}
.btn-quote:hover {
    background: var(--red);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 992px) {
    .nav-links, .btn-quote {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    cursor: pointer;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
    padding: 0;
    z-index: 1002;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}
.hamburger:hover {
    transform: translateY(-1px);
    border-color: rgba(204, 0, 0, 0.18);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}
.hamburger span {
    display: block;
    width: 18px;
    height: 1.8px;
    background: var(--black);
    transition:
        transform 0.28s ease,
        opacity 0.2s ease,
        background-color 0.25s ease;
    border-radius: 999px;
}
.hamburger span + span {
    margin-top: 4px;
}
.hamburger.active {
    border-color: rgba(204, 0, 0, 0.2);
    background: linear-gradient(180deg, #ffffff 0%, #f9f1f1 100%);
}
.hamburger.active span:first-child {
    transform: translateY(5.8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:last-child {
    transform: translateY(-5.8px) rotate(-45deg);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: min(85vw, 400px);
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.46s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.42s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 28px 0 72px rgba(0, 0, 0, 0.14);
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
    overflow: hidden;
    opacity: 0;
}
.mobile-nav.open {
    transform: translateX(0);
    opacity: 1;
}
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 22px 16px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.07);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
}
.mobile-nav-eyebrow {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a8a8a;
    line-height: 1;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
}
.mobile-nav-close {
    position: relative;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.mobile-nav-close:hover {
    transform: rotate(90deg);
    border-color: rgba(204, 0, 0, 0.18);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}
.mobile-nav-close span {
    position: absolute;
    width: 14px;
    height: 1.6px;
    border-radius: 999px;
    background: var(--black);
}
.mobile-nav-close span:first-child {
    transform: rotate(45deg);
}
.mobile-nav-close span:last-child {
    transform: rotate(-45deg);
}
.mobile-nav-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mobile-nav-link,
.mobile-nav-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 4px;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: var(--black-soft);
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}
.mobile-nav-link {
    text-decoration: none;
}
.mobile-nav-link:hover,
.mobile-nav-link.active,
.mobile-nav-toggle:hover,
.mobile-nav-group.open > .mobile-nav-toggle {
    background: transparent;
    color: var(--red);
    box-shadow: none;
}
.mobile-nav-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    width: 100%;
}
.mobile-nav-icon {
    display: none;
}
.mobile-nav-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}
.mobile-nav-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    color: currentColor;
}
.mobile-nav-subtitle {
    display: none;
}
.mobile-nav-group {
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
    padding-bottom: 2px;
}
.mobile-nav-group:last-child {
    border-bottom: none;
}
.mobile-nav-arrow {
    width: 10px;
    height: 10px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.32s ease;
    margin-right: 2px;
    flex-shrink: 0;
}
.mobile-nav-group.open .mobile-nav-arrow {
    transform: rotate(225deg);
}
.mobile-nav-accordion {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.42s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.28s ease,
        padding-top 0.28s ease;
    padding-top: 0;
}
.mobile-nav-group.open .mobile-nav-accordion {
    opacity: 1;
    padding-top: 4px;
}
.mobile-nav-sublist {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
}
.mobile-nav-sublink {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 0 10px 14px;
    border-radius: 0;
    color: #4f4f4f;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    transition:
        background-color 0.28s ease,
        color 0.28s ease,
        transform 0.28s ease;
}
.mobile-nav-sublink::before {
    content: "";
    width: 6px;
    height: 1px;
    border-radius: 999px;
    background: rgba(204, 0, 0, 0.45);
    flex-shrink: 0;
}
.mobile-nav-sublink:hover,
.mobile-nav-sublink.active {
    background: transparent;
    color: var(--red);
    transform: translateX(2px);
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== TOP PROMO BANNER SLIDER ===== */
.promo-banner-slider {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--black);
    isolation: isolate;
}
.promo-banner-slider::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent);
    pointer-events: none;
    z-index: 1;
}
.promo-banner-track {
    position: relative;
    width: 100%;
    height: 100%;
}
.promo-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 1.15s cubic-bezier(0.19, 1, 0.22, 1),
        transform 1.15s cubic-bezier(0.19, 1, 0.22, 1),
        visibility 1.15s cubic-bezier(0.19, 1, 0.22, 1);
}
.promo-banner-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.promo-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: transform 7.6s cubic-bezier(0.19, 1, 0.22, 1);
    filter: saturate(0.96) contrast(1.02);
}
.promo-banner-slide.active img {
    transform: scale(1.09);
}
.promo-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.48) 40%,
        rgba(0, 0, 0, 0.14) 100%
    );
    display: flex;
    align-items: center;
    z-index: 1;
}
.promo-banner-content {
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}
.promo-banner-kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}
.promo-banner-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.6rem);
    line-height: 0.96;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.promo-banner-content p {
    max-width: 42ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    line-height: 1.6;
}
.promo-banner-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
    align-items: center;
}
.promo-banner-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    border: none;
    box-shadow: none;
    transition:
        width 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease,
        opacity 0.35s ease;
    opacity: 0.9;
}
.promo-banner-dots .dot:hover {
    transform: scale(1.06);
}
.promo-banner-dots .dot.active {
    width: 24px;
    border-radius: 999px;
    background: white;
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--black);
    padding: 0;
    overflow: hidden;
}
.hero-banner {
    position: relative;
    width: 100%;
}
.hero-media {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    animation: heroFadeZoom 1.55s cubic-bezier(0.19, 1, 0.22, 1) both;
}
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    transition:
        opacity 1.4s ease,
        transform 6s ease;
    will-change: opacity, transform;
}
.hero-img.is-active {
    opacity: 0.8;
    visibility: visible;
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-text {
    max-width: 800px;
    padding: 0 30px;
    text-align: center;
}
.hero-animate {
    opacity: 0;
    transform: translateY(24px);
    animation: heroContentRise 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.hero-kicker {
    animation-delay: 0.24s;
}
.hero-title {
    animation-delay: 0.4s;
}
.hero-subtitle {
    animation-delay: 0.58s;
}
.hero-actions {
    animation-delay: 0.76s;
}
.hero-meta {
    animation-delay: 0.92s;
}
.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 20px;
}
.hero-text h1 .red {
    color: #cc0000;
}
.hero-label {
    color: #cc0000;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
.hero-text p {
    color: #ccc;
    margin-bottom: 35px;
    font-size: 1.1rem;
    max-width: 100%;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 35px;
}
.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatars {
    display: flex;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -12px;
    object-fit: cover;
    background: #333;
}
.avatars .avatar:first-child {
    margin-left: 0;
}
.rating-text {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 1024px) {
    .hero-media {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .hero-media {
        height: 70vh;
    }
    
    .hero-text {
        padding: 0 25px;
    }
    
    .hero-text h1 {
        font-size: clamp(1.8rem, 8vw, 3.5rem);
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-media {
        height: 75vh;
    }
    
    .hero-text h1 {
        font-size: clamp(1.5rem, 7vw, 3rem);
    }
    
    .hero-text {
        padding: 0 20px;
    }
}

.btn-black {
    background: white;
    color: #0a0a0a;
}
.btn-black:hover {
    background: #cc0000;
    color: white;
}
.btn-outline {
    border: 2px solid white;
    color: white;
}
.btn-outline:hover {
    background: white;
    color: black;
}

/* ===== FEATURES BAR ===== */
.features-bar {
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    background: var(--white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.feature-item .icon {
    font-size: 28px;
}
.feature-item h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 800;
}
.feature-item p {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: none;
}
.feature-sep {
    display: none;
}

/* ===== FACTORY SECTION ===== */
.factory-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.factory-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #cc0000;
    margin-bottom: 15px;
}
.section-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 15px;
}
.section-sub {
    color: #666;
    font-size: 1.1rem;
}

/* ===== PRODUCTS SECTION ===== */
.section-padding {
    padding: 80px 0;
}
.blue-label {
    color: var(--blue-label);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}
.view-all {
    color: var(--red);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 12px;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
    border-color: rgba(204, 0, 0, 0.38);
}
.product-img-box {
    background: var(--bg-secondary);
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    margin-bottom: 15px;
    overflow: hidden;
}
.product-img-box .product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1.28);
    transform-origin: center;
    transition: transform 0.35s ease;
}
.product-card:hover .product-img-box .product-img {
    transform: scale(1.3);
}

.product-card .btn {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.product-card .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.shop-header {
    transition:
        opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
        transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.product-card[data-id="17"] .product-img-box .product-img,
.product-card[data-category="footwear"] .product-img-box .product-img {
    object-fit: cover;
    transform: scale(1.08);
}
.product-card[data-id="17"]:hover .product-img-box .product-img,
.product-card[data-category="footwear"]:hover .product-img-box .product-img {
    transform: scale(1.14);
}
.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.product-card p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.4;
}
.explore-btn {
    color: var(--red);
    font-weight: 700;
    font-size: 0.9rem;
}

.product-card .product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-card .btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}
.product-card .btn-sm {
    padding: 10px;
    font-size: 0.8rem;
    width: 100%;
}

/* ===== AUTOPLAY PRODUCTS SECTION ===== */
.autoplay-products-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #f8f8f8 100%);
}
.autoplay-products-shell {
    overflow: hidden;
    position: relative;
    padding: 6px 2px 14px;
}
.autoplay-products-shell::before,
.autoplay-products-shell::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 2;
    pointer-events: none;
}
.autoplay-products-shell::before {
    left: 0;
    background: linear-gradient(
        to right,
        rgba(248, 248, 248, 0.98),
        transparent
    );
}
.autoplay-products-shell::after {
    right: 0;
    background: linear-gradient(
        to left,
        rgba(248, 248, 248, 0.98),
        transparent
    );
}
.autoplay-products-track {
    display: flex;
    gap: 22px;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}
.autoplay-products-track.no-transition {
    transition: none !important;
}
.autoplay-products-track .product-card {
    flex: 0 0 calc((100% - 66px) / 4);
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
}
.autoplay-products-track .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.1);
}
.autoplay-products-track .product-img-box {
    border-radius: 12px;
}
.autoplay-products-track .product-card .btn {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}
.autoplay-products-dots {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 24px;
}
.autoplay-products-dots .dot {
    background: rgba(10, 10, 10, 0.14);
}
.autoplay-products-dots .dot.active {
    background: var(--red);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.why-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}
.why-card:hover {
    border-bottom-color: var(--red);
    transform: translateY(-5px);
}
.why-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.why-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.why-card p {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
}

/* ===== GALLERY / CAROUSEL ===== */
.gallery-section {
    padding: 80px 0;
    overflow: hidden;
}
.carousel-container {
    position: relative;
    margin-top: 40px;
}
.carousel-track {
    display: flex;
    gap: 20px;
    transition: 0.5s ease;
    padding: 10px 0;
    cursor: grab;
}
.carousel-item {
    flex: 0 0 300px;
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}
.carousel-item:hover {
    transform: scale(1.02);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.carousel-item .emoji {
    font-size: 50px;
    margin-bottom: 15px;
}
.carousel-cat {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CATEGORIES GRID ===== */
.categories-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}
.categories-section .carousel-container {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.categories-section .carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}
.category-card {
    background: var(--white);
    border: none;
    border-radius: 0;
    padding: 60px 40px;
    text-align: center;
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-right: 0;
    text-decoration: none;
}
.category-card:not(:last-child) {
    margin-right: 0;
}
.category-card .category-img-box {
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-card .category-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}
.category-card:hover .category-img {
    transform: scale(1.15);
}
.category-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--black);
    font-weight: 700;
}
.category-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 15px;
}
.category-card .category-count {
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
}
.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--red);
    box-shadow: var(--shadow-md);
}
.category-img-box {
    background: var(--bg-secondary);
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}
.category-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1.28);
    transform-origin: center;
    transition: transform 0.35s ease;
}
.category-card:hover .category-img {
    transform: scale(1.34);
}
.category-emoji {
    font-size: 42px;
    display: block;
}
.category-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--black);
}
.category-card p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.45;
    margin-bottom: 12px;
}
.category-count {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}
.c-btn {
    width: 50px;
    height: 50px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 1.2rem;
}
.c-btn:hover {
    background: var(--red);
}
.dots {
    display: flex;
    gap: 10px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active {
    background: var(--red);
    width: 25px;
    border-radius: 5px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--black);
    color: white;
    padding: 60px 0;
    margin: 40px 0;
}
.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.cta-left .logo-img {
    filter: none;
    height: 60px;
}
.cta-center h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 10px;
    color: white;
}
.cta-center p {
    color: #ccc;
}
.btn-green {
    background: #25d366;
    color: white;
    border: none;
}
.btn-green:hover {
    background: #1ebe57;
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 42px;
    align-items: start;
}
.footer-brand,
.footer-col,
.footer-contact {
    text-align: center;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-brand .logo-img {
    filter: none;
    height: 50px;
}
.footer-brand .tagline {
    margin: 18px 0 16px;
    color: #999;
    font-size: 0.95rem;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.social-links a {
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.04)
    );
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.38s cubic-bezier(0.19, 1, 0.22, 1),
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.38s cubic-bezier(0.19, 1, 0.22, 1),
        color 0.3s ease;
}
.social-links a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.social-links a:hover {
    background: linear-gradient(
        180deg,
        rgba(204, 0, 0, 0.2),
        rgba(204, 0, 0, 0.1)
    );
    border-color: rgba(204, 0, 0, 0.34);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}
.footer h4 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.footer ul {
    list-style: none;
    padding-left: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    color: #999;
    font-size: 0.92rem;
    font-weight: 400;
    transition:
        color 0.28s ease,
        transform 0.28s ease;
}
.footer ul li a:hover {
    color: var(--white);
    transform: translateY(-1px);
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* ===== PRODUCT DETAIL ===== */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 0;
    align-items: start;
}
@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Mobile/Tablet: ensure image + content use full width */
    .detail-visual {
        width: 100%;
    }

    .detail-img-box {
        width: 100%;
        min-height: 320px;
    }
    .detail-info {
        width: 100%;
    }
    .gallery-thumbs {
        width: 100%;
    }
    .gallery-thumbs .gallery-thumb {
        flex: 0 0 80px;
    }
    .gallery-thumbs .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.detail-img-box {
    background: var(--bg-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    overflow: hidden;
    width: 100%;
    min-height: 400px;
}
@media (max-width: 768px) {
    .detail-img-box {
        min-height: 300px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
.detail-img-box .product-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}
.gallery-thumbs .gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    margin-top: 20px;
}
.gallery-thumbs::-webkit-scrollbar {
    height: 6px;
}
.gallery-thumbs::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
.gallery-thumbs::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}
.gallery-thumbs .gallery-thumb:hover,
.gallery-thumbs .gallery-thumb.active {
    border-color: var(--red);
    transform: scale(1.05);
}
.gallery-thumbs .gallery-thumb .product-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.detail-info h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 15px;
}
.red-badge {
    background: var(--red);
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}
.detail-desc {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 100%;
}

.detail-visual {
    width: 100%;
    max-width: 100%;
}
.detail-info .size-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.detail-info .qty-selector {
    display: flex;
    align-items: center;
    gap: 20px;
}
.detail-info .detail-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.detail-info .detail-btns .btn {
    width: 100%;
}
.detail-info .detail-options {
    margin-bottom: 30px;
}
.detail-info .detail-options.qty-block {
    margin-bottom: 40px;
}
.detail-info .detail-label {
    display: block;
    margin-bottom: 10px;
}
.detail-info .qty-btn {
    width: 35px;
    height: 35px;
}
.detail-info .qty-value {
    font-weight: 700;
    font-size: 1.2rem;
}
.detail-info .detail-ask-btn {
    border-color: var(--black);
    color: var(--black);
}
.detail-info .detail-ask-btn:hover {
    background: var(--black);
    color: var(--white);
}

/* ===== SHOP PAGE ===== */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
.search-box {
    flex: 1;
    max-width: 450px;
    min-width: 280px;
    position: relative;
}
.search-box input {
    width: 100%;
    padding: 14px 25px;
    border-radius: 50px;
    border: 1px solid var(--border);
    outline: none;
    font-size: 1rem;
}
.search-box input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.1);
}
.filter-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar {
    display: none;
}
.f-tab {
    padding: 10px 24px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 50px;
    background: var(--bg-secondary);
    white-space: nowrap;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.f-tab.active {
    background: var(--black);
    color: var(--white);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}
.wa-btn {
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    animation: waPulse 2s infinite;
}
.wa-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================= */

/* --- Large Desktop (1400px+) --- */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* --- Tablet / Small Desktop (992px - 1200px) --- */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 4.5rem;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Tablet (768px - 992px) --- */
@media (max-width: 992px) {
    .header {
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(12px);
    }
    .nav-links {
        display: none;
    }
    .btn-quote {
        display: none;
    }
    .promo-banner-slider {
        height: 200px;
    }
    .autoplay-products-track .product-card {
        flex: 0 0 calc((100% - 22px) / 2);
    }
    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 72px;
        padding: 10px 0;
    }
    .nav-actions {
        order: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex: 0 0 42px;
        min-width: 42px;
    }
    .hamburger {
        display: flex;
        order: 0;
    }
    .nav-logo {
        order: 2;
        margin-left: auto;
        justify-content: flex-end;
        max-width: calc(100% - 54px);
    }
    .logo-img-box {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
    .logo-pro {
        font-size: 24px;
        letter-spacing: 2px;
    }
    .logo-sports {
        font-size: 10px;
        letter-spacing: 4px;
    }
    .hero-banner {
        min-height: 70vh;
    }
    .hero-media {
        height: 70vh;
    }
    .hero-img {
        height: 100%;
        object-fit: cover;
        object-position: center 28%;
    }
    .hero-text {
        text-align: center;
        max-width: 100%;
        padding: 0 40px;
    }
    .hero-overlay {
        background: rgba(0, 0, 0, 0.6);
        justify-content: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-rating {
        justify-content: center;
    }
    .hero-text p {
        margin-inline: auto;
    }

    .cta-flex {
        flex-direction: column;
        text-align: center;
    }
    .cta-center h2 {
        font-size: 2.2rem;
    }

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

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .detail-info {
        text-align: center;
    }
    .detail-desc {
        margin-inline: auto;
    }
}

/* --- Large Mobile (600px - 768px) --- */
@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        font-size: 0.7rem;
    }
    .nav-wrapper {
        min-height: 66px;
        padding: 8px 0;
    }
    .nav-actions {
        flex: 0 0 40px;
        min-width: 40px;
    }
    .nav-logo {
        gap: 9px;
        max-width: calc(100% - 52px);
    }
    .logo-img-box {
        width: 42px;
        height: 42px;
    }
    .logo-pro {
        font-size: 22px;
        letter-spacing: 1.8px;
    }
    .logo-sports {
        font-size: 9px;
        letter-spacing: 3px;
        padding-top: 2px;
    }
    .promo-banner-slider {
        height: 170px;
    }
    .promo-banner-overlay {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.76),
            rgba(0, 0, 0, 0.28)
        );
    }
    .promo-banner-content {
        padding: 0 18px;
    }
    .promo-banner-kicker {
        font-size: 0.64rem;
        margin-bottom: 8px;
    }
    .promo-banner-content h2 {
        font-size: clamp(1.18rem, 5vw, 1.72rem);
        margin-bottom: 8px;
    }
    .promo-banner-content p {
        font-size: 0.82rem;
        max-width: 30ch;
    }
    .autoplay-products-track {
        gap: 14px;
    }
    .autoplay-products-track .product-card {
        flex: 0 0 calc((100% - 14px) / 2);
    }
    .mobile-nav {
        width: min(85vw, 400px);
        max-width: 400px;
    }
    .top-bar .container {
        display: inline-block;
        width: auto;
        animation: marquee 12s linear infinite;
        padding-left: 100vw;
    }
    .top-bar-desktop {
        display: inline;
    }
    .top-bar-mobile {
        display: none;
    }
    .logo-img {
        height: 40px;
    }
    .header.scrolled {
        padding: 5px 0;
    }

    .hero-banner {
        min-height: 58vh;
    }
    .hero-media {
        height: 58vh;
    }
    .hero-img {
        height: 100%;
        object-fit: cover;
        object-position: center 22%;
    }
    .hero-text h1 {
        font-size: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-padding {
        padding: 60px 0;
    }
    .section-header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .shop-header {
        flex-direction: column;
    }
    .search-box {
        max-width: 100%;
        width: 100%;
    }
}

/* --- Mobile (480px - 600px) --- */
@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-inline: auto;
    }
    .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 26px;
    }
    .footer-grid > div {
        text-align: center;
    }
    .footer-brand,
    .contact-list li,
    .social-links,
    .footer ul,
    .payment-badges,
    .delivery-badges {
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .footer-contact {
        text-align: center;
        align-items: center;
    }
    .footer-contact-item {
        justify-content: center;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
    .footer ul {
        padding-left: 0;
    }

    .footer-brand .tagline {
        text-align: center;
    }

    .carousel-item {
        flex: 0 0 260px;
        padding: 30px 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .wa-btn {
        width: 48px;
        height: 48px;
    }
    .wa-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* --- Small Mobile (320px - 480px) --- */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .mobile-nav {
        width: 82%;
        max-width: 272px;
        padding: 74px 24px 26px;
        gap: 10px;
    }
    .mobile-nav a {
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.02em;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-text p {
        font-size: 0.95rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .top-bar .container {
        animation-duration: 15s;
    } /* Faster marquee for small screens */

    .mobile-nav {
        width: 85%;
        padding: 60px 30px;
    }
}

/* --- Fix for cut-off text and overlapping --- */
h1,
h2,
h3,
h4,
p {
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.btn {
    white-space: nowrap;
}

.hidden {
    display: none !important;
}
.filtering-out {
    opacity: 0;
    transform: scale(0.95);
    transition: 0.3s;
}
.filtering-in {
    animation: filterIn 0.4s ease forwards;
}

@keyframes filterIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal,
.fade-in,
.reveal-left,
.reveal-right,
.reveal-scale,
.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
        transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: opacity, transform;
}

.fade-in {
    transform: none;
}

.reveal-left {
    transform: translateX(-26px);
}

.reveal-right {
    transform: translateX(26px);
}

.reveal-scale {
    transform: scale(0.96);
}

.reveal.visible,
.fade-in.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.fade-up.visible {
    opacity: 1;
    transform: none;
}

.stagger-1 {
    transition-delay: 0.06s;
}
.stagger-2 {
    transition-delay: 0.12s;
}
.stagger-3 {
    transition-delay: 0.18s;
}
.stagger-4 {
    transition-delay: 0.24s;
}
.stagger-5 {
    transition-delay: 0.3s;
}
.stagger-6 {
    transition-delay: 0.36s;
}
.stagger-7 {
    transition-delay: 0.42s;
}
.stagger-8 {
    transition-delay: 0.48s;
}

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

    .reveal,
    .fade-in,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .fade-up,
    .hero-animate,
    .mobile-nav a,
    .hero-media {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .faq-answer {
        opacity: 1 !important;
    }
}

/* ===== FOOTER CONTACT STYLES ===== */
.footer-contact h4 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 12px;
    padding: 12px 14px;
    text-decoration: none;
    text-align: left;
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.045),
        rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.28s ease,
        color 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.35s cubic-bezier(0.19, 1, 0.22, 1),
        background-color 0.28s ease;
}
.footer-contact-item:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: rgba(204, 0, 0, 0.2);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.14);
}
.footer-contact-item > div {
    min-width: 0;
}
.fc-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.11),
        rgba(255, 255, 255, 0.04)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}
.fc-icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}
.fc-label {
    display: block;
    font-size: 0.68rem;
    color: #9b9b9b;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.fc-value {
    display: block;
    font-size: 0.92rem;
    color: white;
    font-weight: 400;
    line-height: 1.45;
}
.footer-section-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #cc0000;
    text-transform: uppercase;
    margin: 20px 0 12px;
    text-align: center;
}
.payment-badges,
.delivery-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
}
.badge {
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 500;
    color: #1f1f1f;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.03)
    );
    color: #e2e2e2;
    border: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition:
        transform 0.32s cubic-bezier(0.19, 1, 0.22, 1),
        border-color 0.28s ease,
        color 0.28s ease,
        background-color 0.28s ease,
        box-shadow 0.32s cubic-bezier(0.19, 1, 0.22, 1);
}
.badge:hover {
    transform: translateY(-1px);
    border-color: rgba(204, 0, 0, 0.24);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.trust-card .badge,
.trust-grid .badge {
    color: #141414;
    background: #f5f5f5;
    border: 1px solid rgba(10, 10, 10, 0.08);
    box-shadow: none;
}
.badge.delivery {
    background: linear-gradient(
        180deg,
        rgba(18, 31, 52, 0.9),
        rgba(11, 22, 40, 0.9)
    );
    color: #d6e6ff;
    border-color: rgba(126, 179, 255, 0.18);
}
.badge.delivery:hover {
    border-color: rgba(126, 179, 255, 0.34);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid #eee;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.contact-card,
.payment-card,
.delivery-card,
.trust-card,
.faq-item,
.footer .social-links a,
.footer-contact-item {
    transition:
        transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 0.45s cubic-bezier(0.19, 1, 0.22, 1),
        border-color 0.35s ease,
        opacity 0.35s ease,
        background-color 0.35s ease,
        color 0.35s ease;
}

.contact-card:hover .cc-icon,
.payment-card:hover .p-icon,
.delivery-card:hover .d-icon,
.trust-card:hover > div:first-child {
    transform: translateY(-2px) scale(1.03);
}

.cc-icon,
.p-icon,
.d-icon,
.trust-card > div:first-child {
    transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.contact-card.whatsapp:hover {
    border-color: #25d366;
}
.contact-card.instagram:hover {
    border-color: #e1306c;
}
.contact-card.location:hover {
    border-color: #cc0000;
}
.cc-icon {
    font-size: 42px;
    margin-bottom: 15px;
}
.cc-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.cc-value {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 10px;
}
.cc-action {
    font-size: 0.9rem;
    color: #cc0000;
    font-weight: 600;
}

/* Payment & Delivery Sections */
.payment-section,
.delivery-section {
    margin-bottom: 60px;
}
.payment-section h3,
.delivery-section h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #0a0a0a;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 2px;
}
.payment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
.payment-card {
    background: white;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 2px solid #eee;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
}
.payment-card:hover {
    border-color: #cc0000;
    color: #cc0000;
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.1);
}
.p-icon {
    font-size: 2.5rem;
}
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.delivery-card {
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 2px solid #eee;
    transition: all 0.3s;
}
.delivery-card:hover {
    transform: translateY(-8px);
}
.delivery-card.dhl {
    background: #fff8e1;
    border-color: #ffd700;
}
.delivery-card.ups {
    background: #fff3e0;
    border-color: #ff6f00;
}
.delivery-card.fedex {
    background: #e8eaf6;
    border-color: #3f51b5;
}
.d-icon {
    font-size: 45px;
}
.d-name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #0a0a0a;
}
.d-sub {
    font-size: 0.9rem;
    color: #666;
}

/* ===== FAQ + TRUST (PAGE SPECIFIC RESPONSIVE) ===== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.faq-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: #cc0000;
}

.faq-question {
    transition:
        color 0.38s cubic-bezier(0.19, 1, 0.22, 1),
        background-color 0.38s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-answer {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    transition:
        max-height 0.62s cubic-bezier(0.19, 1, 0.22, 1),
        padding 0.52s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.42s ease,
        transform 0.52s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: translateY(-4px);
}

.faq-item.open {
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.07);
    border-color: rgba(204, 0, 0, 0.2) !important;
}

.faq-item.open .faq-question {
    color: var(--red);
}

.faq-item.open .faq-answer {
    opacity: 1;
    transform: translateY(0);
}

.faq-question span:last-child {
    transition:
        transform 0.52s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.32s ease,
        color 0.32s ease;
    transform-origin: center;
}

.faq-item.open .faq-question span:last-child {
    transform: rotate(180deg) scale(1.03);
    color: var(--red);
}

/* Trust Cards Fix: Mobile 1 col, Tablet 2 cols, Desktop 4 cols */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .faq-question {
        padding: 16px 0;
    }
    .faq-arrow {
        font-size: 1.25rem;
    }
}

/* ===== RESPONSIVE FOR CONTACT PAGE ===== */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .delivery-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .delivery-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   MOBILE-ONLY FIXES (max-width: 768px)
   Desktop layout unchanged above 768px
   ========================================= */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    body {
        line-height: 1.65;
    }

    h1,
    h2,
    h3,
    h4 {
        line-height: 1;
        letter-spacing: 0.015em;
        font-weight: 700;
        text-wrap: balance;
    }

    p,
    li,
    a,
    span,
    label,
    input,
    button {
        line-height: 1.55;
    }

    .section-label,
    .blue-label,
    .hero-label,
    .footer-section-title,
    .fc-label,
    .cc-title {
        letter-spacing: 1.2px;
        font-weight: 500;
    }

    .section-heading,
    .section-header-row h2,
    .gallery-section h2,
    .why-section h2,
    .cta-center h2,
    .footer h4,
    .payment-section h3,
    .delivery-section h3,
    .faq-section h2,
    .contact-card .cc-value {
        text-wrap: balance;
    }

    .section-heading {
        font-size: clamp(1.82rem, 6.6vw, 2.28rem);
        line-height: 1;
        margin-bottom: 10px;
    }

    .section-sub {
        font-size: 0.94rem;
        font-weight: 400;
        line-height: 1.7;
    }

    .section-header-row {
        gap: 10px;
    }

    .section-header-row h2,
    .gallery-section h2,
    .why-section h2,
    .faq-section h2,
    .payment-section h3,
    .delivery-section h3,
    .cta-center h2,
    .section-padding > .container > h1,
    .section-padding > .container > h2 {
        font-size: clamp(1.76rem, 6.8vw, 2.3rem);
        line-height: 1;
        margin-bottom: 12px;
    }

    .view-all {
        font-size: 0.88rem;
        font-weight: 500;
        gap: 6px;
    }

    .btn,
    .btn-black,
    .btn-outline,
    .btn-green,
    .btn-quote,
    .explore-btn {
        font-weight: 500;
        letter-spacing: 0.04em;
    }

    .hero-banner {
        min-height: 58vh;
        overflow: hidden;
    }

    .hero-media {
        height: 58vh;
    }

    .hero-img {
        height: 100%;
        object-fit: cover;
        object-position: center 22%;
    }

    .hero-overlay {
        align-items: center;
        justify-content: center;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.72)
        );
    }

    .hero-text {
        padding: 0 22px;
    }

    .hero-text h1 {
        font-size: clamp(2.2rem, 9.4vw, 3.1rem);
        line-height: 0.96;
        letter-spacing: 0.008em;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .hero-text p {
        font-size: 0.96rem;
        font-weight: 400;
        line-height: 1.68;
        margin-bottom: 24px;
        max-width: 34ch;
    }

    .hero-label {
        font-size: 0.78rem;
        margin-bottom: 10px;
    }

    .hero-rating {
        gap: 10px;
    }

    .rating-text {
        font-size: 0.8rem;
        font-weight: 400;
        line-height: 1.45;
    }

    .feature-item h4 {
        font-size: 0.88rem;
        line-height: 1.08;
        font-weight: 600;
        letter-spacing: 0.02em;
    }

    .feature-item p {
        font-size: 0.78rem;
        font-weight: 400;
        line-height: 1.48;
    }

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

    .product-card {
        padding: 12px;
    }

    .product-card h3 {
        font-size: 0.92rem;
        line-height: 1.22;
        font-weight: 600;
        margin-bottom: 6px;
        text-align: left;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .product-card p {
        font-size: 0.8rem;
        font-weight: 400;
        margin-bottom: 10px;
        line-height: 1.52;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: left;
    }

    .product-img-box {
        margin-bottom: 10px;
        width: 100%;
    }

    .product-img-box .product-img,
    .product-card:hover .product-img-box .product-img,
    .product-card[data-id="17"] .product-img-box .product-img,
    .product-card[data-category="footwear"] .product-img-box .product-img,
    .product-card[data-id="17"]:hover .product-img-box .product-img,
    .product-card[data-category="footwear"]:hover
        .product-img-box
        .product-img {
        transform: none;
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .product-card .btn-sm {
        padding: 10px 8px;
        font-size: 0.74rem;
        font-weight: 500;
        white-space: normal;
        line-height: 1.24;
        min-height: 42px;
        letter-spacing: 0.04em;
    }

    .search-box {
        min-width: 0;
        width: 100%;
    }

    .search-box input {
        font-size: 0.95rem;
        font-weight: 400;
        line-height: 1.4;
        padding: 13px 20px;
    }

    .f-tab {
        font-size: 0.88rem;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.04em;
    }

    /* Category carousel */
    .categories-section .carousel-container {
        overflow: hidden;
        touch-action: pan-y;
    }

    .categories-section .carousel-track {
        will-change: transform;
    }

    .categories-section .category-card {
        padding: 28px 16px;
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .categories-section .category-card .category-img-box {
        width: 100%;
        max-width: 100%;
        height: min(52vw, 240px);
        margin-bottom: 16px;
    }

    .categories-section .category-card h3 {
        font-size: 1.22rem;
        line-height: 1.04;
        font-weight: 600;
    }

    .categories-section .category-card p {
        font-size: 0.85rem;
        font-weight: 400;
        line-height: 1.6;
        max-width: 100%;
        padding: 0 4px;
    }

    .categories-section .category-card .category-count {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .carousel-controls {
        margin-top: 24px;
        gap: 16px;
    }

    .c-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    /* Product detail */
    .detail-grid {
        gap: 28px;
        padding: 20px 0;
    }

    .detail-visual {
        width: 100%;
        overflow: hidden;
    }

    .detail-img-box {
        width: 100%;
        min-height: 0;
        aspect-ratio: 1;
        max-height: none;
        border-radius: 16px;
    }

    .detail-img-box .product-img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .detail-info {
        text-align: left;
        width: 100%;
    }

    .detail-info h1 {
        font-size: clamp(1.62rem, 6.6vw, 2.25rem);
        line-height: 1.02;
        font-weight: 700;
        margin-bottom: 12px;
        overflow-wrap: anywhere;
        hyphens: auto;
        text-wrap: balance;
    }

    .red-badge {
        margin-bottom: 12px;
        font-size: 0.72rem;
        font-weight: 500;
        line-height: 1.2;
        padding: 6px 12px;
        letter-spacing: 0.07em;
    }

    .detail-desc {
        font-size: 0.94rem;
        font-weight: 400;
        line-height: 1.72;
        margin-bottom: 24px;
        text-align: left;
        max-width: 100%;
    }

    .detail-info .size-selector {
        justify-content: flex-start;
    }

    .detail-info .size-selector .f-tab {
        padding: 8px 18px;
        font-size: 0.82rem;
        font-weight: 500;
    }

    .detail-info .qty-selector {
        justify-content: flex-start;
    }

    .detail-info .detail-btns .btn {
        min-height: 48px;
        font-size: 0.86rem;
        font-weight: 500;
        line-height: 1.24;
        white-space: normal;
    }

    .gallery-thumbs {
        width: 100%;
        max-width: 100%;
        margin-top: 16px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-thumbs .gallery-thumb {
        flex: 0 0 68px;
        width: 68px;
        height: 68px;
    }

    #shopGrid .no-results {
        grid-column: 1 / -1;
    }

    .cta-banner {
        padding: 48px 0;
    }

    .cta-center h2 {
        margin-bottom: 12px;
    }

    .cta-center p {
        font-size: 0.92rem;
        font-weight: 400;
        line-height: 1.68;
        max-width: 34ch;
        margin: 0 auto;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-brand .logo-img {
        height: 44px;
    }

    .footer h4,
    .footer-contact h4 {
        font-size: 1.04rem;
        line-height: 1.02;
        font-weight: 700;
        letter-spacing: 0.06em;
        margin-bottom: 18px;
    }

    .footer-brand .tagline,
    .footer ul li a,
    .fc-value,
    .footer-bottom {
        font-size: 0.9rem;
        font-weight: 400;
        line-height: 1.6;
    }

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

    .footer-contact {
        width: 100%;
    }

    .footer-contact-item {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }

    .footer-contact-item > div {
        min-width: 0;
    }

    .fc-icon {
        font-size: 16px;
        line-height: 1;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .fc-label {
        font-size: 0.7rem;
        font-weight: 500;
        line-height: 1.25;
        letter-spacing: 0.9px;
    }

    .fc-value {
        overflow-wrap: anywhere;
    }

    .payment-badges,
    .delivery-badges {
        gap: 6px;
    }

    .badge {
        font-size: 0.72rem;
        font-weight: 500;
        line-height: 1.25;
        padding: 6px 10px;
    }

    .footer-bottom {
        margin-top: 36px;
        padding-top: 22px;
    }

    .contact-card {
        padding: 28px 20px;
    }

    .contact-info-grid {
        gap: 18px;
        margin-bottom: 48px;
    }

    .contact-card {
        padding: 24px 18px;
    }

    .cc-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .cc-title {
        font-size: 0.7rem;
        line-height: 1.2;
        letter-spacing: 1.4px;
    }

    .cc-value {
        font-size: clamp(1.22rem, 5.8vw, 1.56rem);
        line-height: 1.08;
        font-weight: 600;
        overflow-wrap: anywhere;
    }

    .cc-action {
        font-size: 0.82rem;
        font-weight: 400;
        line-height: 1.48;
    }

    .payment-section,
    .delivery-section {
        margin-bottom: 48px;
    }

    .payment-section h3,
    .delivery-section h3 {
        margin-bottom: 16px;
        letter-spacing: 0.05em;
    }

    .payment-card {
        padding: 20px 12px;
        font-size: 0.78rem;
        font-weight: 500;
        line-height: 1.48;
    }

    .delivery-card {
        padding: 30px 22px;
        gap: 10px;
    }

    .d-name {
        font-size: clamp(1.5rem, 5.9vw, 1.78rem);
        line-height: 1.05;
        font-weight: 600;
    }

    .d-sub {
        font-size: 0.82rem;
        font-weight: 400;
        line-height: 1.5;
    }

    .trust-card h3,
    .trust-grid h3 {
        font-size: clamp(1.08rem, 4.8vw, 1.28rem) !important;
        line-height: 1.1 !important;
        font-weight: 600 !important;
        text-wrap: balance;
    }

    .trust-grid {
        gap: 14px;
    }

    .trust-card {
        padding: 24px 18px !important;
    }

    .trust-card p,
    .trust-card li,
    .faq-answer,
    .faq-answer p,
    .stats-grid .stat-item > div:last-child {
        font-size: 0.86rem !important;
        font-weight: 400 !important;
        line-height: 1.62 !important;
    }

    .stats-grid .stat-item > div:first-child {
        font-size: clamp(1.68rem, 6.2vw, 2rem) !important;
        line-height: 1.04 !important;
        font-weight: 600 !important;
        letter-spacing: 0.01em !important;
    }

    .faq-section {
        margin-bottom: 48px !important;
    }

    .faq-item {
        border-radius: 14px !important;
        margin-bottom: 12px !important;
    }

    .faq-question {
        font-size: 0.88rem !important;
        font-weight: 500 !important;
        line-height: 1.48 !important;
        padding: 16px 18px !important;
        gap: 12px !important;
    }

    .faq-answer {
        padding: 0 18px !important;
    }

    .cta-section h2 {
        font-size: clamp(1.78rem, 6.5vw, 2.2rem) !important;
        line-height: 1.02 !important;
        margin-bottom: 22px !important;
        text-wrap: balance;
    }
}

/* --- 414px and below --- */
@media (max-width: 414px) {
    .container {
        padding: 0 16px;
    }
    .nav-wrapper {
        min-height: 62px;
        gap: 10px;
    }
    .nav-actions {
        flex: 0 0 38px;
        min-width: 38px;
    }
    .nav-logo {
        max-width: calc(100% - 50px);
    }
    .logo-img-box {
        width: 40px;
        height: 40px;
    }
    .logo-pro {
        font-size: 21px;
    }
    .logo-sports {
        font-size: 8px;
        letter-spacing: 2.4px;
    }
    .site-intro {
        padding: 22px 18px;
    }
    .site-intro-logo-wrap {
        width: 78px;
        height: 78px;
        margin-bottom: 22px;
        border-radius: 20px;
    }
    .site-intro-logo {
        width: 54px;
        height: 54px;
    }
    .site-intro-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.2em;
    }
    .site-intro-title {
        font-size: clamp(2.28rem, 11vw, 3.2rem);
        margin-bottom: 12px;
    }
    .site-intro-text {
        font-size: 0.88rem;
        line-height: 1.62;
        max-width: 28ch;
    }
    .site-intro-skip {
        margin-top: 22px;
        font-size: 0.8rem;
        padding: 9px 16px;
    }
    .promo-banner-slider {
        height: 150px;
    }
    .promo-banner-content h2 {
        font-size: 1.08rem;
    }
    .promo-banner-content p {
        font-size: 0.76rem;
        max-width: 28ch;
    }
    .autoplay-products-track .product-card {
        flex: 0 0 100%;
    }
    .mobile-nav {
        width: 84%;
        max-width: 268px;
        padding: 72px 22px 24px;
        gap: 9px;
    }
    .mobile-nav a {
        font-size: 0.88rem;
        line-height: 1.3;
    }

    .footer {
        padding: 52px 0 26px;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .footer-brand .tagline,
    .footer ul li a,
    .fc-value,
    .footer-bottom {
        font-size: 0.88rem;
    }

    .fc-label,
    .footer-section-title {
        font-size: 0.7rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 5px 9px;
    }

    .hero-banner {
        min-height: 56vh;
    }

    .hero-media {
        height: 56vh;
    }

    .hero-img {
        height: 100%;
        object-position: center 20%;
    }

    .hero-text {
        padding: 0 18px;
    }

    .hero-text h1 {
        font-size: clamp(2.1rem, 9.2vw, 2.9rem);
    }

    .hero-text p {
        font-size: 0.94rem;
    }

    .products-grid {
        gap: 10px;
    }

    .product-card {
        padding: 10px;
    }

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

    .product-card p {
        font-size: 0.78rem;
    }

    .product-card .btn-sm {
        font-size: 0.7rem;
        padding: 9px 6px;
    }

    .categories-section .category-card {
        padding: 24px 14px;
    }

    .categories-section .category-card .category-img-box {
        height: min(50vw, 210px);
    }

    .detail-info h1 {
        font-size: clamp(1.55rem, 6.5vw, 2.05rem);
    }

    .faq-question {
        font-size: 0.86rem !important;
    }

    .why-section h2,
    .faq-section h2,
    .payment-section h3,
    .delivery-section h3,
    .cta-section h2,
    .section-padding > .container > h1 {
        letter-spacing: 0.01em;
    }
}

/* --- 402px and below --- */
@media (max-width: 402px) {
    .hero-banner {
        min-height: 54vh;
    }

    .hero-media {
        height: 54vh;
    }

    .hero-img {
        height: 100%;
        object-position: center 18%;
    }

    .products-grid {
        gap: 9px;
    }

    .hero-text h1 {
        font-size: clamp(1.94rem, 8.2vw, 2.6rem);
    }

    .section-padding > .container > h1,
    .faq-section h2,
    .payment-section h3,
    .delivery-section h3 {
        font-size: clamp(1.52rem, 5.9vw, 1.9rem);
    }

    .contact-card {
        padding: 22px 16px;
    }

    .cc-value {
        font-size: clamp(1.16rem, 5.3vw, 1.46rem);
    }

    .faq-question {
        padding: 15px 16px !important;
    }

    .faq-answer {
        padding: 0 16px !important;
    }

    .product-card p {
        -webkit-line-clamp: 3;
        font-size: 0.76rem;
    }

    .gallery-thumbs .gallery-thumb {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
    }
}

/* --- 375px and below --- */
@media (max-width: 375px) {
    .container {
        padding: 0 14px;
    }
    .nav-wrapper {
        min-height: 60px;
    }
    .nav-actions {
        flex: 0 0 36px;
        min-width: 36px;
    }
    .hamburger {
        width: 38px;
        height: 38px;
    }
    .nav-logo {
        max-width: calc(100% - 46px);
    }
    .logo-img-box {
        width: 38px;
        height: 38px;
    }
    .logo-pro {
        font-size: 20px;
    }
    .mobile-nav {
        width: 85%;
        max-width: 260px;
        padding: 70px 20px 22px;
        gap: 8px;
    }
    .mobile-nav a {
        font-size: 0.84rem;
        letter-spacing: 0.015em;
    }

    .footer-grid {
        gap: 22px;
    }

    .footer-contact-item {
        gap: 8px;
    }

    .footer ul li a,
    .fc-value,
    .footer-bottom {
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .badge {
        font-size: 0.68rem;
        line-height: 1.2;
    }

    .hero-banner {
        min-height: 52vh;
    }

    .hero-media {
        height: 52vh;
    }

    .hero-img {
        height: 100%;
        object-position: 58% 16%;
    }

    .hero-text h1 {
        font-size: clamp(1.86rem, 8vw, 2.42rem);
    }

    .why-section h2,
    .faq-section h2,
    .payment-section h3,
    .delivery-section h3,
    .cta-section h2,
    .section-padding > .container > h1 {
        font-size: clamp(1.46rem, 5.6vw, 1.78rem);
    }

    .contact-info-grid {
        gap: 16px;
    }

    .cc-icon {
        font-size: 34px;
    }

    .cc-value {
        font-size: 1.12rem;
    }

    .faq-question {
        font-size: 0.84rem !important;
        padding: 14px 15px !important;
    }

    .faq-answer {
        padding: 0 15px !important;
    }

    .hero-label,
    .section-label,
    .blue-label {
        font-size: 0.72rem;
    }

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

    .product-card .btn-sm {
        font-size: 0.67rem;
        min-height: 40px;
    }

    .categories-section .category-card h3 {
        font-size: 1.2rem;
    }

    .detail-desc {
        font-size: 0.9rem;
    }

    .detail-info .size-selector .f-tab {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
}

/* --- 320px and below --- */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
    .nav-wrapper {
        min-height: 58px;
        gap: 8px;
    }
    .nav-actions {
        flex: 0 0 34px;
        min-width: 34px;
    }
    .hamburger {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .hamburger span {
        width: 16px;
    }
    .nav-logo {
        max-width: calc(100% - 42px);
        gap: 7px;
    }
    .logo-img-box {
        width: 36px;
        height: 36px;
    }
    .logo-pro {
        font-size: 18px;
        letter-spacing: 1.3px;
    }
    .logo-sports {
        font-size: 7px;
        letter-spacing: 2px;
    }
    .promo-banner-slider {
        height: 140px;
    }
    .promo-banner-content {
        padding: 0 14px;
    }
    .promo-banner-kicker {
        font-size: 0.58rem;
    }
    .promo-banner-content h2 {
        font-size: 0.98rem;
    }
    .promo-banner-content p {
        font-size: 0.72rem;
    }
    .mobile-nav {
        width: 86%;
        max-width: 252px;
        padding: 68px 18px 20px;
        gap: 7px;
    }
    .mobile-nav a {
        font-size: 0.8rem;
        line-height: 1.25;
        letter-spacing: 0.01em;
    }

    .footer {
        padding: 48px 0 24px;
    }

    .footer h4,
    .footer-contact h4 {
        font-size: 0.96rem;
    }

    .footer-brand .logo-img {
        height: 40px;
    }

    .footer-brand .tagline,
    .footer ul li a,
    .fc-value,
    .footer-bottom {
        font-size: 0.84rem;
    }

    .fc-label,
    .footer-section-title {
        font-size: 0.68rem;
        letter-spacing: 0.8px;
    }

    .badge {
        font-size: 0.66rem;
        padding: 5px 8px;
    }

    .hero-banner {
        min-height: 48vh;
    }

    .hero-media {
        height: 48vh;
    }

    .hero-img {
        height: 100%;
        object-position: 60% 14%;
    }

    .hero-text {
        padding: 0 14px;
    }

    .hero-text h1 {
        font-size: 1.72rem;
        line-height: 1;
    }

    .why-section h2,
    .faq-section h2,
    .payment-section h3,
    .delivery-section h3,
    .cta-section h2,
    .section-padding > .container > h1 {
        font-size: 1.34rem;
        line-height: 1.05;
    }

    .contact-card {
        padding: 20px 14px;
    }

    .cc-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .cc-title {
        font-size: 0.66rem;
        letter-spacing: 1.2px;
    }

    .cc-value {
        font-size: 1.04rem;
    }

    .cc-action {
        font-size: 0.78rem;
    }

    .payment-card {
        padding: 18px 10px;
        font-size: 0.74rem;
    }

    .delivery-card {
        padding: 26px 18px;
    }

    .faq-question {
        font-size: 0.82rem !important;
        padding: 13px 14px !important;
    }

    .faq-answer {
        padding: 0 14px !important;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .product-card p {
        -webkit-line-clamp: 3;
        font-size: 0.78rem;
    }

    .product-card .btn-sm {
        font-size: 0.75rem;
    }

    .categories-section .category-card {
        padding: 20px 12px;
    }

    .categories-section .category-card .category-img-box {
        height: 180px;
    }

    .detail-info h1 {
        font-size: 1.45rem;
    }

    .gallery-thumbs .gallery-thumb {
        flex: 0 0 56px;
        width: 56px;
        height: 56px;
    }
}

/* ===== MOBILE NAV FINAL OVERRIDES ===== */
.mobile-nav {
    left: 0 !important;
    right: auto !important;
    transform: translateX(-100%) !important;
    width: min(85vw, 400px) !important;
    max-width: 400px !important;
    padding: 0 !important;
    gap: 0 !important;
}

.mobile-nav.open {
    transform: translateX(0) !important;
}

.mobile-nav .mobile-nav-header {
    display: flex !important;
}

.mobile-nav .mobile-nav-body {
    display: flex !important;
    flex: 1 1 auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow-y: auto !important;
    padding: 16px 18px 24px !important;
    gap: 2px !important;
}

.mobile-nav .mobile-nav-link,
.mobile-nav .mobile-nav-toggle,
.mobile-nav .mobile-nav-sublink {
    opacity: 1 !important;
    transform: none !important;
}

.mobile-nav .mobile-nav-link,
.mobile-nav .mobile-nav-toggle {
    font-size: inherit !important;
    line-height: normal !important;
}

.mobile-nav .mobile-nav-group,
.mobile-nav .mobile-nav-link {
    display: block !important;
    width: 100% !important;
}

.mobile-nav .mobile-nav-title {
    display: block !important;
    color: inherit !important;
}

.mobile-nav .mobile-nav-subtitle,
.mobile-nav .mobile-nav-icon {
    display: none !important;
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 85vw !important;
        max-width: 320px !important;
    }

    .mobile-nav-header {
        padding: 16px 16px 12px;
        gap: 10px;
    }

    .mobile-nav-eyebrow {
        font-size: 0.56rem;
        letter-spacing: 0.16em;
    }

    .mobile-nav-close {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
    }

    .mobile-nav-close span {
        width: 12px;
    }

    .mobile-nav-body {
        padding: 12px 14px 20px !important;
        gap: 2px !important;
    }

    .mobile-nav-link,
    .mobile-nav-toggle {
        padding: 12px 2px;
        border-radius: 0;
    }

    .mobile-nav-title {
        font-size: 0.9rem;
    }

    .mobile-nav-sublink {
        font-size: 0.74rem;
        padding: 8px 0 8px 12px;
    }
}

@media (max-width: 375px) {
    .mobile-nav-title {
        font-size: 0.84rem;
    }

    .mobile-nav-sublink {
        font-size: 0.72rem;
    }
}

@media (max-width: 320px) {
    .mobile-nav-header {
        padding: 14px 14px 10px;
        gap: 8px;
    }

    .mobile-nav-eyebrow {
        font-size: 0.52rem;
        letter-spacing: 0.14em;
    }

    .mobile-nav-close {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }

    .mobile-nav-close span {
        width: 11px;
    }

    .mobile-nav-body {
        padding: 10px 12px 18px !important;
    }

    .mobile-nav-link,
    .mobile-nav-toggle {
        padding: 11px 0;
    }

    .mobile-nav-title {
        font-size: 0.8rem;
    }

    .mobile-nav-sublink {
        font-size: 0.7rem;
    }
}

/* ===== MOBILE HEADER LOGO POSITION OVERRIDES ===== */
@media (max-width: 768px) {
    .nav-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 72px;
    }

    .nav-actions {
        position: relative;
        z-index: 3;
        order: 1;
        flex: 0 0 42px;
        min-width: 42px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .nav-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(100% - 132px);
        max-width: 240px;
        margin: 0;
        padding: 0;
    }

    .logo-img-box {
        width: 100%;
        height: 52px;
        margin: 0;
        border-radius: 14px;
        padding: 4px 10px;
        background: linear-gradient(145deg, #121212, #050505);
        box-shadow:
            0 0 0 1px rgba(204, 0, 0, 0.22),
            0 8px 22px rgba(204, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .logo-img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
        object-position: center;
        padding: 0;
        margin: 0 auto;
        filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.08));
    }
}

@media (max-width: 414px) {
    .nav-wrapper {
        min-height: 68px;
    }

    .nav-actions {
        flex: 0 0 38px;
        min-width: 38px;
    }

    .nav-logo {
        width: calc(100% - 112px);
        max-width: 220px;
    }

    .logo-img-box {
        height: 48px;
        padding: 4px 9px;
    }
}

@media (max-width: 375px) {
    .nav-wrapper {
        min-height: 64px;
    }

    .nav-logo {
        width: calc(100% - 102px);
        max-width: 200px;
    }

    .logo-img-box {
        height: 44px;
        padding: 4px 8px;
        border-radius: 12px;
    }
}

@media (max-width: 320px) {
    .nav-wrapper {
        min-height: 60px;
    }

    .nav-actions {
        flex: 0 0 34px;
        min-width: 34px;
    }

    .nav-logo {
        width: calc(100% - 70px);
        max-width: 200px;
    }

    .logo-img-box {
        height: 40px;
        padding: 4px 7px;
        border-radius: 11px;
    }
}
