/* ===== REEVES — Premium Fashion Store Stylesheet v2.0 ===== */

:root {
    --bg: #FAFAF7;
    --bg-alt: #F2F0EB;
    --bg-dark: #0A0A0A;
    --fg: #0A0A0A;
    --fg-soft: #3A3A3A;
    --fg-muted: #8A8A8A;
    --border: #E5E2DB;
    --accent: #C19A6B;
    --accent-dark: #9B7B4F;
    --accent-soft: #E8DCC8;
    --sale: #C0392B;
    --new: #2C7A3D;
    --white: #FFFFFF;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --container: 1320px;
    --t-fast: 0.15s ease;
    --t: 0.3s ease;
    --t-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg); color: var(--fg); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
.italic { font-family: var(--font-display); font-style: italic; }
.eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); font-weight: 600; margin-bottom: 0.75rem; display: block; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.section-subtitle { color: var(--fg-muted); font-size: 1.05rem; margin-bottom: 2.5rem; }

/* ===== Announcement Bar ===== */
.announcement-bar { background: var(--bg-dark); color: var(--white); overflow: hidden; white-space: nowrap; padding: 0.6rem 0; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.announcement-track { display: inline-block; animation: marquee 35s linear infinite; }
.announcement-track span { margin: 0 2.5rem; opacity: 0.85; }
.announcement-track span::after { content: "•"; margin-left: 2.5rem; color: var(--accent); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== HEADER (FIXED — clean horizontal layout) ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--border); transition: box-shadow var(--t); }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.header-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;      /* Prevent overflow */
    min-width: 0;          /* Allow flex children to shrink */
}

/* Mobile toggle - hidden on desktop */
.header-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 28px;
    padding: 4px 0;
    flex-shrink: 0;
}
.header-mobile-toggle span { height: 2px; background: var(--fg); transition: var(--t); }

/* Nav links */
.header-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-shrink: 0;        /* Don't shrink nav */
}
.header-nav-left { }
.header-nav-right { margin-left: auto; }

.header-nav a {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    padding: 0.25rem 0;
    white-space: nowrap;
}
.header-nav a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--fg);
    transition: width var(--t);
}
.header-nav a:hover::after, .header-nav a.active::after { width: 100%; }

/* Logo - normal flex item at the far left */
.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex-shrink: 0;
    margin-right: 1rem;
}
.header-logo-text { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; letter-spacing: 0.15em; line-height: 1; }
.header-logo-tag { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--fg-muted); }

/* Actions */
.header-actions { display: flex; gap: 0.25rem; align-items: center; flex-shrink: 0; }
.header-icon-btn {
    position: relative;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background var(--t-fast);
    color: var(--fg);
}
.header-icon-btn:hover { background: var(--bg-alt); color: var(--fg); }
.header-icon-btn i { font-size: 1rem; }
.header-badge {
    position: absolute;
    top: 2px; right: 2px;
    background: var(--fg);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
}

/* Inline header search (desktop) */
.header-search-inline {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;        /* Don't grow or shrink */
    width: 200px;
    max-width: 200px;      /* Fixed max width */
    position: relative;
    margin-left: auto;     /* Push to right before icons */
}
.header-search-inline input {
    width: 100%;
    padding: 0.5rem 2.25rem 0.5rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    outline: none;
    background: var(--bg-alt);
    transition: border 0.15s;
    font-family: inherit;
}
.header-search-inline input:focus { border-color: var(--fg); background: var(--white); }
.header-search-inline button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--fg-muted);
    border: none;
    background: none;
    cursor: pointer;
}
.header-search-inline button:hover { color: var(--fg); background: var(--bg); }

/* Mobile search button (in header) */
.header-search-mobile-btn { display: none; }

/* Search at top of mobile drawer */
.nav-drawer-search {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.nav-drawer-search form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}
.nav-drawer-search input {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}
.nav-drawer-search button {
    padding: 0 1.25rem;
    background: var(--fg);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Mobile Nav Drawer */
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 200; opacity: 0; visibility: hidden; transition: var(--t); }
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-drawer {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 320px; max-width: 85vw;
    background: var(--bg);
    z-index: 201;
    transform: translateX(-100%);
    transition: transform var(--t);
    display: flex; flex-direction: column;
    padding: 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.nav-drawer-head button { font-size: 1.75rem; line-height: 1; }
.nav-drawer-links { display: flex; flex-direction: column; gap: 1.25rem; flex: 1; }
.nav-drawer-links a { font-size: 1.05rem; font-weight: 500; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.nav-drawer-links a i { width: 22px; text-align: center; margin-right: 0.6rem; color: var(--accent); font-size: 0.95rem; }

/* Drawer divider between account and information sections */
.drawer-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
    width: 100%;
}
.nav-drawer-foot { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* Drawer dropdown (My Account) */
.drawer-dropdown { }
.drawer-dropdown-toggle { cursor: pointer; border-bottom: none !important; padding-bottom: 0 !important; }
.drawer-dropdown-menu { flex-direction: column; gap: 0.5rem; padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.drawer-dropdown-menu a { font-size: 0.9rem; font-weight: 400; padding: 0.5rem 0 0.5rem 0.75rem !important; border-bottom: 1px solid var(--border) !important; }
.drawer-dropdown-menu a i { width: 20px; text-align: center; margin-right: 0.5rem; color: var(--fg-muted); font-size: 0.85rem; }
.drawer-dropdown-toggle i.fa-chevron-down { color: var(--fg-muted) !important; }

/* Balance pill badge — Desktop (in header) */
.balance-pill-desktop {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, #0A0A0A, #2A2520);
    color: #C19A6B;
    border-radius: 20px 20px 20px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.15s;
}
.balance-pill-desktop:hover { transform: scale(1.03); color: #C19A6B; }
.balance-pill-desktop i { font-size: 0.72rem; }
.balance-pill-desktop .balance-amount { color: #C19A6B; }

/* Balance pill badge — Mobile (below header, always visible, overlaps content) */
.balance-pill-mobile {
    display: none;
    position: fixed;
    top: 72px;
    right: 10px;
    z-index: 98;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #C19A6B;
    border-radius: 0 0 5px 5px;
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-top: none;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: transform 0.15s;
}
.balance-pill-mobile:hover { color: #C19A6B; transform: scale(1.03); }
.balance-pill-mobile i { font-size: 0.65rem; }

/* Show desktop pill on PC, mobile pill on mobile */
@media (max-width: 900px) {
    .balance-pill-desktop { display: none !important; }
    .balance-pill-mobile { display: inline-flex; }
}

@media (max-width: 480px) {
    .balance-pill-mobile { top: 64px; right: 10px; font-size: 0.68rem; padding: 0.25rem 0.6rem; }
}

/* Flash */
.flash-message {
    position: fixed; top: 90px; right: 1.5rem; z-index: 300;
    background: var(--fg); color: var(--white);
    padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    animation: slideInRight var(--t-slow);
    max-width: 360px;
}
.flash-success { background: var(--new); }
.flash-error { background: var(--sale); }
.flash-warning { background: var(--accent-dark); }
.flash-message button { color: var(--white); font-size: 1.25rem; line-height: 1; }
@keyframes slideInRight { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em;
    border: 1px solid var(--fg);
    background: var(--fg); color: var(--white);
    cursor: pointer;
    transition: all var(--t-fast);
    position: relative; overflow: hidden;
    font-family: var(--font-body);
}
.btn:hover { background: transparent; color: var(--fg); }
.btn-outline { background: transparent; color: var(--fg); }
.btn-outline:hover { background: var(--fg); color: var(--white); }
.btn-light { background: var(--white); color: var(--fg); border-color: var(--white); }
.btn-light:hover { background: transparent; color: var(--white); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.82rem; }
.btn-block { width: 100%; }
.btn-accent { background: var(--accent); border-color: var(--accent); }
.btn-accent:hover { background: transparent; color: var(--accent); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; background: var(--bg-dark); color: var(--white); overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
}
.hero-bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 50%, rgba(193,154,107,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.hero-inner { max-width: 700px; padding: 4rem 0; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 700; line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 1.5rem; }
.hero h1 .italic { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--accent); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 500px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.hero-stat-num { font-size: 2rem; font-weight: 700; font-family: var(--font-display); }
.hero-stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

/* ===== Sections ===== */
.section { padding: 5rem 0; }

/* ===== Password field toggle ===== */
.password-field { position: relative; }
.password-field input { padding-right: 2.5rem; }
.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-muted);
    font-size: 0.95rem;
    padding: 0.25rem;
}
.password-toggle:hover { color: var(--fg); }
/* For admin panel */
.admin-form-field .password-field input { padding-right: 2.5rem; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header.left { text-align: left; }
.view-all { display: inline-block; margin-top: 1rem; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; border-bottom: 1px solid var(--fg); padding-bottom: 2px; }

/* ===== Product Grid ===== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem 1.25rem; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.product-card { position: relative; transition: transform var(--t); }
.product-card-media { position: relative; aspect-ratio: 3/4; background: var(--bg-alt); overflow: hidden; margin-bottom: 0.85rem; }
.product-card-media:hover .card-actions { transform: translateY(0); opacity: 1; }
.product-card-media:hover .product-img { transform: scale(1.05); }
.product-img { width: 100%; height: 100%; background-size: cover; background-position: center; background-color: var(--bg-alt); transition: transform var(--t-slow); }
.product-img[style*="placeholder"] { background: linear-gradient(135deg, var(--bg-alt) 0%, var(--accent-soft) 100%); display: flex; align-items: center; justify-content: center; }

.badge { position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; padding: 0.3rem 0.6rem; text-transform: uppercase; background: var(--white); color: var(--fg); }
.badge-sale { background: var(--sale); color: var(--white); }
.badge-new { background: var(--new); color: var(--white); }
.badge-best { background: var(--fg); color: var(--white); }

.wishlist-toggle { position: absolute; top: 0.85rem; right: 0.85rem; z-index: 2; width: 36px; height: 36px; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--t-fast); backdrop-filter: blur(4px); }
.wishlist-toggle:hover { background: var(--white); transform: scale(1.08); }
.wishlist-toggle svg { width: 18px; height: 18px; fill: none; stroke: var(--fg); stroke-width: 2; transition: var(--t-fast); }
.wishlist-toggle.active svg { fill: var(--sale); stroke: var(--sale); }

.card-actions {
    position: absolute;
    bottom: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    display: flex;
    gap: 0.4rem;
    transform: translateY(120%);
    opacity: 0;
    transition: var(--t);
}
.product-card-media:hover .card-actions {
    transform: translateY(0);
    opacity: 1;
}
.card-view-btn {
    flex: 1;
    background: var(--white);
    color: var(--fg);
    padding: 0.6rem;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    border: 1px solid var(--fg);
    transition: var(--t-fast);
}
.card-view-btn:hover { background: var(--fg); color: var(--white); }
.card-add-btn {
    flex: 1.5;
    background: var(--fg);
    color: var(--white);
    padding: 0.6rem;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    border: 1px solid var(--fg);
    cursor: pointer;
    transition: var(--t-fast);
    font-family: inherit;
}
.card-add-btn:hover { background: var(--accent); border-color: var(--accent); }
.card-add-btn.adding { opacity: 0.6; pointer-events: none; }

.product-card-info { padding: 0 0.15rem; }
.product-name { font-size: 0.92rem; font-weight: 500; margin-bottom: 0.35rem; display: block; line-height: 1.3; }
.product-price-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.price { font-size: 0.92rem; font-weight: 600; }
.old-price { font-size: 0.82rem; color: var(--fg-muted); text-decoration: line-through; }

.stars { display: flex; align-items: center; gap: 2px; margin-bottom: 0.4rem; }
.stars svg { width: 13px; height: 13px; }
.stars .star.full { fill: var(--accent); }
.stars .star.empty { fill: var(--border); }
.stars .star.half { fill: var(--accent); opacity: 0.6; }
.review-count { font-size: 0.72rem; color: var(--fg-muted); margin-left: 0.4rem; }

/* ===== Category Cards ===== */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.category-card { position: relative; aspect-ratio: 1/1.2; overflow: hidden; display: flex; align-items: flex-end; color: var(--white); background: linear-gradient(135deg, var(--accent-dark) 0%, var(--bg-dark) 100%); }
.category-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%); z-index: 1; }
.category-card-content { position: relative; z-index: 2; padding: 1.5rem; width: 100%; }
.category-card-content h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.25rem; }
.category-card-content span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.8; }

/* ===== Brand Story ===== */
.brand-story { background: var(--bg-alt); padding: 5rem 0; }
.brand-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.brand-story-visual { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent) 100%); position: relative; overflow: hidden; }
.brand-story-visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(0,0,0,0.2) 0%, transparent 50%); }
.brand-story-visual::after { content: "EST. 2021"; position: absolute; bottom: 1.5rem; right: 1.5rem; font-family: var(--font-display); font-style: italic; color: var(--white); font-size: 1rem; letter-spacing: 0.1em; }
.brand-story-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.brand-story-text p { margin-bottom: 1rem; color: var(--fg-soft); line-height: 1.8; }
.brand-story-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.brand-feature { border-left: 2px solid var(--accent); padding-left: 1rem; }
.brand-feature h4 { font-size: 1.5rem; font-family: var(--font-display); margin-bottom: 0.25rem; }
.brand-feature p { font-size: 0.85rem; color: var(--fg-muted); margin: 0; }

/* ===== Lookbook Preview ===== */
.lookbook-preview { background: var(--bg-dark); color: var(--white); padding: 5rem 0; }
.lookbook-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 0.5rem; height: 600px; }
.lookbook-item { position: relative; overflow: hidden; background: linear-gradient(135deg, #1A1A1A 0%, #2A2520 100%); cursor: pointer; }
.lookbook-item:nth-child(1) { grid-row: span 2; }
.lookbook-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%); z-index: 1; opacity: 0; transition: var(--t); }
.lookbook-item:hover::before { opacity: 1; }
.lookbook-item-content { position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2; color: var(--white); transform: translateY(10px); opacity: 0; transition: var(--t); }
.lookbook-item:hover .lookbook-item-content { transform: translateY(0); opacity: 1; }
.lookbook-item-content h4 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.lookbook-item-content span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); }

/* ===== Latest Drop ===== */
.latest-drop { position: relative; padding: 5rem 0; overflow: hidden; }
.latest-drop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.latest-drop-banner { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); position: relative; overflow: hidden; }
.latest-drop-banner::before { content: "WINTER '26"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-display); font-style: italic; font-size: clamp(2rem, 5vw, 4rem); color: var(--white); letter-spacing: 0.05em; opacity: 0.85; text-align: center; }
.drop-countdown { display: flex; gap: 1rem; margin: 2rem 0; }
.countdown-box { text-align: center; padding: 1rem; border: 1px solid var(--border); min-width: 80px; }
.countdown-box .num { font-size: 2rem; font-weight: 700; font-family: var(--font-display); line-height: 1; }
.countdown-box .label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--fg-muted); margin-top: 0.5rem; }

/* ===== Reviews ===== */
.reviews-section { background: var(--bg-alt); padding: 5rem 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: var(--white); padding: 2rem; border: 1px solid var(--border); }
.review-stars { margin-bottom: 1rem; color: var(--accent); }
.review-text { font-size: 1rem; line-height: 1.7; color: var(--fg-soft); margin-bottom: 1.5rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.85rem; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--accent-dark); }
.review-author-info h5 { font-size: 0.9rem; font-weight: 600; }
.review-author-info span { font-size: 0.75rem; color: var(--fg-muted); }
.review-verified { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.68rem; color: var(--new); font-weight: 500; margin-top: 0.25rem; }

/* ===== Instagram ===== */
.instagram-section { padding: 5rem 0; text-align: center; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; margin-top: 2rem; }
.ig-item { aspect-ratio: 1/1; background: linear-gradient(135deg, var(--accent-soft), var(--accent)); position: relative; overflow: hidden; cursor: pointer; }
.ig-item::after { content: "\f16d"; font-family: "Font Awesome 6 Brands"; color: var(--white); font-size: 1.5rem; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--t); }
.ig-item:hover::after { opacity: 1; }
.ig-handle { margin-top: 2rem; font-size: 1.1rem; font-weight: 500; }
.ig-handle span { color: var(--accent); }

/* ===== Newsletter ===== */
.newsletter-section { background: var(--bg-dark); color: var(--white); padding: 5rem 0; text-align: center; }
.newsletter-content { max-width: 600px; margin: 0 auto; padding: 0 1.5rem; }
.newsletter-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.newsletter-title .italic { font-family: var(--font-display); font-style: italic; color: var(--accent); }
.newsletter-subtitle { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.newsletter-form input { flex: 1; padding: 1rem 1.25rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 0.95rem; outline: none; transition: var(--t-fast); }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button { padding: 1rem 2rem; background: var(--accent); color: var(--white); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; transition: var(--t-fast); }
.newsletter-form button:hover { background: var(--accent-dark); }
.newsletter-note { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.newsletter-note a { color: var(--accent); }

/* ===== Footer ===== */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .header-logo-text { color: var(--white); display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; color: rgba(255,255,255,0.55); }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--t-fast); color: rgba(255,255,255,0.7); }
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.65rem; font-size: 0.88rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-list li { margin-bottom: 0.85rem; }
.footer-contact-list li i { margin-right: 0.5rem; color: var(--accent); width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-payments { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-payments > span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); }
.payment-icons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pay-icon { font-size: 0.68rem; padding: 0.35rem 0.65rem; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--accent); }

/* ===== Page Header ===== */
.page-header { background: var(--bg-alt); padding: 3rem 0 2rem; border-bottom: 1px solid var(--border); }
.breadcrumb { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb span { margin: 0 0.5rem; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.03em; }
.page-header .page-desc { color: var(--fg-muted); margin-top: 0.5rem; max-width: 600px; }

/* ===== Shop Layout ===== */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2.5rem; padding: 3rem 0; }
.shop-sidebar { position: sticky; top: 90px; align-self: start; }
.filter-group { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; }
.filter-group h4 { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1rem; }
.filter-list { display: flex; flex-direction: column; gap: 0.65rem; }
.filter-list label { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; cursor: pointer; color: var(--fg-soft); }
.filter-list input[type="checkbox"], .filter-list input[type="radio"] { width: 16px; height: 16px; accent-color: var(--fg); }
.filter-list label:hover { color: var(--fg); }
.filter-list .count { margin-left: auto; font-size: 0.75rem; color: var(--fg-muted); }

.shop-main { min-width: 0; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 1rem; }
.shop-count { font-size: 0.85rem; color: var(--fg-muted); }
.shop-sort { display: flex; align-items: center; gap: 0.75rem; }
.shop-sort select { padding: 0.5rem 2rem 0.5rem 0.75rem; border: 1px solid var(--border); background: var(--white); font-family: inherit; font-size: 0.85rem; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.5rem center; }

/* ===== Product Detail ===== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 3rem 0; }
.product-gallery { position: sticky; top: 90px; align-self: start; }
.gallery-main { aspect-ratio: 3/4; background: var(--bg-alt); margin-bottom: 0.75rem; overflow: hidden; position: relative; background-size: cover; background-position: center; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.gallery-thumb { aspect-ratio: 1/1; background: var(--bg-alt); cursor: pointer; border: 2px solid transparent; transition: var(--t-fast); background-size: cover; background-position: center; }
.gallery-thumb.active { border-color: var(--fg); }

.product-info h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.5rem; }
.product-info .price-row { display: flex; align-items: center; gap: 1rem; margin: 1rem 0; }
.product-info .price { font-size: 1.5rem; font-weight: 600; }
.product-info .old-price { font-size: 1.1rem; color: var(--fg-muted); }
.product-info .save-badge { background: var(--sale); color: var(--white); padding: 0.2rem 0.5rem; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; }
.product-info .rating-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.85rem; }
.product-info .short-desc { color: var(--fg-soft); line-height: 1.7; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }

.option-group { margin-bottom: 1.5rem; }
.option-label { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.option-label a { font-size: 0.72rem; font-weight: 400; text-transform: none; letter-spacing: 0; text-decoration: underline; color: var(--fg-muted); }
.color-options { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.color-option { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--border); cursor: pointer; position: relative; transition: var(--t-fast); }
.color-option.active { border-color: var(--fg); transform: scale(1.05); }
.color-option.active::after { content: ""; position: absolute; inset: -5px; border: 1px solid var(--fg); border-radius: 50%; }
.size-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.size-option { min-width: 50px; padding: 0.6rem 0.85rem; border: 1px solid var(--border); background: var(--white); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: var(--t-fast); text-align: center; }
.size-option:hover { border-color: var(--fg); }
.size-option.active { background: var(--fg); color: var(--white); border-color: var(--fg); }

.quantity-row { display: flex; gap: 0.75rem; margin: 2rem 0; }
.quantity-selector { display: flex; align-items: center; border: 1px solid var(--border); }
.quantity-selector button { width: 44px; height: 48px; font-size: 1.25rem; transition: var(--t-fast); }
.quantity-selector button:hover { background: var(--bg-alt); }
.quantity-selector input { width: 50px; height: 48px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-size: 0.95rem; outline: none; }

.product-actions { display: flex; gap: 0.75rem; flex-direction: column; }
.product-actions .btn-row { display: flex; gap: 0.75rem; }
.product-meta { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; font-size: 0.85rem; }
.product-meta-item { display: flex; gap: 0.5rem; align-items: flex-start; }
.product-meta-item i { width: 18px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.product-meta-item strong { display: block; margin-bottom: 0.15rem; }
.product-meta-item span { color: var(--fg-muted); font-size: 0.78rem; }

.product-tabs { margin-top: 3rem; border-top: 1px solid var(--border); padding-top: 3rem; }
.tabs-nav { display: flex; gap: 2rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; overflow-x: auto; }
.tab-btn { padding: 0.75rem 0; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; transition: var(--t-fast); }
.tab-btn.active { color: var(--fg); border-color: var(--fg); }
.tab-panel { display: none; line-height: 1.8; color: var(--fg-soft); }
.tab-panel.active { display: block; animation: fadeIn var(--t); }
.tab-panel h4 { color: var(--fg); margin: 1.5rem 0 0.5rem; }
.tab-panel ul { padding-left: 1.25rem; margin: 0.75rem 0; }
.tab-panel ul li { list-style: disc; margin-bottom: 0.4rem; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.size-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.size-table th, .size-table td { padding: 0.75rem 1rem; border: 1px solid var(--border); text-align: center; font-size: 0.9rem; }
.size-table th { background: var(--bg-alt); font-weight: 600; text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.1em; }

.reviews-list { display: flex; flex-direction: column; gap: 1.5rem; }
.review-item { padding: 1.5rem; border: 1px solid var(--border); }
.review-item-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.review-item-author { display: flex; align-items: center; gap: 0.75rem; }
.review-item-author .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--accent-dark); }
.review-item-author h5 { font-size: 0.9rem; }
.review-item-author .date { font-size: 0.75rem; color: var(--fg-muted); }

.related-products { padding: 3rem 0; border-top: 1px solid var(--border); }

/* ===== Cart ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; padding: 3rem 0; }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto auto auto; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item-img { width: 100px; aspect-ratio: 3/4; background: var(--bg-alt); background-size: cover; background-position: center; }
.cart-item-info h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.cart-item-info .item-meta { font-size: 0.8rem; color: var(--fg-muted); display: flex; gap: 1rem; }
.cart-item-price { font-size: 0.95rem; font-weight: 600; }
.cart-item-qty .quantity-selector { transform: scale(0.85); transform-origin: center; }
.cart-item-remove { color: var(--fg-muted); font-size: 0.8rem; transition: var(--t-fast); }
.cart-item-remove:hover { color: var(--sale); }

.cart-summary { background: var(--bg-alt); padding: 2rem; position: sticky; top: 90px; align-self: start; }
.cart-summary h3 { font-size: 1.25rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 0.85rem; font-size: 0.9rem; }
.summary-row.total { border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 1rem; font-size: 1.15rem; font-weight: 700; }
.summary-row .free-ship { color: var(--new); font-weight: 600; }
.summary-note { font-size: 0.75rem; color: var(--fg-muted); margin: 0.5rem 0 1.5rem; }
.promo-code { display: flex; gap: 0.5rem; margin: 1rem 0; }
.promo-code input { flex: 1; padding: 0.65rem 0.85rem; border: 1px solid var(--border); background: var(--white); font-size: 0.85rem; }
.promo-code button { padding: 0 1rem; background: var(--fg); color: var(--white); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; }

.empty-state { text-align: center; padding: 5rem 1.5rem; }
.empty-state i { font-size: 4rem; color: var(--border); margin: 0 auto 1.5rem; }
.empty-state h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--fg-muted); margin-bottom: 2rem; }

/* ===== Checkout ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; padding: 3rem 0; }
.checkout-section { margin-bottom: 2.5rem; }
.checkout-section h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.checkout-section h3 .step-num { width: 28px; height: 28px; background: var(--fg); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: span 2; }
.form-field { margin-bottom: 0; }
.form-field label { display: block; font-size: 0.78rem; font-weight: 500; margin-bottom: 0.35rem; color: var(--fg-soft); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 0.75rem 0.85rem; border: 1px solid var(--border); background: var(--white); font-size: 0.9rem; outline: none; transition: var(--t-fast); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--fg); }
.form-field textarea { resize: vertical; min-height: 80px; }

.payment-methods { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-option { border: 1px solid var(--border); padding: 1rem 1.25rem; cursor: pointer; transition: var(--t-fast); display: flex; align-items: center; gap: 1rem; }
.payment-option:hover { border-color: var(--fg); }
.payment-option.active { border-color: var(--fg); background: var(--bg-alt); }
.payment-option input[type="radio"] { accent-color: var(--fg); width: 18px; height: 18px; }
.payment-option-content { flex: 1; }
.payment-option-content h4 { font-size: 0.95rem; margin-bottom: 0.15rem; display: flex; align-items: center; gap: 0.5rem; }
.payment-option-content p { font-size: 0.8rem; color: var(--fg-muted); }
.payment-option-logos { display: flex; gap: 0.4rem; }
.payment-option-logos span { font-size: 0.62rem; padding: 0.2rem 0.5rem; background: var(--white); border: 1px solid var(--border); font-weight: 600; }

.bank-details { background: var(--bg-alt); padding: 1.5rem; margin-top: 1rem; display: none; }
.bank-details.active { display: block; }
.bank-details h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.bank-detail-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px dashed var(--border); font-size: 0.9rem; align-items: center; }
.bank-detail-row:last-child { border-bottom: none; }
.bank-detail-row strong { font-weight: 600; }
.copy-btn { font-size: 0.72rem; color: var(--accent); cursor: pointer; padding: 0.2rem 0.5rem; border: 1px solid var(--accent); }
.copy-btn:hover { background: var(--accent); color: var(--white); }

.upload-receipt { margin-top: 1rem; padding: 1.5rem; border: 2px dashed var(--border); text-align: center; cursor: pointer; transition: var(--t-fast); display: block; }
.upload-receipt:hover { border-color: var(--accent); background: var(--bg-alt); }
.upload-receipt input { display: none; }
.upload-receipt i { font-size: 1.8rem; color: var(--accent); margin-bottom: 0.5rem; }
.upload-receipt p { font-size: 0.85rem; color: var(--fg-soft); }
.upload-receipt .filename { font-size: 0.8rem; color: var(--new); margin-top: 0.5rem; font-weight: 500; }

.order-summary { background: var(--bg-alt); padding: 2rem; position: sticky; top: 90px; align-self: start; }
.order-summary h3 { margin-bottom: 1.5rem; }
.order-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); align-items: center; }
.order-item-img { width: 60px; aspect-ratio: 3/4; background: var(--bg); background-size: cover; background-position: center; }
.order-item-info h5 { font-size: 0.85rem; margin-bottom: 0.15rem; }
.order-item-info span { font-size: 0.75rem; color: var(--fg-muted); }
.order-item-price { font-size: 0.85rem; font-weight: 600; }

/* ===== Account ===== */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; padding: 3rem 0; }
.account-sidebar { border-right: 1px solid var(--border); padding-right: 2rem; }
.account-user { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.account-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 600; color: var(--accent-dark); margin-bottom: 0.75rem; }
.account-user h4 { font-size: 1rem; }
.account-user p { font-size: 0.8rem; color: var(--fg-muted); }
.account-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.account-nav a { padding: 0.75rem 1rem; font-size: 0.9rem; border-left: 2px solid transparent; transition: var(--t-fast); }
.account-nav a:hover, .account-nav a.active { background: var(--bg-alt); border-color: var(--fg); }
.account-content { min-width: 0; }
.account-section { display: none; }
.account-section.active { display: block; }
.account-section h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }

.auth-card { max-width: 440px; margin: 3rem auto; padding: 2.5rem; background: var(--white); border: 1px solid var(--border); }
.auth-card h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.auth-card .auth-sub { color: var(--fg-muted); margin-bottom: 2rem; font-size: 0.9rem; }
.auth-tabs { display: flex; margin-bottom: 2rem; border-bottom: 1px solid var(--border); }
.auth-tab { flex: 1; padding: 0.75rem; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: var(--t-fast); }
.auth-tab.active { color: var(--fg); border-color: var(--fg); }
.auth-form { display: none; }
.auth-form.active { display: block; }

.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th, .orders-table td { padding: 1rem 0.75rem; border-bottom: 1px solid var(--border); text-align: left; font-size: 0.88rem; }
.orders-table th { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); }
.status-badge { padding: 0.2rem 0.65rem; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.status-delivered { background: rgba(44,122,61,0.1); color: var(--new); }
.status-processing, .status-pending { background: rgba(193,154,107,0.15); color: var(--accent-dark); }
.status-shipped { background: rgba(27,40,69,0.1); color: var(--fg); }
.status-cancelled { background: rgba(192,57,43,0.1); color: var(--sale); }
.status-paid { background: rgba(44,122,61,0.1); color: var(--new); }

/* ===== Lookbook Page ===== */
.lookbook-hero { min-height: 70vh; background: var(--bg-dark); color: var(--white); display: flex; align-items: center; position: relative; }
.lookbook-campaigns { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 3rem 0; }
.campaign-card { aspect-ratio: 4/5; position: relative; overflow: hidden; cursor: pointer; }
.campaign-card.tall { aspect-ratio: 3/5; }
.campaign-bg { position: absolute; inset: 0; transition: transform var(--t-slow); }
.campaign-card:hover .campaign-bg { transform: scale(1.08); }
.campaign-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%); z-index: 1; }
.campaign-content { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; z-index: 2; color: var(--white); }
.campaign-content h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.campaign-content p { font-size: 0.9rem; opacity: 0.85; }
.campaign-tag { display: inline-block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 0.5rem; }

/* ===== About ===== */
.about-hero { min-height: 60vh; background: var(--bg-dark); color: var(--white); display: flex; align-items: center; padding: 5rem 0; }
.about-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; margin-bottom: 1.5rem; }
.about-hero h1 .italic { font-family: var(--font-display); font-style: italic; color: var(--accent); }
.about-content { padding: 5rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.about-visual { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--accent-soft), var(--accent)); }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.mvv-card { padding: 2rem; border: 1px solid var(--border); }
.mvv-card .icon { width: 48px; height: 48px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.mvv-card .icon i { font-size: 1.25rem; color: var(--accent); }
.mvv-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.mvv-card p { color: var(--fg-soft); line-height: 1.7; font-size: 0.95rem; }

.founder-card { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center; padding: 3rem; background: var(--bg-alt); }
.founder-img { aspect-ratio: 1/1; background: linear-gradient(135deg, var(--accent-soft), var(--accent)); }
.founder-content blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.4; margin-bottom: 1.5rem; color: var(--fg); }
.founder-content h4 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.founder-content .role { color: var(--accent); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== Blog ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 3rem 0; }
.blog-card { cursor: pointer; }
.blog-card-img { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--accent-soft), var(--accent)); margin-bottom: 1.25rem; overflow: hidden; position: relative; }
.blog-card-category { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); font-weight: 600; margin-bottom: 0.5rem; display: block; }
.blog-card h3 { font-size: 1.2rem; line-height: 1.3; margin-bottom: 0.5rem; transition: var(--t-fast); }
.blog-card:hover h3 { color: var(--accent); }
.blog-card-meta { font-size: 0.78rem; color: var(--fg-muted); display: flex; gap: 1rem; }
.blog-featured { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.blog-featured .blog-card-img { aspect-ratio: 4/3; }
.blog-featured h3 { font-size: 2rem; }
.blog-featured .excerpt { color: var(--fg-soft); margin: 1rem 0; line-height: 1.7; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; padding: 3rem 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 1.05rem; font-weight: 500; cursor: pointer; transition: var(--t-fast); background: none; color: var(--fg); }
.faq-question:hover { color: var(--accent); }
.faq-question .toggle { width: 24px; height: 24px; position: relative; flex-shrink: 0; }
.faq-question .toggle::before, .faq-question .toggle::after { content: ""; position: absolute; background: var(--fg); transition: var(--t); }
.faq-question .toggle::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-question .toggle::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.open .toggle::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--t); color: var(--fg-soft); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.5rem; }

/* ===== Contact ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; padding: 3rem 0; }
.contact-info-card { background: var(--bg-alt); padding: 2rem; }
.contact-method { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.contact-method:last-child { border-bottom: none; }
.contact-method .icon { width: 44px; height: 44px; background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method .icon i { font-size: 1.1rem; color: var(--accent); }
.contact-method h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-method p { font-size: 0.85rem; color: var(--fg-soft); }
.contact-method a { color: var(--accent); font-size: 0.85rem; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); padding: 2.5rem; }
.contact-form-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-form-card .sub { color: var(--fg-muted); margin-bottom: 2rem; font-size: 0.9rem; }

/* ===== Track Order ===== */
.track-card { max-width: 600px; margin: 4rem auto; text-align: center; padding: 3rem 2rem; background: var(--bg-alt); }
.track-card h1 { font-size: 2rem; margin-bottom: 0.75rem; }
.track-card p { color: var(--fg-soft); margin-bottom: 2rem; }
.track-form { display: flex; gap: 0.5rem; max-width: 480px; margin: 0 auto; }
.track-form input { flex: 1; padding: 0.85rem 1rem; border: 1px solid var(--border); background: var(--white); font-size: 0.95rem; outline: none; }
.track-result { margin-top: 2rem; text-align: left; background: var(--white); padding: 2rem; display: none; }
.track-result.show { display: block; }
.track-timeline { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.track-step { display: flex; gap: 1rem; align-items: flex-start; opacity: 0.5; }
.track-step.done { opacity: 1; }
.track-step .dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; margin-top: 2px; position: relative; background: var(--white); }
.track-step.done .dot { background: var(--new); border-color: var(--new); }
.track-step.done .dot::after { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; top: 0; left: 2px; font-size: 0.7rem; color: white; }
.track-step-info h5 { font-size: 0.95rem; margin-bottom: 0.15rem; }
.track-step-info span { font-size: 0.8rem; color: var(--fg-muted); }

/* ===== 404 ===== */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.error-page h1 { font-size: clamp(5rem, 15vw, 10rem); font-family: var(--font-display); font-style: italic; line-height: 1; color: var(--accent); margin-bottom: 1rem; }
.error-page h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.error-page p { color: var(--fg-muted); margin-bottom: 2rem; max-width: 500px; }

/* ===== Order Confirmation ===== */
.confirmation-page { max-width: 700px; margin: 0 auto; padding: 4rem 0; text-align: center; }
.confirmation-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--new); margin: 0 auto 2rem; display: flex; align-items: center; justify-content: center; }
.confirmation-icon i { font-size: 2rem; color: var(--white); }
.confirmation-page h1 { font-size: 2rem; margin-bottom: 0.75rem; }
.confirmation-page > p { color: var(--fg-soft); margin-bottom: 2rem; }
.order-details-card { background: var(--bg-alt); padding: 2rem; text-align: left; margin: 2rem 0; }
.order-details-card h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.order-details-row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.9rem; }
.order-details-row.total { border-top: 1px solid var(--border); margin-top: 0.5rem; padding-top: 1rem; font-weight: 700; font-size: 1rem; }
.confirmation-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Search ===== */
.search-results-info { padding: 3rem 0 1rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.search-results-info h2 { font-size: 1.5rem; }
.search-results-info p { color: var(--fg-muted); margin-top: 0.5rem; }

/* ===== Policy Pages ===== */
.policy-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; padding: 3rem 0; }
.policy-nav { position: sticky; top: 90px; align-self: start; }
.policy-nav a { display: block; padding: 0.75rem 1rem; font-size: 0.9rem; border-left: 2px solid transparent; transition: var(--t-fast); }
.policy-nav a:hover, .policy-nav a.active { background: var(--bg-alt); border-color: var(--fg); }
.policy-content { max-width: 800px; line-height: 1.8; }
.policy-content h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: var(--fg-soft); margin-bottom: 1rem; }
.policy-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content ul li { list-style: disc; margin-bottom: 0.5rem; color: var(--fg-soft); }

/* ===== Toast ===== */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); background: var(--fg); color: white; padding: 1rem 1.5rem; z-index: 9999; box-shadow: 0 8px 30px rgba(0,0,0,0.2); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); font-size: 0.9rem; max-width: 90vw; }
.toast.toast-success { background: var(--new); }
.toast.toast-error { background: var(--sale); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .product-grid, .category-grid { grid-template-columns: repeat(3, 1fr); }
    .ig-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: span 3; }
    .shop-layout, .checkout-layout, .cart-layout, .account-layout, .policy-layout { grid-template-columns: 1fr; }
    .shop-sidebar, .cart-summary, .order-summary, .account-sidebar, .policy-nav { position: static; }
    .product-detail { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-featured { grid-template-columns: 1fr; }
    .mvv-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .about-grid, .brand-story-grid, .latest-drop-grid { grid-template-columns: 1fr; gap: 2rem; }
    .founder-card { grid-template-columns: 1fr; }
    .lookbook-campaigns { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
}

/* Medium screens: narrow the inline search so nav links fit */
@media (max-width: 1200px) {
    .header-search-inline { width: 160px; max-width: 160px; }
    .header-nav { gap: 1rem; }
}

@media (max-width: 1100px) {
    .header-search-inline input { font-size: 0.8rem; }
}

@media (max-width: 1024px) {
    .header-nav { gap: 0.75rem; }
    .header-nav a { font-size: 0.72rem; }
    .header-search-inline { width: 140px; max-width: 140px; }
    .header-container { gap: 1rem; }
}

@media (max-width: 900px) {
    .header-container {
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 0 1rem !important;
        gap: 0.5rem !important;
    }
    .header-mobile-toggle { display: flex; }
    .header-nav { display: none !important; }
    .header-logo { margin-right: auto; }
    /* Hide inline search on mobile, show search icon instead */
    .header-search-inline { display: none !important; }
    .header-search-mobile-btn { display: flex; }
    .header-actions { flex-shrink: 0; }
    .header-icon-btn { width: 36px; height: 36px; }
    /* Mobile: only search icon + cart icon visible in header */
    .header-actions a[aria-label="Account"],
    .header-actions a[aria-label="Wishlist"] { display: none; }
    /* Nav drawer search */
    .nav-drawer-search {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-drawer-search form {
        display: flex;
        gap: 0.5rem;
        width: 100%;
    }
    .nav-drawer-search input {
        flex: 1;
        min-width: 0;
        padding: 0.75rem 1rem;
        border: 1px solid var(--border);
        border-radius: 4px;
        font-size: 0.95rem;
        outline: none;
        font-family: inherit;
    }
}

@media (max-width: 768px) {
    .header-logo-tag { display: none; }
    .header-logo-text { font-size: 1.3rem; }
    .product-grid, .category-grid, .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
    .ig-grid { grid-template-columns: repeat(3, 1fr); }
    /* Order tracking — stack vertically on mobile */
    .order-details-layout { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    /* ===== NUCLEAR MOBILE OVERFLOW FIX ===== */
    /* Force everything to stay within viewport */
    html, body { overflow-x: clip !important; max-width: 100vw !important; }
    * { max-width: 100% !important; box-sizing: border-box !important; }
    /* All flex containers wrap on mobile */
    .header-actions, .hero-actions, .checkout-section > div, .payment-methods, .summary-row, .order-item, .cart-item, .product-actions, .quantity-row, .nav-drawer-search form, .checkout-coupon > div, .confirmation-actions { flex-wrap: wrap; }
    /* All grid layouts become single column */
    .checkout-layout, .cart-layout, .account-layout, .policy-layout, .shop-layout, .product-detail, .brand-story-grid, .latest-drop-grid, .mvv-grid, .reviews-grid, .contact-layout, .founder-card, .blog-grid, .blog-featured, .order-details-layout { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    /* Containers constrained */
    .container { padding: 0 1rem !important; max-width: 100% !important; }
    .page-header { padding: 1.5rem 0 1rem; }
    .page-header h1 { font-size: 1.5rem; word-wrap: break-word; }
    .page-header .page-desc { font-size: 0.82rem; }
    /* Tables become card-based on mobile — no horizontal scroll */
    .orders-table { display: block !important; width: 100% !important; }
    .orders-table thead { display: none !important; }
    .orders-table tbody { display: block !important; width: 100% !important; }
    .orders-table tr { display: block !important; width: 100% !important; border: 1px solid var(--border) !important; border-radius: 8px !important; margin-bottom: 0.75rem !important; padding: 0.75rem !important; background: var(--white) !important; }
    .orders-table td { display: flex !important; justify-content: space-between !important; align-items: center !important; padding: 0.4rem 0 !important; border: none !important; border-bottom: 1px solid var(--border) !important; font-size: 0.82rem !important; text-align: right !important; white-space: normal !important; }
    .orders-table td:last-child { border-bottom: none !important; }
    .orders-table td::before { content: attr(data-label) !important; font-weight: 600 !important; font-size: 0.72rem !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; color: var(--fg-muted) !important; text-align: left !important; margin-right: 1rem !important; flex-shrink: 0 !important; }
    .orders-table td:empty::before { display: none !important; }
    /* Admin tables still scroll since they're complex */
    .admin-table { display: block !important; overflow-x: auto !important; white-space: nowrap !important; width: 100% !important; }
    /* Size tables scroll (too many columns) */
    .size-table { display: block !important; overflow-x: auto !important; white-space: nowrap !important; width: 100% !important; }
    /* Checkout specific fixes */
    .checkout-section { margin-bottom: 1.5rem !important; }
    .checkout-section h3 { font-size: 0.9rem !important; flex-wrap: wrap; }
    .checkout-section h3 .step-num { width: 24px !important; height: 24px !important; font-size: 0.75rem !important; }
    .payment-option { flex-direction: column !important; align-items: flex-start !important; gap: 0.5rem !important; padding: 0.85rem !important; }
    .payment-option-content h4 { font-size: 0.85rem !important; }
    .payment-option-content p { font-size: 0.75rem !important; }
    .payment-option-logos { gap: 0.3rem !important; }
    .payment-option-logos span { font-size: 0.55rem !important; padding: 0.15rem 0.35rem !important; }
    .bank-details { padding: 1rem !important; }
    .bank-detail-row { font-size: 0.8rem !important; flex-wrap: wrap; gap: 0.25rem; }
    .bank-detail-row strong { font-size: 0.78rem !important; word-break: break-all; }
    .upload-receipt { padding: 1rem !important; }
    .order-summary { padding: 1.25rem !important; position: static !important; }
    .order-item { grid-template-columns: 50px 1fr auto !important; gap: 0.5rem !important; }
    .order-item-img { width: 50px !important; }
    .order-item-info h5 { font-size: 0.78rem !important; word-wrap: break-word; }
    .order-item-info span { font-size: 0.7rem !important; }
    .order-item-price { font-size: 0.75rem !important; }
    .summary-row { font-size: 0.82rem !important; }
    .summary-row.total { font-size: 0.95rem !important; }
    .checkout-coupon { padding: 0.75rem !important; }
    .checkout-coupon input { font-size: 0.78rem !important; padding: 0.4rem 0.6rem !important; }
    .checkout-coupon button { font-size: 0.7rem !important; padding: 0.4rem 0.75rem !important; }
    /* Product detail */
    .product-detail { gap: 2rem !important; }
    .product-info h1 { font-size: 1.4rem !important; }
    .product-info .price { font-size: 1.2rem !important; }
    .gallery-main { aspect-ratio: 3/4 !important; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr) !important; gap: 0.5rem !important; }
    .size-options { gap: 0.35rem !important; }
    .size-option { min-width: 42px !important; padding: 0.5rem 0.65rem !important; font-size: 0.78rem !important; }
    .color-options { gap: 0.4rem !important; }
    .color-option { width: 32px !important; height: 32px !important; }
    .product-tabs { padding-top: 2rem !important; }
    .tabs-nav { gap: 1rem !important; }
    .tab-btn { font-size: 0.72rem !important; }
    .size-table { font-size: 0.78rem !important; }
    .size-table th, .size-table td { padding: 0.5rem !important; }
    /* Hero */
    .hero { min-height: 70vh !important; }
    .hero h1 { font-size: 1.8rem !important; }
    .hero p { font-size: 0.9rem !important; }
    .hero-actions { gap: 0.75rem !important; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { gap: 1rem !important; flex-wrap: wrap !important; }
    .hero-stat-num { font-size: 1.4rem !important; }
    /* Sections */
    .section { padding: 2rem 0 !important; }
    .section-title { font-size: 1.4rem !important; }
    .section-subtitle { font-size: 0.85rem !important; }
    /* Auth pages */
    .auth-card { margin: 1rem !important; padding: 1.25rem !important; }
    .auth-card h1 { font-size: 1.3rem !important; }
    /* Confirmation page */
    .confirmation-page { padding: 2rem 0 !important; }
    .order-details-card { padding: 1rem !important; }
    .order-details-row { font-size: 0.8rem !important; }
    /* Form grids */
    .form-grid { grid-template-columns: 1fr !important; }
    .form-grid .full { grid-column: span 1 !important; }
    .form-field input, .form-field select, .form-field textarea { font-size: 0.85rem !important; }
    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 1.5rem !important; }
    .footer-brand { grid-column: span 2; }
    .footer-bottom { flex-direction: column !important; align-items: flex-start !important; }
    /* Cart specific */
    .cart-item { grid-template-columns: 65px 1fr auto !important; gap: 0.6rem !important; padding: 1rem 0 !important; }
    .cart-item-img { width: 65px !important; }
    .cart-item-info { min-width: 0 !important; overflow: hidden !important; }
    .cart-item-info h4 { font-size: 0.82rem !important; word-wrap: break-word !important; overflow-wrap: break-word !important; }
    .cart-item-info .item-meta { font-size: 0.7rem !important; gap: 0.5rem !important; flex-wrap: wrap !important; }
    .cart-item-price { grid-column: 2; font-size: 0.8rem !important; }
    .cart-item-qty { grid-column: 2; }
    .cart-item-qty .quantity-selector { transform: scale(0.72); transform-origin: left center; }
    .cart-item-remove { grid-column: 3; grid-row: 1; align-self: start; }
    .cart-summary { padding: 1.25rem !important; position: static !important; }
    /* Brand story */
    .brand-story-grid, .latest-drop-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .brand-story-features { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
    /* Promo carousel */
    .promo-carousel-item { width: 280px; min-height: 85px; padding: 1rem 1.25rem; }
    .promo-carousel-item h3 { font-size: 0.9rem !important; }
    .promo-carousel-item p { font-size: 0.7rem !important; }
    /* Account */
    .account-layout { grid-template-columns: 1fr !important; }
    .account-sidebar { border-right: none !important; border-bottom: 1px solid var(--border) !important; padding-right: 0 !important; padding-bottom: 1.5rem !important; }
    /* Notification + balance pill */
    .balance-pill-mobile { top: 72px; right: 10px; }
    /* Drop countdown */
    .drop-countdown { flex-wrap: wrap !important; gap: 0.5rem !important; }
    .countdown-box { min-width: 65px !important; padding: 0.75rem !important; }
    .countdown-box .num { font-size: 1.5rem !important; }
    /* Lookbook */
    .lookbook-grid { grid-template-columns: 1fr !important; height: auto !important; }
    .lookbook-grid > * { aspect-ratio: 4/3 !important; }
    .lookbook-grid > :first-child { grid-row: span 1 !important; }
    /* Product meta */
    .product-meta { grid-template-columns: 1fr !important; }
    /* Newsletter */
    .newsletter-form { flex-direction: column !important; }
    .newsletter-form button { width: 100% !important; }
    /* Track form */
    .track-form { flex-direction: column !important; }
    .track-card { padding: 2rem 1rem !important; }
    /* Contact */
    .contact-info-card { padding: 1.25rem !important; }
    .contact-form-card { padding: 1.25rem !important; }
    /* Order tracking responsive */
    .order-details-page .status-header { padding: 1.5rem 1rem !important; }
    .order-details-page .status-content { flex-direction: column !important; gap: 1rem !important; }
    .order-details-page .order-number h1 { font-size: 1.3rem !important; }
    .order-details-page .status-info h2 { font-size: 1rem !important; }
    .order-details-page .map-tracking-section { padding: 1rem !important; }
    .order-details-page .map-container { height: 140px !important; }
    .order-details-page .eta-overlay-card { padding: 0.5rem !important; font-size: 0.72rem !important; }
    .order-details-page .timeline-card { padding: 1rem !important; }
    .order-details-page .timeline-vertical { padding-left: 20px !important; }
    .order-details-page .node-marker { width: 34px !important; height: 34px !important; }
    .order-details-page .node-content { padding-left: 0.75rem !important; }
    .order-details-page .node-title { font-size: 0.8rem !important; }
    .order-details-page .node-desc { font-size: 0.72rem !important; }
    .order-details-page .card-body { padding: 1rem !important; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .header-container { padding: 0 0.75rem; gap: 0.25rem; height: 64px; }
    .header-logo-text { font-size: 1.2rem; }
    .header-logo-tag { display: none; }
    /* Hide account and wishlist icons on very small screens, keep bell + cart */
    .header-actions a[aria-label="Account"],
    .header-actions a[aria-label="Wishlist"] { display: none; }
    /* Product grid: ALWAYS 2 columns minimum on mobile */
    .product-grid, .wishlist-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .ig-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .hero h1 { font-size: 2.2rem; }
    .quantity-row { flex-direction: column; }
    .product-actions .btn-row { flex-direction: column; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }
    .track-form { flex-direction: column; }
    .confirmation-actions { flex-direction: column; }
    /* Make product cards smaller on mobile */
    .product-card-media { aspect-ratio: 3/4; }
    .product-name { font-size: 0.82rem; }
    .price { font-size: 0.82rem; }
    .quick-view-btn { font-size: 0.65rem; padding: 0.5rem; }
    /* Cart items extra small */
    .cart-item { grid-template-columns: 60px 1fr auto !important; gap: 0.5rem !important; }
    .cart-item-img { width: 60px !important; }
    .cart-item-info h4 { font-size: 0.78rem !important; }
    .cart-item-info .item-meta { font-size: 0.68rem !important; }
    .cart-item-price { font-size: 0.75rem !important; }
    .cart-item-qty .quantity-selector { transform: scale(0.7); }
    /* Order tracking small screens */
    .order-details-page .status-header { padding: 1rem 0.75rem !important; }
    .order-details-page .order-number h1 { font-size: 1.25rem !important; }
    .order-details-page .map-container { height: 120px !important; }
    .order-details-page .delivery-vehicle { font-size: 1.2rem !important; }
    /* Smaller footer on very small screens */
    .footer-grid { grid-template-columns: 1fr !important; }
    .footer-brand { grid-column: span 1; }
    /* Promo carousel smaller */
    .promo-carousel-item { width: 260px; min-height: 85px; padding: 0.85rem 1rem; }
    .promo-carousel { gap: 0.75rem; }
    /* Account/Wallet pages */
    .account-layout { grid-template-columns: 1fr !important; }
    .account-sidebar { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 1.5rem; }
    /* Balance pill */
    .balance-pill-mobile { top: 64px; right: 10px; font-size: 0.68rem; padding: 0.25rem 0.6rem; }
}
