/* ============================================================
   SHAINY CREATION — style.css  v7.0
   Standardized Typography System
   ─────────────────────────────────────────────────────────
   FONT FAMILIES:
     Heading  → Playfair Display (serif)  — --f-display
     Body/UI  → Poppins (sans-serif)      — --f-body
     Alt Body → Lato (sans-serif)         — --f-alt

   TYPOGRAPHY SPEC:
     Main Heading    : Playfair Display  56px  700  #111111
     Section Heading : Playfair Display  32px  600  #1a1a1a  ls:0.5px
     Sub Heading     : Poppins           20px  500  #333
     Product Name    : Poppins           15px  500  #333
     Product Price   : Poppins           16px  600  #000
     Discount Price  : Poppins           14px  400  #777
     Paragraph       : Lato              15px  400  #555
     Button          : Poppins           14px  500  #fff
     Badge           : Poppins           11px  500  #fff
     Nav Links       : Poppins           14px  500  #333
     Footer Heading  : Poppins           15px  600  #fff
     Footer Links    : Poppins           13px  400  #ccc
     Copyright       : Poppins           12px  400  #999
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&family=Poppins:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Colour */
  --blush:       #f8ede6;
  --blush-mid:   #f0d9cd;
  --blush-deep:  #e5c5b4;
  --rose:        #c8796a;
  --rose-dark:   #a85a4c;
  --rose-light:  #e8a89c;
  --gold:        #c9a96e;
  --text:        #1e1512;
  --text-soft:   #7a6458;
  --text-muted:  #b09484;
  --white:       #ffffff;
  --off-white:   #fdf9f6;
  --cream:       #f7f0ea;
  --border:      #e8d5c8;
  --border-soft: #f0e4da;
  --badge-red:   #c8404a;

  /* Shadow */
  --sh-xs: 0 1px 4px rgba(30,21,18,.06);
  --sh-sm: 0 2px 16px rgba(30,21,18,.08);
  --sh-md: 0 8px 32px rgba(30,21,18,.12);
  --sh-lg: 0 20px 56px rgba(30,21,18,.15);

  /* Transition */
  --t:    .22s cubic-bezier(.4,0,.2,1);
  --t-lg: .38s cubic-bezier(.4,0,.2,1);

  /* Typography */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'Poppins', -apple-system, sans-serif;
  --f-alt:     'Lato', sans-serif;

  /* Text Colors (standardized) */
  --color-heading:  #111111;
  --color-heading2: #1a1a1a;
  --color-subhead:  #333333;
  --color-product:  #222222;
  --color-para:     #555555;
  --color-muted-ui: #777777;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  /* Spacing scale (8px base) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-14: 56px;
  --sp-16: 64px;
  --sp-20: 80px;

  /* Content max-width */
  --max-w: 1200px;
  --side-pad: 52px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--color-heading);
  background: var(--white);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }
html, body { overflow-x: hidden; }

/* ── TYPOGRAPHY SCALE ── */
/* Standardized per brand typography system */
/* Main Heading: Playfair Display 48-56px 700 #111111 */
/* Section Heading: Playfair Display 32px 600 #1a1a1a */
/* Sub Heading: Poppins 20px 500 #333 */
/* Product Name: Poppins 15px 500 #333 */
/* Paragraph: Lato/Poppins 15px 400 #555 */
.t-display-xl { font-family: var(--f-display); font-size: 56px; font-weight: 700; letter-spacing: -.025em; line-height: 1.1;  color: var(--color-heading); }
.t-display-lg { font-family: var(--f-display); font-size: 48px; font-weight: 700; letter-spacing: -.02em;  line-height: 1.15; color: var(--color-heading); }
.t-display-md { font-family: var(--f-display); font-size: 32px; font-weight: 600; letter-spacing: .5px;    line-height: 1.2;  color: var(--color-heading2); }
.t-display-sm { font-family: var(--f-display); font-size: 28px; font-weight: 600; letter-spacing: .5px;    line-height: 1.25; color: var(--color-heading2); }
.t-display-xs { font-family: var(--f-display); font-size: 20px; font-weight: 500; letter-spacing: -.01em;  line-height: 1.3;  color: var(--color-subhead); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--text);
  color: rgba(255,255,255,.78);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 9px var(--side-pad);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  line-height: 1;
}
.top-bar span { display: flex; align-items: center; gap: 6px; }
.top-bar b { color: #f0c97a; font-weight: 700; }

/* ── NAV ── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side-pad);
  height: 64px;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255,255,255,.96);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(12px);
  transition: box-shadow var(--t);
}
.site-nav.scrolled { box-shadow: var(--sh-sm); }

.nav-left, .nav-right-links { display: flex; align-items: center; gap: 28px; }
.nav-left a, .nav-right-links a {
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: none;
  font-weight: 500;
  color: var(--color-subhead);
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}
.nav-left a::after, .nav-right-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose);
  transition: width var(--t);
  border-radius: 1px;
}
.nav-left a:hover::after, .nav-right-links a:hover::after,
.nav-left a.active::after { width: 100%; }
.nav-left a:hover, .nav-right-links a:hover, .nav-left a.active { color: var(--text); }

.logo {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--color-heading);
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
}
.logo span {
  display: block;
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-icons  { display: flex; align-items: center; gap: 6px; }
.nav-icon-btn {
  background: none; border: none;
  padding: 8px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  transition: background var(--t);
  color: var(--text-soft);
  min-width: 40px; min-height: 40px;
}
.nav-icon-btn:hover { background: var(--blush); color: var(--text); }
.nav-icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.cart-badge, .wishlist-badge {
  position: absolute; top: 3px; right: 3px;
  min-width: 15px; height: 15px;
  background: var(--rose); color: #fff;
  font-size: 9px; font-weight: 700;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px; line-height: 1;
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
  border-radius: var(--r-sm);
  min-width: 40px; min-height: 40px;
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--text); border-radius: 1px; transition: all var(--t); }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 300; }
.mobile-nav.open { display: block; }
.mobile-nav-overlay { position: absolute; inset: 0; background: rgba(30,21,18,.5); backdrop-filter: blur(4px); }
.mobile-nav-drawer {
  position: absolute; top: 0; left: 0;
  width: 280px; max-width: 85vw; height: 100%;
  background: var(--white);
  padding: 28px 24px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--sh-lg);
}
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-close { display: flex; align-items: center; justify-content: center; background: none; border: none; font-size: 24px; margin-bottom: 24px; color: var(--text-soft); min-width: 40px; min-height: 40px; }
.mobile-nav-close:hover { color: var(--rose); }
.mobile-nav-drawer a {
  display: block; padding: 13px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 500; color: var(--text-soft);
  transition: color var(--t), padding-left var(--t);
}
.mobile-nav-drawer a:hover { color: var(--rose); padding-left: 6px; }

/* ── SEARCH OVERLAY ── */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(30,21,18,.7);
  z-index: 400;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 110px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  backdrop-filter: blur(6px);
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box {
  display: flex;
  width: min(640px, 92vw);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.search-input {
  flex: 1; padding: 16px 20px;
  border: none; outline: none;
  font-family: var(--f-body); font-size: 16px;
  color: var(--text); background: transparent;
}
.search-input::placeholder { color: var(--text-muted); }
.search-close { width: 52px; background: none; border: none; font-size: 20px; color: var(--text-muted); cursor: pointer; transition: color var(--t), background var(--t); }
.search-close:hover { color: var(--rose); background: var(--blush); }
.search-results { width: min(640px, 92vw); background: var(--white); border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--r-sm) var(--r-sm); max-height: 320px; overflow-y: auto; box-shadow: var(--sh-md); }
.search-result-item { display: flex; align-items: center; gap: 14px; padding: 12px 16px; cursor: pointer; transition: background var(--t); border-bottom: 1px solid var(--border-soft); }
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--off-white); }
.search-result-thumb { width: 40px; height: 54px; border-radius: var(--r-sm); flex-shrink: 0; overflow: hidden; background: var(--blush); }
.search-result-name  { font-size: 13px; font-weight: 500; }
.search-result-price { font-size: 12px; color: var(--rose); margin-top: 2px; font-weight: 500; }

/* ── BUTTONS ── */
/* Spec: Poppins 13-14px 500 #fff on dark bg */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-body);
  /* Fluid font: 11px on 320px, 14px on 1200px+ */
  font-size: clamp(11px, 1.1vw + 7px, 14px);
  letter-spacing: .06em; text-transform: uppercase; font-weight: 500;
  padding: 13px 28px;
  border: none; border-radius: var(--r-sm);
  transition: all var(--t); cursor: pointer;
  white-space: nowrap; min-height: 44px;
  max-width: 100%; box-sizing: border-box;
}
.btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.btn-dark    { background: var(--text); color: #fff; }
.btn-dark:hover { background: var(--rose-dark); }
.btn-rose    { background: var(--rose); color: #fff; }
.btn-rose:hover { background: var(--rose-dark); }
.btn-outline { background: none; border: 1.5px solid var(--text); color: var(--text); }
.btn-outline:hover { background: var(--text); color: #fff; }
.btn-outline-white { background: none; border: 1.5px solid rgba(255,255,255,.7); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-block  { width: 100%; }
.btn-sm     { padding: 9px 20px; font-size: clamp(9px, 0.9vw + 6px, 10px); min-height: 40px; }
.btn-lg     { padding: 16px 36px; font-size: 12px; }
.btn:disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }

/* ── DRESS PLACEHOLDERS ── */
.dress-ph { border-radius: 44% 44% 28% 28% / 28% 28% 10% 10%; position: relative; transition: transform .3s; flex-shrink: 0; }
.dress-ph::before { content: ''; position: absolute; top: -46px; left: 50%; transform: translateX(-50%); width: 56px; height: 72px; border-radius: 50% 50% 36% 36%; background: inherit; filter: brightness(1.06); }
.dress-pink     { background: linear-gradient(155deg, #fde4db, #f5b8a8, #ec9080); }
.dress-gold     { background: linear-gradient(155deg, #f8e8c4, #e8c880, #d4a840); }
.dress-white-ph { background: linear-gradient(155deg, #faf6f2, #ede3db); }
.dress-red      { background: linear-gradient(155deg, #f5b0b0, #d87070, #c04040); }
.dress-lavender { background: linear-gradient(155deg, #e4d4f8, #c8a8e8, #b088d0); }
.dress-coral    { background: linear-gradient(155deg, #f8b0a0, #e88070, #d06050); }
.dress-mint     { background: linear-gradient(155deg, #c4f0dc, #88d8b0, #50c088); }
.dress-yellow   { background: linear-gradient(155deg, #f8f4a8, #e8d868, #d0c030); }

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  position: relative; cursor: pointer; overflow: hidden;
  transition: box-shadow var(--t-lg), transform var(--t-lg), border-color var(--t);
}
.product-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: var(--border); }
.product-img { position: relative; overflow: hidden; background: var(--blush); display: flex; align-items: center; justify-content: center; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.25,.46,.45,.94); }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-card:hover .dress-ph { transform: scale(1.04) translateY(-4px); }

/* Spec: Badge — Poppins 11px 500 #fff */
.badge { position: absolute; top: 10px; left: 10px; font-family: var(--f-body); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 4px 9px; font-weight: 500; z-index: 2; border-radius: var(--r-sm); line-height: 1.4; }
.badge-limited { background: var(--badge-red); color: #fff; }
.badge-new     { background: var(--text); color: #fff; }
.badge-sale    { background: var(--gold); color: #fff; }

.card-wishlist {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none;
  transition: background var(--t), transform var(--t); z-index: 2;
}
.card-wishlist:hover, .card-wishlist.active { background: var(--rose); transform: scale(1.08); }
.card-wishlist svg { width: 14px; height: 14px; stroke: var(--text-soft); fill: none; transition: stroke var(--t), fill var(--t); }
.card-wishlist:hover svg, .card-wishlist.active svg { stroke: #fff; }
.card-wishlist.active svg { fill: #fff; }

.card-body { padding: 14px 16px 18px; }
/* Spec: Product Name — Poppins 15px 500 #333 */
.card-name  { font-family: var(--f-body); font-size: 15px; font-weight: 500; margin-bottom: 4px; line-height: 1.35; color: var(--color-subhead);
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.card-meta  { font-family: var(--f-body); font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
/* Spec: Product Price — Poppins 16px 600 #000 */
.card-price { font-family: var(--f-body); font-size: 16px; font-weight: 600; color: var(--color-product); display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
/* Spec: Discount Price — Poppins 14px 400 #777 */
.card-price .original { text-decoration: line-through; color: var(--color-muted-ui); font-size: 14px; font-weight: 400; }
.card-price .sale { color: var(--rose); }
.stars { color: #e8a020; font-size: 12px; letter-spacing: 1px; }

/* ── PRODUCTS GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── SKELETON ── */
.product-card-skeleton {
  height: 320px; border-radius: var(--r-md);
  background: linear-gradient(90deg, var(--blush) 0%, var(--cream) 50%, var(--blush) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border: 1px solid var(--border-soft);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── CAROUSEL ── */
.carousel-wrap { position: relative; overflow: hidden; padding: 0 var(--side-pad); }
.carousel-track { display: flex; gap: 20px; transition: transform .5s cubic-bezier(.25,.46,.45,.94); will-change: transform; }
.carousel-track .product-card { flex: 0 0 calc(25% - 15px); min-width: 0; }
.carousel-nav { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.carousel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all var(--t); padding: 0; }
.carousel-dot.active { background: var(--rose); width: 22px; border-radius: 4px; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .26s; }
.reveal-delay-4 { transition-delay: .34s; }

/* ── SECTION HELPERS ── */
.section-pad    { padding: 64px var(--side-pad); }
.section-pad-sm { padding: 48px var(--side-pad); }
.bg-off-white { background: var(--off-white); }
.bg-blush     { background: var(--blush); }
.bg-cream     { background: var(--cream); }
.bg-white     { background: var(--white); }
.max-w { max-width: var(--max-w); margin-left: auto; margin-right: auto; }

.section-heading { text-align: center; margin-bottom: 40px; }
/* Spec: Section Heading — Playfair Display 32px 600 letter-spacing 0.5px #222 */
.section-heading h2 { font-family: var(--f-display); font-size: 32px; font-weight: 600; margin-bottom: 10px; letter-spacing: .5px; line-height: 1.2; color: var(--color-heading2); }
/* Spec: Paragraph — Lato/Poppins 15px 400 #555 */
.section-heading p  { font-family: var(--f-alt); font-size: 15px; font-weight: 400; color: var(--color-para); max-width: 480px; margin: 0 auto; line-height: 1.7; }

/* ── PAGE HERO (inner pages) ── */
.hero-page {
  background: linear-gradient(140deg, var(--blush) 0%, var(--off-white) 55%, var(--cream) 100%);
  padding: 72px var(--side-pad);
  text-align: center; position: relative; overflow: hidden;
}
.hero-page::before { content: ''; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(200,121,106,.07) 0%, transparent 65%); top: -200px; right: -120px; pointer-events: none; }
/* Spec: Hero Main Title — Playfair Display 56px 700 #1a1a1a */
.hero-page h1 { font-family: var(--f-display); font-size: clamp(1.875rem, 5vw + 1rem, 56px); font-weight: 700; margin-bottom: 14px; position: relative; z-index: 1; letter-spacing: -.025em; line-height: 1.1; color: var(--color-heading2); }
.hero-page h1 em { font-style: italic; color: var(--rose); }
/* Spec: Hero Subtitle — Poppins 16-18px 400 #666 */
.hero-page p { font-family: var(--f-body); font-size: 17px; font-weight: 400; color: #666666; max-width: 520px; margin: 0 auto 28px; line-height: 1.8; position: relative; z-index: 1; }

/* ── HIGHLIGHT CARDS (why-grid, features) ── */
.highlight-card { background: var(--white); border: 1px solid var(--border-soft); padding: 32px 26px; text-align: center; border-radius: var(--r-lg); transition: box-shadow var(--t-lg), transform var(--t-lg); }
.highlight-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.highlight-card-icon { width: 60px; height: 60px; background: var(--blush); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; transition: background var(--t); }
.highlight-card:hover .highlight-card-icon { background: var(--blush-mid); }
.highlight-card-icon svg { width: 26px; height: 26px; stroke: var(--rose); fill: none; stroke-width: 1.6; }
/* Spec: Why Section — Title Poppins 16px, Description Lato 14px */
.highlight-card h3 { font-family: var(--f-body); font-size: 16px; font-weight: 500; margin-bottom: 10px; color: var(--color-heading); }
.highlight-card p  { font-family: var(--f-alt); font-size: 14px; font-weight: 400; color: var(--color-para); line-height: 1.8; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── STATS ROW ── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border-soft); background: var(--off-white); border-radius: var(--r-md); overflow: hidden; }
.stat-item { padding: 32px 20px; text-align: center; border-right: 1px solid var(--border-soft); transition: background var(--t); }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--blush); }
.stat-number { font-family: var(--f-display); font-size: 40px; font-weight: 500; color: var(--rose); line-height: 1; margin-bottom: 8px; letter-spacing: -.02em; }
.stat-label  { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); font-weight: 500; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border-soft); padding: 26px; border-radius: var(--r-lg); transition: box-shadow var(--t-lg), transform var(--t-lg); position: relative; }
.testimonial-card::before { content: '"'; font-family: var(--f-display); font-size: 72px; color: var(--blush-mid); position: absolute; top: 10px; left: 20px; line-height: 1; pointer-events: none; }
.testimonial-card:hover { box-shadow: var(--sh-sm); transform: translateY(-2px); }
.testimonial-card .stars { margin-bottom: 14px; position: relative; z-index: 1; }
/* Spec: Testimonials — review Lato 15px, customer name Poppins 14px bold */
.testimonial-card p { font-family: var(--f-alt); font-size: 15px; font-weight: 400; color: var(--color-para); line-height: 1.8; font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 36px; height: 36px; background: linear-gradient(135deg, var(--blush), var(--blush-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 15px; color: var(--rose); flex-shrink: 0; font-weight: 600; }
/* Spec: Customer Name — Poppins 14px bold */
.testimonial-author strong { display: block; font-family: var(--f-body); font-size: 14px; font-weight: 600; color: var(--color-heading); }
.testimonial-author span   { display: block; font-family: var(--f-body); font-size: 12px; color: var(--text-muted); margin-top: 1px; }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--text); color: #fff; padding: 64px var(--side-pad); text-align: center; position: relative; overflow: hidden; }
.newsletter-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(200,121,106,.1) 0%, transparent 60%); pointer-events: none; }
.newsletter-inner { position: relative; z-index: 1; max-width: 480px; margin: 0 auto; }
/* Spec: Newsletter — Title Playfair Display 28px, Input/Button Poppins 14px */
.newsletter-inner h2 { font-family: var(--f-display); font-size: 28px; font-weight: 600; margin-bottom: 10px; letter-spacing: .5px; line-height: 1.2; }
.newsletter-inner p  { font-family: var(--f-body); font-size: 15px; font-weight: 400; color: rgba(255,255,255,.6); margin-bottom: 28px; line-height: 1.7; }
.newsletter-form { display: flex; max-width: 440px; margin: 0 auto 12px; border-radius: var(--r-sm); overflow: hidden; border: 1px solid rgba(255,255,255,.15); }
/* Spec: Input Text — Poppins 14px */
.newsletter-form input { flex: 1; padding: 13px 18px; border: none; background: rgba(255,255,255,.07); font-family: var(--f-body); font-size: 14px; font-weight: 400; color: #fff; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-note { font-family: var(--f-body); font-size: 12px; color: rgba(255,255,255,.32); min-height: 16px; letter-spacing: .04em; }

/* ── PROMO BANNER ── */
.promo-banner { background: linear-gradient(140deg, #a85a4c 0%, var(--rose) 60%, var(--rose-light) 100%); padding: 60px var(--side-pad); text-align: center; color: #fff; position: relative; overflow: hidden; }
.promo-banner::before { content: ''; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: rgba(255,255,255,.05); top: -200px; left: -80px; }
/* Spec: Premium Collection Banner — Playfair Display italic 36-42px #fff */
.promo-tag { font-family: var(--f-body); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; background: rgba(255,255,255,.16); display: inline-block; padding: 5px 14px; margin-bottom: 16px; border-radius: var(--r-sm); font-weight: 500; }
.promo-content h2 { font-family: var(--f-display); font-size: 40px; font-weight: 600; font-style: italic; margin-bottom: 10px; letter-spacing: .5px; line-height: 1.2; color: #ffffff; }
.promo-content p  { font-family: var(--f-body); font-size: 15px; font-weight: 400; color: rgba(255,255,255,.8); margin-bottom: 28px; line-height: 1.7; }

/* ── FAQs ── */
.faq-tabs { display: flex; gap: 0; margin-bottom: 32px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.faq-tab { padding: 11px 20px; background: none; border: none; font-family: var(--f-body); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all var(--t); }
.faq-tab:hover, .faq-tab.active { color: var(--color-heading); border-bottom-color: var(--rose); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
/* Poppins 14px 500 for question */
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-family: var(--f-body); font-size: 14px; font-weight: 500; color: var(--color-heading); transition: color var(--t); gap: 16px; line-height: 1.4; }
.faq-question:hover { color: var(--rose); }
.faq-question svg { width: 15px; height: 15px; stroke: var(--text-muted); fill: none; flex-shrink: 0; transition: transform var(--t), stroke var(--t); }
.faq-item.open .faq-question svg { transform: rotate(180deg); stroke: var(--rose); }
/* Lato 14px 400 for answer */
.faq-answer { font-family: var(--f-alt); font-size: 14px; font-weight: 400; color: var(--color-para); line-height: 1.85; max-height: 0; overflow: hidden; transition: max-height .36s ease, padding .36s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.size-table { width: 100%; border-collapse: collapse; font-size: 13px; border-radius: var(--r-sm); overflow: hidden; }
.size-table th { background: var(--text); color: #fff; padding: 11px 14px; text-align: left; font-size: 10px; letter-spacing: .1em; font-weight: 600; text-transform: uppercase; }
.size-table td { padding: 10px 14px; border-bottom: 1px solid var(--border-soft); }
.size-table tr:nth-child(even) td { background: var(--off-white); }
.size-table tr:last-child td { border-bottom: none; }

/* ── STEPS (franchise) ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step-card { background: var(--white); border: 1px solid var(--border-soft); padding: 28px 24px; border-radius: var(--r-lg); transition: box-shadow var(--t-lg), transform var(--t-lg); }
.step-card:hover { box-shadow: var(--sh-sm); transform: translateY(-2px); }
.step-card .step-num { font-family: var(--f-display); font-size: 48px; font-weight: 500; color: var(--blush-deep); line-height: 1; margin-bottom: 14px; display: block; }
/* Poppins 14px 600 for step title, Lato 14px for description */
.step-card h3 { font-family: var(--f-body); font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--color-heading); }
.step-card p  { font-family: var(--f-alt); font-size: 14px; font-weight: 400; color: var(--color-para); line-height: 1.75; }

/* ── CONTACT LAYOUT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; max-width: 1040px; margin: 0 auto; }
.contact-info-card { background: var(--off-white); border: 1px solid var(--border-soft); padding: 22px; margin-bottom: 14px; border-radius: var(--r-lg); transition: box-shadow var(--t), border-color var(--t); }
.contact-info-card:hover { box-shadow: var(--sh-sm); border-color: var(--blush-mid); }
.contact-info-icon { width: 44px; height: 44px; background: var(--blush); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.contact-info-icon svg { width: 18px; height: 18px; stroke: var(--rose); fill: none; stroke-width: 1.6; }
.contact-info-card h4 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; color: var(--text); }
.contact-info-card p  { font-size: 13px; color: var(--text-soft); line-height: 1.65; }
.contact-info-card p a { color: var(--text); transition: color var(--t); }
.contact-info-card p a:hover { color: var(--rose); }
.contact-hours { font-size: 11px; color: var(--text-muted); margin-top: 3px; }
.contact-form-card { background: var(--off-white); border: 1px solid var(--border-soft); padding: 36px; border-radius: var(--r-lg); }
.contact-form-card h2 { font-family: var(--f-display); font-size: 30px; font-weight: 600; margin-bottom: 7px; letter-spacing: .5px; color: var(--color-heading2); }
.contact-form-card .subtitle { font-family: var(--f-alt); font-size: 15px; color: var(--color-para); margin-bottom: 26px; line-height: 1.65; font-weight: 400; }

/* ── FORMS (global) ── */
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
/* Spec: Form inputs — Poppins 14px */
.form-group label { display: block; font-family: var(--f-body); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; margin-bottom: 7px; color: var(--text-soft); }
.form-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); background: var(--white);
  font-family: var(--f-body); font-size: 14px; font-weight: 400; color: var(--color-heading);
  outline: none; border-radius: var(--r-sm);
  transition: border-color var(--t), box-shadow var(--t); appearance: none;
}
.form-input:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(200,121,106,.1); }
.form-input::placeholder { color: var(--text-muted); font-weight: 400; }
textarea.form-input { resize: vertical; min-height: 120px; line-height: 1.65; }
select.form-input { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a6458' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px; cursor: pointer; }

/* ── TIMELINE ── */
.tl-item { display: flex; gap: 14px; padding: 9px 0; }
.tl-dot  { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.tl-dot svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 2.5; }
.tl-dot.done        { background: #2d8a55; }
.tl-dot.active-step { background: var(--rose); box-shadow: 0 0 0 4px rgba(200,121,106,.18); }
.tl-dot.pending     { background: var(--border); }
.tl-line { margin-left: 14px; width: 2px; height: 18px; background: var(--border-soft); }
.tl-label { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.tl-sub   { font-size: 11px; color: var(--text-muted); }
.track-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.track-info-grid h4 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 7px; color: var(--text-soft); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--text); color: #fff; padding: 13px 20px; font-size: 13px; z-index: 999; transform: translateY(60px); opacity: 0; transition: all .28s cubic-bezier(.34,1.56,.64,1); min-width: 200px; border-radius: var(--r-sm); box-shadow: var(--sh-lg); line-height: 1.5; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── FLOATING CART ── */
.floating-cart { display: none; position: fixed; bottom: 20px; right: 18px; width: 52px; height: 52px; background: var(--text); border-radius: 50%; border: none; align-items: center; justify-content: center; box-shadow: var(--sh-md); z-index: 100; transition: background var(--t), transform var(--t); }
.floating-cart:hover { background: var(--rose); transform: scale(1.05); }
.floating-cart svg { width: 19px; height: 19px; stroke: #fff; fill: none; stroke-width: 1.8; }
.floating-cart span { position: absolute; top: -2px; right: -2px; min-width: 17px; height: 17px; background: var(--rose); border-radius: 9px; color: #fff; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0 3px; }

/* ── FOOTER ── */
.site-footer { background: var(--text); color: rgba(255,255,255,.58); padding: 56px var(--side-pad) 28px; position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(200,121,106,.06) 0%, transparent 60%); bottom: -260px; right: -160px; pointer-events: none; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; position: relative; }
.footer-brand .logo { color: rgba(255,255,255,.9); }
.footer-brand .logo span { color: rgba(255,255,255,.28); }
.footer-desc { font-size: 12px; color: rgba(255,255,255,.42); line-height: 1.8; margin: 16px 0 22px; max-width: 200px; font-weight: 300; }
.social-links { display: flex; gap: 9px; }
.social-link { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; transition: all var(--t); }
.social-link:hover { border-color: var(--rose); background: rgba(200,121,106,.18); }
.social-link svg { width: 13px; height: 13px; stroke: rgba(255,255,255,.52); fill: none; }
/* Spec: Footer — Heading Poppins 15px #fff, Links Poppins 13px #ccc, Copyright Poppins 12px #999 */
.footer-col h4 { font-family: var(--f-body); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.92); margin-bottom: 18px; font-weight: 600; }
.footer-col a  { display: block; font-family: var(--f-body); font-size: 13px; color: #cccccc; margin-bottom: 10px; transition: color var(--t), padding-left var(--t); font-weight: 400; }
.footer-col a:hover { color: rgba(255,255,255,.9); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-family: var(--f-body); font-size: 12px; color: #999999; flex-wrap: wrap; gap: 8px; position: relative; }

/* ── CHECKOUT STEPS ── */
.checkout-steps { display: flex; justify-content: center; align-items: center; padding: 22px 20px; border-bottom: 1px solid var(--border-soft); background: var(--off-white); }
.step { display: flex; align-items: center; gap: 9px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--text-muted); }
.step.active { color: var(--rose); }
.step.done   { color: var(--text); }
.step-num { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; transition: all var(--t); }
.step.active .step-num { background: var(--rose); color: #fff; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(200,121,106,.2); }
.step.done   .step-num { background: var(--text); color: #fff; border-color: var(--text); }
.step-divider { width: 44px; height: 1px; background: var(--border); margin: 0 10px; flex-shrink: 0; }

/* ── BREADCRUMB ── */
.breadcrumb-bar { padding: 13px var(--side-pad); font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border-soft); flex-wrap: wrap; background: var(--off-white); }
.breadcrumb-bar a:hover { color: var(--rose); }
.breadcrumb-bar span:not(:last-child) { color: var(--border); }

/* ────────────────────────────────────────
   RESPONSIVE — Tablet (max 1100px)
───────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --side-pad: 36px; }
  .section-pad    { padding: 52px var(--side-pad); }
  .section-pad-sm { padding: 36px var(--side-pad); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid       { grid-template-columns: repeat(2,1fr); }
  .steps-grid     { grid-template-columns: repeat(2,1fr); }
  .products-grid  { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .carousel-wrap  { padding: 0 var(--side-pad); }
  .carousel-track .product-card { flex: 0 0 calc(33.33% - 14px); }
}

/* ────────────────────────────────────────
   RESPONSIVE — Mobile (max 768px)
───────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --side-pad: 20px; }
  .site-nav { padding: 0 var(--side-pad); height: 58px; }
  .nav-left, .nav-right-links { display: none; }
  .hamburger { display: flex; }
  .section-pad    { padding: 44px var(--side-pad); }
  .section-pad-sm { padding: 30px var(--side-pad); }
  .hero-page { padding: 48px var(--side-pad); }
  .hero-page h1 { font-size: 36px; }
  .section-heading h2 { font-size: 28px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border-soft); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 24px; }
  .form-2col { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: var(--r-sm) var(--r-sm) 0 0; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .carousel-track .product-card { flex: 0 0 calc(50% - 10px); }
  .site-footer { padding: 44px var(--side-pad) 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .promo-banner { padding: 48px var(--side-pad); }
  .promo-content h2 { font-size: 32px; }
  .newsletter-section { padding: 52px var(--side-pad); }
  .floating-cart { display: flex; }
  .toast { bottom: 74px; right: 14px; left: 14px; min-width: 0; text-align: center; }
  .track-info-grid { grid-template-columns: 1fr; gap: 18px; }
  .breadcrumb-bar { padding: 11px var(--side-pad); }
}

/* ────────────────────────────────────────
   RESPONSIVE — Small phones (max 480px)
───────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --side-pad: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-bar { font-size: 10px; gap: 12px; padding: 8px var(--side-pad); }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-page h1 { font-size: 30px; }
  .promo-content h2 { font-size: 30px; }
  .checkout-steps { padding: 16px 12px; }
  .step-divider { width: 20px; margin: 0 5px; }
  .stat-number { font-size: 32px; }
}
