/* ==========================================================================
   VIBE™ TECHNICAL STREETWEAR // CORE DESIGN SYSTEM & STYLESHEET
   Engineered for extreme performance, ultra-fast rendering & fluid motion
   ========================================================================== */

/* --- CSS VARIABLES & TOKENS --- */
:root {
    /* Color Palette: Cyber Carbon & Hazard Accents */
    --bg-base: #0A0C10;
    --bg-surface: #11141B;
    --bg-surface-elevated: #181C26;
    --bg-card: rgba(26, 31, 38, 0.7);
    --bg-light: #F4F5F7;
    --bg-white: #FFFFFF;
    
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --text-dark: #0A0C10;

    --accent-orange: #FF4500;
    --accent-orange-glow: rgba(255, 69, 0, 0.35);
    --accent-yellow: #FFD700;
    --accent-volt: #CCFF00;
    --accent-cyan: #00F0FF;
    --accent-cyan-glow: rgba(0, 240, 255, 0.25);

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.16);
    --border-highlight: rgba(255, 69, 0, 0.5);

    /* Glassmorphic & Elevation */
    --glass-bg: rgba(17, 20, 27, 0.75);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-blur: blur(16px);
    --glass-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);

    /* Typography */
    --font-display: 'Anton', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Mono', 'JetBrains Mono', monospace;

    /* Transitions & Easing curves */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-normal: 0.35s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);

    /* Spatial Sizing */
    --header-height: 76px;
    --announcement-height: 34px;
    --radius-sm: 3px;
    --radius-md: 6px;
    --radius-lg: 12px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--announcement-height) + 20px);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Selection highlight */
::selection {
    background-color: var(--accent-orange);
    color: #FFFFFF;
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: #2A303C;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

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

/* --- GLOBAL TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 0.5px;
}

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

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

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

.mono {
    font-family: var(--font-mono);
}

.font-10 { font-size: 0.65rem; }
.font-11 { font-size: 0.72rem; }
.text-muted { color: var(--text-muted); }
.text-gray { color: var(--text-secondary); }
.text-white { color: #ffffff !important; }
.text-yellow { color: var(--accent-yellow); }
.mr-2 { margin-right: 0.5rem; }
.ml-2 { margin-left: 0.5rem; }

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4%;
}

.section-padding {
    padding: 100px 0;
}

/* --- HUD OVERLAYS & SCI-FI SCANLINE --- */
.hud-scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 3px, 6px 100%;
    opacity: 0.4;
}

.hud-grid-overlay {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* --- BUTTON SYSTEM --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid transparent;
}

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

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

.btn-primary {
    background-color: var(--accent-orange);
    color: #FFFFFF;
    box-shadow: 0 4px 20px var(--accent-orange-glow);
}

.btn-primary:hover {
    background-color: #E03E00;
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.5);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--bg-surface-elevated);
    color: #FFFFFF;
    border-color: var(--border-medium);
}

.btn-dark:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: #FFFFFF;
    color: var(--text-dark);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-outline-white-sm {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.btn-outline-white-sm:hover {
    background-color: #FFFFFF;
    color: var(--text-dark);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

/* Glass HUD Utility */
.glass-hud {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
    background: #000000;
    border-bottom: 1px solid var(--border-subtle);
    height: var(--announcement-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 101;
}

.announcement-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-volt);
    box-shadow: 0 0 8px var(--accent-volt);
}

.status-dot.pulse {
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--accent-volt); }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.announcement-message {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-badge {
    background-color: var(--accent-orange);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
}

.announcement-text {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

/* --- HEADER & NAVIGATION --- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(10, 12, 16, 0.95);
    border-bottom-color: var(--border-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--text-primary);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 2px;
    line-height: 1;
}

.trademark {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-orange);
}

.logo-sub {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent-yellow);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding: 8px 0;
}

.nav-num {
    font-size: 0.65rem;
    color: var(--accent-orange);
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link:hover::after {
    width: 100%;
}

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

.icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: #FFFFFF;
    font-size: 1rem;
    position: relative;
    transition: var(--transition-fast);
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    transform: translateY(-2px);
}

.badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--accent-orange);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--bg-base);
    transition: transform var(--transition-fast);
}

.badge-count.pop {
    transform: scale(1.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    transition: var(--transition-fast);
}

/* --- MOBILE DRAWER --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 400px);
    height: 100vh;
    background: #0E1118;
    border-left: 1px solid var(--border-medium);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 30px;
    transition: right var(--transition-normal);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.drawer-close:hover {
    background: var(--accent-orange);
    transform: rotate(90deg);
}

.tech-tag-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent-orange);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.mobile-link .mono {
    font-size: 1rem;
    color: var(--accent-orange);
}

.mobile-link:hover {
    color: var(--accent-orange);
    transform: translateX(8px);
}

.mobile-drawer-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.mono-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.mobile-socials {
    display: flex;
    gap: 16px;
}

.mobile-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--announcement-height));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--bg-base);
    overflow: hidden;
}

/* Kinetic Watermark */
.hero-watermark {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.watermark-track {
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: clamp(5rem, 16vw, 18rem);
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    animation: marqueeTrack 45s linear infinite;
}

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

/* Marquee Strip */
.marquee-strip {
    background: #000000;
    color: #FFFFFF;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.marquee-inner {
    display: flex;
    width: max-content;
    animation: marqueeRun 24s linear infinite;
}

.marquee-inner:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-right: 28px;
    display: inline-flex;
    align-items: center;
}

.marquee-content span i {
    color: var(--accent-orange);
    margin: 0 16px;
    font-size: 1rem;
}

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

/* Split Hero Grid */
.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    min-height: 75vh;
    position: relative;
    z-index: 5;
}

.hero-left-col {
    background: linear-gradient(135deg, #FF4500 0%, #D83600 100%);
    padding: 70px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
    position: relative;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.4);
    z-index: 6;
}

.hero-hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.hud-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.35);
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

.hud-coords {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-title {
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 0.92;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.gradient-text {
    background: linear-gradient(to right, #FFFFFF, var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 45px;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1;
    color: #FFFFFF;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
}

/* Right Visual Column & Hotspots */
.hero-right-col {
    position: relative;
    background-color: var(--bg-surface);
    overflow: hidden;
}

.hero-hero-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 1.2s var(--ease-out-expo);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent 40%),
                linear-gradient(to top, rgba(10, 12, 16, 0.9) 0%, transparent 35%);
}

/* HUD Target Marker */
.hud-target-marker {
    position: absolute;
    top: 30px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.crosshair-box {
    width: 24px;
    height: 24px;
    border: 1px dashed var(--accent-orange);
    position: relative;
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    100% { transform: rotate(360deg); }
}

.mono-coords {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 8px;
    border-radius: 2px;
}

/* Floating Product Cards */
.float-card {
    position: absolute;
    padding: 12px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
    cursor: pointer;
    min-width: 260px;
}

.float-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-orange);
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.25);
}

.card-top-left {
    top: 15%;
    left: -35px;
}

.card-bottom-right {
    bottom: 12%;
    right: 40px;
}

.float-card-media {
    position: relative;
    width: 65px;
    height: 75px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: #1e2430;
}

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

.hotspot-pulse {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: var(--accent-volt);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-volt);
}

.float-card-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.float-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.float-tag.highlight {
    color: var(--accent-yellow);
}

.float-title {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 2px 0 6px;
    text-transform: none;
}

.float-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.float-price {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.quick-add-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.quick-add-btn:hover {
    background: var(--accent-orange);
    transform: scale(1.15);
}

/* Interactive Hotspot */
.interactive-hotspot {
    position: absolute;
    top: 48%;
    left: 45%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 12;
}

.hotspot-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    animation: pingRing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingRing {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hotspot-core {
    width: 20px;
    height: 20px;
    background: var(--accent-cyan);
    color: var(--bg-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    box-shadow: 0 0 15px var(--accent-cyan);
}

.hotspot-popover {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 240px;
    background: rgba(14, 18, 25, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--accent-cyan);
    border-radius: var(--radius-sm);
    padding: 14px;
    color: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-normal);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.2);
}

.interactive-hotspot:hover .hotspot-popover,
.interactive-hotspot:focus .hotspot-popover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.popover-cat {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 4px;
}

.popover-title {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.popover-desc {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* --- CATALOG CONTROLS BAR (TABS & SORT) --- */
.catalog-header-bar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
    position: sticky;
    top: var(--header-height);
    z-index: 50;
    backdrop-filter: blur(8px);
}

.catalog-controls-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.filter-btn {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.filter-btn:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.filter-btn.active {
    background: var(--accent-orange);
    color: #FFFFFF;
    border-color: var(--accent-orange);
    box-shadow: 0 0 15px var(--accent-orange-glow);
}

.tab-count {
    font-size: 0.65rem;
    opacity: 0.8;
}

.view-and-sort {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
}

.sort-icon {
    font-size: 0.8rem;
    color: var(--accent-orange);
}

.sort-dropdown {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

.sort-dropdown option {
    background: #11141B;
    color: #FFFFFF;
}

/* --- SECTION HEADERS --- */
.section-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-medium);
}

.section-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: inline-block;
}

.section-badge.badge-orange {
    color: var(--accent-orange);
}

.section-headline {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 0.9;
    letter-spacing: 1px;
}

.section-subtext {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 420px;
    margin-bottom: 12px;
}

.text-link-arrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.text-link-arrow:hover {
    gap: 12px;
    color: var(--accent-yellow);
}

/* --- NEW ARRIVALS (Loco Style Split Horizontal Cards) --- */
.arrivals-section {
    background-color: var(--bg-surface);
}

.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.arrival-card {
    display: flex;
    background: #181C26;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.arrival-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.arrival-media-wrap {
    width: 42%;
    position: relative;
    background-color: #1F2430;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.status-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 2px;
    z-index: 2;
    background: var(--accent-orange);
    color: #FFFFFF;
}

.status-pill.highlight {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.wishlist-toggle-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(10, 12, 16, 0.7);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    z-index: 3;
    transition: var(--transition-fast);
}

.wishlist-toggle-btn:hover,
.wishlist-toggle-btn.active {
    background: #FFFFFF;
    color: var(--accent-orange);
    transform: scale(1.1);
}

.card-overlay-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.arrival-card:hover .card-overlay-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-quick-view {
    width: 100%;
    padding: 6px 10px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.btn-quick-view:hover {
    background: var(--accent-orange);
    color: #FFFFFF;
}

.arrival-content {
    width: 58%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-sku {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
}

.rating-stars {
    color: var(--accent-yellow);
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    gap: 2px;
}

.review-count {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    margin-left: 4px;
}

.product-name {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: none;
    line-height: 1.3;
    margin-bottom: 6px;
}

.product-name a:hover {
    color: var(--accent-orange);
}

.product-snippet {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 18px;
}

.product-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.curr-price {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
}

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

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: #FFFFFF;
    transition: var(--transition-fast);
}

.add-to-cart-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

/* --- TECHNICAL SPEC MATRIX ACCORDION & SCHEMATIC --- */
.tech-spec-section {
    background: #0D1017;
    padding: 110px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

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

.tech-subtag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pulse-indicator {
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}

.tech-spec-heading {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 0.95;
    margin-bottom: 20px;
}

.tech-spec-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Accordion */
.spec-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-fast);
}

.spec-item.active {
    border-color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.04);
}

.spec-header {
    width: 100%;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: left;
}

.spec-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-title i {
    color: var(--accent-cyan);
}

.toggle-arrow {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.spec-item.active .toggle-arrow {
    transform: rotate(180deg);
}

.spec-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 20px;
}

.spec-item.active .spec-body {
    max-height: 150px;
    padding-bottom: 16px;
}

.spec-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Schematic Visual Card */
.hud-schematic-card {
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.schematic-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent-cyan);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-medium);
}

.schematic-img-container {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
    height: 380px;
    background: #141822;
}

.schematic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) saturate(0.9);
}

.schematic-reticle {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(0, 240, 255, 0.25);
    pointer-events: none;
}

.tech-callout {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--accent-cyan);
    padding: 4px 10px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: #FFFFFF;
}

.callout-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
}

.callout-1 { top: 25%; left: 15%; }
.callout-2 { top: 55%; right: 12%; }
.callout-3 { bottom: 20%; left: 25%; }

.schematic-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hud-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 6px;
    overflow: hidden;
}

.hud-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-cyan));
    border-radius: 3px;
}

/* --- BEST SELLERS (Artic 01 Aesthetic: Dark, technical, mono-spaced) --- */
.bestsellers-section {
    background-color: var(--bg-base);
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.bs-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.bs-card:hover {
    border-color: var(--border-highlight);
    background: var(--bg-surface-elevated);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.bs-img-wrapper {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: #141824;
}

.bs-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

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

.bs-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--accent-orange);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    padding: 4px 8px;
    border-radius: 2px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.05em;
}

.bs-tag.top-rated { background: var(--accent-orange); }
.bs-tag.trending { background: var(--accent-yellow); color: var(--text-dark); }
.bs-tag.classic { background: #3B82F6; }
.bs-tag.essential { background: #10B981; }

.bs-quick-action {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(10, 12, 16, 0.88);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.bs-card:hover .bs-quick-action {
    opacity: 1;
    transform: translateY(0);
}

.bs-quick-action:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.bs-info {
    padding: 22px;
}

.bs-meta {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.meta-dot {
    color: rgba(255, 255, 255, 0.2);
}

.bs-name {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.bs-name a:hover {
    color: var(--accent-orange);
}

.bs-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.bs-price {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.bs-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: #FFFFFF;
    transition: var(--transition-fast);
}

.bs-add-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

/* --- EDITORIAL MANIFESTO BANNER --- */
.editorial-banner {
    position: relative;
    padding: 160px 0;
    color: #FFFFFF;
    overflow: hidden;
}

.editorial-bg-media {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=2000&q=85') center/cover no-repeat fixed;
    filter: brightness(0.4) contrast(1.2);
    transform: scale(1.05);
}

.editorial-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.editorial-tag {
    margin-bottom: 20px;
}

.editorial-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.9;
    margin-bottom: 25px;
}

.highlight-underline {
    color: var(--accent-yellow);
    position: relative;
    display: inline-block;
}

.editorial-text {
    font-family: var(--font-mono);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    color: #D1D5DB;
    margin-bottom: 45px;
}

.editorial-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- LOOKBOOK & FIELD OPS GRID --- */
.lookbook-section {
    background-color: var(--bg-surface);
}

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

.lookbook-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #191D26;
    border: 1px solid var(--border-subtle);
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo), filter 0.4s ease;
    filter: grayscale(20%);
}

.lookbook-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.item-large {
    grid-column: span 1;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.lookbook-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transform: translateY(10px);
    opacity: 0.85;
    transition: var(--transition-fast);
}

.lookbook-item:hover .lookbook-caption {
    transform: translateY(0);
    opacity: 1;
}

.mono-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 4px;
}

.lookbook-caption h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: none;
}

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
    padding: 80px 0 100px;
    background: var(--bg-base);
}

.newsletter-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.newsletter-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-orange-glow) 0%, transparent 70%);
    pointer-events: none;
}

.pulse-badge {
    background: rgba(255, 69, 0, 0.15);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 69, 0, 0.4);
    display: inline-block;
    margin-bottom: 16px;
}

.newsletter-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 14px;
}

.newsletter-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.input-group {
    display: flex;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    padding: 4px;
    transition: var(--transition-fast);
}

.input-group:focus-within {
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px var(--accent-orange-glow);
}

.input-icon {
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: var(--text-muted);
}

.input-group input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 12px 0;
}

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

.newsletter-legal {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.newsletter-status {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    margin-top: 10px;
    min-height: 20px;
}

.newsletter-status.success { color: var(--accent-volt); }
.newsletter-status.error { color: #EF4444; }

/* --- FOOTER --- */
.site-footer {
    background-color: #06080B;
    border-top: 1px solid var(--border-subtle);
    padding: 90px 0 40px;
    color: #FFFFFF;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-mission {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 360px;
    margin-bottom: 24px;
}

.system-meta-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    width: fit-content;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.dot-green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-volt);
    box-shadow: 0 0 6px var(--accent-volt);
}

.footer-heading {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-list a:hover {
    color: var(--accent-orange);
    transform: translateX(4px);
}

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

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: var(--accent-orange);
    transform: translateX(6px);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 12px;
}

.footer-legal-links a:hover {
    color: #FFFFFF;
}

.back-to-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    transition: var(--transition-fast);
}

.back-to-top-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* --- SLIDE-OVER SHOPPING CART DRAWER --- */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(90vw, 440px);
    height: 100vh;
    background: #0E1118;
    border-left: 1px solid var(--border-medium);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: -25px 0 60px rgba(0, 0, 0, 0.9);
    transition: right 0.4s var(--ease-out-expo);
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.cart-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-title {
    font-size: 1.6rem;
}

.cart-header-count {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent-orange);
}

/* Free shipping bar */
.cart-shipping-progress {
    padding: 14px 24px;
    background: rgba(255, 69, 0, 0.08);
    border-bottom: 1px solid var(--border-subtle);
}

.shipping-info {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.shipping-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.shipping-fill {
    height: 100%;
    background: var(--accent-orange);
    transition: width 0.4s var(--ease-out-expo);
}

/* Cart Items Body */
.cart-items-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    color: var(--text-muted);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--border-medium);
}

.cart-empty-state h4 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.cart-empty-state p {
    font-size: 0.82rem;
    max-width: 260px;
    margin-bottom: 24px;
}

/* Single Cart Item */
.cart-item {
    display: flex;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 12px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

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

.cart-item-img {
    width: 75px;
    height: 85px;
    object-fit: cover;
    border-radius: 2px;
    background: #171A24;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
}

.cart-item-name {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: #FFFFFF;
}

.cart-remove-btn {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.cart-remove-btn:hover {
    color: #EF4444;
}

.cart-item-size {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
}

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.4);
}

.qty-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #FFFFFF;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qty-value {
    width: 28px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #FFFFFF;
}

.cart-item-price {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-orange);
}

/* Cart Footer */
.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border-subtle);
    background: #0B0E14;
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.subtotal-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.subtotal-val {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
}

.cart-tax-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    font-size: 0.85rem;
}

.payment-badges-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* --- MODAL SYSTEM (QUICK VIEW, SEARCH, SIZE GUIDE) --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: min(95vw, 850px);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-md);
    position: relative;
    padding: 30px;
    transform: scale(0.95);
    transition: var(--transition-normal);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    font-size: 1rem;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--accent-orange);
    transform: rotate(90deg);
}

/* Quick View Inner Grid */
.qv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.qv-media-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qv-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: #191D26;
}

.qv-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qv-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent-orange);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.qv-title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.qv-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.qv-curr-price {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

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

.size-selector-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.size-pill-group {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.size-pill {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    transition: var(--transition-fast);
}

.size-pill:hover,
.size-pill.selected {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.qv-actions {
    display: flex;
    gap: 12px;
}

/* Search Modal */
.search-modal-container {
    width: min(92vw, 680px);
    border-radius: var(--radius-md);
    padding: 30px;
}

.search-modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-medium);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
}

.search-modal-icon {
    font-size: 1.2rem;
    color: var(--accent-orange);
}

.search-input-wrap input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-mono);
    font-size: 1rem;
    color: #FFFFFF;
}

.search-clear-btn {
    color: var(--text-muted);
}

.search-results-area {
    margin-top: 24px;
    max-height: 50vh;
    overflow-y: auto;
}

.quick-tags {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.search-quick-tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.search-quick-tag:hover {
    background: var(--accent-orange);
    color: #FFFFFF;
    border-color: var(--accent-orange);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: var(--transition-fast);
    cursor: pointer;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-subtle);
}

.search-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 2px;
}

/* Size Table */
.size-guide-modal {
    width: min(92vw, 620px);
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.size-table th, .size-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.size-table th {
    color: var(--accent-orange);
    font-size: 0.72rem;
}

/* --- TOAST NOTIFICATIONS --- */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(14, 18, 26, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    pointer-events: auto;
    animation: toastSlideIn 0.35s var(--ease-out-expo);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast i {
    color: var(--accent-orange);
    font-size: 1rem;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --- SCROLL ANIMATIONS --- */
.reveal-on-scroll,
.reveal-slide-left,
.reveal-slide-right,
.reveal-fade {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    will-change: opacity, transform;
}

.reveal-on-scroll { transform: translateY(40px); }
.reveal-slide-left { transform: translateX(-50px); }
.reveal-slide-right { transform: translateX(50px); }
.reveal-fade { transform: scale(0.96); }

.revealed {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1200px) {
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .item-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    .item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
    }
    .hero-left-col {
        padding: 60px 5%;
    }
    .hero-right-col {
        min-height: 480px;
    }
    .tech-spec-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .newsletter-card {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .announcement-bar .system-status,
    .announcement-bar .currency-selector-mini {
        display: none;
    }
    .announcement-inner {
        justify-content: center;
    }
    .section-header-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .arrivals-grid,
    .bestsellers-grid {
        grid-template-columns: 1fr;
    }
    .arrival-card {
        flex-direction: column;
    }
    .arrival-media-wrap {
        width: 100%;
        height: 240px;
    }
    .arrival-content {
        width: 100%;
    }
    .qv-grid {
        grid-template-columns: 1fr;
    }
    .lookbook-grid {
        grid-template-columns: 1fr;
    }
    .item-wide {
        grid-column: span 1;
    }
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .float-card {
        display: none;
    }
}
