/* ============================================
    ASAR FRAGRANCES — Design System
   White base | Black structure | Gold accent only
   Typography: Outfit + Plus Jakarta Sans
   ============================================ */

/* === CSS Variables === */
:root {
    /* Gold tones — main 60% */
    --gold: #c9a227;
    --gold-light: #e5c158;
    --gold-dark: #a8860f;
    --gold-subtle: rgba(201,162,39,0.08);
    /* White — 30% */
    --pearl: #fdfcf9;
    --snow: #ffffff;
    /* Black — 10% accent */
    --onyx: #1a1a1a;
    --primary: #1a1a1a;
    --primary-light: #2a2a2a;
    --primary-dark: #0d0d0d;
    --border: #e8e5e0;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --emerald: #10b981;
    --red: #ef4444;
    --amber: #f59e0b;
    --blue: #3b82f6;
    --font-display: 'Outfit', 'Segoe UI', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    --radius-card: 8px;
    --radius-btn: 6px;
    --radius-pill: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-luxury: 0 10px 40px rgba(212,175,55,0.15);
    --transition: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--onyx);
    background: var(--pearl);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
}
ul, ol { list-style: none; }

/* === Typography === */
h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-display); 
    font-weight: 600; 
    line-height: 1.25; 
    color: var(--onyx);
    letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; font-weight: 400; }
h2 { font-size: 1.75rem; font-weight: 400; }
h3 { font-size: 1.35rem; font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 400; }
.heading-gold .gold { color: var(--gold); font-weight: 600; }

/* === Container === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }
@media (max-width: 480px) {
    .container, .container-sm { padding: 0 1rem; }
}

/* ============================================
   COMPONENTS
   ============================================ */

/* === Buttons === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
    border-radius: var(--radius-btn);
    transition: all 0.35s var(--transition);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.btn-primary {
    background: var(--onyx);
    color: #fff; border: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-luxury); }
.btn-secondary {
    background: var(--snow); color: var(--onyx);
    border: 1.5px solid var(--gold);
}
.btn-secondary:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--onyx); border: none; font-weight: 700;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(212,175,55,0.35); }
.btn-outline {
    background: transparent; color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--onyx); }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { opacity: 0.9; }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.88rem; }
.btn-lg { padding: 0.65rem 1.5rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* === Cards === */
.card {
    background: var(--snow);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }

/* === Form Inputs === */
.input, .form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-btn);
    font-size: 0.9rem;
    background: #fff;
    transition: border-color 0.3s;
}
.input:focus, .form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-subtle); }
textarea.input, textarea.form-input { resize: vertical; min-height: 80px; }
select.input, select.form-input { appearance: auto; }

/* === Badges === */
.badge {
    display: inline-flex; align-items: center; gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    font-size: 0.65rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    border-radius: 2px;
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
}
.badge-new,
.badge-best,
.badge-fast,
.badge-limited {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
}
.badge-discount {
    background: var(--gold);
    color: var(--onyx);
    border: 1px solid var(--gold-dark);
    font-weight: 700;
}
.product-stars { color: var(--gold); font-size: 0.75rem; }
.product-stars .review-count { color: var(--gray-500); font-weight: 400; }
.product-stars--empty { color: var(--gray-300); font-size: 0.75rem; }

/* === Skeleton Loader === */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-btn);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* === Toast === */
#toast-container { position: fixed; top: 1.5rem; right: 1.5rem; z-index: 10000; display: flex; flex-direction: column; gap: 0.5rem; }
.toast {
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-btn);
    font-size: 0.95rem; font-weight: 500;
    color: #fff;
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.4s var(--transition);
    display: flex; align-items: center; gap: 0.5rem;
    max-width: 360px;
}
.toast-success { background: var(--emerald); }
.toast-error { background: var(--red); }
.toast-warning { background: var(--amber); color: var(--onyx); }
.toast.hiding { animation: toastOut 0.3s var(--transition) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(100%); } }

/* Announcement: slide-in from right on first homepage load, auto-close after 2–3s */
.announcement-slide {
    position: fixed;
    bottom: 100px;
    right: 0;
    z-index: 9999;
}
.announcement-panel {
    width: 320px;
    max-width: calc(100vw - 80px);
    background: var(--snow);
    border: 1px solid rgba(201,162,39,0.3);
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 1.5rem;
    box-shadow: -8px 0 24px rgba(0,0,0,0.12);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--transition), opacity 0.3s, visibility 0.3s;
}
.announcement-slide.open .announcement-panel {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.announcement-panel-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.25rem;
    color: var(--gray-400);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
}
.announcement-panel-close:hover { color: var(--onyx); }
.announcement-panel-body {
    font-size: 0.95rem;
    color: var(--onyx);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    padding-right: 1.5rem;
}
.announcement-panel-btn {
    display: block;
    width: 100%;
}
@media (max-width: 480px) {
    .announcement-panel { width: 280px; }
    .announcement-slide { bottom: 80px; }
}

.mobile-offer-strip {
    display: none;
}
.hero-btn-text-mobile {
    display: none;
}

@keyframes mobileOfferMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.4s var(--transition), box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header.hidden { transform: translateY(-100%); }
.header-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 1.5rem 0;
    height: 70px;
}
@media (max-width: 480px) {
    .header-inner { padding: 10px 1rem 0; }
}

/* Logo */
.logo { display: flex; align-items: center; text-decoration: none; color: inherit; }
.logo-with-tagline { flex-direction: column; align-items: center; gap: 0; }
.logo-with-tagline .logo-img { margin-bottom: 6px; }
.logo-tagline {
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--onyx);
    margin-top: 0;
    line-height: 1;
}
.logo-tagline--footer {
    color: rgba(201,162,39,0.95);
}
.logo-img {
    height: 34px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo-img--mobile {
    height: 30px;
}
.logo-img--footer {
    height: 38px;
    filter: invert(1) brightness(1.1);
}

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em;
    color: var(--onyx);
    transition: color 0.3s;
    display: flex; align-items: center; gap: 0.35rem;
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link::after {
    content: ''; position: absolute; bottom: -1px; left: 1rem; right: 1rem;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: center;
    transition: transform 0.3s var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Mega Menu */
.nav-dropdown { position: relative; }
.mega-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    width: 720px; padding-top: 1rem;
    opacity: 0; visibility: hidden;
    transition: all 0.3s var(--transition);
}
.nav-dropdown:hover .mega-menu { opacity: 1; visibility: visible; }
.mega-menu-inner {
    background: var(--snow); border: 1px solid var(--border);
    border-radius: var(--radius-card); box-shadow: var(--shadow-lg);
    padding: 2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    align-items: start;
}
.mega-col h4 {
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--gray-500); margin-bottom: 0.75rem;
}
.mega-col a {
    display: block; padding: 0.35rem 0;
    font-size: 0.95rem; color: var(--gray-600);
    transition: color 0.2s, padding-left 0.2s;
}
.mega-col a:hover { color: var(--gold); padding-left: 0.5rem; }
.mega-featured {
    display: flex;
    align-items: stretch;
}
.mega-featured-card {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    padding: 0.5rem;
}
.mega-featured-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
    color: var(--onyx);
    text-decoration: none;
    transition: opacity 0.2s;
}
.mega-featured-link:hover { opacity: 0.9; }
.mega-featured-card:hover { border-color: rgba(201,162,39,0.4); }
.mega-featured-img {
    width: 100%; aspect-ratio: 1; border-radius: var(--radius-btn); overflow: hidden; background: var(--pearl);
}
.mega-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.mega-featured-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--onyx);
    text-align: center;
}
.mega-featured-btn {
    margin-top: 0.5rem;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.header-icon-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: var(--gray-600);
    transition: all 0.3s;
}
.header-icon-btn:hover { background: var(--gray-100); color: var(--gold); }
.cart-btn { position: relative; }
.wishlist-btn { position: relative; }
.cart-count {
    position: absolute; top: 2px; right: 2px;
    width: 18px; height: 18px;
    background: var(--onyx); color: #fff;
    border-radius: 50%; font-size: 0.75rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.cart-count:empty, .cart-count[data-count="0"] { display: none; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    width: 24px; padding: 8px 0;
}
.mobile-menu-btn span {
    display: block; height: 2px; background: var(--onyx);
    border-radius: 2px; transition: all 0.3s;
}

/* Search Overlay */
.search-overlay {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 1rem 0; box-shadow: var(--shadow-md);
    display: none;
}
.search-overlay.active { display: block; animation: slideDown 0.3s var(--transition); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.search-overlay-inner { max-width: 600px; margin: 0 auto; padding: 0 1.5rem; position: relative; }
@media (max-width: 480px) {
    .search-overlay-inner { padding: 0 1rem; }
    .search-close { right: 1.25rem; }
}
.search-overlay-inner input {
    width: 100%; padding: 0.85rem 3rem 0.85rem 1rem;
    border: 2px solid var(--gold); border-radius: var(--radius-pill);
    font-size: 1rem;
}
.search-close {
    position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
    font-size: 1.5rem; color: var(--gray-400);
}
.search-results {
    margin-top: 0.5rem; max-height: 300px; overflow-y: auto;
}
.search-loading {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1.25rem; color: var(--gray-500); font-size: 0.9rem;
}
.search-spinner {
    width: 18px; height: 18px; border: 2px solid var(--pearl);
    border-top-color: var(--gold); border-radius: 50%;
    animation: searchSpin 0.6s linear infinite;
}
@keyframes searchSpin { to { transform: rotate(360deg); } }
.search-result-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.75rem; border-radius: var(--radius-btn);
    transition: background 0.2s; cursor: pointer;
}
.search-result-item:hover { background: var(--pearl); }
.search-result-item .sr-img {
    width: 48px; height: 48px; min-width: 48px; background: var(--pearl);
    border-radius: var(--radius-btn); display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.search-result-item .sr-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.search-result-item .sr-info { flex: 1; }
.search-result-item .sr-name { font-weight: 600; font-size: 1rem; }
.search-result-item .sr-price { font-size: 0.95rem; color: var(--gold); font-weight: 600; }

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 1100; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(300px, 85vw); background: #fff; z-index: 1200;
    padding: 1.5rem; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.4s var(--transition);
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.mobile-nav-header button { font-size: 1.5rem; }
.mobile-nav a {
    display: block; padding: 0.85rem 1rem;
    font-size: 1.05rem; font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 0.75rem 0; }

/* Cart Drawer */
.cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 1100; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 400px; max-width: 90vw; background: #fff; z-index: 1200;
    display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.4s var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}
.cart-drawer.active { transform: translateX(0); }
.cart-drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 { font-family: var(--font-display); font-size: 1.2rem; }
.cart-drawer-header button { font-size: 1.5rem; color: var(--gray-400); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }

/* Cart Item */
.cart-item {
    display: flex; gap: 1rem; padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.cart-item-img {
    width: 64px; height: 64px; min-width: 64px; background: var(--pearl);
    border-radius: var(--radius-btn); display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; flex-shrink: 0; overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; }
.cart-item-variant { font-size: 0.85rem; color: var(--gray-500); }
.cart-item-price { font-weight: 700; font-size: 1rem; color: var(--gold); margin-top: 0.25rem; }
.cart-item-actions { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.qty-btn {
    width: 28px; height: 28px;
    border: 1.5px solid var(--border); border-radius: var(--radius-btn);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 600; background: #fff;
    transition: all 0.2s;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-item-qty { font-weight: 600; font-size: 0.9rem; min-width: 24px; text-align: center; }
.cart-item-remove { font-size: 0.85rem; color: var(--gray-500); margin-left: auto; transition: color 0.2s; }
.cart-item-remove:hover { color: var(--red); }

/* Cart Footer */
.cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); }
.shipping-progress { margin-bottom: 1rem; }
.shipping-progress-text { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0.5rem; }
.shipping-progress-text strong { color: var(--emerald); }
.shipping-bar { height: 4px; background: var(--gray-200); border-radius: var(--radius-pill); overflow: hidden; }
.shipping-bar-fill { height: 100%; background: var(--emerald); border-radius: var(--radius-pill); transition: width 0.5s; }
.cart-subtotal {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem;
}
.cart-subtotal span:last-child { color: var(--gold); font-family: var(--font-display); }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--gray-400); }
.cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; }

.wishlist-item-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.wishlist-item-actions .btn {
    flex: 1;
    min-height: 32px;
}

.wishlist-footer {
    border-top: 1px solid var(--border);
    padding-top: 0.9rem;
    margin-top: 0.9rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative; min-height: 85vh;
    background: var(--onyx);
    background-size: cover;
    background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff; overflow: hidden;
    padding-top: 70px;
}
.hero--has-image {
    background-image: var(--hero-bg);
}
.hero--has-image .hero-bg-pattern {
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 90% 60% at 50% 20%, rgba(201,162,39,0.25) 0%, transparent 55%),
                radial-gradient(circle at 75% 85%, rgba(201,162,39,0.12) 0%, transparent 45%),
                radial-gradient(circle at 20% 60%, rgba(201,162,39,0.08) 0%, transparent 40%);
    animation: heroPulse 8s ease-in-out infinite alternate;
}
@keyframes heroPulse {
    0% { opacity: 0.7; } 100% { opacity: 1; }
}
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 4.25rem 2rem 2rem; }
@media (max-width: 640px) {
    .announcement-slide { display: none; }
    body:has(.mobile-offer-strip) .header { top: 30px; }
    .mobile-offer-strip {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1105;
        display: block;
        height: 30px;
        overflow: hidden;
        background: linear-gradient(90deg, var(--onyx), #241e12, var(--onyx));
        border-top: 1px solid rgba(201,162,39,0.22);
        border-bottom: 1px solid rgba(201,162,39,0.22);
    }
    .mobile-offer-strip-track {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        min-width: max-content;
        white-space: nowrap;
        padding: 0.38rem 0;
        color: var(--gold-light);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        animation: mobileOfferMarquee 12s linear infinite;
    }
    .mobile-offer-separator {
        color: rgba(229,193,88,0.55);
        font-size: 0.68rem;
    }
    .mobile-offer-strip + .hero {
        padding-top: calc(94px + env(safe-area-inset-top)) !important;
    }
    .hero {
        min-height: 70svh;
        align-items: flex-end;
        padding-top: calc(66px + env(safe-area-inset-top)) !important;
        padding-bottom: 0 !important;
    }
    .hero--has-image {
        background-image: var(--hero-bg-mobile, var(--hero-bg));
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;
        background-color: transparent;
        background-origin: border-box;
        background-clip: border-box;
    }
    .hero-bg-pattern { display: none; }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 0.22rem;
        width: min(100%, 320px);
        margin: 0 auto;
        padding: 0 0 0.95rem;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .hero-badge { display: none; }
    .hero h1,
    .hero p { display: none; }
    .hero-actions {
        justify-content: center;
        gap: 0.35rem;
        margin-top: 0;
        margin-bottom: 0.35rem;
    }
    .hero-actions .btn {
        padding: 0.46rem 0.85rem;
        font-size: 0.74rem;
        min-height: 32px;
        width: auto !important;
        max-width: max-content;
        flex: 0 0 auto;
        border-radius: 999px;
    }
    .hero-btn-text-desktop { display: none; }
    .hero-btn-text-mobile { display: inline; }
    .hero-actions .hero-btn-outline { display: none; }
    .hero-scroll-hint { display: none; }
}
.hero-badge {
    display: inline-block; padding: 0.5rem 1.5rem;
    border: 1px solid rgba(201,162,39,0.6); border-radius: var(--radius-pill);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.hero h1 { font-size: 3.75rem; line-height: 1.1; margin-bottom: 1rem; color: #fff !important; }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin: 0 auto 1.4rem;
    line-height: 1.55;
    max-width: 500px;
    color: rgba(255,255,255,0.95) !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hero-actions { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn {
    padding: 0.8rem 1.45rem;
    font-size: 0.92rem;
    min-height: 44px;
}
.hero-btn-outline { border: 2px solid rgba(201,162,39,0.6) !important; color: var(--gold) !important; }
.hero-btn-outline:hover { background: var(--gold) !important; color: var(--onyx) !important; border-color: var(--gold) !important; }
.hero-scroll-hint {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: rgba(255,255,255,0.4);
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* Story Circles (Instagram-style) */
.story-circles-section { background: var(--pearl); }
.story-circles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
}
.story-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--onyx);
    transition: transform 0.3s var(--transition);
}
.story-circle:hover { transform: scale(1.05); }
.story-circle:hover .story-circle-avatar { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold-subtle); }
.story-circle-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 3px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-subtle), var(--pearl));
    transition: border-color 0.3s, box-shadow 0.3s;
}
.story-circle-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-circle-placeholder {
    font-size: 2rem;
}
.story-circle-name {
    font-size: 0.9rem;
    font-weight: 600;
    max-width: 90px;
    text-align: center;
    line-height: 1.2;
}
@media (max-width: 640px) {
    .story-circles { gap: 1.5rem 1.25rem; }
    .story-circle-avatar { width: 72px; height: 72px; font-size: 1.5rem; }
    .story-circle-name { font-size: 0.85rem; }
}

/* Show Reel (9:16 vertical) */
.section-reel {
    background: linear-gradient(180deg, rgba(201,162,39,0.06) 0%, var(--pearl) 100%);
    border-top: 1px solid rgba(201,162,39,0.15);
}
.reel-strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.reel-strip::-webkit-scrollbar { height: 6px; }
.reel-strip::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 3px; }
.reel-strip::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.reel-item-wrap {
    --reel-media-width: 220px;
    --reel-media-height: min(390px, calc(var(--reel-media-width) * 16 / 9));
    --reel-panel-width: 220px;
    flex: 0 0 var(--reel-media-width);
    min-width: var(--reel-media-width);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    scroll-snap-align: start;
    position: relative;
    transition: flex 0.35s var(--transition), min-width 0.35s var(--transition);
}
.reel-item-wrap.has-product:hover,
.reel-item-wrap.has-product:focus-within {
    flex: 0 0 calc(var(--reel-media-width) + var(--reel-panel-width) + 12px);
    min-width: calc(var(--reel-media-width) + var(--reel-panel-width) + 12px);
}
.reel-item-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    flex: 1 0 auto;
}
.reel-item-wrap.has-product .reel-item-row {
    gap: 12px;
}
.reel-item {
    flex: 0 0 var(--reel-media-width);
    width: var(--reel-media-width);
    min-width: var(--reel-media-width);
    height: var(--reel-media-height);
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201,162,39,0.2);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.reel-item-wrap:hover .reel-item,
.reel-item-wrap:focus-within .reel-item {
    border-color: rgba(201,162,39,0.5);
    box-shadow: 0 6px 20px rgba(201,162,39,0.15);
}
.reel-item-wrap.has-product:hover .reel-item,
.reel-item-wrap.has-product:focus-within .reel-item {
    border-radius: 12px;
}
.reel-iframe, .reel-link {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gold);
    font-weight: 600;
    background: var(--onyx);
}
.reel-placeholder { font-size: 1.5rem; }

.reel-product-below {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.4rem 0.5rem;
    text-decoration: none;
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
    border: 1px solid rgba(201,162,39,0.2);
    transition: background 0.2s, border-color 0.2s;
    max-width: var(--reel-media-width);
    align-self: flex-start;
}
.reel-product-below:hover {
    background: rgba(255,255,255,0.9);
    border-color: rgba(201,162,39,0.4);
}
.reel-product-below-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--onyx);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}
.reel-product-below-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.reel-product-hover-panel {
    flex: 0 0 0;
    width: 0;
    min-width: 0;
    margin-left: 0;
    height: var(--reel-media-height);
    overflow: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0;
    border-radius: 12px;
    border: 1px solid transparent;
    background: rgba(255,255,255,0.96);
    box-shadow: none;
    transition: width 0.35s var(--transition), min-width 0.35s var(--transition), opacity 0.3s var(--transition), padding 0.35s, border-color 0.25s, box-shadow 0.35s;
}
.reel-item-wrap:hover .reel-product-hover-panel,
.reel-item-wrap:focus-within .reel-product-hover-panel {
    flex: 0 0 var(--reel-panel-width);
    width: var(--reel-panel-width);
    min-width: var(--reel-panel-width);
    opacity: 1;
    padding: 0.75rem;
    border-color: rgba(201,162,39,0.4);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.reel-product-hover-thumb {
    width: 100%;
    flex: 1 1 0;
    min-height: 120px;
    max-height: 50%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--pearl);
    display: block;
}
.reel-product-hover-thumb img { width: 100%; height: 100%; object-fit: cover; }
.reel-product-hover-meta {
    min-width: 0;
    min-height: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    overflow: hidden;
}
.reel-product-hover-label {
    font-size: 0.58rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.reel-product-hover-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--onyx);
    line-height: 1.25;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.reel-product-hover-name:hover { color: var(--gold-dark); }
.reel-product-hover-desc {
    font-size: 0.72rem;
    color: var(--gray-500);
    line-height: 1.35;
    flex: 1 1 auto;
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.reel-product-hover-prices { display: flex; align-items: center; gap: 0.35rem; }
.reel-product-hover-price { font-size: 0.92rem; font-weight: 700; color: var(--gold-dark); }
.reel-product-hover-compare { font-size: 0.72rem; color: var(--gray-400); text-decoration: line-through; }
.reel-product-hover-actions {
    display: flex;
    gap: 0.35rem;
    margin-top: auto;
}
.reel-mini-btn {
    padding: 0.45rem 0.75rem;
    font-size: 0.7rem;
    min-height: 32px;
    line-height: 1;
    border-radius: 999px;
}
.reel-mini-btn--disabled {
    cursor: default;
    opacity: 0.75;
}
@media (max-width: 640px) {
    .reel-item-wrap {
        --reel-media-width: 160px;
        --reel-media-height: min(284px, calc(var(--reel-media-width) * 16 / 9));
        --reel-panel-width: 160px;
        flex: 0 0 160px;
        min-width: 160px;
    }
    .reel-item-wrap.has-product:hover,
    .reel-item-wrap.has-product:focus-within {
        flex: 0 0 336px;
        min-width: 336px;
    }
    .reel-item { max-height: 284px; }
    .reel-product-hover-thumb { min-height: 90px; max-height: 45%; flex: 1 1 0; }
    .reel-product-below { max-width: 160px; }
}

/* Trust Badges (directly below hero, no gap, golden bg) */
.trust-badges {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 1.25rem 0;
    margin: 0;
    border: none;
}
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: center;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--onyx);
}
.trust-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-badge-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--onyx);
}
@media (max-width: 768px) {
    .trust-badges + .section {
        margin-top: 0.55rem;
    }

    .trust-badges-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .trust-badge { font-size: 0.8rem; }
    .trust-badge-icon svg { width: 18px; height: 18px; }
}
@media (max-width: 480px) {
    .trust-badges { padding: 0.9rem 0; }
    .trust-badges-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.35rem; }
    .trust-badge { justify-content: center; gap: 0; font-size: 0; }
    .trust-badge-text { display: none; }
    .trust-badge-icon svg { width: 20px; height: 20px; }
}

/* Collection Scroller */
.collection-scroller {
    margin-bottom: 3rem;
}
.collection-scroller:last-child { margin-bottom: 0; }
.collection-scroller-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.collection-scroller-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}
.collection-scroller-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    transition: color 0.2s;
}
.collection-scroller-link:hover { color: var(--gold-dark); }
.collection-scroller .carousel-container { margin-top: 0; }

.mobile-view-more-wrap {
    display: none;
}

@media (max-width: 768px) {
    .home-featured-section .carousel-nav,
    .home-collections-section .carousel-nav {
        display: none;
    }

    .home-featured-section .carousel-container,
    .home-collections-section .carousel-container {
        overflow: visible;
    }

    .home-featured-section .carousel-track,
    .home-collections-section .carousel-track {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
    }

    .home-featured-section .carousel-track .product-card,
    .home-collections-section .carousel-track .product-card {
        width: 100%;
        min-width: 0;
        border-radius: 10px;
    }

    .home-featured-section .product-card-img,
    .home-collections-section .product-card-img {
        height: 188px;
        background: transparent;
    }

    .home-featured-section .carousel-track .product-card,
    .home-collections-section .carousel-track .product-card {
        min-height: 340px;
    }

    .home-featured-section .product-card-img-wrap,
    .home-collections-section .product-card-img-wrap {
        inset: 0;
    }

    .home-featured-section .product-card-img-wrap img,
    .home-collections-section .product-card-img-wrap img,
    .home-featured-section .product-card-img > img,
    .home-collections-section .product-card-img > img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        background: transparent;
    }

    .home-featured-section .product-card:hover .product-card-img-wrap .product-card-img-primary,
    .home-featured-section .product-card:hover .product-card-img-wrap .product-card-img-hover,
    .home-featured-section .product-card:hover .product-card-img > img,
    .home-collections-section .product-card:hover .product-card-img-wrap .product-card-img-primary,
    .home-collections-section .product-card:hover .product-card-img-wrap .product-card-img-hover,
    .home-collections-section .product-card:hover .product-card-img > img {
        transform: none;
    }

    .home-featured-section .product-card-img .badge,
    .home-collections-section .product-card-img .badge {
        top: 0.55rem;
        left: 0.55rem;
        font-size: 0.56rem;
        padding: 0.24rem 0.45rem;
    }

    .home-featured-section .product-card-wishlist,
    .home-collections-section .product-card-wishlist {
        opacity: 1;
        top: 0.55rem;
        right: 0.55rem;
        width: 30px;
        height: 30px;
        font-size: 0.88rem;
    }

    .home-featured-section .product-card-body,
    .home-collections-section .product-card-body {
        padding: 0.72rem 0.75rem 0.8rem;
    }

    .home-featured-section .product-card-category,
    .home-collections-section .product-card-category {
        font-size: 0.58rem;
        margin-bottom: 0.22rem;
        letter-spacing: 0.12em;
    }

    .home-featured-section .product-card-name,
    .home-collections-section .product-card-name {
        font-size: 0.84rem;
        margin: 0.08rem 0 0.25rem;
        line-height: 1.28;
    }

    .home-featured-section .product-card-stars,
    .home-collections-section .product-card-stars {
        font-size: 0.7rem;
    }

    .home-featured-section .product-card-desc,
    .home-collections-section .product-card-desc,
    .home-featured-section .product-card-stock,
    .home-collections-section .product-card-stock {
        display: none;
    }

    .home-featured-section .product-card-footer,
    .home-collections-section .product-card-footer {
        padding-top: 0.45rem;
        margin-top: 0.35rem;
    }

    .home-featured-section .product-card-price,
    .home-collections-section .product-card-price {
        font-size: 0.98rem;
    }

    .home-featured-section .product-card-compare,
    .home-collections-section .product-card-compare {
        font-size: 0.7rem;
        margin-left: 0.22rem;
    }

    .home-featured-section .product-card-actions,
    .home-collections-section .product-card-actions {
        margin-top: 0.4rem;
        padding-top: 0.45rem;
    }

    .home-featured-section .product-card-actions .btn,
    .home-collections-section .product-card-actions .btn {
        padding: 0.5rem 0.5rem;
        font-size: 0.72rem;
        min-height: 34px;
    }

    .featured-products-track > .product-card:nth-child(n+7),
    .collection-products-track > .product-card:nth-child(n+7) {
        display: none;
    }

    .mobile-view-more-wrap {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }

    .mobile-view-more-btn {
        min-width: 132px;
        min-height: 36px;
        border-radius: 999px;
        letter-spacing: 0.02em;
        font-size: 0.78rem;
        font-weight: 600;
        padding: 0.38rem 0.95rem;
        background: transparent;
        color: var(--gold-dark);
        border: 1px solid rgba(201,162,39,0.45);
        box-shadow: none;
    }

    .mobile-view-more-btn:hover {
        background: rgba(201,162,39,0.08);
        color: var(--gold-dark);
        border-color: rgba(201,162,39,0.65);
        transform: none;
    }

    .home-collections-section .collection-scroller {
        margin-bottom: 2.25rem;
    }

    .home-collections-section .collection-scroller-header {
        padding: 0;
        margin-bottom: 0.8rem;
    }

    .home-collections-section .collection-scroller-header h3 {
        font-size: 1.2rem;
    }

    .home-collections-section .collection-scroller-link {
        display: none;
    }
}

@media (max-width: 420px) {
    .home-featured-section .carousel-track,
    .home-collections-section .carousel-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .home-featured-section .product-card-img,
    .home-collections-section .product-card-img {
        height: 158px;
    }

    .home-featured-section .product-card-body,
    .home-collections-section .product-card-body {
        padding: 0.62rem 0.62rem 0.7rem;
    }

    .home-featured-section .product-card-name,
    .home-collections-section .product-card-name {
        font-size: 0.78rem;
    }

    .home-featured-section .product-card-actions .btn,
    .home-collections-section .product-card-actions .btn {
        font-size: 0.68rem;
        min-height: 32px;
        padding: 0.42rem 0.38rem;
    }
}

/* Our Story */
.section-story { background: var(--pearl); }
.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.story-content .section-badge { margin-bottom: 0.5rem; }
.story-content h2 { margin-bottom: 1rem; }
.story-lead {
    font-size: 1.15rem;
    color: var(--onyx);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.story-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.story-highlights {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.story-highlights span {
    font-size: 0.95rem;
    color: var(--gray-600);
}
.story-highlights strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.2rem;
}
.story-visual {
    background: var(--snow);
    border-radius: var(--radius-card);
    padding: 1.1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}
.story-visual-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: var(--radius-btn);
    overflow: hidden;
}
.story-visual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-visual::before {
    content: none;
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(201,162,39,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.story-visual-inner { position: relative; z-index: 1; }
.story-stat {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.story-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.story-tagline {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .story-grid { grid-template-columns: 1fr; }
    .story-visual { order: -1; padding: 2rem; }
    .story-stat { font-size: 3rem; }
    .story-highlights { gap: 1.5rem; flex-wrap: wrap; }
}

/* Fragrance Family Grid */
.fragrance-family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.fragrance-family-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--snow);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    transition: all 0.3s;
}
.fragrance-family-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.fragrance-family-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--onyx);
    margin-bottom: 0.35rem;
}
.fragrance-family-desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Feature Cards (Long Lasting Fragrances) */
.section-features { background: var(--pearl); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--snow);
    padding: 2rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}
.feature-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(201,162,39,0.3);
}
.feature-card-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* CTA outline on dark */
.cta-btn-outline { border-color: rgba(255,255,255,0.5) !important; color: #fff !important; }
.cta-btn-outline:hover { background: #fff !important; color: var(--onyx) !important; border-color: #fff !important; }

/* ============================================
   STATIC PAGES (Shipping, Contact, etc.)
   ============================================ */
.page-hero,
.shop-header {
    margin-top: 70px;
    padding: 2rem 2rem 3rem;
    background: linear-gradient(135deg, rgba(201,162,39,0.2) 0%, rgba(201,162,39,0.06) 100%);
    color: var(--onyx);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(201,162,39,0.15);
}
.page-hero::before,
.shop-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,162,39,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero .container,
.shop-header .container {
    position: relative;
    z-index: 1;
}
.page-hero .section-badge,
.shop-header .section-badge {
    margin-bottom: 0.75rem;
    color: var(--gold-dark);
}
.page-hero h1,
.shop-header h1 {
    font-size: 2.25rem;
    margin: 0 0 1rem;
    color: var(--onyx);
}
.page-hero p,
.shop-header p {
    color: var(--gray-600);
    font-size: 1.2rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.75;
}
.page-content { padding: 3rem 0; }
@media (max-width: 640px) {
    .page-hero, .shop-header { padding: 1.5rem 1rem 2rem; }
    .page-hero h1, .shop-header h1 { font-size: 1.75rem; }
    .page-hero p, .shop-header p { font-size: 1rem; }
    .page-content { padding: 2rem 0; }
}
.page-inner {
    max-width: 720px;
    margin: 0 auto;
}
.page-inner--wide { max-width: 960px; }
.page-inner h2 { font-size: 1.5rem; margin: 2rem 0 1rem; color: var(--onyx); }
.page-inner h2:first-child { margin-top: 0; }
.page-inner h3 { font-size: 1.2rem; margin: 1.5rem 0 0.75rem; color: var(--gray-700); }
.page-inner h4 { font-size: 1.05rem; margin: 1rem 0 0.5rem; }
.page-inner p, .page-inner li { color: var(--gray-600); line-height: 1.8; margin-bottom: 0.75rem; }
.page-inner ul { margin: 1rem 0; padding-left: 1.5rem; }
.faq-list { margin-top: 1.5rem; }
.faq-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { margin-bottom: 0.5rem; color: var(--onyx); }

/* Contact Page */
.contact-lead { margin-bottom: 2rem; font-size: 1.05rem; }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
    margin: 2rem 0;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
    display: block;
    padding: 1.5rem;
    background: var(--snow);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}
.contact-card:hover { border-color: var(--gold); box-shadow: 0 4px 12px rgba(201,162,39,0.1); }
.contact-card--address { cursor: default; }
.contact-card-icon { font-size: 1.5rem; display: block; margin-bottom: 0.75rem; }
.contact-card h4 { margin-bottom: 0.35rem; font-size: 1rem; }
.contact-card p { margin: 0; color: var(--gray-600); font-size: 0.95rem; line-height: 1.5; }
.contact-form-wrap {
    background: var(--snow);
    padding: 2rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
}
.contact-form-wrap h3 { margin-bottom: 1.25rem; font-size: 1.25rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form .form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.35rem; }
.contact-hours { margin-top: 1.5rem; font-size: 0.95rem; color: var(--gray-600); }
.developer-section { margin-top: 1rem; }
.developer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.developer-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-card);
    padding: 1.1rem 1.2rem;
}
.developer-card h4 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    color: var(--onyx);
}
.developer-card p {
    margin: 0 0 0.35rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.developer-card p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .developer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 4rem 0; }
.section-warm { background: linear-gradient(180deg, rgba(201,162,39,0.02) 0%, var(--pearl) 100%); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge {
    display: inline-block; 
    font-family: var(--font-body);
    font-size: 0.7rem; 
    font-weight: 600;
    letter-spacing: 0.15em; 
    text-transform: uppercase;
    color: var(--gray-500); 
    margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.5rem; font-size: 1.75rem; }
.section-header p { color: var(--gray-500); max-width: 560px; margin: 0 auto; font-size: 0.95rem; line-height: 1.65; }

/* Social Proof */
.social-proof { background: var(--snow); padding: 2rem 0; border-bottom: 1px solid var(--border); }
.social-proof-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
}
.social-proof span { font-size: 0.85rem; color: var(--gray-500); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.social-proof-logo {
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
    color: var(--gray-300); transition: color 0.3s;
}
.social-proof-logo:hover { color: var(--gray-500); }

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.product-grid.grid-2 { grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); }

/* Product Card */
.product-card {
    background: var(--snow);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--transition);
    position: relative;
    width: 280px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.product-grid .product-card {
    width: auto;
    min-width: 0;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08), 0 6px 20px rgba(201,162,39,0.06);
    border-color: rgba(201,162,39,0.2);
}
.product-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
}
.product-card-link:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}
.product-card-img {
    position: relative;
    height: 240px;
    background: linear-gradient(180deg, #fafaf8 0%, #f5f4f2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
}
.product-card-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.product-card-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition), opacity 0.3s;
}
.product-card-img-hover {
    opacity: 0;
}
.product-card:hover .product-card-img-wrap .product-card-img-primary { transform: scale(1.08); }
.product-card:hover .product-card-img-wrap .product-card-img-hover {
    opacity: 1;
    transform: scale(1.08);
}
/* Fallback for single img (no wrap) */
.product-card-img > img {
    transition: transform 0.6s var(--transition);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card:hover .product-card-img > img { transform: scale(1.08); }
.product-card-img .badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 2;
    font-size: 0.65rem; padding: 0.35rem 0.7rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.product-card-wishlist {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gray-400);
    transition: all 0.3s;
    opacity: 0;
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.06);
}
.product-card:hover .product-card-wishlist { opacity: 1; }
.product-card-wishlist:hover {
    color: var(--red);
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.product-card-wishlist.wishlisted { color: var(--red); opacity: 1; }
.product-card-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.5rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--gray-100);
}
.product-card-actions .btn {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.65rem 1.25rem;
}
.product-card-actions,
.product-card-actions .btn,
.product-card-footer form,
.product-card-footer .btn {
    position: relative;
    z-index: 3;
}
.product-card-wishlist {
    z-index: 4;
}
.product-card-body { padding: 1rem 1.2rem 1.25rem; }
.product-card-category {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
}
.product-card-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0.2rem 0 0.45rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.22s ease, font-weight 0.22s ease;
}
.product-card-name { font-weight: 600; }
.product-card-name a { transition: color 0.2s; color: var(--onyx); }
.product-card-name a:hover { color: var(--gold); }
.product-card:hover .product-card-name {
    color: var(--gold);
    font-weight: 700;
}
.product-card-desc {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-bottom: 0.6rem;
    line-height: 1.5;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--gray-100);
}
.product-card-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--onyx);
    letter-spacing: 0.01em;
}
.product-card-compare {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-left: 0.4rem;
}
.product-card-stock { font-size: 0.75rem; font-weight: 600; }
.stock-low { color: var(--red); }
.stock-out { color: var(--gray-400); }
.stock-in { color: var(--emerald); }

/* Star Rating Input */
.star-rating-input { display: flex; flex-direction: row-reverse; gap: 0.15rem; justify-content: flex-end; }
.star-rating-input input { display: none; }
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label { color: var(--gold) !important; }

/* Danger Button */
.btn-danger {
    background: var(--red); color: #fff; border-radius: var(--radius-btn);
    padding: 0.5rem 1rem; font-size: 0.85rem; font-weight: 600;
    transition: background 0.2s;
}
.btn-danger:hover { background: #dc2626; }

/* Carousel */
.carousel-container { position: relative; overflow: hidden; }
.carousel-track {
    display: flex; gap: 1.5rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -ms-overflow-style: none;
    padding: 0.5rem 0 1rem;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .product-card { width: 280px; min-width: 280px; flex-shrink: 0; scroll-snap-align: start; }
.carousel-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.95); box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--onyx);
    transition: all 0.3s; z-index: 5;
}
.carousel-nav:hover { background: var(--onyx); color: var(--gold); }
.carousel-nav.prev { left: 0.5rem; }
.carousel-nav.next { right: 0.5rem; }

/* Collections Grid */
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.collection-card {
    position: relative; border-radius: var(--radius-card); overflow: hidden;
    min-height: 300px; display: flex; align-items: flex-end;
    background: var(--onyx);
    transition: transform 0.4s var(--transition);
}
.collection-card--gold {
    background: linear-gradient(135deg, var(--onyx) 0%, #2a2416 50%, rgba(201,162,39,0.25) 100%);
}
.collection-card--gold .collection-card-content { background: linear-gradient(transparent, rgba(0,0,0,0.5)); }
.collection-card:hover { transform: translateY(-4px); }
.collection-card.tall { grid-row: span 2; }
.collection-card-content {
    position: relative; z-index: 2; padding: 2rem; color: #fff; width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.collection-card-content h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.collection-card-content p { font-size: 0.95rem; opacity: 0.8; margin-bottom: 0.75rem; }

/* Video Section */
.video-section {
    position: relative; min-height: 500px;
    background: var(--onyx);
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-align: center; overflow: hidden;
}
.video-section-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,162,39,0.2) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(201,162,39,0.1) 0%, transparent 50%);
}
.video-section-content { position: relative; z-index: 2; max-width: 600px; padding: 3rem; }
@media (max-width: 640px) {
    .video-section { min-height: 360px; }
    .video-section-content { padding: 2rem 1.5rem; }
    .play-btn { width: 64px; height: 64px; font-size: 1.25rem; }
}
.play-btn {
    width: 80px; height: 80px; border-radius: 50%;
    border: 2px solid rgba(201,162,39,0.5);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 2rem; font-size: 1.5rem;
    transition: all 0.3s;
}
.play-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--onyx); transform: scale(1.1); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card {
    padding: 2rem; text-align: center;
    border: 1px solid rgba(201,162,39,0.2);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(201,162,39,0.4); box-shadow: 0 8px 24px rgba(201,162,39,0.08); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 0.2em; }
.testimonial-text { font-style: italic; font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; }
.testimonial-author { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { font-size: 0.9rem; color: var(--gray-500); }

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--onyx) 0%, #1a1510 40%, #0f0d0a 100%);
    color: #fff; text-align: center; padding: 4rem 1.5rem;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 90% 50% at 50% 20%, rgba(201,162,39,0.18) 0%, transparent 55%);
    pointer-events: none;
}
.cta-section h2 { font-size: 2.2rem; margin-bottom: 0.75rem; color: #fff; }
.cta-section p { opacity: 0.9; max-width: 460px; margin: 0 auto 1.5rem; font-size: 1rem; }
@media (max-width: 640px) {
    .cta-section { padding: 2.35rem 1rem; }
    .cta-section h2 { font-size: 1.5rem; }
    .cta-section p { font-size: 0.92rem; margin-bottom: 1.15rem; }
}
.cta-section .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.cta-section .btn-outline:hover { background: #fff; color: var(--onyx); }
.cta-section .btn { padding: 0.75rem 1.25rem; }

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; padding: 2rem 0; }
.shop-sidebar { position: sticky; top: 90px; align-self: start; }
.shop-content { min-width: 0; }

/* Filters */
.filter-group { margin-bottom: 1.5rem; }
.filter-group-title {
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--gray-400); margin-bottom: 0.75rem;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
}
.filter-group-title .toggle-icon { transition: transform 0.3s; }
.filter-group-title.collapsed .toggle-icon { transform: rotate(-90deg); }
.filter-options { display: flex; flex-direction: column; gap: 0.5rem; }
.filter-option {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.95rem; cursor: pointer;
    transition: color 0.2s;
}
.filter-option:hover { color: var(--gold); }
.filter-option input[type="checkbox"] { accent-color: var(--gold); width: 16px; height: 16px; }
.filter-option .count { margin-left: auto; font-size: 0.88rem; color: var(--gray-500); }

/* Price Range */
.price-range-inputs { display: flex; gap: 0.5rem; align-items: center; }
.price-range-inputs input {
    width: 100%; padding: 0.5rem;
    border: 1.5px solid var(--border); border-radius: var(--radius-btn);
    font-size: 0.85rem; text-align: center;
}
.price-range-inputs span { color: var(--gray-400); }

/* Shop Controls */
.shop-controls {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.shop-count { font-size: 0.95rem; color: var(--gray-600); }
.shop-controls-right { display: flex; align-items: center; gap: 0.75rem; }
.sort-select {
    padding: 0.5rem 0.75rem; border: 1.5px solid var(--border);
    border-radius: var(--radius-btn); font-size: 0.9rem;
    background: var(--snow);
}
.grid-toggle { display: flex; gap: 0.25rem; }
.grid-toggle button {
    width: 36px; height: 36px;
    border: 1.5px solid var(--border); border-radius: var(--radius-btn);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-400); font-size: 0.9rem;
    transition: all 0.2s;
}
.grid-toggle button.active, .grid-toggle button:hover {
    border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08);
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.pdp {
    margin-top: 70px;
    padding: 2rem 0 4rem;
    background: var(--pearl);
}
.pdp-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.pdp-gallery {
    position: sticky;
    top: 90px;
    align-self: start;
    background: var(--snow);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.pdp-main-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-btn);
    background: linear-gradient(135deg, var(--pearl), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    overflow: hidden;
    cursor: zoom-in;
    margin-bottom: 0.75rem;
}
.pdp-thumbs { display: flex; gap: 0.5rem; }
.pdp-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-btn);
    background: var(--pearl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
}
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }

.pdp-info {
    background: var(--snow);
    padding: 2.25rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.pdp-breadcrumb {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.pdp-breadcrumb a { transition: color 0.2s; }
.pdp-breadcrumb a:hover { color: var(--gold); }
.pdp-name {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--onyx);
    line-height: 1.25;
    letter-spacing: 0.01em;
}
.pdp-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.pdp-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.12em; }
.pdp-review-count { font-size: 0.9rem; color: var(--gray-500); }
.pdp-price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pdp-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
}
.pdp-compare-price { font-size: 1.05rem; color: var(--gray-400); text-decoration: line-through; }
.pdp-discount-badge {
    background: rgba(16,185,129,0.12);
    color: #065f46;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
}
.pdp-short-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Variants */
.pdp-variants { margin-bottom: 1.5rem; }
.pdp-variants-label { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.pdp-variant-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.variant-btn {
    padding: 0.65rem 1.35rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    background: #fff;
}
.variant-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.variant-btn.active {
    border-color: var(--gold);
    background: rgba(201,162,39,0.12);
    color: var(--gold-dark);
}

/* Bundle */
.pdp-bundle-wrap {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr;
    gap: 1rem;
    align-items: start;
}
.pdp-bundle-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.pdp-bundle-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-btn);
    background: #fff;
    padding: 0.8rem 0.9rem;
}
.pdp-bundle-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
}
.pdp-bundle-item-main {
    border-color: rgba(201,162,39,0.45);
    background: rgba(201,162,39,0.08);
}
.pdp-bundle-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--onyx);
}
.pdp-bundle-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-dark);
}
.pdp-bundle-summary {
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: #fff;
    padding: 1rem;
    text-align: center;
}
.pdp-bundle-total-label {
    font-size: 0.78rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}
.pdp-bundle-total {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.7rem;
}

/* Quantity */
.pdp-qty { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.pdp-qty-label { font-size: 0.95rem; font-weight: 600; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-btn); overflow: hidden; }
.qty-control button {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 600; background: var(--pearl);
    transition: background 0.2s;
}
.qty-control button:hover { background: var(--gray-200); }
.qty-control input {
    width: 50px; height: 40px; text-align: center;
    border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border);
    font-weight: 600; font-size: 0.95rem;
}

/* Scarcity */
.pdp-scarcity {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1rem; border-radius: var(--radius-btn);
    background: #fef2f2; border: 1px solid #fecaca;
    font-size: 0.8rem; color: #991b1b; font-weight: 600;
    margin-bottom: 1.5rem;
}
.pdp-viewers {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; color: var(--gray-500);
    margin-bottom: 1.5rem;
}
.pdp-viewers .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Add to Cart Area */
.pdp-add-to-cart {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    align-items: stretch;
}
.pdp-add-cart-btn {
    flex: 1;
    font-size: 1.05rem;
    padding: 1rem 1.5rem;
    font-weight: 700;
}
.pdp-wishlist-btn {
    width: 52px;
    min-width: 52px;
    height: auto;
    font-size: 1.25rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-btn);
}
.pdp-wishlist-btn:hover { transform: scale(1.05); }

/* Trust Badges */
.pdp-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 1.75rem 0;
    border-top: 1px solid var(--border);
    margin-top: 1.5rem;
}
.pdp-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
}
.pdp-tabs {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--gray-500); }
.trust-icon { font-size: 1.2rem; }

/* Tabs */
.pdp-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 1.5rem;
}
.pdp-tab-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-500);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px; transition: all 0.3s;
}
.pdp-tab-btn:hover { color: var(--onyx); }
.pdp-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.pdp-tab-content {
    padding: 1rem 0;
    background: var(--pearl);
    padding: 1.5rem;
    border-radius: var(--radius-card);
}
.pdp-tab-panel { display: none; }
.pdp-tab-panel.active { display: block; animation: fadeIn 0.3s; }

/* Related Products on PDP */
.section-related {
    padding: 3.5rem 0;
    background: var(--pearl);
}
.section-related-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--onyx);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Notify Me */
.notify-me-form {
    background: var(--pearl); padding: 1.5rem;
    border-radius: var(--radius-card); margin-bottom: 1.5rem;
}
.notify-me-form h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.notify-me-form p { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 1rem; }
.notify-me-form .form-row { display: flex; gap: 0.5rem; }

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page { margin-top: 70px; padding: 1rem 0; }
.checkout-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; }
.checkout-steps { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.checkout-step {
    display: flex; align-items: center; gap: 0.5rem;
}
.checkout-step-num {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700;
    background: var(--gray-200); color: var(--gray-400);
}
.checkout-step.active .checkout-step-num { background: var(--onyx); color: #fff; }
.checkout-step.done .checkout-step-num { background: var(--emerald); color: #fff; }
.checkout-step-label { font-size: 0.85rem; font-weight: 500; }
.checkout-step-line { width: 40px; height: 2px; background: var(--gray-200); }

/* Order Summary Sidebar */
.order-summary { position: sticky; top: 90px; }
@media (max-width: 1024px) {
    .order-summary { position: static; }
}
.order-summary-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto auto;
    grid-template-areas:
        "img name qty price"
        "img variant qty price";
    align-items: center;
    column-gap: 0.85rem;
    row-gap: 0.2rem;
    padding: 0.75rem 0; border-bottom: 1px solid var(--gray-100);
}
.order-summary-img {
    grid-area: img;
    width: 48px; height: 48px; min-width: 48px; background: var(--pearl);
    border-radius: var(--radius-btn); display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0; overflow: hidden;
}
.order-summary-img img { width: 100%; height: 100%; object-fit: cover; }
.order-summary-name {
    grid-area: name;
    min-width: 0;
    font-size: 0.86rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.order-summary-qty { font-size: 0.75rem; color: var(--gray-400); }
.order-summary-qty-controls {
    grid-area: qty;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.1rem 0.25rem;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    background: #fff;
    justify-self: start;
    align-self: center;
}
.order-summary-qty-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 0;
    background: var(--pearl);
    color: var(--onyx);
    font-size: 0.82rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.order-summary-qty-btn:hover:not(:disabled) {
    background: var(--gold-subtle);
    color: var(--gold);
}
.order-summary-qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.order-summary-qty-count {
    min-width: 16px;
    text-align: center;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--onyx);
}
.order-summary-variant {
    grid-area: variant;
    display: block;
    font-size: 0.76rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.2;
    opacity: 1;
}
.order-summary-price {
    grid-area: price;
    font-size: 0.85rem;
    font-weight: 600;
    justify-self: end;
    align-self: center;
    white-space: nowrap;
}
.order-totals { padding-top: 1rem; }
.order-total-row { display: flex; justify-content: space-between; padding: 0.35rem 0; font-size: 0.9rem; }
.order-total-row.grand { font-size: 1.2rem; font-weight: 700; padding-top: 0.75rem; border-top: 2px solid var(--border); margin-top: 0.5rem; }
.order-total-row.grand span:last-child { color: var(--gold); font-family: var(--font-display); }
.discount-row { color: var(--emerald); }
.free-tag { color: var(--emerald); font-weight: 600; }

/* Payment Methods */
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.payment-option {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.85rem; border: 2px solid var(--border); border-radius: var(--radius-btn);
    cursor: pointer; transition: all 0.3s;
}
.payment-option:hover { border-color: var(--gold); }
.payment-option.active { border-color: var(--gold); background: rgba(212,175,55,0.08); }
.payment-option input { accent-color: var(--gold); }

/* ============================================
   ACCOUNT PAGE
   ============================================ */
.account-hero {
    margin-top: 70px;
    padding: 1.25rem 0 1.5rem;
    background: linear-gradient(135deg, rgba(201,162,39,0.18) 0%, rgba(201,162,39,0.06) 100%);
    border-bottom: 1px solid rgba(201,162,39,0.15);
}
.account-hero h1 { font-size: 1.75rem; margin: 0 0 0.25rem; color: var(--onyx); }
.account-hero p { margin: 0; font-size: 0.95rem; color: var(--gray-600); }
.account-page { padding: 2rem 0 4rem; }
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; align-items: start; }

/* Account Sidebar */
.account-sidebar {
    position: sticky;
    top: 90px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}
.account-sidebar-nav {
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border);
}
.account-sidebar-nav a {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.85rem 1rem; font-size: 0.9rem; font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.25s;
    text-decoration: none;
    color: var(--onyx);
}
.account-sidebar-nav a:last-of-type { border-bottom: none; }
.account-sidebar-nav a:hover { background: var(--gold-subtle); color: var(--gold); }
.account-sidebar-nav a.active {
    background: linear-gradient(90deg, rgba(201,162,39,0.12), transparent);
    color: var(--gold);
    font-weight: 600;
    border-left: 3px solid var(--gold);
}
.account-sidebar-nav .nav-icon { font-size: 1.1rem; opacity: 0.9; }
.account-sidebar-nav .nav-count {
    margin-left: auto;
    font-size: 0.8rem;
    background: var(--gray-200);
    color: var(--gray-600);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-pill);
}
.account-sidebar-nav a.active .nav-count { background: rgba(201,162,39,0.2); color: var(--gold-dark); }
.account-sidebar-nav .nav-logout { color: var(--red) !important; }
.account-sidebar-nav .nav-logout:hover { background: rgba(239,68,68,0.08) !important; color: var(--red) !important; }

/* Loyalty Card */
.loyalty-card {
    border-radius: var(--radius-card);
    padding: 1.25rem 1.25rem 1.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.loyalty-card > *:not(.loyalty-card-circle) {
    position: relative;
    z-index: 1;
}
.loyalty-card--gold { background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%); }
.loyalty-card--silver { background: linear-gradient(135deg, #6b6b6b 0%, #a8a8a8 50%, #c9c9c9 100%); }
.loyalty-card--bronze { background: linear-gradient(135deg, #6d3d1a 0%, #a0522d 50%, #cd7f32 100%); }
.loyalty-card--platinum { background: linear-gradient(135deg, #4a0d7a 0%, #7b2cbf 50%, #9d4edd 100%); }
.loyalty-card-circle {
    position: absolute; top: -40px; right: -40px;
    width: 140px; height: 140px; border-radius: 50%;
    background: rgba(255,255,255,0.12);
}
.loyalty-badge {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    opacity: 0.95;
}
.loyalty-tier { font-size: 1.4rem; margin: 0.35rem 0; font-family: var(--font-display); }
.loyalty-points { font-size: 0.9rem; opacity: 0.95; }
.loyalty-benefits-line {
    margin: 0.4rem 0 0;
    font-size: 0.7rem;
    opacity: 0.95;
    line-height: 1.5;
}
.loyalty-coupon-display {
    margin-top: 0.75rem;
    padding: 0.45rem 0.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 0.75rem;
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%;
}
.loyalty-coupon-code { opacity: 0.95; }
.loyalty-coupon-hint { opacity: 0.85; font-size: 0.65rem; }
.loyalty-coupon-used { margin-left: 0.35rem; font-size: 0.65rem; }
.loyalty-card button.btn {
    background: rgba(255,255,255,0.25) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
}
.loyalty-progress { margin-top: 1rem; }
.loyalty-progress-bar {
    height: 5px;
    background: rgba(255,255,255,0.35);
    border-radius: var(--radius-pill);
    overflow: hidden;
}
.loyalty-progress-fill {
    height: 100%;
    background: #fff;
    border-radius: var(--radius-pill);
    transition: width 0.5s ease;
}
.loyalty-progress-text { font-size: 0.7rem; opacity: 0.85; margin-top: 0.4rem; }

/* Account Content */
.account-section { padding: 1.75rem; margin-bottom: 1.5rem; border: 1px solid var(--border); }
.account-section-title { margin: 0 0 0.35rem; font-size: 1.35rem; }
.account-section-desc { color: var(--gray-500); font-size: 0.95rem; margin: 0; }
.account-subtitle { margin: 0 0 1.25rem; font-size: 1.15rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-100); }
.account-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.account-stat-card {
    background: var(--snow);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}
.account-stat-card:hover { border-color: rgba(201,162,39,0.4); box-shadow: 0 4px 12px rgba(201,162,39,0.08); }
.account-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.35rem;
}
.account-stat-label { font-size: 0.85rem; color: var(--gray-500); }
.account-order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}
.account-order-row:hover { background: var(--pearl); }
.account-order-row:last-child { border-bottom: none; }
.order-num { font-weight: 600; font-size: 0.95rem; color: var(--gold); display: block; }
.order-date { font-size: 0.8rem; color: var(--gray-400); }
.order-meta { text-align: right; }
.order-total { font-weight: 700; display: block; margin-bottom: 0.25rem; }
.account-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.add-address-form {
    display: none;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(201,162,39,0.06) 0%, var(--pearl) 100%);
    border-radius: var(--radius-card);
    border: 1px solid rgba(201,162,39,0.2);
}
.add-address-form h4 { margin-bottom: 1rem; }

/* Order card in orders tab */
.order-card {
    margin-bottom: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    transition: all 0.3s;
}
.order-card:hover { border-color: rgba(201,162,39,0.3); box-shadow: 0 2px 8px rgba(201,162,39,0.06); }

.account-orders-list { display: flex; flex-direction: column; gap: 0.75rem; }
.order-card-compact {
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.order-card-compact:hover { border-color: rgba(201,162,39,0.4); box-shadow: 0 2px 12px rgba(201,162,39,0.08); }

/* Address cards */
.address-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    transition: all 0.3s;
}
.address-card.is-default { border: 2px solid var(--gold); background: rgba(201,162,39,0.03); }
.address-card:hover { border-color: rgba(201,162,39,0.4); box-shadow: 0 2px 8px rgba(201,162,39,0.06); }

/* Empty states */
.account-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--gray-400);
}
.account-empty-icon { font-size: 2.5rem; margin-bottom: 0.75rem; opacity: 0.6; }
.account-empty p { margin: 0.5rem 0; font-weight: 500; color: var(--gray-500); }

@media (max-width: 768px) {
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .account-stats { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .account-page { padding: 1rem 0 2rem; }
    .account-hero h1 { font-size: 1.5rem; }
    .order-card { padding: 1rem !important; }
}

/* Order Timeline */
.order-timeline { display: flex; align-items: center; gap: 0; margin: 1rem 0; }
.timeline-step {
    display: flex; align-items: center; flex: 1;
}
.timeline-dot {
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; font-weight: 700; flex-shrink: 0;
    background: var(--gray-200); color: var(--gray-400);
}
.timeline-dot.completed { background: var(--gold); color: var(--onyx); }
.timeline-line { flex: 1; height: 2px; background: var(--gray-200); }
.timeline-line.completed { background: var(--gold); }

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-page {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex; align-items: center; justify-content: center;
    padding: 2rem;
}
.login-card { width: 100%; max-width: 440px; }
.login-header { text-align: center; margin-bottom: 2rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.input-icon-wrap { position: relative; }
.input-icon-wrap .icon { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--gray-400); }
.input-icon-wrap input { padding-left: 2.5rem; }
.input-icon-wrap .toggle-pw {
    position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
    color: var(--gray-400); cursor: pointer;
}
.demo-hint {
    background: var(--gold-subtle); padding: 0.75rem;
    border-radius: var(--radius-btn); text-align: center;
    font-size: 0.95rem; color: var(--gray-600); margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #1a1814 0%, #141210 50%, #0f0d0a 100%);
    color: #fff;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--gold) 20%, var(--gold-light) 50%, var(--gold) 80%, transparent 95%);
    opacity: 0.9;
}
.footer-heritage-strip {
    width: 100%;
    line-height: 0;
    background: #ececec;
    border-top: 1px solid rgba(201,162,39,0.25);
}
.footer-heritage-strip img {
    display: block;
    width: 100%;
    height: auto;
}
.footer-top { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-col { min-width: 0; }
.footer-col--brand {
    text-align: center;
}
.footer-col--brand .logo-with-tagline {
    display: inline-flex;
}
.footer-col--brand .footer-socials {
    justify-content: center;
}
.footer-col h4 {
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.25em;
    color: var(--gold); margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201,162,39,0.3);
}
.footer-col a {
    display: block; padding: 0.4rem 0; font-size: 0.95rem;
    color: rgba(255,255,255,0.78); transition: color 0.2s, padding-left 0.2s;
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-about { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
    width: 42px; height: 42px; border-radius: 50%;
    border: 2px solid rgba(201,162,39,0.5);
    display: flex; align-items: center; justify-content: center;
    color: rgba(201,162,39,0.9); transition: all 0.3s;
}
.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,162,39,0.15);
    box-shadow: 0 0 12px rgba(201,162,39,0.2);
}
.newsletter-form {
    display: flex; gap: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(201,162,39,0.25);
    border-radius: var(--radius-card);
    background: rgba(201,162,39,0.04);
}
.newsletter-form input {
    flex: 1; padding: 0.7rem 1rem; border: 1px solid rgba(201,162,39,0.35);
    border-radius: var(--radius-btn); background: rgba(255,255,255,0.06); color: #fff; font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 2px rgba(201,162,39,0.2); }
.newsletter-form .btn { flex-shrink: 0; }
@media (max-width: 480px) {
    .newsletter-form { flex-direction: column; }
}
.footer-bottom {
    border-top: 1px solid rgba(201,162,39,0.25);
    padding: 1.5rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.35) 100%);
}
.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-copyright-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,162,39,0.35);
    color: var(--gold);
    font-size: 0.75rem;
    line-height: 1;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
    font-size: 0.9rem; color: rgba(255,255,255,0.65);
    transition: color 0.2s;
    position: relative;
}
.footer-bottom-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom-links a:hover::after { width: 100%; }
.footer-credit {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}
.footer-credit-link {
    color: var(--gold) !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-credit-link:hover { color: var(--gold-light) !important; }

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    color: #fff;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    margin-top: 70px;
    padding: 2rem 2rem 3rem;
    background: linear-gradient(135deg, rgba(201,162,39,0.2) 0%, rgba(201,162,39,0.06) 100%);
    color: var(--onyx);
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(201,162,39,0.15);
}
.about-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,162,39,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.about-hero-content { position: relative; z-index: 1; }
.about-hero .section-badge { margin-bottom: 0.75rem; color: var(--gold-dark); }
.about-hero h1 { margin-bottom: 1rem; color: var(--onyx); }
.about-hero p {
    color: var(--gray-600); font-size: 1.2rem;
    max-width: 640px; margin: 0 auto; line-height: 1.75;
}
.about-content { padding: 4rem 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}
.about-section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}
.about-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}
.about-image-wrap { position: sticky; top: 90px; }
.about-image {
    aspect-ratio: 1;
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, var(--pearl) 0%, rgba(201,162,39,0.08) 100%);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.about-image-icon { font-size: 5rem; margin-bottom: 0.5rem; }
.about-image-caption {
    font-size: 0.8rem;
    color: var(--gray-500);
    letter-spacing: 0.05em;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--snow);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    transition: all 0.3s;
}
.stat-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.stat-value { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.9rem; color: var(--gray-500); margin-top: 0.35rem; }

/* Philosophy Section */
.section-philosophy { background: var(--snow); }
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.philosophy-card {
    background: var(--snow);
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    text-align: center;
    transition: all 0.3s;
}
.philosophy-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.philosophy-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}
.philosophy-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.philosophy-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Milestones Timeline */
.milestones-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.milestone {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--snow);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    transition: all 0.3s;
}
.milestone:hover {
    border-color: rgba(201,162,39,0.4);
    box-shadow: var(--shadow-md);
}
.milestone-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.milestone h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.milestone p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { position: static; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .philosophy-grid { grid-template-columns: 1fr; }
    .milestones-timeline { grid-template-columns: 1fr; }
}

/* ============================================
   ADMIN PAGES
   ============================================ */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 250px; background: var(--onyx); color: #fff;
    display: flex; flex-direction: column; flex-shrink: 0;
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 100;
    overflow: hidden;
}
.admin-sidebar-header {
    padding: 1.25rem; border-bottom: 1px solid var(--gray-800);
    display: flex; align-items: center; gap: 0.75rem;
}
.admin-sidebar-header img {
    background: #fff;
    padding: 6px;
    border-radius: 8px;
    object-fit: contain;
}
.admin-sidebar-header .logo-icon { width: 32px; height: 32px; font-size: 0.9rem; border-radius: 8px; }
.admin-sidebar-header .logo-name { font-size: 0.9rem; }
.admin-sidebar-header .logo-tag { font-size: 0.5rem; }
.admin-nav {
    flex: 1;
    padding: 0.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 162, 39, 0.55) rgba(255, 255, 255, 0.06);
}
.admin-nav::-webkit-scrollbar { width: 8px; }
.admin-nav::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.06); border-radius: 999px; }
.admin-nav::-webkit-scrollbar-thumb { background: rgba(201, 162, 39, 0.55); border-radius: 999px; }
.admin-nav::-webkit-scrollbar-thumb:hover { background: rgba(201, 162, 39, 0.75); }
.admin-nav-link {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.7rem 1rem; border-radius: var(--radius-btn);
    font-size: 0.85rem; font-weight: 500; color: var(--gray-400);
    margin-bottom: 0.15rem; transition: all 0.2s;
    text-decoration: none;
}
.admin-nav-link:hover { background: var(--gray-800); color: #fff; }
.admin-nav-link.active {
    background: var(--gold);
    color: #111;
    font-weight: 700;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}
.admin-nav-link.active svg { color: #111; }
.admin-nav-link.active span { color: #111; }
.admin-nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.admin-sidebar-footer {
    padding: 1rem; border-top: 1px solid var(--gray-800);
}
.admin-sidebar-footer a { font-size: 0.8rem; color: var(--gray-500); display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.admin-sidebar-footer a:hover { color: var(--gold); }

.admin-main { flex: 1; margin-left: 250px; background: var(--gray-50); }
.admin-sidebar-overlay { display: none; }
.admin-topbar {
    height: 56px; background: #fff; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: flex-end;
    padding: 0 1.5rem; position: sticky; top: 0; z-index: 50; overflow: visible;
}
.admin-topbar .admin-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.75rem; font-weight: 700;
}
.admin-content { padding: 1.5rem; }
.admin-content .card {
    padding: 1.5rem;
}
.admin-page-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.75rem;
}
.admin-page-title {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(201,162,39,0.25);
}
.admin-page-title h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--onyx);
    letter-spacing: -0.02em;
}
.admin-page-title p {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.4;
}
.admin-page-title .admin-page-title-accent {
    color: var(--gold);
}

/* Admin Form Cards (Add/Edit modals) */
.admin-form-card {
    max-width: 560px;
    padding: 1.5rem 2rem !important;
}
.admin-form .form-group {
    margin-bottom: 1rem;
}
.admin-form .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--gray-700);
}
.admin-form .form-input {
    width: 100%;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-btn);
    font-size: 0.9rem;
}
.admin-form .form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--gold-subtle);
}
.admin-form textarea.form-input {
    min-height: 100px;
    resize: vertical;
}
.admin-form select.form-input {
    appearance: auto;
    cursor: pointer;
}

/* KPI Cards */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.kpi-card { padding: 1.25rem; }
.kpi-icon {
    width: 36px; height: 36px; border-radius: var(--radius-btn);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.75rem; font-size: 1.1rem;
}
.kpi-icon.purple { background: rgba(212,175,55,0.15); color: var(--gold); }
.kpi-icon.green { background: rgba(16,185,129,0.1); color: var(--emerald); }
.kpi-icon.blue { background: rgba(59,130,246,0.1); color: var(--blue); }
.kpi-icon.amber { background: rgba(245,158,11,0.1); color: var(--amber); }
.kpi-label { font-size: 0.7rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; }
.kpi-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin: 0.25rem 0; }
.kpi-change { font-size: 0.75rem; font-weight: 600; display: flex; align-items: center; gap: 0.25rem; }
.kpi-change.up { color: var(--emerald); }
.kpi-change.down { color: var(--red); }
.kpi-card-link { cursor: pointer; transition: box-shadow 0.2s, border-color 0.2s; display: block; }
.kpi-card-link:hover { box-shadow: var(--shadow-md); border-color: var(--gold) !important; }

/* Admin Quick Actions */
.admin-quick-action {
    display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
    padding: 0.85rem 0.6rem; border-radius: var(--radius-btn);
    background: #fff; border: 1px solid var(--border);
    text-decoration: none; color: var(--gray-700);
    transition: all 0.2s; min-height: 72px;
}
.admin-quick-action:hover {
    border-color: var(--gold); background: rgba(201,162,39,0.06);
    color: var(--onyx); box-shadow: var(--shadow-sm);
}
.admin-quick-action-icon {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.admin-quick-action-label { font-size: 0.75rem; font-weight: 600; text-align: center; }
.admin-quick-action-count { font-size: 0.65rem; color: var(--gray-400); }

/* Admin Tables */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
    padding: 0.75rem 1rem; text-align: left;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--gray-400);
    background: var(--pearl); border-bottom: 1px solid var(--border);
}
.admin-table td {
    padding: 0.75rem 1rem; font-size: 0.85rem;
    border-bottom: 1px solid var(--gray-100);
}
.admin-table tr:hover td { background: var(--pearl); }
.admin-table .actions { display: flex; gap: 0.5rem; justify-content: flex-end; }
.admin-table .actions button {
    width: 30px; height: 30px; border-radius: var(--radius-btn);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; font-size: 0.85rem;
}
.admin-table .actions button:hover { background: var(--pearl); }

/* Kanban Board */
.kanban-board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.kanban-col { background: var(--pearl); border-radius: var(--radius-card); padding: 0.75rem; min-height: 300px; }
.kanban-col-header {
    display: flex; align-items: center; gap: 0.5rem;
    margin-bottom: 0.75rem; padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}
.kanban-dot { width: 10px; height: 10px; border-radius: 50%; }
.kanban-dot.blue { background: var(--blue); }
.kanban-dot.amber { background: var(--amber); }
.kanban-dot.purple { background: #8b5cf6; }
.kanban-dot.green { background: var(--emerald); }
.kanban-col-title { font-size: 0.85rem; font-weight: 600; }
.kanban-col-count {
    margin-left: auto; font-size: 0.7rem; font-weight: 600;
    background: #fff; padding: 0.1rem 0.5rem; border-radius: var(--radius-pill);
    color: var(--gray-500);
}
.kanban-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-btn);
    padding: 0.85rem; margin-bottom: 0.5rem; cursor: pointer;
    transition: box-shadow 0.2s;
}
.kanban-card:hover { box-shadow: var(--shadow-md); }
.kanban-card-order { font-size: 0.75rem; font-weight: 700; color: var(--gold); }
.kanban-card-customer { font-size: 0.85rem; font-weight: 500; margin: 0.25rem 0; }
.kanban-card-total { font-size: 0.85rem; font-weight: 700; }
.kanban-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; }
.kanban-card-date { font-size: 0.7rem; color: var(--gray-400); }
.kanban-card-move { font-size: 0.7rem; font-weight: 600; color: var(--gold); }
.kanban-card-move:hover { text-decoration: underline; }

/* Modal */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px); z-index: 5000;
    display: none; align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
    background: #fff; border-radius: var(--radius-card);
    box-shadow: var(--shadow-lg); width: 100%; max-height: 85vh;
    overflow-y: auto; animation: modalIn 0.3s var(--transition);
}
.modal-sm { max-width: 440px; }
.modal-md { max-width: 640px; }
.modal-lg { max-width: 900px; }
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 1.1rem; }
.modal-close { font-size: 1.5rem; color: var(--gray-400); }
.modal-body { padding: 1.5rem; }
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 0.75rem; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* Drawer (Admin side panel) */
.drawer-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 5000; display: none;
}
.drawer-overlay.active { display: block; }
.drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 480px; max-width: 90vw; background: #fff;
    z-index: 5100; transform: translateX(100%);
    transition: transform 0.4s var(--transition);
    overflow-y: auto; box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}
.drawer.active { transform: translateX(0); }
.drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
    position: sticky; top: 0; background: #fff; z-index: 2;
}
.drawer-body { padding: 1.5rem; }

/* Discount Cards */
.discount-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.discount-card { padding: 1.5rem; }
.discount-code { font-family: var(--font-body); font-size: 1.2rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; }
.discount-type { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.25rem; }
.discount-meta { margin-top: 0.75rem; }
.discount-meta-row { display: flex; justify-content: space-between; font-size: 0.8rem; padding: 0.2rem 0; }
.discount-meta-row .label { color: var(--gray-400); }
.discount-progress { height: 4px; background: var(--gray-200); border-radius: var(--radius-pill); margin-top: 0.75rem; overflow: hidden; }
.discount-progress-fill { height: 100%; background: var(--gold); border-radius: var(--radius-pill); }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-velvet, .text-primary { color: var(--gold); }
.text-gold { color: var(--gold); }
.text-gray { color: var(--gray-500); }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.15rem; }
.font-display { font-family: var(--font-display); }
.font-bold { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none !important; }

/* Professional reading rhythm across pages */
p,
li {
    text-align: justify;
    text-justify: inter-word;
}

/* Keep intentionally centered marketing copy untouched */
.hero p,
.section-header p,
.shop-header p,
.page-hero p,
.about-hero p,
.testimonial-text,
.cta-section p,
.footer-copyright,
.footer-credit,
.footer-about {
    text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .main-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .pdp-layout { grid-template-columns: 1fr; }
    .pdp-gallery { position: static; }
    .checkout-layout { grid-template-columns: 1fr; }
    .account-layout { grid-template-columns: 1fr; }
    .collections-grid { grid-template-columns: 1fr 1fr; }
    .collection-card.tall { grid-row: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .kanban-board { grid-template-columns: 1fr 1fr; }
    /* Admin mobile */
    .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s; position: fixed; z-index: 200; box-shadow: 4px 0 20px rgba(0,0,0,0.2); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .admin-mobile-toggle { display: flex !important; align-items: center; justify-content: center; padding: 0.5rem 1rem; font-size: 1.25rem; background: var(--pearl); border: 1px solid var(--border); border-radius: var(--radius-btn); cursor: pointer; margin-right: 1rem; }
    .admin-sidebar-overlay {
        display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 150;
        cursor: pointer; transition: opacity 0.3s;
    }
    .admin-sidebar-overlay.active { display: block; }
}
.admin-mobile-toggle { display: none; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 2.75rem; }
    .admin-content { padding: 1rem; }
    .admin-topbar { padding: 0 1rem; }
    .admin-form-card { padding: 1rem 1.25rem !important; max-width: 100%; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    .collections-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { padding: 2.5rem 0 1.75rem; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1rem;
        align-items: start;
    }
    .footer-col h4 {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
        margin-bottom: 0.65rem;
        padding-bottom: 0.35rem;
    }
    .footer-col a {
        padding: 0.22rem 0;
        font-size: 0.84rem;
    }
    .footer-about {
        font-size: 0.84rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
    .footer-socials { gap: 0.55rem; }
    .footer-socials a { width: 36px; height: 36px; }
    .newsletter-form {
        padding: 0.75rem;
        gap: 0.4rem;
    }
    .newsletter-form input {
        padding: 0.62rem 0.8rem;
        font-size: 0.85rem;
    }
    .footer-col--brand,
    .footer-col--newsletter { grid-column: 1 / -1; }
    .footer-col--shop { grid-column: 1; }
    .footer-col--help { grid-column: 2; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-bottom { padding: 1rem 0; }
    .footer-bottom-links {
        gap: 0.9rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-bottom-links a { font-size: 0.82rem; }
    .footer-copyright { font-size: 0.84rem; }
    .footer-credit { order: 3; width: 100%; }
    .kanban-board { grid-template-columns: 1fr; }
    .kpi-grid { grid-template-columns: 1fr 1fr; }

    .pdp { padding: 1rem 0 2.5rem; }
    .pdp-info,
    .pdp-gallery { padding: 1rem; }
    .pdp-name { font-size: 1.6rem; }
    .pdp-price { font-size: 1.55rem; }
    .pdp-price-box { flex-wrap: wrap; gap: 0.6rem; }
    .pdp-qty { flex-wrap: wrap; }
    .pdp-add-to-cart { flex-direction: column; }
    .pdp-wishlist-btn { width: 100%; min-width: 0; min-height: 46px; }
    .pdp-trust { grid-template-columns: 1fr; gap: 0.85rem; }
    .pdp-tab-nav { overflow-x: auto; white-space: nowrap; }
    .pdp-tab-btn { flex: 0 0 auto; padding: 0.75rem 1rem; }
    .pdp-tab-content { padding: 1rem; }
    .notify-me-form .form-row { flex-direction: column; }
    .pdp-bundle-wrap { grid-template-columns: 1fr; }
    .pdp-bundle-item { grid-template-columns: auto 1fr; }
    .pdp-bundle-item-price { grid-column: 2; }

    /* Compact homepage sections for mobile readability */
    .section {
        padding: 2.4rem 0;
    }

    .section-header {
        margin-bottom: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    /* Our Story: tighter and cleaner on phones */
    .section-story {
        padding: 2.25rem 0;
    }

    .story-grid {
        gap: 1.4rem;
    }

    .story-content {
        padding: 0 0.1rem;
    }

    .story-content h2 {
        font-size: 1.35rem;
        margin-bottom: 0.8rem;
    }

    .story-lead {
        font-size: 0.98rem;
        line-height: 1.65;
        margin-bottom: 0.8rem;
    }

    .story-content p {
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 0.75rem;
    }

    .story-highlights {
        gap: 0.9rem;
        padding: 0.75rem 0;
        margin: 0.95rem 0;
    }

    .story-highlights strong {
        font-size: 1.15rem;
    }

    .story-highlights span {
        font-size: 0.82rem;
    }

    .story-visual {
        padding: 1rem;
        border-radius: 10px;
    }

    .story-visual-img {
        min-height: 220px;
    }

    /* Contact and other content pages: compact cards + better fit */
    .page-content {
        padding: 2rem 0;
    }

    .page-inner {
        max-width: 100%;
    }

    .page-inner h2 {
        font-size: 1.3rem;
        margin: 1.35rem 0 0.75rem;
    }

    .page-inner h3 {
        font-size: 1.08rem;
        margin: 1rem 0 0.55rem;
    }

    .page-inner p,
    .page-inner li {
        font-size: 0.93rem;
        line-height: 1.7;
    }

    .contact-layout {
        gap: 1.1rem;
        margin: 1.2rem 0;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-card h4 {
        font-size: 0.95rem;
    }

    .contact-card p {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .contact-form-wrap {
        padding: 1rem;
    }

    .contact-form-wrap h3 {
        font-size: 1.08rem;
        margin-bottom: 0.9rem;
    }

    .contact-hours {
        margin-top: 1rem;
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .developer-card {
        padding: 0.9rem 1rem;
    }

    .developer-card p {
        font-size: 0.88rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70svh;
        padding-top: calc(62px + env(safe-area-inset-top)) !important;
        align-items: flex-end;
        padding-bottom: 0 !important;
    }
    .mobile-offer-strip { height: 28px; }
    .mobile-offer-strip-track {
        font-size: 0.68rem;
        padding: 0.34rem 0;
    }
    body:has(.mobile-offer-strip) .header { top: 28px; }
    .mobile-offer-strip + .hero { padding-top: calc(88px + env(safe-area-inset-top)) !important; }
    .hero-content {
        width: min(100%, 280px);
        padding: 0 0 0.8rem;
        border-radius: 0;
        gap: 0.18rem;
    }
    .hero--has-image {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;
        background-color: transparent;
        background-origin: border-box;
        background-clip: border-box;
    }
    .hero-badge { display: none; }
    .hero-actions .btn {
        padding: 0.42rem 0.76rem;
        font-size: 0.7rem;
        min-height: 30px;
        width: auto !important;
        max-width: max-content;
        flex: 0 0 auto;
        border-radius: 999px;
    }
    .product-grid { grid-template-columns: 1fr; }
    .carousel-track .product-card { width: 260px; min-width: 260px; }
    .checkout-steps { gap: 0.5rem; }
    .checkout-step-label { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .payment-options { grid-template-columns: 1fr; }

    .variant-btn { width: 100%; text-align: left; }
    .pdp-breadcrumb { font-size: 0.78rem; }

    /* Admin: table scroll + compact */
    .admin-content { padding: 0.75rem; }
    .admin-table { font-size: 0.8rem; }
    .admin-table th, .admin-table td { padding: 0.5rem 0.6rem; }
    .admin-table .actions { flex-wrap: wrap; }
    .kanban-board { grid-template-columns: 1fr; gap: 0.75rem; }
    .kanban-col { min-height: 200px; }
    .drawer { width: 100%; max-width: 100%; }

    .section {
        padding: 2rem 0;
    }

    .section-header {
        margin-bottom: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.2rem;
    }

    .story-visual-img {
        min-height: 190px;
    }

    .story-highlights {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .story-highlights span {
        font-size: 0.8rem;
    }

    .story-highlights strong {
        font-size: 1.05rem;
    }

    .contact-card,
    .contact-form-wrap,
    .developer-card {
        border-radius: 10px;
    }

    .page-inner p,
    .page-inner li,
    .contact-card p,
    .contact-hours,
    .developer-card p {
        font-size: 0.9rem;
    }
}

/* Body offset for fixed header */
main { padding-top: 0; }
