/* womans.co.za — Luxury Feminine E-Commerce Theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blush:    #f5ddd3;
  --blush-dk: #e8c4b4;
  --rose:     #c9706a;
  --rose-dk:  #a8524c;
  --cream:    #faf7f4;
  --warm-wh:  #fffdf9;
  --charcoal: #2b2320;
  --mid-gray: #6b6460;
  --lt-gray:  #e8e4e0;
  --gold:     #c9a96e;
  --gold-lt:  #e8d5b0;
  --success:  #4caf50;
  --danger:   #e53935;
  --warning:  #ff9800;
  --font-head: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --radius:   4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--warm-wh); color: var(--charcoal); line-height: 1.6; font-size: 15px; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 400; line-height: 1.2; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ── Typography ── */
.heading-xl { font-size: clamp(2.4rem,5vw,4rem); }
.heading-lg { font-size: clamp(1.8rem,3.5vw,2.8rem); }
.heading-md { font-size: clamp(1.4rem,2.5vw,2rem); }
.heading-sm { font-size: 1.2rem; }
.label-upper { text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 500; }

/* ── Layout ── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.grid { display: grid; }
.flex { display: flex; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 40px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius); font-size: .9rem;
  font-weight: 500; letter-spacing: .04em; transition: var(--transition);
  text-transform: uppercase; white-space: nowrap;
}
.btn-primary { background: var(--charcoal); color: #fff; }
.btn-primary:hover { background: #3d2f2c; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border: 1.5px solid var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-rose { background: var(--rose); color: #fff; }
.btn-rose:hover { background: var(--rose-dk); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #b8905c; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: .8rem; }
.btn-full { width: 100%; }
.btn-icon { padding: 10px; border-radius: 50%; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,253,249,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lt-gray);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-top { padding: 6px 0; background: var(--charcoal); color: var(--gold-lt); text-align: center; font-size: .78rem; letter-spacing: .1em; }
.header-main { display: flex; align-items: center; padding: 0; gap: 16px; }
.header-logo { font-family: var(--font-head); font-size: 1.8rem; color: var(--charcoal); text-decoration: none; white-space: nowrap; }
.header-logo span { color: var(--rose); }
.header-nav { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
.header-nav > a, .header-nav > .nav-mega > summary {
  padding: 24px 16px; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--charcoal); transition: color .2s; display: block;
  position: relative; cursor: pointer; list-style: none;
}
.header-nav > a:hover, .header-nav > .nav-mega:hover summary { color: var(--rose); }
.header-nav > a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--rose); transition: all .25s;
}
.header-nav > a:hover::after { left: 16px; right: 16px; }
.header-actions { display: flex; align-items: center; gap: 4px; }
.header-icon-btn {
  padding: 10px 12px; background: none; position: relative;
  color: var(--charcoal); font-size: 1rem; transition: color .2s;
}
.header-icon-btn:hover { color: var(--rose); }
.cart-badge {
  position: absolute; top: 4px; right: 4px; background: var(--rose); color: #fff;
  border-radius: 50%; width: 18px; height: 18px; font-size: .65rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

/* Mega Menu */
.nav-mega { position: relative; }
.nav-mega summary::marker { display: none; }
.mega-menu {
  position: absolute; top: 100%; left: -100px; width: 600px;
  background: #fff; box-shadow: var(--shadow-lg); border-top: 2px solid var(--rose);
  padding: 32px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  z-index: 200; opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: all .2s;
}
.nav-mega:hover .mega-menu, .nav-mega[open] .mega-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.mega-col-title { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--mid-gray); margin-bottom: 12px; }
.mega-col a { display: block; padding: 5px 0; font-size: .85rem; color: var(--charcoal); transition: color .2s; }
.mega-col a:hover { color: var(--rose); }

/* Search Bar */
.search-overlay {
  position: fixed; inset: 0; background: rgba(43,35,32,.7); z-index: 2000;
  display: flex; align-items: flex-start; justify-content: center; padding-top: 120px;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.search-overlay.active { opacity: 1; pointer-events: all; }
.search-box { background: #fff; width: min(680px, 90vw); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.search-input-wrap { display: flex; align-items: center; padding: 0 20px; border-bottom: 1px solid var(--lt-gray); }
.search-input-wrap input { flex: 1; border: none; outline: none; padding: 20px 12px; font-size: 1.1rem; font-family: var(--font-body); }
.search-results { max-height: 400px; overflow-y: auto; }
.search-result-item { display: flex; align-items: center; gap: 16px; padding: 14px 20px; border-bottom: 1px solid var(--lt-gray); transition: background .15s; }
.search-result-item:hover { background: var(--cream); }
.search-result-img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--radius); }
.search-result-title { font-size: .9rem; }
.search-result-price { font-size: .85rem; color: var(--rose); font-weight: 500; }

/* ── Hero / Slideshow ── */
.hero-slider { position: relative; height: clamp(480px, 70vh, 800px); overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .8s ease;
  background: var(--cream);
}
.slide.active { opacity: 1; }
.slide-img { width: 100%; height: 100%; object-fit: cover; }
.slide-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: clamp(24px,6vw,100px);
  background: linear-gradient(90deg, rgba(43,35,32,.55) 0%, transparent 60%);
}
.slide-content.center-text { align-items: center; text-align: center; background: rgba(43,35,32,.35); }
.slide-eyebrow { font-size: .75rem; text-transform: uppercase; letter-spacing: .2em; color: var(--gold-lt); margin-bottom: 12px; }
.slide-title { font-size: clamp(2rem,5vw,4rem); color: #fff; margin-bottom: 16px; font-weight: 300; }
.slide-sub { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 480px; }
.slider-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: all .25s; }
.slider-dot.active { background: #fff; width: 24px; border-radius: 4px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.slider-arrow:hover { background: rgba(255,255,255,.3); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ── Section Styles ── */
.section { padding: clamp(40px,6vw,80px) 0; }
.section-header { text-align: center; margin-bottom: clamp(32px,4vw,56px); }
.section-eyebrow { color: var(--rose); font-size: .75rem; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 8px; }
.section-title { color: var(--charcoal); }
.section-sub { color: var(--mid-gray); margin-top: 8px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Product Cards ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.product-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition); cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--cream); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; }
.badge { padding: 4px 10px; border-radius: 2px; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.badge-sale { background: var(--rose); color: #fff; }
.badge-new  { background: var(--charcoal); color: #fff; }
.badge-b2g1 { background: var(--gold); color: #fff; }
.product-card-wishlist { position: absolute; top: 12px; right: 12px; background: #fff; border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; box-shadow: var(--shadow-sm); }
.product-card:hover .product-card-wishlist { opacity: 1; }
.product-card-body { padding: 16px; }
.product-card-cat  { font-size: .7rem; color: var(--mid-gray); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.product-card-name { font-family: var(--font-head); font-size: 1.05rem; color: var(--charcoal); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-current { font-weight: 600; color: var(--charcoal); }
.price-compare { text-decoration: line-through; color: var(--mid-gray); font-size: .9em; }
.price-badge { background: var(--rose); color: #fff; font-size: .7rem; padding: 2px 7px; border-radius: 2px; }
.product-card-rating { display: flex; align-items: center; gap: 4px; margin-top: 6px; }
.stars { color: var(--gold); letter-spacing: -1px; font-size: .85rem; }
.star-count { font-size: .78rem; color: var(--mid-gray); }
.product-card-atc { display: block; width: 100%; padding: 10px; text-align: center; background: var(--charcoal); color: #fff; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; border: none; cursor: pointer; transition: background .2s; margin-top: 12px; border-radius: var(--radius); }
.product-card-atc:hover { background: var(--rose); }

/* ── Promo Bar / Countdown ── */
.promo-bar { background: var(--rose); color: #fff; padding: 14px 0; text-align: center; }
.countdown-timer { display: inline-flex; align-items: center; gap: 8px; }
.countdown-unit { background: rgba(255,255,255,.2); padding: 4px 10px; border-radius: var(--radius); font-size: 1.1rem; font-weight: 600; }
.countdown-sep { font-weight: 300; }

/* ── Category Grid ── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.category-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; background: var(--cream); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.category-card:hover img { transform: scale(1.08); }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(43,35,32,.7) 40%, transparent 80%); display: flex; align-items: flex-end; padding: 20px; }
.category-card-name { color: #fff; font-family: var(--font-head); font-size: 1.2rem; }

/* ── Product Detail Page ── */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: clamp(24px,4vw,60px) 0; align-items: start; }
.pdp-gallery { position: sticky; top: 100px; }
.pdp-main-img { aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream); }
.pdp-main-img img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.pdp-thumbs { display: flex; gap: 8px; margin-top: 12px; overflow-x: auto; }
.pdp-thumb { width: 72px; height: 90px; border-radius: var(--radius); overflow: hidden; cursor: pointer; opacity: .6; transition: opacity .2s; border: 2px solid transparent; flex-shrink: 0; }
.pdp-thumb.active, .pdp-thumb:hover { opacity: 1; border-color: var(--rose); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info { padding: 0; }
.pdp-cat-link { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--rose); margin-bottom: 8px; display: block; }
.pdp-title { font-size: clamp(1.8rem,3vw,2.6rem); margin-bottom: 8px; }
.pdp-rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.pdp-price-row { margin-bottom: 24px; }
.pdp-price-current { font-size: 1.8rem; font-weight: 600; }
.pdp-price-compare { text-decoration: line-through; color: var(--mid-gray); font-size: 1.1rem; margin-left: 8px; }
.pdp-save-badge { background: var(--rose); color: #fff; font-size: .75rem; padding: 3px 10px; border-radius: var(--radius); margin-left: 8px; }
.pdp-short-desc { color: var(--mid-gray); margin-bottom: 24px; line-height: 1.7; }
.pdp-b2g1 { background: var(--gold-lt); border: 1px solid var(--gold); border-radius: var(--radius); padding: 12px 16px; margin-bottom: 20px; font-size: .85rem; }
.variant-group { margin-bottom: 20px; }
.variant-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; color: var(--mid-gray); }
.variant-label span { color: var(--charcoal); font-weight: 500; }
.variant-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-btn { padding: 8px 16px; border: 1.5px solid var(--lt-gray); border-radius: var(--radius); font-size: .85rem; background: #fff; transition: all .15s; cursor: pointer; }
.variant-btn.active { border-color: var(--charcoal); background: var(--charcoal); color: #fff; }
.variant-btn.unavailable { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.variant-swatch { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--lt-gray); cursor: pointer; transition: all .15s; }
.variant-swatch.active { border-color: var(--charcoal); box-shadow: 0 0 0 3px rgba(43,35,32,.15); }
.qty-selector { display: flex; align-items: center; border: 1.5px solid var(--lt-gray); border-radius: var(--radius); overflow: hidden; width: fit-content; margin-bottom: 20px; }
.qty-btn { width: 40px; height: 44px; background: none; border: none; font-size: 1.2rem; cursor: pointer; transition: background .15s; }
.qty-btn:hover { background: var(--cream); }
.qty-input { width: 48px; text-align: center; border: none; border-left: 1px solid var(--lt-gray); border-right: 1px solid var(--lt-gray); height: 44px; font-size: .95rem; font-family: var(--font-body); outline: none; }
.pdp-atc { margin-bottom: 12px; font-size: 1rem; padding: 16px; }
.pdp-buy-now { background: transparent; border: 1.5px solid var(--charcoal); color: var(--charcoal); }
.pdp-buy-now:hover { background: var(--charcoal); color: #fff; }
.pdp-tabs { margin-top: 40px; border-top: 1px solid var(--lt-gray); }
.tab-item { border-bottom: 1px solid var(--lt-gray); }
.tab-toggle { width: 100%; text-align: left; padding: 18px 0; background: none; border: none; font-family: var(--font-head); font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: var(--charcoal); }
.tab-toggle::after { content: '+'; font-size: 1.3rem; transition: transform .25s; }
.tab-item.open .tab-toggle::after { transform: rotate(45deg); }
.tab-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.tab-item.open .tab-body { max-height: 600px; }
.tab-content { padding: 0 0 20px; color: var(--mid-gray); line-height: 1.8; }

/* ── Cart Drawer ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(43,35,32,.5); z-index: 500; opacity: 0; pointer-events: none; transition: opacity .3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: min(440px, 100vw); background: #fff; z-index: 501; transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header { padding: 20px 24px; border-bottom: 1px solid var(--lt-gray); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-title { font-family: var(--font-head); font-size: 1.4rem; }
.cart-close-btn { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--mid-gray); padding: 4px; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--lt-gray); }
.cart-item-img { width: 80px; height: 100px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; background: var(--cream); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-head); font-size: 1rem; margin-bottom: 4px; }
.cart-item-variant { font-size: .8rem; color: var(--mid-gray); margin-bottom: 8px; }
.cart-item-price { font-weight: 600; font-size: .9rem; }
.cart-item-original { text-decoration: line-through; color: var(--mid-gray); font-size: .8rem; }
.cart-item-b2g1 { color: var(--success); font-size: .78rem; font-weight: 500; }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.cart-qty { display: flex; align-items: center; gap: 4px; }
.cart-qty-btn { width: 28px; height: 28px; border: 1px solid var(--lt-gray); background: #fff; border-radius: var(--radius); cursor: pointer; font-size: .9rem; }
.cart-qty-val { min-width: 24px; text-align: center; font-size: .9rem; }
.cart-remove { background: none; border: none; color: var(--mid-gray); font-size: .8rem; cursor: pointer; text-decoration: underline; }
.cart-footer { padding: 16px 24px; border-top: 1px solid var(--lt-gray); background: var(--cream); }
.cart-coupon { display: flex; gap: 8px; margin-bottom: 16px; }
.cart-coupon input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--lt-gray); border-radius: var(--radius); font-family: var(--font-body); font-size: .85rem; outline: none; }
.cart-coupon input:focus { border-color: var(--charcoal); }
.cart-summary-line { display: flex; justify-content: space-between; font-size: .9rem; margin-bottom: 6px; }
.cart-summary-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 600; padding-top: 10px; border-top: 1px solid var(--lt-gray); margin-top: 8px; }
.cart-free-ship { color: var(--success); font-size: .8rem; text-align: center; margin-bottom: 12px; }
.b2g1-notice { background: var(--gold-lt); padding: 8px 12px; border-radius: var(--radius); font-size: .8rem; margin-bottom: 12px; color: var(--charcoal); }

/* ── Checkout ── */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 48px; padding: 40px 0; align-items: start; }
.checkout-section { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.checkout-section-title { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--lt-gray); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--mid-gray); margin-bottom: 6px; }
.form-control { width: 100%; padding: 12px 14px; border: 1.5px solid var(--lt-gray); border-radius: var(--radius); font-family: var(--font-body); font-size: .9rem; transition: border-color .2s; outline: none; }
.form-control:focus { border-color: var(--charcoal); }
.form-control.error { border-color: var(--danger); }
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='%236b6460' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.payment-methods { display: flex; flex-direction: column; gap: 12px; }
.payment-method { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1.5px solid var(--lt-gray); border-radius: var(--radius); cursor: pointer; transition: border-color .15s; }
.payment-method:has(input:checked) { border-color: var(--charcoal); }
.payment-method-logo { height: 28px; }

/* ── Reviews ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }
.review-card { background: #fff; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.review-name { font-weight: 500; }
.review-verified { font-size: .75rem; color: var(--success); }
.review-title { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 8px; }
.review-body { color: var(--mid-gray); font-size: .88rem; line-height: 1.6; }
.review-images { display: flex; gap: 8px; margin-top: 12px; }
.review-image { width: 64px; height: 64px; border-radius: var(--radius); object-fit: cover; cursor: pointer; }

/* ── Admin ── */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: var(--charcoal); color: #fff; flex-shrink: 0; position: fixed; top: 0; bottom: 0; overflow-y: auto; }
.admin-sidebar-logo { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--font-head); font-size: 1.3rem; }
.admin-sidebar-logo span { color: var(--rose); }
.admin-nav { padding: 12px 0; }
.admin-nav-section { padding: 8px 20px 4px; font-size: .65rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.3); }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 20px; font-size: .85rem; color: rgba(255,255,255,.75); transition: all .2s; }
.admin-nav a:hover, .admin-nav a.active { color: #fff; background: rgba(255,255,255,.08); padding-left: 24px; }
.admin-nav a.active { border-left: 3px solid var(--rose); }
.admin-content { flex: 1; margin-left: 240px; background: #f3f0ee; min-height: 100vh; }
.admin-topbar { background: #fff; padding: 0 28px; height: 60px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--lt-gray); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.admin-topbar-title { font-family: var(--font-head); font-size: 1.3rem; color: var(--charcoal); }
.admin-body { padding: 28px; }
.admin-card { background: #fff; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.admin-card-title { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--lt-gray); }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card { background: #fff; border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 16px; }
.stat-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.stat-icon.rose   { background: rgba(201,112,106,.15); color: var(--rose); }
.stat-icon.gold   { background: rgba(201,169,110,.15); color: var(--gold); }
.stat-icon.green  { background: rgba(76,175,80,.15); color: #4caf50; }
.stat-icon.blue   { background: rgba(33,150,243,.15); color: #2196f3; }
.stat-val { font-size: 1.6rem; font-weight: 600; color: var(--charcoal); line-height: 1; }
.stat-label { font-size: .78rem; color: var(--mid-gray); margin-top: 2px; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; padding: 10px 14px; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--mid-gray); border-bottom: 2px solid var(--lt-gray); }
.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--lt-gray); font-size: .88rem; vertical-align: middle; }
.data-table tr:hover td { background: var(--cream); }
.data-table .actions { display: flex; gap: 8px; }
.status-pill { padding: 3px 10px; border-radius: 999px; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.pill-pending   { background: #fff8e1; color: #f57f17; }
.pill-paid      { background: #e8f5e9; color: #2e7d32; }
.pill-fulfilled { background: #e3f2fd; color: #1565c0; }
.pill-cancelled { background: #ffebee; color: #c62828; }
.pill-active    { background: #e8f5e9; color: #2e7d32; }
.pill-draft     { background: #f5f5f5; color: #616161; }
.admin-filter-bar { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.admin-search { flex: 1; min-width: 200px; padding: 9px 14px; border: 1.5px solid var(--lt-gray); border-radius: var(--radius); font-size: .88rem; outline: none; }
.admin-search:focus { border-color: var(--charcoal); }
.admin-select { padding: 9px 14px; border: 1.5px solid var(--lt-gray); border-radius: var(--radius); background: #fff; font-size: .88rem; outline: none; }
.theme-section-card { background: #fff; border: 1.5px solid var(--lt-gray); border-radius: var(--radius); padding: 16px; display: flex; align-items: center; gap: 16px; margin-bottom: 8px; cursor: grab; }
.theme-section-card:active { cursor: grabbing; }
.drag-handle { color: var(--mid-gray); font-size: 1.2rem; cursor: grab; }

/* ── Forms ── */
.form-check { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.form-check input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--charcoal); }
.form-check label { font-size: .88rem; }
.form-hint { font-size: .75rem; color: var(--mid-gray); margin-top: 4px; }
.alert { padding: 12px 16px; border-radius: var(--radius); font-size: .88rem; margin-bottom: 16px; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }
.alert-warning { background: #fff8e1; color: #e65100; border: 1px solid #ffcc02; }

/* ── Footer ── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-family: var(--font-head); font-size: 1.6rem; color: #fff; margin-bottom: 16px; }
.footer-brand span { color: var(--rose); }
.footer-tagline { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .2s; font-size: .9rem; }
.footer-social:hover { border-color: var(--rose); color: var(--rose); }
.footer-col-title { font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: .85rem; padding: 4px 0; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: 12px; }
.footer-payments { display: flex; gap: 8px; align-items: center; }
.payment-icon { height: 24px; background: rgba(255,255,255,.1); padding: 4px 10px; border-radius: var(--radius); font-size: .7rem; color: rgba(255,255,255,.6); display: flex; align-items: center; }

/* ── Pagination ── */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn { padding: 8px 14px; border: 1.5px solid var(--lt-gray); border-radius: var(--radius); background: #fff; font-size: .85rem; cursor: pointer; transition: all .15s; color: var(--charcoal); }
.page-btn:hover, .page-btn.active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.page-btn.dots { cursor: default; border: none; background: none; }

/* ── Collection Page ── */
.collection-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 32px 0; }
.collection-sidebar { position: sticky; top: 100px; }
.filter-card { background: #fff; border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.filter-title { font-family: var(--font-head); font-size: 1rem; margin-bottom: 16px; }
.filter-option { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; font-size: .88rem; cursor: pointer; }
.filter-option input { accent-color: var(--charcoal); }
.range-slider { width: 100%; }
.price-range-display { display: flex; justify-content: space-between; font-size: .82rem; color: var(--mid-gray); margin-bottom: 8px; }
.collection-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.sort-select { padding: 8px 14px; border: 1.5px solid var(--lt-gray); border-radius: var(--radius); background: #fff; font-size: .85rem; outline: none; }
.view-toggle { display: flex; gap: 4px; }
.view-btn { padding: 8px 12px; border: 1.5px solid var(--lt-gray); background: #fff; border-radius: var(--radius); cursor: pointer; }
.view-btn.active { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }

/* ── Misc ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--mid-gray); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--rose); }
.divider { border: none; border-top: 1px solid var(--lt-gray); margin: 24px 0; }
.skeleton { background: linear-gradient(90deg, #f0ebe8 25%, #e8e3e0 50%, #f0ebe8 75%); background-size: 200%; animation: skeleton 1.5s infinite; border-radius: var(--radius); }
@keyframes skeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--charcoal); color: #fff; padding: 14px 20px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 9999; transform: translateY(20px); opacity: 0; transition: all .3s; max-width: 340px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #2e7d32; }
.toast.error { background: var(--danger); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pdp { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .collection-layout { grid-template-columns: 1fr; }
  .collection-sidebar { position: static; display: none; }
  .collection-sidebar.mobile-open { display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0; overflow-y: auto; z-index: 600; background: #fff; padding: 24px; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: block !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { transform: translateX(-100%); transition: transform .3s; }
  .admin-sidebar.mobile-open { transform: translateX(0); }
  .admin-content { margin-left: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .container { padding: 0 16px; }
  .slide-content { padding: 20px; }
}

/* ── Animations ── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn .5s ease forwards; }
.fade-in-1 { animation-delay: .1s; opacity: 0; }
.fade-in-2 { animation-delay: .2s; opacity: 0; }
.fade-in-3 { animation-delay: .3s; opacity: 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { animation: spin .8s linear infinite; display: inline-block; }

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV & HAMBURGER
═══════════════════════════════════════════════════════════ */
.mobile-menu-btn {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; padding: 4px; cursor: pointer;
  flex-shrink: 0;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal); border-radius: 2px;
  transition: all .3s;
}
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(43,35,32,.5);
  z-index: 700; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(320px, 90vw);
  background: #fff; z-index: 800;
  transform: translateX(-100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid var(--lt-gray);
}
.mobile-nav-header button {
  background: none; border: none; font-size: 1.3rem;
  cursor: pointer; color: var(--mid-gray); padding: 4px;
}
.mobile-nav-body { padding: 12px 0; flex: 1; }
.mobile-nav-link {
  display: block; padding: 14px 20px;
  font-size: .95rem; color: var(--charcoal);
  border-bottom: 1px solid var(--lt-gray);
  text-decoration: none; transition: background .15s;
}
.mobile-nav-link:hover { background: var(--cream); }
.mobile-nav-summary {
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; cursor: pointer;
}
.mobile-nav-summary::-webkit-details-marker { display: none; }
.mobile-nav-arrow { transition: transform .25s; }
details.mobile-nav-group[open] .mobile-nav-arrow { transform: rotate(90deg); }
.mobile-nav-sub { background: var(--cream); }
.mobile-nav-sublink {
  display: block; padding: 12px 32px;
  font-size: .88rem; color: var(--mid-gray);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.mobile-nav-sublink:hover { color: var(--rose); }
.mobile-nav-divider { height: 1px; background: var(--lt-gray); margin: 8px 0; }

/* ═══════════════════════════════════════════════════════════
   CATEGORY SLIDESHOW (MOBILE HORIZONTAL)
═══════════════════════════════════════════════════════════ */
.category-grid-desktop { display: grid; }
.cat-slideshow-wrap { display: none; position: relative; }
.cat-slideshow {
  display: flex; gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 8px;
}
.cat-slideshow::-webkit-scrollbar { display: none; }
.cat-slide-item {
  flex-shrink: 0; width: 140px; scroll-snap-align: start;
  text-decoration: none; text-align: center;
}
.cat-slide-img {
  width: 140px; height: 180px;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--cream); margin-bottom: 8px;
}
.cat-slide-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-slide-name {
  font-size: .82rem; color: var(--charcoal);
  font-family: var(--font-head); display: block;
}
.cat-slide-btn {
  position: absolute; top: 70px;
  background: #fff; border: 1px solid var(--lt-gray);
  border-radius: 50%; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; color: var(--charcoal);
  box-shadow: var(--shadow-sm); z-index: 2;
  transition: all .2s;
}
.cat-slide-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.cat-slide-prev { left: -14px; }
.cat-slide-next { right: -14px; }

/* ═══════════════════════════════════════════════════════════
   AUTH PAGES
═══════════════════════════════════════════════════════════ */
.auth-page {
  min-height: 80vh; display: flex; align-items: center;
  justify-content: center; padding: 40px 16px;
}
.auth-card {
  width: 100%; max-width: 480px;
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px 36px; box-shadow: var(--shadow-lg);
}
.auth-header { text-align: center; margin-bottom: 28px; }
.auth-form { margin-bottom: 20px; }
.auth-footer { text-align: center; font-size: .88rem; color: var(--mid-gray); }

/* ═══════════════════════════════════════════════════════════
   CART PAGE (MOBILE-FRIENDLY)
═══════════════════════════════════════════════════════════ */
.cart-page-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 32px;
  align-items: start;
}
.cart-page-item {
  display: flex; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--lt-gray);
}
.cart-item-img { width: 88px; height: 110px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; background: var(--cream); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-head); font-size: 1rem; color: var(--charcoal); text-decoration: none; }
.cart-item-name:hover { color: var(--rose); }
.cart-item-variant { font-size: .8rem; color: var(--mid-gray); margin-top: 2px; }
.cart-item-b2g1 { color: var(--success); font-size: .78rem; font-weight: 500; margin-top: 4px; }
.cart-item-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; flex-wrap: wrap; gap: 10px;
}
.cart-qty-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--lt-gray); border-radius: var(--radius);
  overflow: hidden;
}
.cart-qty-btn {
  width: 36px; height: 36px; background: none; border: none;
  font-size: 1.1rem; cursor: pointer; transition: background .15s;
  color: var(--charcoal); flex-shrink: 0;
}
.cart-qty-btn:hover { background: var(--cream); }
.cart-qty-num {
  min-width: 36px; text-align: center; font-size: .9rem;
  font-weight: 500; padding: 0 4px;
}
.cart-item-price-block { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.cart-item-price { font-weight: 600; font-size: .95rem; }
.cart-remove-btn {
  background: none; border: none; color: var(--danger);
  font-size: .78rem; cursor: pointer; text-decoration: underline; padding: 0;
}
.cart-page-summary { position: sticky; top: 90px; }

/* ═══════════════════════════════════════════════════════════
   ACCOUNT PAGE
═══════════════════════════════════════════════════════════ */
.account-wrap { padding: 32px 0 60px; }
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.account-sidebar-card { position: sticky; top: 90px; }
.account-nav { margin-top: 4px; }
.account-nav-link {
  display: block; padding: 10px 0; border-bottom: 1px solid var(--lt-gray);
  font-size: .88rem; color: var(--charcoal); text-decoration: none;
  transition: color .15s;
}
.account-nav-link:hover, .account-nav-link.active { color: var(--rose); }
.account-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.order-card {
  border: 1px solid var(--lt-gray); border-radius: var(--radius-lg);
  padding: 16px; margin-bottom: 12px;
}
.order-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.order-card-footer { display: flex; justify-content: space-between; align-items: center; }
.orders-list { max-height: 600px; overflow-y: auto; }

/* ═══════════════════════════════════════════════════════════
   COLLECTION PAGE ENHANCEMENTS
═══════════════════════════════════════════════════════════ */
.collection-hero { text-align: center; padding: 32px 0 20px; }
.collection-desc { color: var(--mid-gray); margin-top: 8px; max-width: 600px; margin-inline: auto; }
.collection-mobile-toolbar { display: none; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--lt-gray); }
.collection-toolbar-desktop { display: flex; }
.filter-sidebar-header { display: none; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.filter-close-btn { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--mid-gray); }
.filter-subcat-link {
  display: block; padding: 7px 0; font-size: .88rem; color: var(--mid-gray);
  border-bottom: 1px solid var(--lt-gray); text-decoration: none;
  transition: color .15s;
}
.filter-subcat-link:hover, .filter-subcat-link.active { color: var(--rose); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   BOUGHT TOGETHER
═══════════════════════════════════════════════════════════ */
.bought-together-wrap {
  display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap;
}
.bought-together-products {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; flex: 1;
}
.bt-item { text-align: center; max-width: 120px; }
.bt-img { width: 100px; height: 125px; border-radius: var(--radius); overflow: hidden; background: var(--cream); margin: 0 auto 8px; }
.bt-img img { width: 100%; height: 100%; object-fit: cover; }
.bt-check { display: flex; align-items: center; gap: 6px; justify-content: center; font-size: .82rem; margin-bottom: 4px; }
.bt-price { font-weight: 600; font-size: .9rem; color: var(--rose); }
.bt-plus { font-size: 1.4rem; color: var(--mid-gray); font-weight: 300; }
.bt-cta { min-width: 180px; }
.bt-total-label { font-size: .8rem; color: var(--mid-gray); text-transform: uppercase; letter-spacing: .08em; }
.bt-total { font-size: 1.6rem; font-weight: 600; color: var(--charcoal); margin: 4px 0 16px; }

/* ═══════════════════════════════════════════════════════════
   PDP STAR RATING INPUT
═══════════════════════════════════════════════════════════ */
.star-rating-input {
  display: flex; gap: 4px; flex-direction: row-reverse; justify-content: flex-end;
}
.star-label { cursor: pointer; }
.star-icon { font-size: 2rem; color: #ddd; display: block; transition: color .15s; }
.star-rating-input .star-icon:hover, .star-rating-input .star-label:hover ~ .star-label .star-icon { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   STATIC PAGE CONTENT
═══════════════════════════════════════════════════════════ */
.page-content-wrap { max-width: 760px; margin: 0 auto; }
.page-body h2 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 16px; color: var(--charcoal); }
.page-body h3 { font-family: var(--font-head); font-size: 1.3rem; margin: 24px 0 12px; color: var(--charcoal); }
.page-body p  { color: var(--mid-gray); line-height: 1.8; margin-bottom: 16px; }
.page-body ul, .page-body ol { padding-left: 20px; color: var(--mid-gray); line-height: 1.8; margin-bottom: 16px; }
.page-body li { margin-bottom: 6px; }
.page-body a  { color: var(--rose); }
.page-body a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   TRUST SECTION
═══════════════════════════════════════════════════════════ */
.trust-section { background: var(--cream); padding: 40px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.trust-icon { font-size: 2rem; margin-bottom: 10px; }
.trust-title { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 4px; }
.trust-sub { font-size: .8rem; color: var(--mid-gray); }

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════════════ */
.newsletter-section { background: linear-gradient(135deg, var(--blush-dk), var(--blush)); }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form .form-control { flex: 1; min-width: 200px; }
.newsletter-form .btn { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   B2G1 BANNER
═══════════════════════════════════════════════════════════ */
.b2g1-banner { background: linear-gradient(135deg, var(--charcoal) 0%, #3d2f2c 100%); padding: clamp(40px,6vw,80px) 0; }
.b2g1-inner { max-width: 600px; color: #fff; }
.b2g1-inner p { color: rgba(255,255,255,.75); }
.b2g1-inner .label-upper { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   ADMIN MOBILE TOGGLE
═══════════════════════════════════════════════════════════ */
.admin-mobile-toggle {
  display: none; background: none; border: 1.5px solid var(--lt-gray);
  border-radius: var(--radius); padding: 6px 10px; cursor: pointer;
  font-size: 1.1rem; color: var(--charcoal);
}
.show-md { display: none; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE ≤ 1024px
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pdp { grid-template-columns: 1fr; gap: 28px; padding: 24px 0; }
  .pdp-gallery { position: static; }
  .pdp-main-img { aspect-ratio: 4/3; max-height: 420px; }
  .pdp-thumbs { flex-wrap: nowrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .collection-layout { grid-template-columns: 1fr; }
  .collection-sidebar { position: static; display: none; }
  .collection-sidebar.mobile-open {
    display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    overflow-y: auto; z-index: 600; background: #fff; padding: 24px;
  }
  .collection-sidebar.mobile-open .filter-sidebar-header { display: flex; }
  .cart-page-layout { grid-template-columns: 1fr; }
  .cart-page-summary { position: static; }
  .account-layout { grid-template-columns: 220px 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE ≤ 768px
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex !important; }
  .header-main { padding: 12px 0; }
  .header-logo { font-size: 1.4rem; flex: 1; text-align: center; }
  .header-actions { gap: 2px; }
  .header-icon-btn { padding: 8px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-col:first-child { grid-column: 1 / -1; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Product Grid */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card-body { padding: 10px 12px; }
  .product-card-name { font-size: .9rem; -webkit-line-clamp: 2; }
  .product-card-atc { padding: 8px; font-size: .75rem; }

  /* Category: hide desktop grid, show slideshow */
  .category-grid-desktop { display: none; }
  .cat-slideshow-wrap { display: block; padding: 0 20px; }

  /* Hero */
  .hero-slider { height: clamp(320px, 60vw, 520px); }
  .slide-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }
  .slide-sub { font-size: .9rem; margin-bottom: 20px; }
  .slide-content { padding: 24px 20px; }
  .slider-arrow { display: none; }

  /* PDP */
  .pdp { gap: 20px; }
  .pdp-main-img { aspect-ratio: 1/1; border-radius: var(--radius); }
  .pdp-title { font-size: 1.6rem; }
  .pdp-price-current { font-size: 1.4rem; }
  .pdp-thumb { width: 56px; height: 70px; }

  /* Collection toolbar mobile */
  .collection-mobile-toolbar { display: flex; }
  .collection-toolbar-desktop { display: none; }

  /* Auth */
  .auth-card { padding: 28px 20px; }

  /* Account */
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar-card { position: static; }
  .account-stats { grid-template-columns: repeat(3,1fr); gap: 10px; }

  /* Cart */
  .cart-item-img { width: 72px; height: 90px; }

  /* Checkout */
  .checkout-section { padding: 20px 16px; }

  /* Admin sidebar off-canvas */
  .admin-sidebar { transform: translateX(-100%); transition: transform .3s; z-index: 500; }
  .admin-sidebar.mobile-open { transform: translateX(0); }
  .admin-content { margin-left: 0; }
  .admin-body { padding: 16px; }
  .admin-topbar { padding: 0 16px; }
  .admin-mobile-toggle { display: block !important; }
  .show-md { display: inline; }
  .stat-cards { grid-template-columns: 1fr 1fr; }

  /* Trust & Newsletter */
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .form-control { min-width: unset; }
  .newsletter-form .btn { width: 100%; }

  /* Bought together */
  .bought-together-wrap { flex-direction: column; gap: 20px; }
  .bt-cta { width: 100%; }
  .bt-cta .btn { width: 100%; }

  /* B2G1 banner */
  .b2g1-inner { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE ≤ 480px
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-card-atc { display: none; }
  .pdp-main-img { border-radius: 0; margin: 0 -14px; width: calc(100% + 28px); }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:first-child { grid-column: auto; }
  .account-stats { grid-template-columns: 1fr; gap: 8px; }
  .auth-card { border-radius: 0; box-shadow: none; padding: 32px 16px; min-height: 100vh; justify-content: flex-start; padding-top: 60px; }
  .auth-page { padding: 0; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn .5s ease forwards; }
.fade-in-1 { animation-delay: .1s; opacity: 0; }
.fade-in-2 { animation-delay: .2s; opacity: 0; }
.fade-in-3 { animation-delay: .3s; opacity: 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { animation: spin .8s linear infinite; display: inline-block; }
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }
