/* =============================================
   GYM VEST - Silent Luxury
   Minimalist Editorial Design
   ============================================= */

:root {
    --black-pure: #000000;
    --black-deep: #050507;
    --black-surface: #0a0a0c;
    --white: #ffffff;
    --white-dim: rgba(255,255,255,0.5);
    --white-mute: rgba(255,255,255,0.35);
    --white-fade: rgba(255,255,255,0.08);
    --neon: #00ff88;
    --neon-dim: rgba(0,255,136,0.6);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 15px;
    background: var(--black-pure);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black-pure);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

a { color: inherit; text-decoration: none; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* =============================================
   CURSOR - Single Point of Light
   ============================================= */
.cursor {
    position: fixed;
    top: 0; left: 0;
    z-index: 10000;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px; height: 6px;
    background: var(--neon);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px var(--neon);
    transition: transform 0.2s var(--ease-smooth);
}

.cursor-outline {
    width: 32px; height: 32px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: all 0.4s var(--ease-smooth);
}

.cursor.hover .cursor-dot { transform: translate(-50%, -50%) scale(1.5); }
.cursor.hover .cursor-outline { 
    width: 48px; height: 48px; 
    border-color: var(--neon-dim); 
}

/* =============================================
   BACKGROUND - Subtle Granularity
   ============================================= */
.bg-deep {
    position: fixed; inset: 0;
    background: var(--black-pure);
    z-index: -30;
}

/* Subtle noise texture via gradient */
.bg-deep::before {
    content: '';
    position: absolute;
    inset: 0;
    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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Soft ambient glow */
.bg-neon {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle 400px at 50% 20%, rgba(0,255,136,0.03) 0%, transparent 50%);
    z-index: -20;
    pointer-events: none;
}

/* =============================================
   STICKY MONUMENT - Faded Text
   ============================================= */
.sticky-monument {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(30vw, 80vw, 80vw);
    font-weight: 400;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.025);
    z-index: -10;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 0.08em;
    transition: all 1.2s var(--ease-smooth);
    opacity: 0;
}

.sticky-monument.visible { opacity: 1; }

.sticky-monument.stick {
    top: 6%; left: 3%;
    transform: translate(0, 0);
    font-size: 16vw;
    -webkit-text-stroke: 1px rgba(0,255,136,0.08);
}

/* =============================================
   PROGRESS BAR
   ============================================= */
.progress-track {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: rgba(255,255,255,0.03);
    z-index: 5000;
}

.progress-fill {
    height: 100%; width: 0%;
    background: var(--neon);
    box-shadow: 0 0 10px var(--neon);
    transition: width 0.15s linear;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav-vertical {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 5000;
}

.nav-dot {
    width: 6px; height: 6px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}

.nav-dot.active {
    background: var(--neon);
    border-color: var(--neon);
}

.nav-dot:hover { border-color: var(--neon); }

.nav-label {
    position: absolute;
    right: 100%;
    margin-right: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--white-mute);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s var(--ease-smooth);
}

.nav-dot:hover .nav-label,
.nav-dot.active .nav-label {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: var(--space-xl);
    gap: var(--space-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-container { z-index: 3; }

.hero-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    color: var(--neon-dim);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2rem;
    margin-bottom: var(--space-lg);
}

.hero-title-outline {
    font-family: var(--font-display);
    font-size: clamp(6rem, 18vw, 16rem);
    font-weight: 400;
    line-height: 0.85;
    margin-bottom: var(--space-lg);
}

.hero-title-outline .title-line {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.08);
    -webkit-text-fill-color: transparent;
}

.hero-sub { display: flex; flex-direction: column; gap: 0.3rem; }

.hero-tagline {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--white-mute);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 2px;
    z-index: 2;
}

.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 10;
}

.scroll-hint span {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.5em;
    color: var(--white-mute);
}

.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--neon), transparent);
    animation: scroll-pulse 3s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(0.3); opacity: 0.2; }
}

/* =============================================
   GENDER DIVIDERS - Ultra Subtle
   ============================================= */
.gender-divider {
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.gender-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, var(--black-pure), transparent);
    opacity: 0.5;
}

.divider-block {
    font-family: var(--font-display);
    font-size: clamp(8rem, 25vw, 20rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.03);
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    text-transform: uppercase;
    animation: divider-fade 1.5s var(--ease-smooth) forwards;
}

@keyframes divider-fade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SECTIONS - Carved in Glass
   ============================================= */
.section {
    min-height: 100vh;
    padding: var(--space-2xl) var(--space-xl);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Section header */
.section-header {
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.section-number {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--neon-dim);
    letter-spacing: 0.5em;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 0.85;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--white-mute);
    letter-spacing: 0.25em;
    margin-top: 0.5rem;
}

/* =============================================
   BENTO GRID
   ============================================= */
.bento-vertical {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    z-index: 2;
}

.bento-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.bento-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.bento-item {
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-smooth);
}

.bento-large { aspect-ratio: 16/9; min-height: 320px; }
.bento-medium { aspect-ratio: 1/1; min-height: 200px; }
.bento-small { aspect-ratio: 1/1; min-height: 120px; }

/* =============================================
   PRODUCT GLASS - Carved Effect
   ============================================= */
.product-glass {
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.012);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 3px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-smooth);
}

/* Inner shadow for carved effect */
.product-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.3);
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.5s;
}

.product-glass:hover {
    background: rgba(255,255,255,0.018);
    border-color: rgba(0,255,136,0.15);
}

.product-glass:hover::before { opacity: 0.5; }

.product-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: all 0.8s var(--ease-smooth);
}

.product-glass:hover .product-img {
    opacity: 0.6;
    transform: scale(1.05);
}

.product-overlay { position: relative; z-index: 2; }

.product-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.25em;
    color: var(--neon-dim);
    padding: 0.3rem 0.6rem;
    background: rgba(0,255,136,0.05);
    border: 1px solid rgba(0,255,136,0.1);
    border-radius: 2rem;
    margin-bottom: 0.4rem;
}

.product-badge.accent {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.06);
    color: var(--white-mute);
}

.product-name {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}

.product-desc {
    font-size: 0.7rem;
    color: var(--white-mute);
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.product-specs {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}

.spec-item {
    font-family: var(--font-mono);
    font-size: 0.45rem;
    letter-spacing: 0.15em;
    color: var(--neon-dim);
    padding: 0.2rem 0.4rem;
    background: rgba(0,255,136,0.03);
    border-radius: 2px;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.02em;
}

/* =============================================
   PRODUCT MINI
   ============================================= */
.product-mini {
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.012);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 3px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s var(--ease-smooth);
}

.product-mini::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.25);
    pointer-events: none;
    border-radius: 3px;
    opacity: 0.2;
}

.product-mini:hover {
    background: rgba(255,255,255,0.018);
    border-color: rgba(0,255,136,0.12);
}

.product-mini .product-name { font-size: 0.9rem; }
.product-mini .product-price { font-size: 0.85rem; color: var(--neon-dim); }

/* =============================================
   STICKY INFO
   ============================================= */
.sticky-info {
    position: sticky;
    top: 4rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
    max-width: fit-content;
}

.sticky-label {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--neon-dim);
}

.sticky-text {
    font-size: 0.75rem;
    color: var(--white-mute);
}

/* =============================================
   SHOP THE LOOK
   ============================================= */
.shop-look-card {
    margin-top: var(--space-xl);
    padding: 1.25rem 1.75rem;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: all 0.4s var(--ease-smooth);
}

.shop-look-card:hover {
    border-color: rgba(0,255,136,0.15);
}

.stl-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}

.stl-content p {
    font-size: 0.75rem;
    color: var(--white-mute);
}

.btn-add {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    padding: 0.75rem 1.5rem;
    background: var(--white-fade);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 3rem;
    font-weight: 500;
    transition: all 0.4s var(--ease-smooth);
    white-space: nowrap;
}

.btn-add:hover {
    background: var(--neon);
    color: var(--black-pure);
    border-color: var(--neon);
}

/* =============================================
   ACCESSORIES
   ============================================= */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.accessory-card {
    background: rgba(255,255,255,0.012);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 3px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.5s var(--ease-smooth);
}

.accessory-card::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.25);
    pointer-events: none;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.5s;
}

.accessory-card:hover {
    background: rgba(255,255,255,0.02);
    border-color: rgba(0,255,136,0.12);
    transform: translateY(-3px);
}

.accessory-card:hover::before { opacity: 0.3; }

.accessory-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.accessory-card h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}

.accessory-card p {
    font-size: 0.65rem;
    color: var(--white-mute);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.accessory-price {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-dim);
}

/* =============================================
   FOOTER
   ============================================= */
.footer-section {
    min-height: 40vh;
    background: var(--black-surface);
    padding: var(--space-2xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 6rem);
    letter-spacing: 0.1em;
}

.footer-logo .accent { color: var(--neon-dim); }

.footer-est {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--white-mute);
    letter-spacing: 0.3em;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.footer-links a {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--neon); }

.footer-copy {
    font-size: 0.7rem;
    color: var(--white-mute);
}

/* =============================================
   CART
   ============================================= */
.cart-trigger {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6000;
    transition: all 0.4s var(--ease-smooth);
}

.cart-trigger:hover {
    background: rgba(0,255,136,0.08);
    border-color: var(--neon-dim);
}

.cart-icon { font-size: 1.1rem; }

.cart-count {
    position: absolute;
    top: -3px; right: -3px;
    min-width: 18px; height: 18px;
    background: var(--neon);
    color: var(--black-pure);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s var(--ease-smooth);
}

.cart-count.visible { opacity: 1; transform: scale(1); }

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 7000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.cart-overlay.active { opacity: 1; visibility: visible; }

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 100%; max-width: 360px; height: 100vh;
    background: rgba(10,10,12,0.95);
    backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255,255,255,0.04);
    z-index: 8000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.6s var(--ease-smooth);
}

.cart-drawer.active { transform: translateX(0); }

.cart-header {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
}

.cart-close {
    width: 32px; height: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    font-size: 0.85rem;
    color: var(--white-dim);
    transition: all 0.3s;
}

.cart-close:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--white-dim);
}

.cart-items { flex: 1; overflow-y: auto; padding: 1rem; }

.cart-empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-mute);
}

.empty-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    opacity: 0.3;
}

.cart-empty p {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.empty-sub {
    font-size: 0.7rem;
    opacity: 0.5;
}

.cart-item {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 3px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.75rem;
    position: relative;
    transition: all 0.3s;
}

.cart-item:hover { border-color: rgba(0,255,136,0.1); }

.cart-item-img {
    width: 55px; height: 55px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    background-color: var(--black-surface);
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
}

.cart-item-price {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--neon-dim);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.qty-btn {
    width: 20px; height: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    font-size: 0.8rem;
    color: var(--white-dim);
    transition: all 0.2s;
}

.qty-btn:hover {
    background: rgba(0,255,136,0.15);
    border-color: var(--neon-dim);
}

.qty-value {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    min-width: 16px;
    text-align: center;
}

.cart-item-remove {
    position: absolute;
    top: 0.4rem; right: 0.4rem;
    width: 18px; height: 18px;
    border: none;
    background: transparent;
    color: var(--white-mute);
    font-size: 0.75rem;
    opacity: 0;
    transition: all 0.3s;
}

.cart-item:hover .cart-item-remove { opacity: 1; }
.cart-item-remove:hover { color: #ff4444; }

/* Cart Footer */
.cart-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    background: rgba(0,0,0,0.3);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.total-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--white-mute);
}

.total-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--neon-dim);
}

.cart-checkout {
    width: 100%;
    padding: 0.75rem;
    background: var(--neon);
    color: var(--black-pure);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    border-radius: 3px;
    transition: all 0.4s var(--ease-smooth);
}

.cart-checkout:hover {
    background: var(--white);
}

/* =============================================
   ADD TO CART BUTTON
   ============================================= */
.btn-add-cart {
    margin-top: 0.75rem;
    padding: 0.5rem 0.9rem;
    background: rgba(0,255,136,0.05);
    border: 1px solid rgba(0,255,136,0.12);
    border-radius: 2px;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--neon-dim);
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background: var(--neon);
    color: var(--black-pure);
    box-shadow: 0 0 15px rgba(0,255,136,0.2);
}

.btn-add-cart.small {
    padding: 0.35rem 0.55rem;
    margin-top: 0.25rem;
}

/* =============================================
   TOAST
   ============================================= */
.cart-toast {
    position: fixed;
    bottom: 4rem;
    right: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0,255,136,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid var(--neon);
    border-radius: 2px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--neon);
    z-index: 9000;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s var(--ease-smooth);
}

.cart-toast.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
    .hero-text-container { text-align: center; }
    .hero-visual { justify-content: center; }
    .accessories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    :root { --space-xl: 2rem; --space-2xl: 4rem; }
    .nav-vertical { right: 1rem; gap: 1.25rem; }
    .nav-label { display: none; }
    .bento-pair, .bento-trio { grid-template-columns: 1fr; }
    .shop-look-card { flex-direction: column; text-align: center; gap: 1rem; }
    .accessories-grid { grid-template-columns: 1fr; }
    .hero-image-wrapper { max-width: 260px; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fade-up 1s var(--ease-smooth) forwards;
}

.admin-trigger { font-size: 10px; opacity: 0.05; text-decoration: none; margin-left: 10px; transition: opacity 0.3s; vertical-align: middle; } .admin-trigger:hover { opacity: 0.3; }
