/* ═══════════════════════════════════════════════════════════
   Silkweave — Global Stylesheet
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── VARIABLES ── */
:root {
    --gold: #C9965A;
    --gold-light: #E8C08A;
    --deep: #1A0F0A;
    --cream: #FDF6EE;
    --warm-white: #FAF4EC;
    --text: #3D2B1F;
    --muted: #7A6558;
    --border: rgba(201, 150, 90, 0.22);
    --card-bg: #FFFBF5;
    --success: #2E7D52;
    --danger: #8B2020;
    --warning: #C9965A;
    --radius: 4px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── ANNOUNCEMENT BAR ── */
.announcement {
    background: var(--deep);
    color: var(--gold-light);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}

/* ── HEADER ── */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(253, 246, 238, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo { display: flex !important; flex-direction: column !important; align-items: flex-start; line-height: 1; text-decoration: none; gap: 3px; }
.logo-main { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 600; color: var(--deep); letter-spacing: 0.04em; line-height: 1; }
.logo-sub { display: block; font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }
/* Image logo */
.site-logo { height: 141px !important; width: auto; max-width: 260px; object-fit: contain; display: block; }
.footer-brand .site-logo, .footer-logo { height: 80px; filter: brightness(0) invert(1); opacity: 0.90; }

nav { display: flex; gap: 32px; }
nav a { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: var(--text); font-weight: 500; position: relative; padding-bottom: 2px; }
nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
nav a:hover::after { width: 100%; }
nav a:hover, nav a.active { color: var(--gold); }
nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions button, .header-actions a { background: none; border: none; cursor: pointer; color: var(--text); font-size: 1.1rem; text-decoration: none; display: flex; align-items: center; transition: color 0.2s; }
.header-actions button:hover, .header-actions a:hover { color: var(--gold); }

.cart-btn { position: relative; }
.cart-count, .wishlist-count { position: absolute; top: -6px; right: -8px; background: var(--gold); color: #fff; font-size: 0.62rem; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* ── HERO ── */
.hero { min-height: 90vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; }
.hero-left { background: var(--deep); display: flex; align-items: center; justify-content: center; padding: 80px 70px; position: relative; overflow: hidden; }
.hero-left::before { content: ''; position: absolute; top: -80px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201, 150, 90, 0.12), transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 520px; }
.hero-eyebrow { display: inline-block; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 6px 16px; border-radius: 2px; margin-bottom: 28px; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5vw, 5rem); line-height: 1.05; color: var(--cream); font-weight: 300; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { color: rgba(253, 246, 238, 0.68); font-size: 0.97rem; line-height: 1.85; margin-bottom: 40px; max-width: 380px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 6s ease; }
.hero-right:hover img { transform: scale(1.04); }
.hero-right-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(26, 15, 10, 0.6), transparent); padding: 40px; color: var(--cream); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201, 150, 90, 0.25); backdrop-filter: blur(8px); border: 1px solid rgba(201, 150, 90, 0.4); padding: 8px 18px; border-radius: 40px; font-size: 0.78rem; color: var(--gold-light); letter-spacing: 0.1em; }
.hero-stats { display: flex; gap: 40px; margin-top: 20px; }
.stat-item { text-align: left; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--cream); line-height: 1; }
.stat-label { font-size: 0.7rem; color: rgba(253, 246, 238, 0.6); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* ── BUTTONS ── */
.btn-primary-gold {
    background: var(--gold); color: var(--deep); border: none;
    padding: 14px 32px; font-size: 0.8rem; letter-spacing: 0.15em;
    text-transform: uppercase; font-weight: 500; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: background 0.3s, transform 0.2s;
    font-family: 'DM Sans', sans-serif; border-radius: 2px;
}
.btn-primary-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline-gold {
    background: transparent; color: var(--cream);
    border: 1px solid rgba(253, 246, 238, 0.4);
    padding: 14px 32px; font-size: 0.8rem; letter-spacing: 0.15em;
    text-transform: uppercase; font-weight: 500; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: border-color 0.3s, color 0.3s;
    font-family: 'DM Sans', sans-serif; border-radius: 2px;
}
.btn-outline-gold:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
    background: var(--deep); color: var(--cream); border: none;
    padding: 14px 32px; font-size: 0.8rem; letter-spacing: 0.15em;
    text-transform: uppercase; font-weight: 500; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: background 0.3s, transform 0.2s;
    font-family: 'DM Sans', sans-serif; border-radius: 2px;
}
.btn-dark:hover { background: #2d1a10; transform: translateY(-2px); }

.btn-outline-dark {
    background: transparent; color: var(--deep);
    border: 1px solid var(--deep);
    padding: 12px 28px; font-size: 0.8rem; letter-spacing: 0.12em;
    text-transform: uppercase; font-weight: 500; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: all 0.3s; font-family: 'DM Sans', sans-serif; border-radius: 2px;
}
.btn-outline-dark:hover { background: var(--deep); color: var(--cream); }

.btn-sm { padding: 9px 20px; font-size: 0.72rem; }

/* ── HERO BANNER CAROUSEL ── */
.hero-carousel { position: relative; overflow: hidden; height: 90vh; min-height: 520px; background: var(--deep); }
.hero-track { display: flex; height: 100%; transition: transform .65s cubic-bezier(.4,0,.2,1); will-change: transform; }
.hero-slide { flex: 0 0 100%; height: 100%; position: relative; }
.hero-slide-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,15,10,.75) 0%, rgba(26,15,10,.35) 55%, transparent 100%); display: flex; align-items: center; }
.hero-slide-content { max-width: 600px; padding: 0 80px; color: #fdf6ee; }
.hero-slide-content .hero-eyebrow { display: block; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 600; }
.hero-slide-content h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; line-height: 1.12; margin: 0 0 20px; color: #fdf6ee; }
.hero-slide-content h1 em { font-style: italic; color: var(--gold); }
.hero-slide-content p { font-size: 1rem; line-height: 1.7; color: rgba(253,246,238,.82); margin: 0 0 32px; max-width: 440px; }
.hero-slide-content .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-slide-default .hero-slide-overlay { background: linear-gradient(135deg, var(--deep) 0%, #4a2c1a 100%); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.12); backdrop-filter: blur(6px); border: 1.5px solid rgba(255,255,255,.3); width: 52px; height: 52px; border-radius: 50%; font-size: 2rem; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; padding: 0; line-height: 1; }
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: all .25s; padding: 0; }
.hero-dot.active { background: var(--gold); width: 26px; }

/* ── PRODUCT SLIDER ── */
.saree-slider-wrap { position: relative; margin-top: 28px; padding: 0 52px; }
.slider-viewport { overflow: hidden; width: 100%; }
.slider-track { display: flex; gap: 24px; transition: transform .45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.slider-track .product-card { flex: 0 0 var(--slider-card-w, 280px); width: var(--slider-card-w, 280px); min-width: 0; }
.slider-arrow { position: absolute; top: 40%; transform: translateY(-50%); z-index: 10; background: #fff; border: 1.5px solid #e0d8cc; width: 46px; height: 46px; border-radius: 50%; font-size: 1.9rem; color: #2d1a10; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 16px rgba(0,0,0,.12); transition: background .2s, color .2s, border-color .2s; padding: 0; line-height: 1; }
.slider-arrow:hover { background: #c9965a; color: #fff; border-color: #c9965a; }
.slider-prev { left: 0; }
.slider-next { right: 0; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.slider-dot { width: 8px; height: 8px; border-radius: 4px; background: #e0d8cc; cursor: pointer; transition: all .25s; border: none; padding: 0; outline: none; }
.slider-dot.active { background: #c9965a; width: 24px; }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--gold); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 28s linear infinite; gap: 0; }
.marquee-track span { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--deep); font-weight: 500; padding: 0 32px; }
.marquee-track span::after { content: '✦'; margin-left: 32px; opacity: 0.5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION UTILS ── */
.section { padding: 90px 40px; max-width: 1400px; margin: 0 auto; }
.section-label { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.section-label span { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.section-label::before, .section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-label::before { display: none; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--deep); margin-bottom: 10px; line-height: 1.1; }
.section-sub { color: var(--muted); font-size: 0.92rem; line-height: 1.8; max-width: 480px; margin-bottom: 50px; }

/* ── CATEGORY STRIP ── */
.cat-strip { background: var(--warm-white); padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cat-strip-inner { display: flex; gap: 0; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; padding: 8px 40px 16px; }
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-strip-inner .cat-pill:first-child { margin-left: auto; }
.cat-strip-inner .cat-pill:last-child { margin-right: auto; }
.cat-pill { display: flex; flex-direction: column; align-items: center; gap: 14px; text-decoration: none; flex: 0 0 auto; padding: 0 36px; scroll-snap-align: center; }
.cat-circle { width: 116px; height: 116px; border-radius: 50%; background: var(--cream); border: 3px solid var(--border); overflow: hidden; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; display: flex; align-items: center; justify-content: center; }
.cat-circle img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.cat-pill:hover .cat-circle { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 10px 28px rgba(201,150,90,0.22); }
.cat-pill:hover .cat-circle img { transform: scale(1.08); }
.cat-name { font-size: 0.73rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text); font-weight: 600; text-align: center; }
.cat-pill:hover .cat-name { color: var(--gold); }

/* ── PRODUCT GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.product-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.35s ease, box-shadow 0.35s ease; cursor: pointer; position: relative; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26, 15, 10, 0.1); }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; background: #EEE5D8; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-img-link { position: absolute; inset: 0; z-index: 1; }
.product-badge { position: absolute; top: 14px; left: 14px; background: var(--deep); color: var(--gold-light); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 10px; border-radius: 2px; z-index: 2; }
.product-badge.sale { background: #8B2020; color: #FFE0E0; }
.product-badge.new { background: var(--gold); color: var(--deep); }
.product-actions { position: absolute; bottom: -60px; left: 0; right: 0; display: flex; transition: bottom 0.35s ease; background: var(--deep); z-index: 2; }
.product-card:hover .product-actions { bottom: 0; }
.product-actions button { flex: 1; padding: 14px; background: none; border: none; color: var(--cream); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; font-family: 'DM Sans', sans-serif; }
.product-actions button:hover { background: var(--gold); color: var(--deep); }
.product-actions button + button { border-left: 1px solid rgba(255, 255, 255, 0.1); }
.product-info { padding: 18px 20px 22px; }
.product-type { font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 400; color: var(--deep); margin-bottom: 8px; line-height: 1.3; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-size: 1rem; font-weight: 500; color: var(--deep); }
.product-price del { color: var(--muted); font-weight: 300; font-size: 0.85rem; margin-right: 6px; }
.product-rating { display: flex; gap: 2px; font-size: 0.7rem; color: var(--gold); }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; align-items: center; }
.filter-bar span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.filter-btn { padding: 8px 20px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--border); background: none; color: var(--text); cursor: pointer; border-radius: 40px; transition: all 0.25s; font-family: 'DM Sans', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--deep); color: var(--cream); border-color: var(--deep); }

/* ── SPLIT BANNER ── */
.split-banner { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; overflow: hidden; border-radius: 8px; margin: 0 40px 90px; max-width: 1320px; margin-left: auto; margin-right: auto; }
.split-panel { position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.split-panel img, .split-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.split-panel:hover img, .split-panel:hover .split-bg-img { transform: scale(1.05); }
.split-overlay { position: relative; z-index: 2; padding: 50px; background: linear-gradient(to top, rgba(26, 15, 10, 0.8) 0%, rgba(26, 15, 10, 0.1) 70%, transparent); width: 100%; }
.split-eyebrow { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; display: block; }
.split-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--cream); font-weight: 300; line-height: 1.1; margin-bottom: 20px; }

/* ── FEATURES STRIP ── */
.features-strip { background: var(--deep); padding: 60px 40px; }
.features-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 30px 20px; border: 1px solid rgba(201, 150, 90, 0.15); border-radius: var(--radius); transition: border-color 0.3s; }
.feature-item:hover { border-color: var(--gold); }
.feature-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(201, 150, 90, 0.12); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--gold); }
.feature-title { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); font-weight: 500; }
.feature-desc { font-size: 0.82rem; color: rgba(253, 246, 238, 0.5); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--warm-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; font-style: italic; line-height: 1.75; color: var(--text); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--deep); font-weight: 600; }
.author-name { font-size: 0.82rem; font-weight: 500; color: var(--deep); }
.author-loc { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

/* ── NEWSLETTER ── */
.newsletter { text-align: center; background: var(--deep); padding: 90px 40px; position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(201, 150, 90, 0.1), transparent 60%); pointer-events: none; }
.newsletter h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.5rem); color: var(--cream); font-weight: 300; margin-bottom: 14px; position: relative; }
.newsletter p { color: rgba(253, 246, 238, 0.56); font-size: 0.93rem; margin-bottom: 36px; position: relative; }
.nl-form { display: flex; max-width: 480px; margin: 0 auto; position: relative; }
.nl-form input { flex: 1; padding: 16px 22px; background: rgba(253, 246, 238, 0.08); border: 1px solid rgba(201, 150, 90, 0.3); color: var(--cream); font-size: 0.88rem; outline: none; font-family: 'DM Sans', sans-serif; border-right: none; transition: border-color 0.3s; border-radius: 2px 0 0 2px; }
.nl-form input::placeholder { color: rgba(253, 246, 238, 0.35); }
.nl-form input:focus { border-color: var(--gold); }
.nl-form button { padding: 16px 28px; background: var(--gold); color: var(--deep); border: none; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; border-radius: 0 2px 2px 0; transition: background 0.3s; white-space: nowrap; }
.nl-form button:hover { background: var(--gold-light); }

/* ── FOOTER ── */
footer { background: var(--deep); border-top: 1px solid rgba(201, 150, 90, 0.15); padding: 70px 40px 40px; }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(201, 150, 90, 0.12); margin-bottom: 40px; }
.footer-brand .logo-main { color: var(--cream); font-size: 1.7rem; }
.footer-brand p { color: rgba(253, 246, 238, 0.45); font-size: 0.85rem; line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: opacity 0.25s, transform 0.2s; flex-shrink: 0; border: none; }
.social-btn svg { display: block; }
.social-btn:hover { opacity: 0.85; transform: scale(1.1); }
.social-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-wa { background: #25D366; }
.social-fb { background: #1877F2; }
.footer-col h5 { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(253, 246, 238, 0.45); text-decoration: none; font-size: 0.85rem; transition: color 0.25s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(253, 246, 238, 0.28); font-size: 0.78rem; }
.payment-icons { display: flex; gap: 8px; }
.pay-badge { background: rgba(253, 246, 238, 0.07); border: 1px solid rgba(201, 150, 90, 0.15); padding: 5px 10px; border-radius: 3px; font-size: 0.65rem; color: rgba(253, 246, 238, 0.4); letter-spacing: 0.08em; }

/* ── CART DRAWER ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(26, 15, 10, 0.5); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; top: 0; right: 0; width: 420px; height: 100vh; background: var(--cream); z-index: 1200; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; border-left: 1px solid var(--border); }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header { padding: 24px 28px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-drawer-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; }
.close-cart { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--muted); line-height: 1; padding: 4px; }
.close-cart:hover { color: var(--deep); }

/* ── SEARCH SUGGESTIONS DROPDOWN (shared widget) ── */
.ss-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(26,15,10,0.14);
    z-index: 3000;
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
}
.ss-dropdown.ss-open { display: block; }

.ss-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
    cursor: pointer;
}
.ss-item:last-of-type { border-bottom: none; }
.ss-item:hover, .ss-item.ss-active { background: var(--warm-white); }

.ss-img {
    width: 44px;
    height: 54px;
    object-fit: cover;
    border-radius: 3px;
    background: #EEE5D8;
    flex-shrink: 0;
    display: block;
}
.ss-img-ph { display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }

.ss-item-info { flex: 1; min-width: 0; }
.ss-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--deep);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}
.ss-item-cat { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.ss-item-price { font-size: 0.85rem; font-weight: 500; color: var(--text); white-space: nowrap; flex-shrink: 0; }
.ss-item-price del { color: var(--muted); font-weight: 400; margin-right: 3px; }

.ss-status {
    padding: 20px 16px;
    font-size: 0.88rem;
    color: var(--muted);
    text-align: center;
}
.ss-view-all {
    display: block;
    padding: 12px 16px;
    text-align: center;
    font-size: 0.73rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.18s, background 0.18s;
}
.ss-view-all:hover { color: var(--deep); background: var(--border); }

/* ── HOME SEARCH SECTION ── */
.home-search-section {
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 40px;
}
.home-search-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.home-search-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}
.home-search-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: visible;
    transition: border-color 0.2s;
    position: relative;
}
.home-search-bar:focus-within { border-color: var(--gold); }
.home-search-bar svg { color: var(--muted); flex-shrink: 0; margin-left: 16px; }
.home-search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 12px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    outline: none;
    min-width: 0;
}
.home-search-bar input::placeholder { color: var(--muted); }
.home-search-bar button {
    background: var(--deep);
    color: var(--cream);
    border: none;
    padding: 0 26px;
    height: 100%;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    border-radius: 0 calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0;
    transition: background 0.2s;
    white-space: nowrap;
    align-self: stretch;
}
.home-search-bar button:hover { background: var(--gold); color: var(--deep); }

@media (max-width: 600px) {
    .home-search-section { padding: 24px 20px; }
    .home-search-bar button { padding: 0 16px; font-size: 0.7rem; }
}

/* ── SEARCH PAGE ── */
/* Sticky search bar at top — Meesho style */
.search-page-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    box-shadow: 0 2px 12px rgba(26,15,10,0.07);
}
.search-page-header-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
.search-back-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: var(--text);
    transition: color 0.18s;
    padding: 4px;
}
.search-back-btn:hover { color: var(--gold); }

.search-page-form { flex: 1; margin-bottom: 0; }

.search-page-wrap { max-width: 1400px; margin: 0 auto; padding: 32px 40px 80px; }
.search-page-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--warm-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
    position: relative;
}
.search-page-input-wrap:focus-within { border-color: var(--gold); }
.search-page-input-wrap svg { color: var(--muted); flex-shrink: 0; }
.search-page-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.05rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    outline: none;
    min-width: 0;
}
.search-page-input::placeholder { color: var(--muted); }
.search-page-clear {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    flex-shrink: 0;
    transition: color 0.18s;
}
.search-page-clear:hover { color: var(--deep); }
.search-page-btn { padding: 14px 28px; white-space: nowrap; flex-shrink: 0; }

.search-results-count { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; }
.search-results-count strong { color: var(--text); }

/* ── MEESHO-STYLE DEFAULT PANEL (recent + popular) ── */
.search-default-panel { padding: 0; }

.search-panel-section { margin-bottom: 32px; }

.search-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--deep);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.search-clear-all {
    background: none;
    border: none;
    font-size: 0.72rem;
    color: var(--gold);
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: none;
    font-weight: 400;
    padding: 0;
}
.search-clear-all:hover { color: var(--deep); text-decoration: underline; }

/* Recent search rows */
.search-recent-list { display: flex; flex-direction: column; gap: 2px; }
.search-recent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 4px;
    border-bottom: 1px solid rgba(201,150,90,0.08);
}
.search-recent-item:last-child { border-bottom: none; }
.search-recent-icon { color: var(--muted); flex-shrink: 0; }
.search-recent-term {
    flex: 1;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    padding: 0;
    transition: color 0.18s;
}
.search-recent-term:hover { color: var(--gold); }
.search-recent-remove {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--muted);
    cursor: pointer;
    padding: 2px 6px;
    line-height: 1;
    border-radius: 50%;
    transition: color 0.18s, background 0.18s;
}
.search-recent-remove:hover { color: var(--deep); background: var(--border); }

/* Popular search pills */
.search-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.search-pill {
    background: var(--warm-white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.83rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
    white-space: nowrap;
}
.search-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,150,90,0.06);
}

@media (max-width: 600px) {
    .search-panel-heading { font-size: 0.72rem; }
    .search-pill { font-size: 0.78rem; padding: 7px 14px; }
    .search-recent-term { font-size: 0.9rem; }
}

.search-page-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: var(--muted);
    text-align: center;
    font-size: 0.95rem;
}

.search-page-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 80px 20px;
    color: var(--muted);
    font-size: 0.9rem;
}
.search-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 600px) {
    .search-page-header { padding: 10px 14px; }
    .search-page-wrap { padding: 20px 16px 60px; }
    .search-page-input-wrap { padding: 11px 14px; }
}

/* ── HEADER INLINE SEARCH BAR ── */
.hs-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
    max-width: 420px;
}

.hs-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    background: var(--warm-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.hs-bar:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 150, 90, 0.12);
}

.hs-icon { color: var(--muted); flex-shrink: 0; }

.hs-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text);
    outline: none;
    min-width: 0;
}
.hs-input::placeholder { color: var(--muted); }

.hs-clear {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 2px;
    flex-shrink: 0;
    transition: color 0.15s;
}
.hs-clear:hover { color: var(--deep); }

/* Dropdown */
.hs-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: -10px;
    right: -10px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(26, 15, 10, 0.14);
    overflow: hidden;
    z-index: 1200;
    max-height: 70vh;
    overflow-y: auto;
}
.hs-dropdown.hs-open { display: block; }

/* Sections inside dropdown */
.hsd-section { padding: 14px 16px 10px; }
.hsd-section + .hsd-section { border-top: 1px solid var(--border); }

.hsd-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 10px;
}

.hsd-clear-all {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding: 0;
    text-transform: uppercase;
    transition: color 0.15s;
}
.hsd-clear-all:hover { color: var(--deep); }

/* Recent search rows */
.hsd-recent-list { display: flex; flex-direction: column; gap: 2px; }

.hsd-recent-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 6px;
    border-radius: 6px;
    transition: background 0.15s;
}
.hsd-recent-row:hover { background: var(--warm-white); }

.hsd-clock { color: var(--muted); flex-shrink: 0; }

.hsd-term {
    flex: 1;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text);
    text-align: left;
    padding: 0;
    transition: color 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hsd-term:hover { color: var(--gold); }

.hsd-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1;
    padding: 0 2px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s, color 0.15s;
}
.hsd-recent-row:hover .hsd-remove { opacity: 1; }
.hsd-remove:hover { color: var(--deep); }

/* Popular pills */
.hsd-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

/* Product suggestion rows */
.hsd-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.15s;
    border-top: 1px solid var(--border);
}
.hsd-product:first-of-type { border-top: none; }
.hsd-product:hover { background: var(--warm-white); }

.hsd-img {
    width: 42px;
    height: 52px;
    object-fit: cover;
    border-radius: 3px;
    background: #EEE5D8;
    flex-shrink: 0;
    display: block;
}
.hsd-img-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.hsd-product-info { flex: 1; min-width: 0; }
.hsd-product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--deep);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hsd-product-cat {
    font-size: 0.68rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hsd-product-price {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    flex-shrink: 0;
}
.hsd-product-price del { color: var(--muted); font-weight: 400; margin-right: 4px; }

/* Loading / empty states */
.hsd-loading,
.hsd-empty {
    padding: 20px 16px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
}

/* View-all footer link */
.hsd-view-all {
    display: block;
    padding: 12px 16px;
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
.hsd-view-all:hover { color: var(--deep); background: var(--border); }

/* Responsive: hs-wrap shown on all views — see 900px block below */

/* ── OCCASION FINDER SECTION ── */
.occasion-section {
    background: var(--deep);
    padding: 80px 40px;
}
.occasion-wrap { max-width: 1400px; margin: 0 auto; }

.occasion-head { margin-bottom: 48px; }
.occasion-head .section-label span { color: var(--gold); border-color: rgba(201,150,90,0.4); }

.occasion-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.15;
    margin-top: 10px;
}
.occasion-title em { font-style: italic; color: var(--gold); }

.occasion-sub {
    font-size: 0.88rem;
    color: rgba(253,246,238,0.5);
    margin-top: 10px;
    max-width: 480px;
    line-height: 1.7;
}

.occasion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    height: 480px;
}

.occasion-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 22px 22px;
    text-decoration: none;
    transition: transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.38s ease;
    cursor: pointer;
    border: 1px solid rgba(201,150,90,0);
    background-color: #1A0F0A;
    background-size: cover;
    background-position: center top;
}
.occasion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(0,0,0,0.5);
    border-color: rgba(201,150,90,0.45);
}
.occasion-card:hover .oc-overlay { background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.28) 60%, rgba(0,0,0,0.18) 100%); }

/* Dark gradient overlay — keeps text readable over any photo */
.oc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.38) 55%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
    transition: background 0.38s ease;
}

/* Ghost number watermark */
.oc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}
.occasion-card:hover .oc-num { color: rgba(201,150,90,0.2); }

.oc-body { position: relative; z-index: 1; }

.oc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.oc-tags {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.7;
}

.oc-link {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(201,150,90,0.35);
    transition: color 0.2s, border-color 0.2s;
}
.occasion-card:hover .oc-link {
    color: var(--gold-light);
    border-color: rgba(232,192,138,0.7);
}

@media (max-width: 900px) {
    .occasion-section { padding: 60px 24px; }
    .occasion-grid { grid-template-columns: 1fr 1fr; height: auto; gap: 12px; }
    .occasion-card { min-height: 230px; padding: 20px 18px; }
    .oc-num { font-size: 3.2rem; }
    .oc-name { font-size: 1.35rem; }
}
@media (max-width: 480px) {
    .occasion-grid { gap: 10px; }
    .occasion-card { min-height: 190px; padding: 16px 14px; }
    .oc-num { font-size: 2.5rem; }
    .oc-name { font-size: 1.15rem; }
    .oc-tags { font-size: 0.62rem; margin-bottom: 10px; }
}

/* ── GLOBAL SEARCH OVERLAY ── */
.search-trigger-btn { background: none; border: none; cursor: pointer; color: var(--text); font-size: 1.1rem; display: flex; align-items: center; transition: color 0.2s; padding: 0; }
.search-trigger-btn:hover { color: var(--gold); }

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 15, 10, 0.72);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(4px);
}
.search-overlay.open { opacity: 1; pointer-events: all; }

.search-modal {
    background: var(--cream);
    border-radius: 8px;
    width: 100%;
    max-width: 640px;
    margin: 0 20px;
    box-shadow: 0 24px 64px rgba(26, 15, 10, 0.28);
    overflow: hidden;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
}
.search-icon-inline { color: var(--muted); flex-shrink: 0; }
.search-global-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    outline: none;
    min-width: 0;
}
.search-global-input::placeholder { color: var(--muted); }
.search-close-btn { background: none; border: none; font-size: 1.7rem; color: var(--muted); cursor: pointer; line-height: 1; padding: 2px 4px; flex-shrink: 0; }
.search-close-btn:hover { color: var(--deep); }

.search-results { max-height: 420px; overflow-y: auto; }

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.search-result-item:last-of-type { border-bottom: none; }
.search-result-item:hover { background: var(--warm-white); }

.search-result-img { width: 52px; height: 64px; object-fit: cover; border-radius: 3px; background: #EEE5D8; flex-shrink: 0; display: block; }
.search-result-ph { display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.search-result-info { flex: 1; min-width: 0; }
.search-result-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--deep); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-cat { font-size: 0.72rem; color: var(--muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.08em; }
.search-result-price { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.search-result-price del { color: var(--muted); font-weight: 400; margin-right: 6px; }

.search-status { padding: 32px 22px; text-align: center; color: var(--muted); font-size: 0.9rem; }
.search-view-all {
    display: block;
    padding: 14px 22px;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
}
.search-view-all:hover { color: var(--deep); background: var(--border); }

@media (max-width: 600px) {
    .search-overlay { padding-top: 70px; align-items: flex-start; }
    .search-modal { margin: 0 12px; border-radius: 6px; }
    .search-input-wrap { padding: 14px 16px; }
    .search-result-item { padding: 12px 16px; }
    .search-view-all { padding: 12px 16px; }
}
.cart-items { flex: 1; overflow-y: auto; padding: 24px 28px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }
.cart-empty p { font-size: 0.9rem; }
.cart-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 80px; height: 100px; object-fit: cover; border-radius: 3px; background: #EEE5D8; flex-shrink: 0; }
.cart-item-details { flex: 1; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--deep); margin-bottom: 4px; }
.cart-item-type { font-size: 0.72rem; color: var(--muted); margin-bottom: 10px; }
.cart-item-price { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.cart-footer { padding: 24px 28px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 18px; font-size: 0.85rem; color: var(--text); }
.cart-total strong { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--deep); }

/* ── VIDEO SECTION ── */
.video-section { background: var(--deep); padding: 90px 40px; position: relative; overflow: hidden; }
.video-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 150, 90, 0.07), transparent 60%); pointer-events: none; }
.video-section-wrap { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
.video-section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 44px; }
.video-section-head .section-label { margin-bottom: 12px; }
.video-section-head .section-label span { color: var(--gold); }
.video-section-head .section-label::after { background: rgba(201, 150, 90, 0.2); }
.video-section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; color: var(--cream); line-height: 1.1; margin-bottom: 10px; }
.video-section-title em { font-style: italic; color: var(--gold-light); }
.video-section-sub { color: rgba(253, 246, 238, 0.5); font-size: 0.9rem; line-height: 1.8; max-width: 420px; }
.video-hero-grid { display: grid; grid-template-columns: 1.65fr 1fr; gap: 14px; height: 500px; margin-bottom: 14px; }
.video-side-stack { display: flex; flex-direction: column; gap: 14px; }
.video-side-stack .vid-card { flex: 1; min-height: 0; }
.video-row-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.vid-card { position: relative; border-radius: 5px; overflow: hidden; cursor: pointer; background: #0D0806; display: flex; flex-direction: column; transition: box-shadow 0.3s; }
.vid-card:hover { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5); }
.vid-card:hover .vid-thumb-bg { transform: scale(1.04); }
.vid-card:hover .vid-play { transform: translate(-50%, -50%) scale(1.1); background: var(--gold-light); }
.vid-thumb { position: relative; overflow: hidden; flex: 1; }
.video-row-grid .vid-thumb { aspect-ratio: 16/9; flex: unset; }
.vid-thumb-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform 0.5s ease; }
.vid-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; transition: transform 0.5s ease; }
.vid-card:hover .vid-cover { transform: scale(1.04); }
.vid-thumb-emoji { font-size: 3rem; opacity: 0.12; }
.vid-card.featured .vid-thumb-emoji { font-size: 5rem; }
.vid-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; border-radius: 50%; background: rgba(201, 150, 90, 0.88); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, background 0.3s; z-index: 2; box-shadow: 0 0 0 8px rgba(201, 150, 90, 0.12); }
.vid-card.featured .vid-play { width: 72px; height: 72px; box-shadow: 0 0 0 14px rgba(201, 150, 90, 0.12), 0 0 0 28px rgba(201, 150, 90, 0.05); }
.vid-play svg { width: 16px; height: 16px; fill: var(--deep); margin-left: 3px; }
.vid-card.featured .vid-play svg { width: 26px; height: 26px; }
.vid-info { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(26, 15, 10, 0.97) 0%, rgba(26, 15, 10, 0.55) 55%, transparent); padding: 44px 16px 14px; z-index: 1; }
.vid-card.featured .vid-info { padding: 70px 26px 22px; }
.vid-tag { display: inline-block; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201, 150, 90, 0.45); padding: 3px 10px; border-radius: 2px; margin-bottom: 7px; }
.vid-title { font-family: 'Cormorant Garamond', serif; color: var(--cream); line-height: 1.3; margin-bottom: 7px; font-size: 0.93rem; font-weight: 400; }
.vid-card.featured .vid-title { font-size: 1.55rem; font-weight: 300; margin-bottom: 10px; }
.vid-meta { display: flex; align-items: center; gap: 10px; }
.vid-duration { font-size: 0.67rem; color: rgba(253, 246, 238, 0.42); letter-spacing: 0.06em; }
.vid-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

/* Video Modal */
.video-modal-overlay { position: fixed; inset: 0; background: rgba(10, 5, 3, 0.93); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; backdrop-filter: blur(8px); }
.video-modal-overlay.open { opacity: 1; pointer-events: all; }
.video-modal-inner { width: 90%; max-width: 960px; position: relative; }
.video-modal-close { position: absolute; top: -48px; right: 0; background: none; border: 1px solid rgba(201, 150, 90, 0.3); color: rgba(253, 246, 238, 0.65); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s; }
.video-modal-close:hover { border-color: var(--gold); color: var(--gold); }
.video-modal-title-bar { margin-bottom: 14px; }
.video-modal-tag { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.video-modal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--cream); font-weight: 300; }
.video-modal-player { width: 100%; aspect-ratio: 16/9; background: #080402; border-radius: 5px; overflow: hidden; display: flex; align-items: center; justify-content: center; color: rgba(253, 246, 238, 0.22); font-size: 0.78rem; letter-spacing: 0.15em; border: 1px solid rgba(201, 150, 90, 0.12); text-align: center; padding: 20px; }
.video-modal-player iframe { width: 100%; height: 100%; border: none; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 30px; right: 30px; background: var(--deep); color: var(--cream); padding: 14px 22px; border-radius: var(--radius); font-size: 0.82rem; border-left: 3px solid var(--gold); z-index: 9999; transform: translateY(80px); opacity: 0; transition: all 0.35s ease; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── MOBILE MENU ── */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-menu-btn span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--deep); z-index: 1300; padding: 80px 40px 40px; flex-direction: column; gap: 0; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav > a { font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(201,150,90,0.15); padding: 0 0 16px; margin-bottom: 24px; }
.mobile-nav > a:hover, .mobile-nav > a.active { color: var(--gold); }
.mobile-nav-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--cream); font-size: 1.8rem; cursor: pointer; }

/* Mobile nav — category section */
.mobile-nav-section { display: flex; flex-direction: column; border-bottom: 1px solid rgba(201,150,90,0.15); padding-bottom: 16px; margin-bottom: 24px; gap: 0; }
.mobile-nav-label { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-family: 'DM Sans', sans-serif; margin-bottom: 12px; }
.mobile-nav-sub { font-size: 1.15rem; font-family: 'Cormorant Garamond', serif; color: rgba(253,246,238,0.75); text-decoration: none; padding: 8px 0 8px 12px; border-left: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.mobile-nav-sub:hover, .mobile-nav-sub.active { color: var(--gold); border-left-color: var(--gold); }

/* ── DESKTOP NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
/* Invisible bridge — keeps :hover alive while cursor crosses the gap */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 12px;   /* must be >= the gap below */
    background: transparent;
    z-index: 1049;
}
.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.dropdown-chevron { transition: transform 0.22s ease; flex-shrink: 0; }
.nav-dropdown:hover .dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    min-width: 210px;
    padding: 8px 0;
    box-shadow: 0 12px 40px rgba(26,15,10,0.13);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1050;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
/* small triangle pointer */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--border);
}
.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--card-bg);
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: color 0.18s, background 0.18s;
    white-space: nowrap;
    position: static;
}
/* suppress the underline animation from global nav a */
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(201,150,90,0.06); }
.nav-dropdown-menu a.active { color: var(--gold); font-weight: 500; }

/* ── IMAGE PLACEHOLDERS ── */
.img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.ph-1 { background: linear-gradient(135deg, #C9835A 0%, #E8B47A 40%, #A06040 100%); }
.ph-2 { background: linear-gradient(135deg, #8B4066 0%, #C07090 40%, #6B2048 100%); }
.ph-3 { background: linear-gradient(135deg, #3B6B5A 0%, #6BA07A 40%, #2B4B3A 100%); }
.ph-4 { background: linear-gradient(135deg, #5A3B8B 0%, #8A6BC0 40%, #3A1B6B 100%); }
.ph-5 { background: linear-gradient(135deg, #8B6B2B 0%, #C0A06A 40%, #6B4B0B 100%); }
.ph-6 { background: linear-gradient(135deg, #5A3B3B 0%, #9A6B6B 40%, #3A1B1B 100%); }
.ph-7 { background: linear-gradient(135deg, #3B5A8B 0%, #6B8AC0 40%, #1B3A6B 100%); }
.ph-8 { background: linear-gradient(135deg, #6B3B5A 0%, #A06A8A 40%, #4B1B3A 100%); }
.ph-hero { background: linear-gradient(160deg, #8B4A6A 0%, #C4808A 35%, #7A3048 60%, #3A1520 100%); }
.ph-hero-right { background: linear-gradient(145deg, #6B4020 0%, #A07040 30%, #C09858 55%, #503010 100%); }

/* ═══════════════════════════════════════════════════════════
   PAGE HEADER / BREADCRUMB
   ═══════════════════════════════════════════════════════════ */
.page-header {
    background: var(--deep);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201,150,90,0.08), transparent 65%);
    pointer-events: none;
}
.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 12px;
    position: relative;
}
.page-header h1 em { font-style: italic; color: var(--gold-light); }
.page-header p { color: rgba(253,246,238,0.55); font-size: 0.92rem; position: relative; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--muted);
    padding: 14px 40px;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    max-width: 100%;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   FORMS & INPUTS
   ═══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.form-control {
    width: 100%;
    padding: 13px 16px;
    background: var(--warm-white);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.3s;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--muted); opacity: 0.6; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6558' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── ALERTS ── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 0.88rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(46,125,82,0.1); border: 1px solid rgba(46,125,82,0.3); color: #2E7D52; }
.alert-error { background: rgba(139,32,32,0.1); border: 1px solid rgba(139,32,32,0.3); color: #8B2020; }
.alert-info { background: rgba(201,150,90,0.1); border: 1px solid rgba(201,150,90,0.3); color: var(--gold); }

/* ── PAGINATION ── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 40px 0; }
.page-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.82rem; color: var(--text); text-decoration: none; transition: all 0.25s; background: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.page-btn:hover, .page-btn.active { background: var(--deep); color: var(--cream); border-color: var(--deep); }
.page-btn.dots { border: none; cursor: default; }
.page-btn.dots:hover { background: none; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   SHOP PAGE
   ═══════════════════════════════════════════════════════════ */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; max-width: 1400px; margin: 0 auto; padding: 50px 40px; }

.sidebar-block { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.sidebar-block:last-child { border-bottom: none; }
.sidebar-title { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text); font-weight: 500; margin-bottom: 16px; }
.sidebar-cats { list-style: none; }
.sidebar-cats li a { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text); text-decoration: none; padding: 7px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.sidebar-cats li a:hover, .sidebar-cats li a.active { color: var(--gold); }
.sidebar-cats li a .count { font-size: 0.72rem; color: var(--muted); }
.price-inputs { display: flex; gap: 8px; align-items: center; margin-top: 12px; overflow: hidden; }
.price-inputs input { flex: 1; min-width: 0; width: 0; padding: 8px 8px; border: 1px solid var(--border); background: var(--warm-white); font-size: 0.82rem; color: var(--text); font-family: 'DM Sans', sans-serif; border-radius: var(--radius); outline: none; }
.price-inputs input:focus { border-color: var(--gold); }
.price-inputs span { color: var(--muted); font-size: 0.75rem; }
.color-dots { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.color-dot { width: 24px; height: 24px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.color-dot:hover, .color-dot.active { border-color: var(--gold); }
.checkbox-list { list-style: none; }
.checkbox-list li { margin-bottom: 8px; }
.checkbox-list label { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text); cursor: pointer; }
.checkbox-list input[type=checkbox] { accent-color: var(--gold); width: 15px; height: 15px; cursor: pointer; }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.shop-results { font-size: 0.82rem; color: var(--muted); }
.shop-sort { display: flex; align-items: center; gap: 10px; }
.shop-sort label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.shop-sort select { padding: 8px 32px 8px 12px; border: 1px solid var(--border); background: var(--warm-white); font-size: 0.82rem; color: var(--text); font-family: 'DM Sans', sans-serif; border-radius: var(--radius); outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237A6558' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; cursor: pointer; }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; background: none; color: var(--muted); font-size: 0.9rem; transition: all 0.2s; }
.shop-filter-btn { display: none; align-items: center; gap: 7px; padding: 9px 18px; background: var(--deep); color: var(--cream); border: none; border-radius: var(--radius); cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; transition: background 0.2s; }
.shop-filter-btn:hover { background: #2d1a10; }
.sidebar-close-btn { display: none; position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; align-items: center; justify-content: center; border: none; background: none; font-size: 1.5rem; cursor: pointer; color: var(--text); border-radius: 50%; transition: background 0.2s; line-height: 1; }
.sidebar-close-btn:hover { background: var(--border); }
.shop-sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(26,15,10,0.45); z-index: 8999; cursor: pointer; }
.view-btn.active, .view-btn:hover { background: var(--deep); color: var(--cream); border-color: var(--deep); }

/* ═══════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.product-detail-layout { max-width: 1400px; margin: 0 auto; padding: 50px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.product-gallery { position: sticky; top: 165px; height: fit-content; }
.gallery-main { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; background: #EEE5D8; margin-bottom: 14px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-thumb { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--gold); }

.product-detail-type { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.product-detail-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; color: var(--deep); line-height: 1.1; margin-bottom: 14px; }
.product-detail-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.product-detail-rating .stars { font-size: 0.9rem; }
.product-detail-rating span { font-size: 0.8rem; color: var(--muted); }
.product-detail-price { font-size: 1.8rem; font-weight: 500; color: var(--deep); margin-bottom: 6px; }
.product-detail-price del { font-size: 1.2rem; color: var(--muted); font-weight: 300; margin-right: 10px; }
.price-save { font-size: 0.8rem; color: #8B2020; background: rgba(139,32,32,0.08); padding: 3px 10px; border-radius: 40px; }
.product-detail-desc { font-size: 0.92rem; line-height: 1.85; color: var(--muted); margin: 20px 0 28px; }

.option-group { margin-bottom: 22px; }
.option-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text); font-weight: 500; margin-bottom: 10px; }
.color-options { display: flex; gap: 10px; flex-wrap: wrap; }
.color-option { width: 32px; height: 32px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: all 0.2s; box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }
.color-option.active { border-color: var(--gold); transform: scale(1.1); }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-option { padding: 8px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.8rem; cursor: pointer; transition: all 0.2s; background: none; font-family: 'DM Sans', sans-serif; color: var(--text); }
.size-option.active, .size-option:hover { background: var(--deep); color: var(--cream); border-color: var(--deep); }

.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.qty-btn { width: 38px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--warm-white); border: none; cursor: pointer; font-size: 1.2rem; color: var(--text); transition: background 0.2s; }
.qty-btn:hover { background: var(--border); }
.qty-input { width: 52px; height: 44px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-size: 0.95rem; color: var(--text); font-family: 'DM Sans', sans-serif; outline: none; background: #fff; }

.product-cta { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.product-cta .btn-primary-gold { flex: 1; text-align: center; padding: 16px; }
.btn-wishlist { width: 52px; height: 52px; border: 1px solid var(--border); border-radius: var(--radius); background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--muted); transition: all 0.2s; flex-shrink: 0; }
.btn-wishlist:hover, .btn-wishlist.active { border-color: #e74c3c; color: #e74c3c; background: rgba(231,76,60,0.05); }

.product-meta-list { list-style: none; border-top: 1px solid var(--border); padding-top: 24px; }
.product-meta-list li { display: flex; gap: 12px; font-size: 0.85rem; padding: 8px 0; border-bottom: 1px solid var(--border); }
.product-meta-list li strong { min-width: 100px; color: var(--deep); font-weight: 500; }
.product-meta-list li span { color: var(--muted); }

.product-tabs { margin-top: 60px; border-top: 1px solid var(--border); }
.tab-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border); }
.tab-btn { padding: 14px 24px; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; background: none; border: none; cursor: pointer; color: var(--muted); font-family: 'DM Sans', sans-serif; position: relative; transition: color 0.2s; }
.tab-btn::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; }
.tab-btn.active, .tab-btn:hover { color: var(--text); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-content { display: none; padding: 32px 0; font-size: 0.9rem; line-height: 1.85; color: var(--muted); }
.tab-content.active { display: block; }

/* ═══════════════════════════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════════════════════════ */
.cart-page { max-width: 1400px; margin: 0 auto; padding: 50px 40px; display: grid; grid-template-columns: 1fr 380px; gap: 40px; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); padding: 0 20px 16px 0; border-bottom: 1px solid var(--border); font-weight: 500; }
.cart-table th:not(:first-child) { padding-left: 20px; }
.cart-table th:last-child { text-align: right; padding-right: 0; }
.cart-table td { padding: 22px 20px 22px 0; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table td:not(:first-child) { padding-left: 20px; }
.cart-table td:last-child { text-align: right; padding-right: 0; }
.cart-product { display: flex; gap: 16px; align-items: center; }
.cart-product-img { width: 80px; height: 100px; object-fit: cover; border-radius: var(--radius); background: #EEE5D8; flex-shrink: 0; }
.cart-product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--deep); margin-bottom: 4px; }
.cart-product-meta { font-size: 0.75rem; color: var(--muted); margin-bottom: 8px; }
.remove-item { font-size: 0.72rem; color: var(--muted); text-decoration: underline; cursor: pointer; background: none; border: none; font-family: 'DM Sans', sans-serif; }
.remove-item:hover { color: #8B2020; }
.cart-price { font-size: 0.95rem; font-weight: 500; color: var(--deep); }

.cart-summary { background: var(--warm-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; height: fit-content; position: sticky; top: 165px; }
.cart-summary h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--border); }
.summary-row:last-of-type { border-bottom: none; }
.summary-total { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 500; color: var(--deep); padding-top: 16px; border-top: 2px solid var(--border); margin-top: 8px; }
.summary-total strong { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; }
.coupon-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-row input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); background: var(--cream); font-size: 0.85rem; font-family: 'DM Sans', sans-serif; border-radius: var(--radius); outline: none; }
.coupon-row input:focus { border-color: var(--gold); }
.coupon-row button { padding: 10px 18px; background: var(--deep); color: var(--cream); border: none; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; }

/* ═══════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.checkout-layout { max-width: 1400px; margin: 0 auto; padding: 50px 40px; display: grid; grid-template-columns: 1fr 420px; gap: 50px; }
.checkout-section { margin-bottom: 36px; }
.checkout-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--deep); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.payment-options { display: flex; flex-direction: column; gap: 12px; }
.payment-option { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: border-color 0.2s; }
.payment-option:hover, .payment-option.active { border-color: var(--gold); background: rgba(201,150,90,0.04); }
.payment-option input[type=radio] { accent-color: var(--gold); }
.payment-option label { cursor: pointer; font-size: 0.88rem; color: var(--text); }
.payment-option .pay-icon { font-size: 1.4rem; }

.order-review { background: var(--warm-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: sticky; top: 165px; }
.order-review h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; margin-bottom: 20px; }
.order-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.order-item-img { width: 60px; height: 75px; border-radius: 3px; background: #EEE5D8; flex-shrink: 0; object-fit: cover; }
.order-item-info { flex: 1; }
.order-item-name { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: var(--deep); margin-bottom: 3px; }
.order-item-type { font-size: 0.72rem; color: var(--muted); }
.order-item-price { font-size: 0.9rem; font-weight: 500; color: var(--text); text-align: right; }

/* ═══════════════════════════════════════════════════════════
   LOGIN / REGISTER PAGE
   ═══════════════════════════════════════════════════════════ */
.auth-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 60px 40px; background: var(--warm-white); }
.auth-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; width: 100%; max-width: 460px; }
.auth-box .logo { margin-bottom: 28px; }
.auth-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.auth-tab { flex: 1; padding: 12px; text-align: center; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.2s; background: none; border-top: none; border-left: none; border-right: none; font-family: 'DM Sans', sans-serif; }
.auth-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.auth-form { display: none; }
.auth-form.active { display: block; }
.auth-divider { text-align: center; position: relative; margin: 20px 0; font-size: 0.78rem; color: var(--muted); }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.auth-divider span { background: var(--card-bg); padding: 0 14px; position: relative; }
.auth-forgot { font-size: 0.78rem; color: var(--gold); text-decoration: none; float: right; }

/* ═══════════════════════════════════════════════════════════
   ACCOUNT / PROFILE PAGE
   ═══════════════════════════════════════════════════════════ */
.account-layout { max-width: 1400px; margin: 0 auto; padding: 50px 40px; display: grid; grid-template-columns: 240px 1fr; gap: 40px; }
.account-sidebar { height: fit-content; position: sticky; top: 165px; }
.account-nav { list-style: none; }
.account-nav li a { display: flex; align-items: center; gap: 10px; padding: 12px 16px; font-size: 0.82rem; color: var(--text); text-decoration: none; border-radius: var(--radius); transition: all 0.2s; margin-bottom: 4px; }
.account-nav li a:hover, .account-nav li a.active { background: var(--warm-white); color: var(--gold); }
.account-nav li a .nav-icon { font-size: 1.1rem; }

.account-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--deep); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th { text-align: left; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); padding: 0 16px 14px 0; border-bottom: 1px solid var(--border); font-weight: 500; }
.orders-table th:not(:first-child) { padding-left: 16px; }
.orders-table td { padding: 16px 16px 16px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--text); }
.orders-table td:not(:first-child) { padding-left: 16px; }
.order-status { display: inline-block; padding: 4px 12px; border-radius: 40px; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.status-delivered { background: rgba(46,125,82,0.1); color: #2E7D52; }
.status-pending { background: rgba(201,150,90,0.12); color: var(--gold); }
.status-processing { background: rgba(58,91,139,0.1); color: #3A5B8B; }
.status-cancelled { background: rgba(139,32,32,0.1); color: #8B2020; }

/* ═══════════════════════════════════════════════════════════
   WISHLIST PAGE
   ═══════════════════════════════════════════════════════════ */
.wishlist-page { max-width: 1400px; margin: 0 auto; padding: 50px 40px; }
.wishlist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro-text .section-title { margin-bottom: 20px; }
.about-intro-text p { font-size: 0.93rem; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }
.about-intro-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card-bg); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--deep); margin-bottom: 12px; }
.value-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: #EEE5D8; margin-bottom: 16px; border: 3px solid var(--border); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--deep); margin-bottom: 4px; }
.team-role { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,150,90,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; font-weight: 500; }
.contact-info-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   RELATED PRODUCTS SLIDER
   ═══════════════════════════════════════════════════════════ */
.related-slider-section { background: var(--warm-white); padding: 70px 40px; border-top: 1px solid var(--border); }
.related-slider-head { max-width: 1400px; margin: 0 auto 36px; }
.related-slider-wrap { position: relative; max-width: 1400px; margin: 0 auto; padding: 0 52px; }
.rel-viewport { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.rel-viewport::-webkit-scrollbar { display: none; }
.rel-track { display: flex; gap: 24px; }
.rel-track .product-card { flex: 0 0 calc(25% - 18px); min-width: 220px; scroll-snap-align: start; }

/* ═══════════════════════════════════════════════════════════
   EMPTY / NOTFOUND STATE
   ═══════════════════════════════════════════════════════════ */
.empty-state { text-align: center; padding: 80px 40px; }
.empty-state-icon { font-size: 3.5rem; margin-bottom: 20px; opacity: 0.3; }
.empty-state h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--deep); margin-bottom: 10px; }
.empty-state p { font-size: 0.9rem; color: var(--muted); margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .features-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .wishlist-grid { grid-template-columns: repeat(3, 1fr); }
    .shop-layout { grid-template-columns: 220px 1fr; gap: 28px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .rel-track .product-card { flex: 0 0 calc(33.33% - 16px); }
}

@media (max-width: 1100px) {
    .video-hero-grid { height: 420px; }
    .product-detail-layout { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
    .cart-page { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .checkout-layout { grid-template-columns: 1fr; }
    .order-review { position: static; }
}

@media (max-width: 768px) {
    .hero-slide-content { padding: 0 40px; }
    .hero-slide-content h1 { font-size: 2rem; }
    .hero-carousel { height: auto; min-height: unset; }
    .hero-track { height: auto; }
    .hero-slide { height: auto; flex: 0 0 100%; }
    .hero-slide-img { width: 100%; height: auto; object-fit: unset; object-position: unset; display: block; }
    .hero-arrow { width: 40px; height: 40px; font-size: 1.5rem; }
    .saree-slider-wrap { padding: 0 40px; }
}

@media (max-width: 480px) {
    .hero-slide-content { padding: 0 16px; }
    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }
}

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 60px 32px; min-height: 70vh; }
    .hero-right { height: 350px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .split-banner { grid-template-columns: 1fr; }
    nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .features-inner { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 60px 24px; }
    .header-inner { padding: 0 24px 0; height: auto; min-height: 110px; flex-wrap: wrap; gap: 0; align-items: center; }
    .logo { order: 1; align-self: center; padding: 5px 0; }
    .header-actions { order: 2; }
    .hs-wrap { order: 3; display: flex; flex: 0 0 100%; max-width: 100%; padding: 2px 0 12px; }
    .hs-bar { flex: 1; }
    .site-logo { height: 110px !important; }
    .video-section { padding: 70px 24px; }
    .video-hero-grid { grid-template-columns: 1fr; height: auto; }
    .vid-card.featured .vid-thumb { aspect-ratio: 16/9; flex: unset; }
    .video-side-stack { flex-direction: row; }
    .video-side-stack .vid-card { flex: 1; min-height: 0; }
    .video-side-stack .vid-card .vid-thumb { aspect-ratio: 16/9; }
    .video-row-grid { grid-template-columns: repeat(2, 1fr); }
    .video-row-grid .vid-card:last-child { display: none; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-filter-btn { display: inline-flex; }
    .related-slider-section { padding: 50px 24px; }
    .related-slider-wrap { padding: 0 40px; }
    .rel-track .product-card { flex: 0 0 calc(50% - 12px); }
    .shop-sidebar { position: fixed; top: 0; left: 0; height: 100dvh; width: 300px; max-width: 85vw; background: var(--cream, #FDF6EE); z-index: 9000; overflow-y: auto; padding: 60px 28px 40px; transform: translateX(-110%); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1); box-shadow: 4px 0 32px rgba(26,15,10,0.18); }
    .shop-sidebar.open { transform: translateX(0); }
    .shop-sidebar-overlay.open { display: block; }
    .sidebar-close-btn { display: flex; }
    .about-intro { grid-template-columns: 1fr; gap: 40px; }
    .contact-layout { grid-template-columns: 1fr; }
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .breadcrumb { padding: 12px 24px; }
    .page-header { padding: 40px 24px; }
}

@media (max-width: 600px) {
    .saree-slider-wrap { padding: 0 32px; }
    .slider-arrow { width: 36px; height: 36px; font-size: 1.4rem; }
    .related-slider-section { padding: 40px 16px; }
    .related-slider-wrap { padding: 0 32px; }
    .rel-track .product-card { flex: 0 0 72vw; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; }
    .features-inner { grid-template-columns: 1fr; }
    .cart-drawer { width: 100%; }
    .split-overlay { padding: 30px; }
    .split-title { font-size: 1.7rem; }
    .hero-stats { gap: 20px; }
    .cat-circle { width: 88px; height: 88px; }
    .cat-name { font-size: 0.66rem; letter-spacing: 0.10em; }
    .cat-pill { padding: 0 20px; }
    .cat-strip-inner { padding: 8px 16px 16px; }
    .video-hero-grid { grid-template-columns: 1fr; }
    .video-side-stack { flex-direction: column; }
    .video-row-grid { grid-template-columns: 1fr; }
    .video-row-grid .vid-card:last-child { display: flex; }
    .video-section-head { flex-direction: column; align-items: flex-start; }
    .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .cart-page { padding: 30px 16px; }
    .checkout-layout { padding: 30px 16px; }
    .product-detail-layout { padding: 30px 16px; }
    .shop-layout { padding: 30px 16px; }
    .wishlist-page { padding: 30px 16px; }
    .account-layout { padding: 30px 16px; }

    /* ── Cart table: card layout on mobile ── */
    .cart-table thead { display: none; }
    .cart-table,
    .cart-table tbody { display: block; width: 100%; }
    .cart-table tr { display: block; border-bottom: 2px solid var(--border); padding: 20px 0; }
    .cart-table td { display: block; border: none; padding: 0; text-align: left !important; }
    .cart-table td:not(:first-child) {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0 0;
    }
    .cart-table td:not(:first-child)::before {
        content: attr(data-label);
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--muted);
        font-weight: 500;
        flex-shrink: 0;
    }
    .cart-table td:first-child { padding-bottom: 12px; }
    .cart-table td:not(:first-child) { padding-left: 0 !important; padding-right: 0 !important; }
    .cart-table td:not(:first-child) > div { transform: none !important; transform-origin: unset !important; }

    /* ── Orders table: card layout on mobile ── */
    .orders-table thead { display: none; }
    .orders-table,
    .orders-table tbody { display: block; width: 100%; }
    .orders-table tr {
        display: block;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 16px;
        margin-bottom: 12px;
    }
    .orders-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        padding: 6px 0;
        font-size: 0.85rem;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .orders-table td::before {
        content: attr(data-label);
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--muted);
        font-weight: 500;
        flex-shrink: 0;
        margin-right: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════
   POLICY PAGES  (return-policy.php / terms.php / privacy.php)
   ═══════════════════════════════════════════════════════════ */
.policy-hero {
    background: linear-gradient(135deg, #1A0F0A 0%, #3D2B1F 100%);
    padding: 72px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.policy-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(201,150,90,.18) 0%, transparent 70%);
    pointer-events: none;
}
.policy-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: #F5EDE0;
    margin: 0 0 14px;
    letter-spacing: .04em;
    position: relative;
}
.policy-hero h1 em { color: var(--gold, #C9965A); font-style: italic; }
.policy-hero p {
    color: rgba(245,237,224,.65);
    font-size: .95rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

.policy-breadcrumb {
    max-width: 820px;
    margin: 0 auto;
    padding: 14px 24px;
    font-size: .8rem;
    color: var(--muted, #7A6558);
}
.policy-breadcrumb a { color: var(--gold, #C9965A); text-decoration: none; }
.policy-breadcrumb a:hover { text-decoration: underline; }
.policy-breadcrumb .sep { margin: 0 8px; opacity: .4; }

.policy-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 24px 80px;
}
.policy-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 400;
    color: #1A0F0A;
    margin: 0 0 6px;
}
.policy-body h2 em { color: var(--gold, #C9965A); font-style: italic; }
.policy-updated { font-size: .78rem; color: var(--muted, #7A6558); display: block; margin-bottom: 30px; }
.policy-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A0F0A;
    margin: 38px 0 10px;
    padding-left: 14px;
    border-left: 3px solid var(--gold, #C9965A);
}
.policy-body p {
    font-size: .92rem;
    line-height: 1.88;
    color: #4A3728;
    margin: 0 0 16px;
}
.policy-body ul {
    margin: 0 0 18px;
    padding-left: 22px;
}
.policy-body ul li {
    font-size: .92rem;
    line-height: 1.8;
    color: #4A3728;
    margin-bottom: 6px;
}
.policy-body ul li::marker { color: var(--gold, #C9965A); }
.policy-highlight {
    background: rgba(201,150,90,.07);
    border: 1px solid rgba(201,150,90,.2);
    border-radius: 8px;
    padding: 18px 22px;
    margin: 24px 0;
    font-size: .88rem;
    line-height: 1.78;
    color: #5A3E2B;
}
.policy-highlight strong { color: var(--gold, #C9965A); }
.policy-highlight ul { margin: 10px 0 0; padding-left: 20px; }

.policy-cta {
    margin-top: 40px;
    padding: 22px 24px;
    background: #F9F4EE;
    border-radius: 8px;
    text-align: center;
}
.policy-cta p { margin: 0 0 14px; font-size: .9rem; color: #5A3E2B; }
.policy-cta a {
    display: inline-block;
    background: var(--gold, #C9965A);
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.policy-nav-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid rgba(201,150,90,.18);
}
.policy-nav-links a {
    flex: 1;
    min-width: 180px;
    display: block;
    padding: 16px 20px;
    background: rgba(201,150,90,.06);
    border: 1px solid rgba(201,150,90,.2);
    border-radius: 8px;
    text-decoration: none;
    font-size: .85rem;
    color: var(--gold, #C9965A);
    font-weight: 500;
    transition: background .15s;
    text-align: center;
}
.policy-nav-links a:hover { background: rgba(201,150,90,.13); }
.policy-nav-links a span { display: block; font-size: .75rem; color: var(--muted, #7A6558); margin-top: 3px; font-weight: 400; }

@media (max-width: 600px) {
    .policy-hero { padding: 52px 20px 44px; }
    .policy-body { padding: 36px 16px 60px; }
}
