/* ============================================
   KALAMARI | Streetwear — Weird Is The New Normal
   Dark Mode + Red + Black + White
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    /* Backgrounds */
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --bg-card: #111111;
    --bg-card-hover: #161616;
    --bg-surface: #1A1A1A;
    --bg-elevated: #1E1E1E;

    /* Brand Colors */
    --red: #E52020;
    --red-dark: #B91C1C;
    --red-light: #FF3333;
    --red-glow: rgba(229, 32, 32, 0.3);

    /* Text */
    --text-white: #FFFFFF;
    --text-primary: #F5F5F5;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;
    --text-dark: #0A0A0A;

    /* Accents */
    --gold: #C8A55C;
    --green: #22C55E;

    /* Gradients */
    --gradient-red: linear-gradient(135deg, #E52020, #B91C1C);
    --gradient-dark: linear-gradient(135deg, #111111 0%, #1A1A1A 100%);
    --gradient-card: linear-gradient(145deg, #141414 0%, #0F0F0F 100%);
    --gradient-hero: linear-gradient(135deg, #E52020 0%, #FF3333 50%, #E52020 100%);

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-red: rgba(229, 32, 32, 0.3);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-red: 0 8px 30px rgba(229, 32, 32, 0.25);
    --shadow-glow: 0 0 40px rgba(229, 32, 32, 0.15);

    /* Fonts */
    --font-display: 'Syne', 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Grotesk', sans-serif;

    /* Easing */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
    line-height: 1.65;
}

::selection {
    background: var(--red);
    color: var(--text-white);
}

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

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

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

/* ---------- SHARED TYPOGRAPHY ---------- */
.section-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    color: var(--red);
}

.section-tag.gradient {
    color: var(--red);
}

.section-tag.light {
    color: var(--red-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.08;
}

.section-title em {
    font-style: normal;
    color: var(--red);
}

.section-title.light {
    color: var(--text-white);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.7;
    margin-top: 16px;
}

.section-subtitle.light {
    color: var(--text-secondary);
}

.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-header.split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.gradient-text {
    color: var(--red);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    padding: 16px 36px;
    border: none;
    border-radius: 100px;
    transition: var(--transition);
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-red);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(229, 32, 32, 0.4);
    background: var(--red-light);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    padding: 14px 34px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    transition: var(--transition);
    text-transform: uppercase;
    cursor: pointer;
    color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-white);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-white);
    color: var(--text-dark);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    padding: 16px 36px;
    border: none;
    border-radius: 100px;
    transition: var(--transition);
    text-transform: uppercase;
    cursor: pointer;
}

.btn-dark:hover {
    background: var(--red);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.view-all {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06rem;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 100px;
    border: 1.5px solid var(--border-light);
    transition: var(--transition);
}

.view-all:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(229, 32, 32, 0.06);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
    max-width: 1400px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    padding: 0;
    overflow: visible;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
    top: 10px;
    border-radius: 16px;
}

.nav-inner {
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.nav-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-logo video {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
    background: #fff;
}

.nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: #3a3a6e;
    padding: 12px 26px;
    border-radius: 12px;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.nav-links a:hover {
    color: #1a1a4e;
    background: rgba(58, 58, 110, 0.06);
}

.nav-links a.active {
    color: #FFFFFF;
    background: #3a3a6e;
    border: 2px solid var(--gold);
    box-shadow: 0 2px 12px rgba(58, 58, 110, 0.25);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-icon-btn {
    color: #3a3a6e;
    font-size: 1.15rem;
    padding: 8px;
    transition: var(--transition);
    position: relative;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-btn:hover {
    color: var(--red);
    background: rgba(229, 32, 32, 0.08);
}

.cart-btn::after {
    content: attr(data-count);
    position: absolute;
    top: 4px; right: 4px;
    background: var(--red);
    color: var(--text-white);
    font-size: 0.55rem;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-mono);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    z-index: 1001;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: #3a3a6e;
    transition: var(--transition);
    border-radius: 2px;
}

/* ---------- 3. HERO ---------- */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(40px) scale(0.97); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-slide-content {
    animation: fadeInUp 0.8s ease-out 1.8s both;
}

.page-hero .container,
.about-hero-text {
    animation: fadeInUp 0.8s ease-out 1.8s both;
}

.about-hero-grid .story-image {
    animation: fadeInRight 0.9s ease-out 2s both;
}

.hero {
    position: relative;
    min-height: 100dvh;
    overflow: hidden;
    background: var(--bg-darker);
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100dvh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.08);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg img {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
}

/* --- Hero Text (shared) --- */
.hero-badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-badge {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.06);
}

.hero-badge.accent {
    background: var(--red);
    border: none;
    color: var(--text-white);
    box-shadow: var(--shadow-red);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 7.5rem);
    line-height: 0.92;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 28px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-title em {
    font-style: normal;
    color: var(--red);
}

.title-line {
    display: block;
    overflow: hidden;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 44px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-outline.light {
    border-color: rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
}

.btn-outline.light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* --- Slider Navigation Dots --- */
.hero-slider-nav {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.2);
}

.hero-dot:hover {
    border-color: #FFFFFF;
}

/* --- Slider Arrows --- */
.hero-slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.hero-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.hero-arrow:hover {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1);
}

.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 24px 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat span {
    display: block;
}

.hero-stat .stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.hero-stat .stat-lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ---------- 4. TICKER ---------- */
.ticker {
    background: var(--bg-surface);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.ticker.gradient {
    background: var(--red);
    border-color: var(--red);
}

.ticker-track {
    display: flex;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: tickerScroll 22s linear infinite;
}

.ticker-content span {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.18rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
}

.ticker-star {
    font-size: 0.55rem !important;
    opacity: 0.5;
}

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

/* ---------- 5. SHOP THE LOOK ---------- */
.shop-look {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.look-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.look-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid var(--border-subtle);
}

.look-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.look-img {
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-surface);
    position: relative;
}

.look-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

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

.look-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15rem;
    font-weight: 600;
    padding: 8px 18px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    color: var(--text-white);
    border: 1px solid var(--border-light);
}

.look-info {
    padding: 28px 24px;
}

.look-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.look-items { margin-bottom: 16px; }

.look-items li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.look-items li span:last-child {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--text-white);
}

.look-total {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1rem;
}

.look-total span:first-child {
    color: var(--text-white);
}

/* ---------- 6. CATEGORY PILLS ---------- */
.category-pills {
    padding: 0 0 80px;
    background: var(--bg-dark);
    overflow-x: auto;
    position: relative;
    z-index: 2;
}

.pills-track {
    display: flex;
    gap: 10px;
    padding: 0 32px;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 1280px;
    margin: 0 auto;
}

.pills-track::-webkit-scrollbar { display: none; }

.pill {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04rem;
    padding: 11px 24px;
    border: 1.5px solid var(--border-light);
    border-radius: 100px;
    color: var(--text-secondary);
    transition: var(--transition);
    white-space: nowrap;
}

.pill:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(229, 32, 32, 0.06);
}

.pill.active {
    background: var(--red);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: var(--shadow-red);
}

/* ---------- 7. BEST SELLERS ---------- */
.best-sellers {
    padding: 100px 0 120px;
    background: var(--bg-darker);
    position: relative;
    z-index: 2;
}

.best-sellers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
    z-index: 0;
}

.best-sellers .container {
    position: relative;
    z-index: 1;
}

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

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid var(--border-subtle);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-surface);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.wishlist-btn {
    position: absolute;
    top: 12px; right: 12px;
    width: 38px; height: 38px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
}

.wishlist-btn i {
    font-size: 0.9rem;
    color: var(--text-white);
    transition: var(--transition);
}

.wishlist-btn:hover {
    transform: scale(1.1);
    background: var(--red);
    border-color: var(--red);
}

.wishlist-btn:hover i {
    color: var(--text-white);
}

.wishlist-btn.active {
    background: var(--red);
    border-color: var(--red);
}

.wishlist-btn.active i {
    color: var(--text-white);
}

.product-badge {
    position: absolute;
    top: 12px; left: 12px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06rem;
    padding: 6px 14px;
    z-index: 2;
    border-radius: 100px;
    color: var(--text-white);
}

.product-badge.hot { background: var(--red); }
.product-badge.new { background: var(--text-white); color: var(--text-dark); }
.product-badge.sale { background: var(--red); }
.product-badge.limited { background: var(--text-white); color: var(--text-dark); }

.add-to-bag {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    padding: 12px;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
    z-index: 2;
}

.product-card:hover .add-to-bag,
.drop-card:hover .add-to-bag {
    transform: translateY(0);
}

.btn-add-bag {
    width: 100%;
    background: var(--red);
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    padding: 13px;
    border: none;
    border-radius: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-bag:hover {
    background: var(--red-light);
    box-shadow: var(--shadow-red);
}

.product-info {
    padding: 16px 16px 20px;
}

.product-info h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 4px;
}

.product-price {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.product-price-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price-old {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin: 0;
}

/* ---------- 8. EDITORIAL BANNER ---------- */
.editorial-banner {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-darker);
    z-index: 2;
}

.editorial-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    will-change: transform;
}

.editorial-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(229, 32, 32, 0.15));
    z-index: 1;
}

.editorial-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.editorial-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.35rem;
    color: var(--red);
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
}

.editorial-content h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 0.95;
    margin-bottom: 36px;
}

.editorial-content h2 em {
    font-style: normal;
    color: var(--red);
}

/* ---------- 9. NEW DROPS ---------- */
.new-drops {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.drops-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    color: var(--red);
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--border-red);
    background: rgba(229, 32, 32, 0.08);
}

.live-dot {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

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

.drop-large { grid-column: span 2; }
.drop-large .product-img { aspect-ratio: 4/5; }
.drop-small .product-img { aspect-ratio: 3/4; }

.drop-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid var(--border-subtle);
}

.drop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.drop-card:hover .product-img img {
    transform: scale(1.08);
}

/* ---------- 10. BRAND STORY ---------- */
.brand-story {
    padding: 120px 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.brand-story::before {
    content: '';
    position: absolute;
    top: -30%; right: -20%;
    width: 60%; height: 100%;
    background: radial-gradient(circle, rgba(229, 32, 32, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.brand-story::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -15%;
    width: 50%; height: 80%;
    background: radial-gradient(circle, rgba(229, 32, 32, 0.04) 0%, transparent 70%);
    z-index: 0;
}

.brand-story .container {
    position: relative;
    z-index: 1;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 80px;
}

.story-image {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
}

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

.story-content {
    max-width: 500px;
}

.story-text {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-top: 20px;
}

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

.stat {
    text-align: center;
    padding: 36px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-light);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--red);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-secondary);
    letter-spacing: 0.05rem;
}

/* ---------- 11. REVIEWS ---------- */
.reviews {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
}

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

.review-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: var(--transition-slow);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.review-stars { margin-bottom: 16px; }

.review-stars i {
    color: #F59E0B;
    font-size: 0.88rem;
}

.review-card > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px; height: 44px;
    background: var(--red);
    color: var(--text-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-author h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2px;
}

.review-author span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.review-author span i {
    color: var(--green);
    margin-right: 3px;
}

/* ---------- 12. INSTAGRAM UGC ---------- */
.instagram-ugc {
    padding: 120px 0 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 2;
}

.instagram-ugc .section-header { padding: 0 32px; }

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-top: 48px;
}

.ugc-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-surface);
}

.ugc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.ugc-item:hover img {
    transform: scale(1.1);
}

.ugc-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(229, 32, 32, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ugc-item:hover .ugc-overlay { opacity: 1; }

.ugc-overlay i {
    color: var(--text-white);
    font-size: 1.3rem;
}

.ugc-overlay span {
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
}

/* ---------- 13. NEWSLETTER ---------- */
.newsletter {
    padding: 120px 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 2;
}

.newsletter-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 72px 48px;
    border-radius: 32px;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(229, 32, 32, 0.08) 0%, transparent 70%);
}

.newsletter-box::after {
    content: '';
    position: absolute;
    bottom: -40%; left: -20%;
    width: 50%; height: 100%;
    background: radial-gradient(circle, rgba(229, 32, 32, 0.05) 0%, transparent 70%);
}

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

.newsletter-emoji {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 20px;
}

.newsletter-box h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.newsletter-box h2 em {
    font-style: normal;
    color: var(--red);
}

.newsletter-box > p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
    border-radius: 100px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form .btn-primary {
    flex-shrink: 0;
    border-radius: 100px;
    padding: 16px 28px;
    font-size: 0.72rem;
}

.newsletter-note {
    display: block;
    margin-top: 16px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ---------- 14. FOOTER ---------- */
.site-footer {
    background: var(--bg-darker);
    padding: 80px 0 0;
    color: var(--text-white);
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px; height: 42px;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(229, 32, 32, 0.1);
    transform: translateY(-3px);
}

.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-white);
}

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

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--text-white);
    padding-left: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    margin-top: 60px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-methods span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    color: var(--text-muted);
    padding: 5px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
}

/* ---------- PREMIUM EFFECTS ---------- */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.product-card:hover,
.drop-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(229, 32, 32, 0.1);
}

.look-card:hover {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.shop-look::after,
.best-sellers::after,
.new-drops::after,
.reviews::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 2px;
    background: var(--red);
    border-radius: 2px;
    opacity: 0.3;
}

.shop-look,
.best-sellers,
.new-drops,
.reviews {
    position: relative;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 50px; height: 50px;
    background: var(--red);
    border: none;
    border-radius: 16px;
    color: var(--text-white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-red);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(229, 32, 32, 0.5);
}

/* ============================================
   PAGE: SHOP
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    background: var(--bg-darker);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%; left: -20%;
    width: 70%; height: 130%;
    background: radial-gradient(circle, rgba(229, 32, 32, 0.08) 0%, transparent 50%);
    animation: floatShape 8s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%; right: -15%;
    width: 60%; height: 100%;
    background: radial-gradient(circle, rgba(229, 32, 32, 0.05) 0%, transparent 50%);
    animation: floatShape 10s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .section-title {
    color: var(--text-white);
}

.page-hero .section-subtitle {
    color: var(--text-secondary);
}

.page-hero .section-tag {
    color: var(--red);
}

.page-hero .section-tag.gradient {
    color: var(--red);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb i {
    font-size: 0.6rem;
}

/* Shop Filters */
.shop-filters {
    padding: 40px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 70px;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.9);
}

.filters-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 10px 22px;
    border: 1.5px solid var(--border-light);
    border-radius: 100px;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
}

.filter-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.filter-btn.active {
    background: var(--red);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: var(--shadow-red);
}

.sort-select {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    padding: 10px 20px;
    border: 1.5px solid var(--border-light);
    border-radius: 100px;
    background: var(--bg-card);
    color: var(--text-secondary);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.sort-select:hover {
    border-color: var(--red);
}

.shop-products {
    padding: 48px 0 120px;
    background: var(--bg-dark);
}

.products-count {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Shop CTA Banner */
.shop-cta-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    padding: 64px 48px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.shop-cta-banner::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(229, 32, 32, 0.08) 0%, transparent 60%);
}

.shop-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -15%;
    width: 50%; height: 100%;
    background: radial-gradient(circle, rgba(229, 32, 32, 0.05) 0%, transparent 60%);
}

.shop-cta-banner > * {
    position: relative;
    z-index: 1;
}

.shop-cta-banner h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.shop-cta-banner h3 em {
    font-style: normal;
    color: var(--red);
}

.shop-cta-banner p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Strip */
.feature-strip {
    padding: 60px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-subtle);
}

.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-strip-item {
    text-align: center;
    padding: 32px 16px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.feature-strip-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-light);
}

.feature-strip-icon {
    width: 56px; height: 56px;
    background: var(--red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--text-white);
}

.feature-strip-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.feature-strip-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================
   PAGE: ABOUT
   ============================================ */
.about-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(229, 32, 32, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(229, 32, 32, 0.04) 0%, transparent 60%);
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-text .section-title.light {
    margin-bottom: 24px;
}

/* About Mission Section */
.about-mission {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-image {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--border-subtle);
}

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

.mission-image-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-light);
}

.mission-image-badge .float-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    font-size: 1rem;
}

.mission-image-badge span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
}

.mission-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.mission-content h3 em {
    font-style: normal;
    color: var(--red);
}

.mission-content p {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 16px;
}

.mission-content blockquote {
    border-left: 3px solid var(--red);
    padding-left: 20px;
    margin: 28px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.7;
}

.about-values {
    padding: 120px 0;
    background: var(--bg-darker);
    position: relative;
}

.about-values::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.about-values .container {
    position: relative;
    z-index: 1;
}

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

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 40px 32px;
    transition: var(--transition-slow);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.value-icon {
    width: 64px; height: 64px;
    background: var(--red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: var(--text-white);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.about-timeline {
    padding: 120px 0;
    background: var(--bg-dark);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 6px;
    width: 14px; height: 14px;
    background: var(--red);
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 0 4px rgba(229, 32, 32, 0.2);
}

.timeline-year {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    color: var(--red);
    margin-bottom: 8px;
    display: inline-block;
    background: rgba(229, 32, 32, 0.1);
    padding: 4px 14px;
    border-radius: 100px;
}

.timeline-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    margin-top: 8px;
}

.timeline-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Team Section */
.about-team {
    padding: 120px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.about-team::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 50%; height: 80%;
    background: radial-gradient(circle, rgba(229, 32, 32, 0.06) 0%, transparent 60%);
}

.about-team .container {
    position: relative;
    z-index: 1;
}

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

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-slow);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
}

.team-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-surface);
}

.team-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

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

.team-card-info {
    padding: 24px;
    text-align: center;
}

.team-card-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.team-card-info span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--red);
    letter-spacing: 0.05rem;
    font-weight: 500;
}

/* ============================================
   PAGE: CONTACT
   ============================================ */
.contact-section {
    padding: 0 0 120px;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 48px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -30%; right: -20%;
    width: 50%; height: 80%;
    background: radial-gradient(circle, rgba(229, 32, 32, 0.08) 0%, transparent 70%);
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -10%;
    width: 40%; height: 60%;
    background: radial-gradient(circle, rgba(229, 32, 32, 0.05) 0%, transparent 70%);
}

.contact-info-card > * {
    position: relative;
    z-index: 1;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info-card > p {
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 48px; height: 48px;
    background: rgba(229, 32, 32, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--red);
    flex-shrink: 0;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.contact-detail:hover .contact-detail-icon {
    background: rgba(229, 32, 32, 0.2);
    border-color: var(--border-red);
}

.contact-detail h5 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.92rem;
    color: var(--text-white);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-md);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid var(--border-light);
    border-radius: 14px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text-white);
    background: var(--bg-surface);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(229, 32, 32, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

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

/* Contact FAQ */
.contact-faq {
    padding: 80px 0 0;
    background: var(--bg-dark);
}

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

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-light);
}

.faq-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.faq-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Contact Map Placeholder */
.contact-map {
    margin-top: 80px;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/1;
    background: var(--bg-surface);
    position: relative;
    border: 1px solid var(--border-subtle);
}

.contact-map iframe {
    width: 100%; height: 100%;
    border: none;
}

.map-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--bg-surface);
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--red);
}

.map-placeholder span {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1100;
    background: linear-gradient(90deg, #0A0A0A 0%, #1a1a1a 50%, #0A0A0A 100%);
    border-bottom: 1px solid rgba(229, 32, 32, 0.3);
    padding: 10px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.announcement-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.announce-track {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.announce-content {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    animation: announceScroll 25s linear infinite;
}

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

.announce-item {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12rem;
    color: var(--text-primary);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.announce-item i {
    color: var(--red);
    font-size: 0.8rem;
}

.announce-urgent strong {
    color: var(--red);
    font-weight: 800;
}

.announce-sep {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.announce-close {
    color: var(--text-muted);
    font-size: 1rem;
    padding: 4px;
    margin-left: 12px;
    transition: var(--transition);
    flex-shrink: 0;
}

.announce-close:hover {
    color: var(--text-white);
}

/* Offset navbar when announcement is visible */
body:has(.announcement-bar:not(.hidden)) .navbar {
    top: 52px;
}

body:has(.announcement-bar:not(.hidden)) .navbar.scrolled {
    top: 42px;
}

/* ---------- STOCK COUNTER ---------- */
.stock-counter {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    color: #FF6B35;
    margin-top: 4px;
    letter-spacing: 0.02rem;
    animation: stockPulse 2s ease-in-out infinite;
}

.stock-counter i {
    font-size: 0.7rem;
}

.stock-critical {
    color: var(--red) !important;
    animation: stockUrgent 1s ease-in-out infinite;
}

@keyframes stockPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes stockUrgent {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

/* ---------- SOCIAL PROOF TOAST ---------- */
.social-proof-toast {
    position: fixed;
    bottom: 100px;
    left: 24px;
    z-index: 900;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    max-width: 340px;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-proof-toast.visible {
    transform: translateX(0);
    opacity: 1;
}

.toast-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.toast-body {
    flex: 1;
    min-width: 0;
}

.toast-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.toast-text strong {
    color: var(--red);
}

.toast-time {
    font-size: 0.68rem;
    color: #999;
    font-family: var(--font-mono);
}

.toast-close {
    color: #ccc;
    font-size: 0.85rem;
    padding: 4px;
    align-self: flex-start;
    transition: var(--transition);
}

.toast-close:hover {
    color: #666;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 800;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 1.6rem;
    color: #FFFFFF;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- SPIN TO WIN WHEEL ---------- */
.spin-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.spin-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.spin-modal {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    display: flex;
    max-width: 780px;
    width: 90%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.spin-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    color: var(--text-muted);
    font-size: 1.2rem;
    padding: 8px;
    transition: var(--transition);
}

.spin-close:hover {
    color: var(--text-white);
}

.spin-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--bg-surface);
}

.wheel-container {
    position: relative;
    width: 260px;
    height: 260px;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 0 0 30px rgba(200, 165, 92, 0.2);
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 0;
    right: 0;
    transform-origin: bottom left;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
    padding-bottom: 30px;
}

.wheel-segment span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05rem;
    transform: rotate(15deg);
    text-align: center;
}

.seg-1 { background: var(--red); transform: rotate(0deg) skewY(-30deg); }
.seg-2 { background: #1a1a4e; transform: rotate(60deg) skewY(-30deg); }
.seg-3 { background: #E52020; transform: rotate(120deg) skewY(-30deg); }
.seg-4 { background: #333; transform: rotate(180deg) skewY(-30deg); }
.seg-5 { background: var(--gold); transform: rotate(240deg) skewY(-30deg); }
.seg-6 { background: #0A0A0A; transform: rotate(300deg) skewY(-30deg); }

.wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--gold);
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.1rem;
    z-index: 5;
}

.spin-right {
    flex: 1;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spin-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2rem;
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.spin-right h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.spin-right h2 em {
    color: var(--red);
    font-style: italic;
}

.spin-right p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.spin-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spin-form input {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-white);
    outline: none;
    transition: var(--transition);
}

.spin-form input:focus {
    border-color: var(--red);
}

.spin-result {
    text-align: center;
}

.spin-result h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--green);
    margin-bottom: 8px;
}

.spin-result p {
    text-align: center;
}

.spin-result strong {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
    font-family: var(--font-mono);
}

/* ---------- EXIT INTENT POPUP ---------- */
.exit-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.exit-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.exit-modal {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

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

.exit-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    color: var(--text-muted);
    font-size: 1.1rem;
    padding: 8px;
    transition: var(--transition);
}

.exit-close:hover {
    color: var(--text-white);
}

.exit-content {
    padding: 48px 36px 36px;
    text-align: center;
}

.exit-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.exit-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.exit-content h2 em {
    color: var(--red);
    font-style: italic;
}

.exit-content > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.exit-content > p strong {
    color: var(--red);
    font-size: 1.3rem;
}

.exit-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--bg-surface);
    border: 2px dashed var(--gold);
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 8px;
}

.exit-code {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.3rem;
}

.exit-copy {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 6px 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.exit-copy:hover {
    color: var(--text-white);
    border-color: var(--text-white);
}

.exit-no-thanks {
    display: block;
    margin: 16px auto 0;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: underline;
    transition: var(--transition);
}

.exit-no-thanks:hover {
    color: var(--text-secondary);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .navbar {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        border-radius: 18px;
    }

    .nav-inner {
        padding: 12px 24px;
    }

    .nav-logo img {
        height: 60px;
    }

    .nav-logo video {
        height: 60px;
        mix-blend-mode: multiply;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        z-index: 999;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        font-size: 1.2rem;
        padding: 12px 24px;
        color: #3a3a6e;
        border-radius: 12px;
    }

    .nav-hamburger { display: flex; }

    .nav-hamburger.open span:first-child {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .nav-hamburger.open span:nth-child(2) { opacity: 0; }

    .nav-hamburger.open span:last-child {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    /* Announcement bar mobile */
    .announcement-bar {
        padding: 8px 12px;
    }

    .announce-item {
        font-size: 0.62rem;
    }

    body:has(.announcement-bar:not(.hidden)) .navbar {
        top: 44px;
    }

    /* Spin modal mobile */
    .spin-modal {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .spin-left {
        padding: 24px;
    }

    .wheel-container {
        width: 200px;
        height: 200px;
    }

    .spin-right {
        padding: 24px;
    }

    .spin-right h2 {
        font-size: 1.5rem;
    }

    /* Social proof toast mobile */
    .social-proof-toast {
        bottom: 80px;
        left: 12px;
        right: 12px;
        max-width: none;
    }

    /* WhatsApp button mobile */
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 1.4rem;
    }

    .hero-slide-content {
        padding: 0 24px;
        padding-top: 80px;
    }

    .hero-slider-nav {
        bottom: 100px;
    }

    .hero-stats-bar {
        gap: 32px;
        padding: 20px 24px;
    }

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

    .look-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .drops-grid { grid-template-columns: repeat(2, 1fr); }
    .drop-large { grid-column: span 1; }

    .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image { aspect-ratio: 16/10; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }

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

    .section-header.split {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .hero-slider,
    .hero {
        min-height: 100vh;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-stats-bar {
        gap: 20px;
        flex-wrap: wrap;
        padding: 16px 20px;
    }

    .hero-slider-nav {
        bottom: 90px;
    }

    .hero-slider-arrows {
        display: none;
    }

    .hero-slide-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            transparent 100%
        );
    }

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

    .product-info { padding: 12px 12px 16px; }
    .product-info h4 { font-size: 0.8rem; }
    .product-price { font-size: 0.88rem; }

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

    .editorial-banner {
        height: 55vh;
        min-height: 350px;
    }

    .editorial-content h2 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .newsletter-box { padding: 48px 24px; }

    .newsletter-form {
        flex-direction: column;
        border-radius: 16px;
        gap: 8px;
        border: none;
        background: none;
    }

    .newsletter-form input {
        border: 1px solid var(--border-light);
        border-radius: 100px;
        background: rgba(255,255,255,0.03);
    }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .ugc-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .container { padding: 0 20px; }

    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .feature-strip-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .feature-strip-item { padding: 24px 12px; }

    .page-hero { padding: 130px 0 60px; }

    .contact-map { aspect-ratio: 2/1; }

    .shop-cta-banner { padding: 48px 24px; border-radius: 24px; }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-card { border-radius: 14px; }

    .btn-primary { padding: 14px 28px; font-size: 0.72rem; }

    .stat { padding: 24px 12px; border-radius: 16px; }
    .stat-number { font-size: 2rem; }

    .hero-badge { font-size: 0.6rem; padding: 6px 14px; }
    .hero-badge-row { gap: 8px; }

    .review-card { padding: 24px; border-radius: 16px; }
}

/* ========== MOBILE APP EXPERIENCE ========== */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 767px) {

    /* --- APP SHELL --- */
    html {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: none;
    }

    body {
        padding-bottom: 72px;
        -webkit-font-smoothing: antialiased;
    }

    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* --- BOTTOM TAB BAR (iOS/Android style) --- */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        padding: 6px 0 2px;
        padding-bottom: env(safe-area-inset-bottom, 6px);
        justify-content: space-around;
        align-items: center;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1px;
        text-decoration: none;
        color: #AAAAAA;
        font-family: var(--font-mono);
        font-size: 0.55rem;
        letter-spacing: 0.02rem;
        font-weight: 500;
        padding: 4px 14px;
        transition: color 0.15s ease, transform 0.15s ease;
        position: relative;
    }

    .mobile-nav-item i {
        font-size: 1.3rem;
        line-height: 1;
        transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .mobile-nav-item.active {
        color: var(--red);
    }

    .mobile-nav-item.active i {
        transform: scale(1.1);
    }

    .mobile-nav-item:active i {
        transform: scale(0.85);
    }

    /* --- TOP NAV BAR (clean, minimal) --- */
    .nav-links {
        display: none !important;
    }

    .navbar {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        top: 8px;
        border-radius: 14px;
        width: calc(100% - 16px);
        max-width: calc(100% - 16px);
    }

    .nav-inner {
        padding: 10px 18px;
    }

    .nav-logo img {
        height: 52px;
    }

    .nav-logo video {
        height: 52px;
        mix-blend-mode: multiply;
    }

    .nav-icon-btn {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }

    .nav-hamburger {
        display: none !important;
    }

    .nav-icons {
        gap: 4px;
    }

    /* --- SECTIONS: APP SPACING --- */
    section {
        scroll-margin-top: 56px;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .section-tag {
        font-size: 0.6rem;
    }

    /* --- HERO: FULL SCREEN APP FEEL --- */
    .hero-slide-content {
        padding: 0 20px;
        padding-top: 60px;
        justify-content: flex-end;
        padding-bottom: 130px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .hero-sub {
        font-size: 0.88rem;
        max-width: 100%;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 0.55rem;
        padding: 5px 12px;
    }

    .hero-badge-row {
        gap: 6px;
        margin-bottom: 16px;
    }

    .hero-cta-row {
        gap: 10px;
    }

    .hero-cta-row .btn-primary {
        font-size: 0.7rem;
        padding: 12px 22px;
    }

    .hero-cta-row .btn-outline {
        font-size: 0.7rem;
        padding: 12px 22px;
    }

    .hero-stats-bar {
        gap: 0;
        padding: 12px 0;
        justify-content: space-around;
    }

    .hero-stat .stat-num {
        font-size: 1.1rem;
    }

    .hero-stat .stat-lbl {
        font-size: 0.6rem;
    }

    .hero-slider-nav {
        bottom: 74px;
    }

    .hero-slider-arrows {
        display: none;
    }

    /* --- PRODUCT CARDS: APP GRID --- */
    .product-card {
        border-radius: 14px;
        overflow: hidden;
    }

    .product-card:active {
        transform: scale(0.97);
        transition: transform 0.15s ease;
    }

    .product-info {
        padding: 10px 10px 14px;
    }

    .product-info h4 {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .product-price {
        font-size: 0.85rem;
    }

    .product-badge {
        font-size: 0.55rem;
        padding: 4px 8px;
    }

    .wishlist-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .btn-add-bag {
        font-size: 0.65rem;
        padding: 10px 16px;
    }

    /* Make add-to-bag always visible on touch devices */
    .add-to-bag {
        transform: translateY(0);
        position: relative;
        padding: 8px 10px 0;
    }

    /* --- HORIZONTAL SCROLL CARDS (Category Pills) --- */
    .category-pills {
        padding: 12px 0;
    }

    .pills-track {
        padding: 0 16px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .pill {
        font-size: 0.7rem;
        padding: 8px 16px;
        white-space: nowrap;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    /* --- SHOP FILTERS: STICKY --- */
    .shop-filters {
        position: sticky;
        top: 52px;
        z-index: 50;
        background: var(--bg-dark);
        padding: 10px 0;
    }

    .filters-bar {
        flex-direction: column;
        gap: 10px;
    }

    .filter-group {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-group::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        font-size: 0.68rem;
        padding: 8px 16px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .sort-select {
        font-size: 0.75rem;
        padding: 8px 12px;
        width: 100%;
    }

    /* --- REVIEWS: HORIZONTAL SCROLL --- */
    .reviews-grid {
        display: flex !important;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .reviews-grid::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 20px;
        border-radius: 16px;
    }

    /* --- LOOK CARDS: FULL WIDTH STACK --- */
    .look-grid {
        gap: 16px;
    }

    .look-card {
        border-radius: 16px;
    }

    .look-info {
        padding: 20px 16px;
    }

    .look-info h3 {
        font-size: 1.1rem;
    }

    /* --- UGC GRID: TIGHTER --- */
    .ugc-grid {
        gap: 3px;
    }

    .ugc-item {
        border-radius: 0;
    }

    /* --- EDITORIAL BANNER --- */
    .editorial-banner {
        min-height: 50vh;
        border-radius: 0;
    }

    .editorial-content h2 {
        font-size: clamp(1.8rem, 9vw, 3rem);
    }

    /* --- STORY SECTION --- */
    .story-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* --- NEWSLETTER: COMPACT --- */
    .newsletter-box {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .newsletter-box h2 {
        font-size: 1.6rem;
    }

    .newsletter-box p {
        font-size: 0.85rem;
    }

    /* --- FOOTER: CLEAN MOBILE --- */
    .site-footer {
        padding-bottom: 24px;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-col h5 {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .footer-col li a {
        font-size: 0.82rem;
        padding: 6px 0;
    }

    /* --- BUTTONS: BIGGER TOUCH TARGETS --- */
    .btn-primary {
        padding: 14px 24px;
        font-size: 0.72rem;
        min-height: 44px;
    }

    .btn-outline {
        padding: 14px 24px;
        font-size: 0.72rem;
        min-height: 44px;
    }

    /* --- STATS BAR: COMPACT --- */
    .stats-grid {
        gap: 8px;
    }

    .stat {
        padding: 20px 12px;
        border-radius: 14px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* --- FEATURE STRIP: 2x2 --- */
    .feature-strip-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .feature-strip-item {
        padding: 20px 12px;
        border-radius: 14px;
    }

    .feature-strip-item h4 {
        font-size: 0.8rem;
    }

    .feature-strip-item p {
        font-size: 0.7rem;
    }

    /* --- FAQ CARDS --- */
    .faq-card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .faq-card h4 {
        font-size: 0.9rem;
    }

    .faq-card p {
        font-size: 0.82rem;
    }

    /* --- CONTACT: COMPACT --- */
    .contact-info-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .contact-form-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .form-control {
        font-size: 0.85rem;
        padding: 12px 14px;
    }

    /* --- PAGE HERO: TIGHTER --- */
    .page-hero {
        padding: 100px 0 40px;
    }

    .page-hero .section-title {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }

    .breadcrumb {
        font-size: 0.72rem;
    }

    /* --- DROPS GRID --- */
    .drops-grid {
        gap: 8px;
    }

    .drops-live-badge {
        font-size: 0.65rem;
    }

    /* --- TICKER --- */
    .ticker {
        padding: 12px 0;
    }

    .ticker-content span {
        font-size: 0.65rem;
    }

    /* --- ABOUT PAGE --- */
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero-text .section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .about-hero-text .section-subtitle {
        font-size: 0.88rem;
    }

    .mission-content h3 {
        font-size: 1.3rem;
    }

    .mission-content p,
    .mission-content blockquote {
        font-size: 0.88rem;
    }

    .timeline-item h3 {
        font-size: 1rem;
    }

    .timeline-item p {
        font-size: 0.85rem;
    }

    .value-card {
        padding: 24px 16px;
        border-radius: 14px;
    }

    .value-card h3 {
        font-size: 1rem;
    }

    .value-card p {
        font-size: 0.82rem;
    }

    /* --- BACK TO TOP --- */
    .back-to-top {
        bottom: 84px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    /* --- SMOOTH ACTIVE STATES --- */
    .look-card:active,
    .value-card:active,
    .faq-card:active,
    .stat:active,
    .feature-strip-item:active,
    .team-card:active {
        transform: scale(0.97);
        transition: transform 0.12s ease;
    }

}

/* ============================================
   PRELOADER / VIDEO LOGO REVEAL
   ============================================ */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.preloader.done {
    opacity: 0;
    pointer-events: none;
}

.preloader-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/* ============================================
   YOUTH ENERGY — GLITCH, QUIZ, COUNTDOWN,
   CUSTOM CURSOR, NEON BORDERS, FIRST 100
   ============================================ */

/* ---------- CUSTOM CURSOR ---------- */
@media (pointer: fine) {
    body.cursor-active { cursor: none !important; }
    body.cursor-active a,
    body.cursor-active button,
    body.cursor-active input,
    body.cursor-active select,
    body.cursor-active textarea { cursor: none !important; }
}

.custom-cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
    transform: translate(-50%, -50%);
    display: none;
}

.cursor-follower {
    position: fixed;
    width: 40px; height: 40px;
    border: 2px solid var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    opacity: 0.4;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
    display: none;
}

@media (pointer: fine) {
    .custom-cursor, .cursor-follower { display: block; }
}

body.cursor-active .custom-cursor.hovering {
    width: 50px; height: 50px;
    background: rgba(229, 32, 32, 0.15);
    border: 2px solid var(--red);
    mix-blend-mode: normal;
}

body.cursor-active .cursor-follower.hovering {
    width: 60px; height: 60px;
    opacity: 0;
}

/* ---------- GLITCH TEXT ---------- */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

.glitch-text::before {
    color: #0ff;
    animation: glitch1 3s infinite linear alternate-reverse;
    clip-path: inset(0 0 80% 0);
}

.glitch-text::after {
    color: #f0f;
    animation: glitch2 2.5s infinite linear alternate-reverse;
    clip-path: inset(80% 0 0 0);
}

@keyframes glitch1 {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 2px); }
    40% { transform: translate(3px, -1px); }
    60% { transform: translate(-1px, 3px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch2 {
    0% { transform: translate(0); }
    25% { transform: translate(2px, -3px); }
    50% { transform: translate(-3px, 1px); }
    75% { transform: translate(1px, 2px); }
    100% { transform: translate(0); }
}

/* ---------- DROP COUNTDOWN ---------- */
.drop-countdown {
    padding: 80px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.countdown-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.countdown-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    padding: 64px;
    overflow: hidden;
}

.countdown-inner::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 80%; height: 150%;
    background: radial-gradient(circle, rgba(229, 32, 32, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.countdown-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.countdown-title em {
    font-style: normal;
    color: var(--red);
}

.countdown-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 400px;
}

.countdown-timer {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.countdown-unit {
    text-align: center;
    background: rgba(229, 32, 32, 0.08);
    border: 1px solid var(--border-red);
    border-radius: 16px;
    padding: 20px 16px;
    min-width: 80px;
}

.countdown-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    display: block;
    line-height: 1;
    text-shadow: 0 0 20px rgba(229, 32, 32, 0.3);
}

.countdown-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.15rem;
    color: var(--text-muted);
    display: block;
    margin-top: 6px;
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--red);
    font-weight: 800;
    animation: countdownBlink 1s ease-in-out infinite;
}

@keyframes countdownBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

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

/* ---------- WEIRD QUIZ ---------- */
.weird-quiz {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.quiz-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(229, 32, 32, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(229, 32, 32, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.quiz-container {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.quiz-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-red);
}

.quiz-progress {
    position: relative;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    margin-bottom: 40px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: var(--gradient-red);
    border-radius: 3px;
    width: 14.28%;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-progress-text {
    position: absolute;
    right: 0; top: -24px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.08rem;
}

.quiz-question {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 28px;
    line-height: 1.3;
    text-transform: lowercase;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    background: rgba(255,255,255,0.03);
    border: 1.5px solid var(--border-light);
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-option:hover {
    border-color: var(--red);
    background: rgba(229, 32, 32, 0.06);
    color: var(--text-white);
    transform: translateX(6px);
}

.quiz-option.selected {
    border-color: var(--red);
    background: rgba(229, 32, 32, 0.1);
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(229, 32, 32, 0.1);
}

/* Quiz Result */
.quiz-result {
    text-align: center;
}

.quiz-result-badge {
    padding: 48px 32px;
    margin-bottom: 32px;
}

.result-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 16px;
}

.quiz-result-badge h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
}

.quiz-result-badge p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 440px;
    margin: 0 auto;
}

/* Result tiers */
.quiz-result-badge.tier-normal h3 { color: var(--text-muted); }
.quiz-result-badge.tier-strange h3 { color: #0ea5e9; }
.quiz-result-badge.tier-kalamari h3 {
    color: var(--red);
    text-shadow: 0 0 30px rgba(229, 32, 32, 0.4);
}

.quiz-result-badge.tier-kalamari {
    background: rgba(229, 32, 32, 0.04);
    border-radius: 24px;
    border: 1px solid var(--border-red);
    position: relative;
    overflow: hidden;
}

.quiz-result-badge.tier-kalamari::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: conic-gradient(from 0deg, var(--red), transparent, var(--red), transparent, var(--red));
    animation: rotateBorder 4s linear infinite;
    z-index: -1;
    opacity: 0.3;
}

@keyframes rotateBorder {
    to { transform: rotate(360deg); }
}

.quiz-result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- NEON GLOW PRODUCT CARDS ---------- */
.product-card {
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: conic-gradient(from var(--card-angle, 0deg), transparent 60%, var(--red) 80%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover::before {
    opacity: 1;
    animation: neonSpin 3s linear infinite;
}

@keyframes neonSpin {
    to { --card-angle: 360deg; }
}

@property --card-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* ---------- THE FIRST 100 ---------- */
.first-100 {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.first-100::before {
    content: '';
    position: absolute;
    top: -30%; left: -15%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(200, 165, 92, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.first100-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: center;
}

.first100-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 20px;
}

.first100-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
}

.first100-stat {
    text-align: center;
}

.first100-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    display: block;
    line-height: 1;
}

.first100-num.highlight {
    color: var(--red);
    text-shadow: 0 0 20px rgba(229, 32, 32, 0.3);
}

.first100-lbl {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15rem;
    color: var(--text-muted);
    display: block;
    margin-top: 6px;
}

.first100-progress-wrap {
    margin-top: 20px;
}

.first100-progress {
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}

.first100-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.first100-bar::after {
    content: '';
    position: absolute;
    right: 0; top: -2px;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(200, 165, 92, 0.6);
    animation: barPulse 1.5s ease-in-out infinite;
}

@keyframes barPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(200, 165, 92, 0.6); }
    50% { box-shadow: 0 0 24px rgba(200, 165, 92, 0.9); }
}

.first100-pct {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--gold);
    display: block;
    text-align: right;
    margin-top: 8px;
}

/* First 100 Card Stack */
.first100-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.first100-card-stack {
    position: relative;
    width: 260px;
    height: 340px;
    perspective: 1000px;
}

.first100-preview-card {
    position: absolute;
    width: 240px;
    height: 320px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.first100-preview-card.c1 {
    background: linear-gradient(145deg, #0A0A0A, #1A1A1A);
    border-color: var(--gold);
    z-index: 3;
    transform: rotate(-3deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(200, 165, 92, 0.1);
}

.first100-preview-card.c2 {
    background: linear-gradient(145deg, #111, #1E1E1E);
    border-color: var(--red);
    z-index: 2;
    transform: rotate(4deg) translateX(20px) translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.first100-preview-card.c3 {
    background: linear-gradient(145deg, #161616, #222);
    border-color: rgba(255,255,255,0.15);
    z-index: 1;
    transform: rotate(-8deg) translateX(-15px) translateY(15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.first100-card-stack:hover .c1 { transform: rotate(0deg) translateY(-10px); }
.first100-card-stack:hover .c2 { transform: rotate(8deg) translateX(30px) translateY(0); }
.first100-card-stack:hover .c3 { transform: rotate(-12deg) translateX(-25px) translateY(20px); }

.preview-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(200, 165, 92, 0.2);
}

.preview-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.3rem;
    color: var(--gold);
    text-transform: uppercase;
}

/* ---------- FLOATING PARTICLES ---------- */
.countdown-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(100px) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-200px) scale(1.5); }
}

/* ---------- RESPONSIVE: YOUTH SECTIONS ---------- */
@media (max-width: 991px) {
    .countdown-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
        text-align: center;
    }
    .countdown-sub { margin: 0 auto; }
    .first100-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .first100-visual { order: -1; }
}

@media (max-width: 767px) {
    .drop-countdown { padding: 48px 0; }
    .countdown-inner { padding: 28px 20px; border-radius: 20px; }
    .countdown-title { font-size: 1.6rem; }
    .countdown-num { font-size: 2rem; }
    .countdown-unit { padding: 14px 10px; min-width: 60px; border-radius: 12px; }
    .countdown-sep { font-size: 1.5rem; }

    .weird-quiz { padding: 80px 0; }
    .quiz-container { padding: 28px 20px; border-radius: 20px; }
    .quiz-question { font-size: 1.15rem; }
    .quiz-option { padding: 14px 18px; font-size: 0.88rem; border-radius: 12px; }

    .first-100 { padding: 80px 0; }
    .first100-num { font-size: 2rem; }
    .first100-card-stack { width: 200px; height: 260px; }
    .first100-preview-card { width: 180px; height: 240px; border-radius: 18px; }
    .preview-number { font-size: 2.5rem; }

    .glitch-text::before,
    .glitch-text::after { display: none; }

    .custom-cursor, .cursor-follower { display: none !important; }
}
