
:root {
    --primary-bg: #f8fafc; /* Clean modern luxury off-white */
    --secondary-bg: #ffffff; /* Pure crisp white for cards and modules */
    --accent-color: #0f172a; /* Pure luxury slate-black */
    --accent-hover: #334155;
    --accent-glow: rgba(15, 23, 42, 0.12);
    --text-main: #0f172a; /* Deep rich slate-black for high contrast readability */
    --text-muted: #64748b; /* Refined slate gray */
    --border-color: #e2e8f0; /* Crisp light border */
    --card-bg: #ffffff; /* Pure white card bg */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    font-size: 15px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
    border: 2px solid #f1f5f9;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: #0f172a;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.8rem;
    border-radius: 9999px;
}

.btn-primary {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #0f172a;
    box-shadow: inset 0 0 0 1.5px #0f172a;
}

.btn-outline:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #0f172a;
    border-bottom: 1.5px solid #0f172a;
    padding-bottom: 2px;
}

.btn-link:hover {
    color: #64748b;
    border-color: #64748b;
}

/* ==========================================================================
   FLOATING CAPSULE NAVBAR (DEFAULT: SOLID WHITE CAPSULE ACROSS ALL PAGES)
   ========================================================================== */
header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: transparent !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    padding: 12px 0 !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 9999px;
    padding: 0.65rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Logo Styling (Default: Pure Black) ──────────── */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 36px;
    width: auto;
    filter: brightness(0); /* Pure black text logo by default */
    display: block;
    transition: var(--transition);
}

/* ── Nav Links Styling (Default: Solid Black) ───── */
.nav-links {
    display: flex;
    gap: 2.8rem;
}

.nav-links > li > a {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 800 !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    color: #0f172a !important; /* Black */
    text-shadow: none !important;
    transition: color 0.25s ease;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0f172a;
    transition: var(--transition);
}

.nav-links > li > a:hover::after {
    width: 100%;
}

/* ── Nav Icons Styling (Default: Solid Black) ───── */
.nav-icons {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-icons i {
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #0f172a !important; /* Black */
    font-weight: 800;
    text-shadow: none !important;
}

.nav-icons i:hover {
    transform: scale(1.1);
    color: #64748b !important;
}

/* ── Mobile Menu Toggle ────────────────────────── */
.menu-toggle {
    display: none !important;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0f172a !important; /* Black */
    z-index: 10001;
    transition: color 0.25s ease;
}

/* ── Drop NEW Badge in Nav ─────────────────────── */
#nav-drop-link span {
    background: #0f172a !important;
    color: #ffffff !important;
    transition: all 0.25s ease;
}

/* ── User Pill in Nav Default Styling ──────────── */
.nav-user-pill-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px 5px 7px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 99px;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.25s;
}

.nav-user-pill-wrap .nav-user-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 900;
    flex-shrink: 0;
}

.nav-user-pill-wrap .nav-user-name {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    color: #0f172a;
}

.nav-user-pill-wrap .fa-chevron-down {
    font-size: 0.5rem;
    opacity: 0.7;
    margin-left: 2px;
    transition: transform 0.25s;
    color: #0f172a;
}

/* ==========================================================================
   HOMEPAGE-ONLY ADAPTIVE NAVBAR (TRANSPARENT AT TOP / WHITE PILL ON SCROLL)
   ========================================================================== */
body.home-page header:not(.scrolled),
body:has(.hero) header:not(.scrolled) {
    padding: 20px 0 !important;
}

body.home-page header:not(.scrolled) nav,
body:has(.hero) header:not(.scrolled) nav {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
    padding: 0.75rem 2.2rem !important;
}

body.home-page header:not(.scrolled) .logo img,
body:has(.hero) header:not(.scrolled) .logo img {
    filter: brightness(1) !important; /* Pure white text logo on dark hero */
}

@media (min-width: 769px) {
    body.home-page header:not(.scrolled) .nav-links > li > a,
    body:has(.hero) header:not(.scrolled) .nav-links > li > a {
        color: #ffffff !important;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6) !important;
    }

    body.home-page header:not(.scrolled) .nav-links > li > a::after,
    body:has(.hero) header:not(.scrolled) .nav-links > li > a::after {
        background: #ffffff !important;
    }
}

body.home-page header:not(.scrolled) .nav-icons i,
body:has(.hero) header:not(.scrolled) .nav-icons i {
    color: #ffffff !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6) !important;
}

body.home-page header:not(.scrolled) .nav-icons i:hover,
body:has(.hero) header:not(.scrolled) .nav-icons i:hover {
    color: #cbd5e1 !important;
}

body.home-page header:not(.scrolled) .menu-toggle,
body:has(.hero) header:not(.scrolled) .menu-toggle {
    color: #ffffff !important;
}

body.home-page header:not(.scrolled) #nav-drop-link span,
body:has(.hero) header:not(.scrolled) #nav-drop-link span {
    background: #ffffff !important;
    color: #000000 !important;
}

body.home-page header:not(.scrolled) .nav-user-pill-wrap,
body:has(.hero) header:not(.scrolled) .nav-user-pill-wrap {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px) !important;
}

body.home-page header:not(.scrolled) .nav-user-pill-wrap .nav-user-avatar,
body:has(.hero) header:not(.scrolled) .nav-user-pill-wrap .nav-user-avatar {
    background: #ffffff !important;
    color: #0f172a !important;
}

body.home-page header:not(.scrolled) .nav-user-pill-wrap .nav-user-name,
body:has(.hero) header:not(.scrolled) .nav-user-pill-wrap .nav-user-name {
    color: #ffffff !important;
}

body.home-page header:not(.scrolled) .nav-user-pill-wrap .fa-chevron-down,
body:has(.hero) header:not(.scrolled) .nav-user-pill-wrap .fa-chevron-down {
    color: #ffffff !important;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding-bottom: 8rem;
    background: #03070b;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #03070b;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    display: block;
}

.hero-desktop-video {
    display: block;
}

.hero-mobile-video {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: left;
    max-width: 800px;
    padding-left: 4rem;
}

.hero-logo-large {
    width: 180px;
    margin-bottom: 0.5rem;
}

.hero-content h2 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-content .btn {
    margin-left: 0;
}

/* Scrolling Marquee */
.marquee-wrapper {
    background: #ffffff;
    padding: 0.9rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 2rem 0;
}

.marquee {
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 4rem;
    letter-spacing: 8px;
    opacity: 0.85;
}

.marquee-content .dot {
    width: 5px;
    height: 5px;
    background: #0f172a;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.6;
}

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

/* Sections */
section {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    color: #0f172a;
}

.section-title p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.category-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
}

.category-info h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   VORTEX PREMIUM PRODUCT CARD SYSTEM (CARNAGE-INSPIRED REFINED LUXURY)
   ========================================================================== */

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem 1.6rem;
}

/* Base Product Card */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
}

/* Card Top: Image Area */
.product-card-top {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    background-color: #f1f5f9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.product-card:hover .product-card-top {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.product-img-wrap {
    display: block;
    position: relative;
    width: 100%;
    text-decoration: none;
    color: inherit;
    outline: none;
}

.product-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 0;
    background-color: #f1f5f9;
}

.product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.img-primary {
    opacity: 1;
    z-index: 1;
}

.img-hover {
    opacity: 0;
    z-index: 2;
}

/* Hover Zoom & Crossfade */
.product-card:hover .product-img.has-hover .img-primary {
    opacity: 0;
    transform: scale(1.05);
}

.product-card:hover .product-img.has-hover .img-hover {
    opacity: 1;
    transform: scale(1.05);
}

.product-card:hover .product-img.no-hover .img-primary {
    transform: scale(1.05);
}

/* Status Badges (Top-Left of Image) */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 8;
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 8px;
    border-radius: 0;
    line-height: 1;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.badge-soldout {
    background: rgba(15, 23, 42, 0.92);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.badge-sale {
    background: #e11d48;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(225, 29, 72, 0.35);
}

.badge-new {
    background: #0f172a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-viral {
    background: #1e293b;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Wishlist Heart Button (Top-Right of Image) */
.wishlist-heart-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.2s ease,
                border-color 0.2s ease,
                box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: #0f172a;
    padding: 0;
}

.wishlist-heart-btn i {
    font-size: 0.85rem;
    color: #0f172a;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}

.wishlist-heart-btn:hover {
    transform: scale(1.12);
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.wishlist-heart-btn:active i {
    transform: scale(0.85);
}

/* Product Info Container */
.product-info {
    display: flex;
    flex-direction: column;
    padding: 0.8rem 0.1rem 0;
    box-sizing: border-box;
}

/* Color Swatches */
.product-swatches {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    min-height: 18px;
    flex-wrap: wrap;
}

.swatch-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    box-sizing: border-box;
    display: inline-block;
    flex-shrink: 0;
}

.swatch-dot.swatch-light {
    border-color: rgba(0, 0, 0, 0.35);
}

.swatch-dot:hover {
    transform: scale(1.3);
}

.swatch-dot.active {
    box-shadow: 0 0 0 1.5px #ffffff, 0 0 0 3px #0f172a;
    transform: scale(1.1);
}

.swatch-dot.swatch-soldout,
.color-swatch-dot.swatch-soldout {
    opacity: 0.55;
    position: relative;
    overflow: hidden;
}

.swatch-dot.swatch-soldout::after,
.color-swatch-dot.swatch-soldout::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    width: 140%;
    height: 1.5px;
    background: #ef4444;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) rotate(-45deg);
    pointer-events: none;
}

/* Product Title */
.product-title,
.product-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.35;
    margin: 0 0 4px 0;
    color: #0f172a;
    transition: color 0.2s ease;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.3em;
}

.product-title a,
.product-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-card:hover .product-title,
.product-card:hover .product-title a,
.product-card:hover .product-info h3,
.product-card:hover .product-info h3 a {
    color: #64748b;
}

/* Price Hierarchy */
.product-price-wrap,
.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 2px;
    font-family: 'Inter', sans-serif;
    flex-wrap: wrap;
}

.price-current {
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.5px;
}

.price-original {
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: line-through;
    color: #94a3b8;
}

/* Banner */
.banner {
    background: var(--secondary-bg);
    display: flex;
    align-items: center;
}

.banner-content {
    flex: 1;
    padding: 5rem;
}

.banner-img {
    flex: 1;
    height: 600px;
}

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

/* ==========================================================================
   SHOP BY ACTIVITY SECTION (MODERN LUXURY ATHLETIC GRID)
   ========================================================================== */
.shop-by-activity {
    margin: 6rem auto;
    padding: 0 1.5rem;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.2rem;
}

.activity-title h2 {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0f172a;
    margin: 0;
    line-height: 1;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.activity-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 0; /* Sharp corners */
    background: #0f172a;
    text-decoration: none;
    display: block;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    border-color: #0f172a;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: contrast(1.02);
}

.activity-card:hover img {
    transform: scale(1.06);
}

.activity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.25) 45%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem 1.8rem;
    pointer-events: none;
}

.activity-name {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

@media (max-width: 992px) and (min-width: 769px) {
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

/* Footer */
footer {
    background: #ffffff;
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 2rem;
}

.footer-brand .logo img {
    height: 52px !important;
    width: auto !important;
    filter: brightness(0);
}

/* ── Wishlist Globally Disabled ─────────────── */
.wishlist-heart-btn,
.btn-wishlist,
.wishlist-btn-wrap {
    display: none !important;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-links ul li a:hover {
    color: #0f172a;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #0f172a;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

/* Horizontal Scroll Container */
.horizontal-scroll-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.horizontal-scroll-container::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll-track {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.scroll-controls {
    display: flex;
    gap: 1rem;
}

.scroll-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.scroll-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: scale(1.08);
}

.scroll-btn:active {
    transform: scale(0.9);
}

.horizontal-scroll-track .scroll-item,
.horizontal-scroll-track .category-card-v,
.horizontal-scroll-track .product-card {
    flex: 0 0 calc((100% - 4.5rem) / 4);
    min-width: 250px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    scroll-snap-align: start;
}

.scroll-item,
.category-card-v {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.item-overlay,
.category-info-v {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    backdrop-filter: blur(0px);
    transition: var(--transition);
}

.scroll-item:hover .item-overlay,
.category-card-v:hover .category-info-v {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.25) 100%);
    backdrop-filter: blur(4px);
}

.item-overlay h3,
.category-info-v h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-bottom: 0.5rem;
}

.item-overlay h3::after,
.category-info-v h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffffff;
    transition: var(--transition);
}

.scroll-item:hover .item-overlay h3::after,
.category-card-v:hover .category-info-v h3::after {
    width: 100%;
}

.promo-banner {
    padding: 5rem 0;
    background: linear-gradient(rgba(248, 250, 252, 0.85), rgba(248, 250, 252, 0.85)), url('better banner.jpeg') right center / contain no-repeat;
    background-color: #f1f5f9;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 4rem 0;
        background-position: center center;
    }
}

.promo-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.promo-content {
    text-align: left;
}

.promo-content h2 {
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-family: 'Bebas Neue', sans-serif;
    color: #0f172a;
    line-height: 1;
}

/* Enhanced Footer */
.social-links-v2 {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links-v2 a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    color: var(--text-muted);
    background: #f8fafc;
}

.social-links-v2 a:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.mobile-nav-left {
    display: none;
}

/* Responsive Enhancements */
/* Responsive Enhancements */
@media (max-width: 768px) {
    header {
        padding: 10px 0 !important;
    }

    body.home-page header:not(.scrolled) {
        padding: 14px 0 !important;
    }

    body.home-page header:not(.scrolled) nav {
        padding: 0.5rem 1.1rem !important;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 0.5rem;
        border-radius: 9999px;
        padding: 0.5rem 1.1rem;
    }

    .mobile-nav-left {
        display: flex !important;
        align-items: center;
        gap: 1rem;
        flex: 1;
        justify-content: flex-start;
    }

    .mobile-nav-left i {
        font-size: 1.15rem;
        cursor: pointer;
        color: #0f172a;
    }

    .logo {
        flex: 1.2;
        display: flex;
        justify-content: center;
        align-items: center;
        position: static;
        transform: none;
        text-align: center;
    }

    .logo img {
        height: 32px !important;
        width: auto !important;
        display: block;
        margin: 0 auto;
    }

    .nav-icons {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 1rem;
    }

    .nav-icons .search-btn {
        display: none !important;
    }

    .nav-user-pill-wrap {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .nav-user-pill-wrap .nav-user-avatar {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.65rem !important;
    }

    .nav-user-name,
    #nav-user-link .fa-chevron-down {
        display: none !important;
    }

    .left-group,
    .right-group {
        display: none !important;
    }

    .menu-toggle {
        display: block !important;
        font-size: 1.25rem;
        cursor: pointer;
        color: #0f172a !important;
        z-index: 3001;
        position: relative;
    }

    /* Hide standard desktop nav-links on mobile as mobile drawer takes over */
    .nav-links {
        display: none !important;
    }

    /* Activities Horizontal Carousel on Mobile */
    .shop-by-activity {
        margin: 3.5rem auto 2.5rem !important;
        padding: 0 1.25rem !important;
    }

    .activity-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem !important;
        padding: 0.5rem 0.2rem 1.2rem !important;
    }

    .activity-grid::-webkit-scrollbar {
        display: none !important;
    }

    .activity-card {
        flex: 0 0 75vw !important;
        max-width: 290px !important;
        min-width: 240px !important;
        height: 380px !important;
        scroll-snap-align: start;
        border-radius: 18px !important;
    }

    .activity-name {
        font-size: 1.8rem !important;
    }

    .scroll-controls {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .btn-link {
        margin-right: 0.5rem !important;
        font-size: 0.7rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        height: 100svh;
        padding-bottom: 6rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-bg video {
        object-position: center;
    }

    .hero-desktop-video {
        display: none;
    }

    .hero-mobile-video {
        display: block;
    }

    .hero-content {
        padding: 0 1.5rem;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-logo-large {
        display: block;
        width: 130px;
        margin-bottom: 1.5rem;
        opacity: 0.95;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 5px;
    }

    .hero-content h2 {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }

    .marquee-content span {
        font-size: 0.8rem;
        padding: 0 2rem;
        letter-spacing: 5px;
    }

    .horizontal-scroll-track .scroll-item,
    .horizontal-scroll-track .category-card-v {
        flex: 0 0 calc((100% - 1rem) / 2);
        min-width: 150px;
    }

    .horizontal-scroll-track .product-card {
        flex: 0 0 calc((100% - 0.8rem) / 2);
        min-width: 140px;
    }

    .horizontal-scroll-track {
        gap: 0.8rem;
    }

    .item-overlay h3,
    .category-info-v h3 {
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding-bottom: 0.3rem;
    }

    .item-overlay h3::after,
    .category-info-v h3::after {
        display: none;
    }

    .product-card-top {
        border-radius: 0;
    }

    .wishlist-heart-btn {
        width: 30px;
        height: 30px;
        top: 8px;
        right: 8px;
    }

    .wishlist-heart-btn i {
        font-size: 0.75rem;
    }

    .product-badge {
        top: 8px;
        left: 8px;
        font-size: 0.52rem;
        padding: 3px 6px;
        letter-spacing: 1px;
        border-radius: 0;
    }

    .product-info {
        padding: 0.6rem 0 0;
    }

    .product-swatches {
        gap: 5px;
        margin-bottom: 4px;
        min-height: 14px;
    }

    .swatch-dot {
        width: 12px;
        height: 12px;
    }

    .product-title,
    .product-info h3 {
        font-size: 0.78rem;
        letter-spacing: 0.5px;
        min-height: 2.2em;
        line-height: 1.3;
        margin-bottom: 3px;
    }

    .product-price-wrap,
    .product-price {
        gap: 6px;
    }

    .price-current {
        font-size: 0.82rem;
    }

    .price-original {
        font-size: 0.72rem;
    }

    .promo-content h2 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        gap: 1.5rem;
    }

    .banner-content {
        padding: 3rem 1.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0.8rem;
    }

    .shop-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .filters {
        display: none;
    }
}

/* ===== DROP TEASER STRIP ===== */
.drop-teaser-strip {
    background: #ffffff;
    color: var(--text-main);
    padding: 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.drop-teaser-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.03), transparent);
    animation: teaserSheen 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes teaserSheen {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.drop-teaser-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.drop-teaser-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.teaser-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.teaser-live-dot {
    width: 8px;
    height: 8px;
    background: #0f172a;
    border-radius: 50%;
    flex-shrink: 0;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.5);
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.5);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(15, 23, 42, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(15, 23, 42, 0);
    }
}

.teaser-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 5px;
    line-height: 1;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

.drop-teaser-countdown {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.mini-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    min-width: 60px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.mini-block:hover {
    border-color: #0f172a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.mini-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #0f172a;
    line-height: 1;
    letter-spacing: 1px;
}

.mini-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.5rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.mini-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: #cbd5e1;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.teaser-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #0f172a;
    color: #ffffff;
    padding: 0.85rem 1.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.teaser-cta-btn i {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}

.teaser-cta-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.teaser-cta-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .drop-teaser-inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 1.2rem;
        padding: 1.5rem 1.5rem;
    }

    .drop-teaser-left {
        align-items: center;
        width: 100%;
    }

    .teaser-title {
        max-width: 100%;
        font-size: 1.5rem;
    }

    .mini-block {
        min-width: 50px;
        padding: 0.5rem 0.7rem;
    }

    .mini-num {
        font-size: 1.4rem;
    }

    .teaser-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════
   PREMIUM STORE MEGA DROPDOWN (LUXURY STREETWEAR LOOK)
   ═══════════════════════════════════════════════════ */
.has-mega-menu {
    position: static !important;
}

.mega-menu-wrapper {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(1140px, 94vw);
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 2.2rem 2.8rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
}

/* Invisible bridge so mouse hover doesn't break between nav and mega menu */
.mega-menu-wrapper::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    height: 25px;
}

.has-mega-menu:hover .mega-menu-wrapper,
.mega-menu-wrapper:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-caret {
    font-size: 0.58rem;
    margin-left: 5px;
    transition: transform 0.25s ease;
    vertical-align: middle;
    opacity: 0.85;
}

.has-mega-menu:hover .nav-caret {
    transform: rotate(180deg);
}

.mega-menu-container {
    display: grid;
    grid-template-columns: 170px 200px 1.4fr 1.4fr;
    gap: 2.2rem;
    align-items: stretch;
}

.mega-col-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #0f172a !important;
    margin: 0 0 1rem 0 !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 2px solid #0f172a !important;
    text-shadow: none !important;
}

.mega-link-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.45rem !important;
}

.mega-link-list li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mega-link-list li a {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.86rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    text-decoration: none !important;
    display: inline-block !important;
    padding: 0.25rem 0 !important;
    letter-spacing: 0.3px !important;
    text-transform: capitalize !important;
    text-shadow: none !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mega-link-list li a:hover {
    color: #000000 !important;
    font-weight: 800 !important;
    transform: translateX(5px) !important;
}

.mega-link-list li a::after {
    display: none !important;
}

/* Visual Image Cards */
.mega-col-card {
    display: flex;
    height: 100%;
}

.mega-image-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #0f172a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.mega-image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    border-color: #0f172a;
}

.mega-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-image-card:hover img {
    transform: scale(1.06);
}

.mega-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.35) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}

.mega-card-title {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

.mega-image-card:hover .mega-card-title {
    transform: scale(1.04);
}

@media (max-width: 992px) {
    .mega-menu-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .mega-col-card {
        min-height: 160px;
    }
}

@media (max-width: 768px) {
    .mega-menu-wrapper {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .nav-mega-dropdown,
    .nav-mega-overlay {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   CATEGORY POPUP MODAL (LIGHT THEME)
   ═══════════════════════════════════════════════════════════ */
.cat-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 100001;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-popup-overlay.cat-popup-visible {
    opacity: 1;
    visibility: visible;
}

.cat-popup-modal {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-popup-overlay.cat-popup-visible .cat-popup-modal {
    transform: translateY(0) scale(1);
}

.cat-popup-close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    color: #0f172a;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
}

.cat-popup-close:hover {
    background: #0f172a;
    color: #ffffff;
    transform: rotate(90deg) scale(1.1);
}

.cat-popup-image-wrap {
    position: relative;
    flex: 0 0 42%;
    min-height: 420px;
    overflow: hidden;
    background: #f1f5f9;
}

.cat-popup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-popup-overlay.cat-popup-visible .cat-popup-img {
    transform: scale(1.04);
}

.cat-popup-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.35) 0%,
            transparent 60%);
}

.cat-popup-img-badge {
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 99px;
}

.cat-popup-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2.8rem 2.2rem 2.2rem;
    gap: 1.8rem;
    overflow-y: auto;
    scrollbar-width: none;
}

.cat-popup-body::-webkit-scrollbar {
    display: none;
}

.cat-popup-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cat-popup-eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.cat-popup-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0f172a;
    line-height: 1.1;
}

.cat-popup-shop-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.4rem;
    background: #0f172a;
    color: #ffffff;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.cat-popup-shop-all-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cat-popup-shop-all-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.cat-popup-shop-all-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .cat-popup-modal {
        flex-direction: column;
        max-height: 85vh;
        border-radius: 20px;
        width: 92%;
        margin: 0 auto;
    }

    .cat-popup-image-wrap {
        flex: 0 0 180px;
        min-height: 180px;
    }

    .cat-popup-body {
        padding: 1.5rem 1.2rem 1.2rem;
        gap: 1.2rem;
    }

    .cat-popup-title {
        font-size: 1.6rem;
    }
}

/* ═══════════════════════════════════════════════
   PRE-ORDERS HOME SECTION & COLORFUL CARD STYLES
═══════════════════════════════════════════════ */
.pre-orders-section {
    margin-top: 5rem;
    margin-bottom: 6rem;
    position: relative;
}

.preorder-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(236, 72, 153, 0.12) 100%);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #7c3aed;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 0.8rem;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.12);
}

.pre-orders-section #preorder-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #0f172a;
    line-height: 1.1;
    margin: 0;
}

.preorder-section-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    margin-top: 8px;
    max-width: 580px;
    line-height: 1.5;
}

.product-badge.badge-preorder {
    background: linear-gradient(135deg, #7c3aed 0%, #d946ef 50%, #ec4899 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.4);
    border: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.product-card.preorder-card {
    border: 1.5px solid rgba(168, 85, 247, 0.2);
    background: #ffffff;
    border-radius: 14px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.product-card.preorder-card:hover {
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 14px 35px rgba(124, 58, 237, 0.15);
    transform: translateY(-4px);
}

.preorder-card-shipdate {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
    padding: 3px 9px;
    border-radius: 6px;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

/* ═══════════════════════════════════════════════════════════
/* ═══════════════════════════════════════════════════════════
   PREMIUM LUXURY WHITE MOBILE NAVIGATION DRAWER (VORTEX)
   ═══════════════════════════════════════════════════════════ */

/* ── Fullscreen Backdrop Overlay ─────────────────────────── */
#vortex-mobile-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#vortex-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ── Mobile Side Drawer Container (Sliding from Left) ───── */
#vortex-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 88vw;
    max-width: 390px;
    min-width: 290px;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(239, 68, 68, 0.04) 0%, transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-right: 1px solid #e2e8f0;
    box-shadow: 25px 0 60px rgba(15, 23, 42, 0.14), 0 0 25px rgba(15, 23, 42, 0.04);
    z-index: 99999;
    transform: translateX(-100%);
    visibility: hidden;
    will-change: transform;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}

#vortex-mobile-drawer.active {
    transform: translateX(0);
    visibility: visible;
}

/* Background Oversized Fashion Brand Typography Watermark */
.vortex-drawer-watermark {
    position: absolute;
    right: -10px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    opacity: 0.035;
    line-height: 0.78;
}

.vortex-drawer-watermark span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6.8rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: #0f172a;
    text-transform: uppercase;
}

.vortex-drawer-watermark small {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 7px;
    color: #0f172a;
    margin-top: 6px;
    margin-right: 4px;
}

/* Scrollable Container Inside Drawer */
.vortex-drawer-scroll {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: calc(env(safe-area-inset-top, 0px) + 1.4rem) 1.6rem calc(env(safe-area-inset-bottom, 0px) + 1.8rem);
    box-sizing: border-box;
}

.vortex-drawer-scroll::-webkit-scrollbar {
    display: none;
}

/* ── Drawer Header (Logo + Minimal Close Button) ────────── */
.vortex-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 0.6rem;
    flex-shrink: 0;
}

.vortex-drawer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.vortex-drawer-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0); /* Pure crisp black logo */
    display: block;
}

.vortex-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.vortex-drawer-close:hover,
.vortex-drawer-close:active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
    transform: rotate(90deg) scale(1.06);
}

/* ── Editorial Navigation List & Sequential Animations ──── */
.vortex-drawer-nav {
    display: flex !important;
    flex-direction: column !important;
    margin-top: 0.3rem !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    width: 100% !important;
}

.vortex-drawer-nav ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.vortex-drawer-item {
    border-bottom: 1px solid #f1f5f9;
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent !important;
}

/* Staggered sequential entry animation */
#vortex-mobile-drawer.active .vortex-drawer-item:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.07s;
}
#vortex-mobile-drawer.active .vortex-drawer-item:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.13s;
}
#vortex-mobile-drawer.active .vortex-drawer-item:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.19s;
}
#vortex-mobile-drawer.active .vortex-drawer-item:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
}
#vortex-mobile-drawer.active .vortex-drawer-item:nth-child(5) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.31s;
}
#vortex-mobile-drawer.active .vortex-drawer-bottom {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.33s;
}

/* Link Row Container */
.vortex-drawer-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.vortex-drawer-link {
    display: flex;
    align-items: center;
    padding: 1.05rem 0;
    text-decoration: none;
    flex: 1;
    color: #0f172a;
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 3px;
    line-height: 1;
    text-transform: uppercase;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
}

.vortex-drawer-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-right: 0.9rem;
    width: 22px;
    flex-shrink: 0;
    transition: color 0.22s ease;
}

.vortex-drawer-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active Page Indicator Dot */
.vortex-drawer-active-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
    display: none;
    margin-left: auto;
    margin-right: 6px;
    flex-shrink: 0;
}

.vortex-drawer-item.active .vortex-drawer-active-dot {
    display: block;
}

.vortex-drawer-item.active .vortex-drawer-link {
    color: #000000;
}

.vortex-drawer-item.active .vortex-drawer-num {
    color: #ef4444;
}

/* Hover & Tap Interaction */
.vortex-drawer-link:hover,
.vortex-drawer-link:active {
    color: #000000;
}

.vortex-drawer-link:hover .vortex-drawer-text,
.vortex-drawer-link:active .vortex-drawer-text {
    transform: translateX(6px);
}

.vortex-drawer-link:hover .vortex-drawer-num,
.vortex-drawer-link:active .vortex-drawer-num {
    color: #ef4444;
}

/* DROP "NEW" Badge */
.vortex-drawer-badge {
    background: #0f172a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.52rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 2px 7px;
    border-radius: 99px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}

/* ── STORE Collapsible Accordion Submenu ────────── */
.vortex-accordion-toggle {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
}

.vortex-accordion-toggle i {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vortex-accordion-toggle.expanded {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.vortex-accordion-toggle.expanded i {
    transform: rotate(45deg);
}

.vortex-accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease,
                padding 0.3s ease;
}

.vortex-accordion-content.expanded {
    max-height: 680px;
    opacity: 1;
    padding-bottom: 1.2rem;
}

.vortex-submenu-box {
    margin-top: 0.4rem;
    margin-bottom: 0.6rem;
    padding: 1rem 1.2rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    border-left: 3px solid #0f172a;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.vortex-sub-group-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #64748b;
    margin-bottom: 0.45rem;
}

.vortex-sub-group-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vortex-sub-group-links li a {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.vortex-sub-group-links li a:hover,
.vortex-sub-group-links li a:active {
    color: #0f172a;
    font-weight: 800;
    transform: translateX(4px);
}

/* ── Bottom Utility Section ────────────────────── */
.vortex-drawer-bottom {
    margin-top: auto;
    padding-top: 1.4rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.vortex-drawer-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.vortex-drawer-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0.75rem 0.4rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
}

.vortex-drawer-pill i {
    font-size: 0.95rem;
    color: #0f172a;
    transition: transform 0.22s ease, color 0.22s ease;
}

.vortex-drawer-pill span {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.vortex-drawer-pill:hover,
.vortex-drawer-pill:active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.vortex-drawer-pill:hover i,
.vortex-drawer-pill:active i {
    transform: scale(1.12);
    color: #ffffff;
}

/* Social Icons Row */
.vortex-drawer-socials {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.vortex-drawer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.22s ease;
    -webkit-tap-highlight-color: transparent;
}

.vortex-drawer-social-btn:hover,
.vortex-drawer-social-btn:active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
    transform: scale(1.1);
}

/* Footer Tagline Branding */
.vortex-drawer-tagline {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 0.2rem;
}

.vortex-drawer-tagline .brand-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #0f172a;
    text-transform: uppercase;
}

.vortex-drawer-tagline .brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #94a3b8;
    text-transform: uppercase;
}

/* ── Desktop Hide Safeguard ────────────────────── */
@media (min-width: 769px) {
    #vortex-mobile-overlay,
    #vortex-mobile-drawer {
        display: none !important;
    }
}

/* ── High-Performance Skeleton Loading Placeholders ── */
@keyframes vortexShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton-card {
    border-color: rgba(255, 255, 255, 0.05) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.skeleton-card .product-card-top {
    overflow: hidden;
    position: relative;
}


