/* ==========================================================================
   Whip & Pour — Premium Dessert Candle Brand
   Design System
   ========================================================================== */

:root {
  /* Brand Palette */
  --ivory: #FBF6EF;
  --ivory-deep: #F5EDE0;
  --blush: #F6D5D0;
  --blush-soft: #FBE4DF;
  --strawberry: #E8A6A0;
  --strawberry-deep: #C97B72;
  --caramel: #D9B084;
  --caramel-deep: #B8895A;
  --chocolate: #5A3A2E;
  --chocolate-deep: #3D261D;
  --coffee: #8C6A55;
  --cream: #FFFCF7;
  --gold: #C9A77A;

  --ink: #2B1A14;
  --ink-soft: #5A4A42;
  --muted: #8A7A72;
  --line: #EFE4D6;

  /* Type */
  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-script: 'Dancing Script', cursive;

  /* Shadows */
  --shadow-soft: 0 6px 24px rgba(90, 58, 46, 0.06);
  --shadow-card: 0 12px 40px rgba(90, 58, 46, 0.08);
  --shadow-hover: 0 22px 60px rgba(90, 58, 46, 0.14);
  --shadow-deep: 0 30px 80px rgba(90, 58, 46, 0.18);

  /* Radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  --maxw: 1280px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--chocolate-deep);
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ============== Announcement Bar ============== */
.announcement {
  background: linear-gradient(90deg, var(--chocolate-deep), var(--chocolate) 50%, var(--coffee));
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px 16px;
  position: relative;
  overflow: hidden;
}
.announcement-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.announcement-track span::before { content: "✦"; color: var(--gold); margin-right: 12px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== Header / Navigation ============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  color: var(--chocolate-deep);
  letter-spacing: -0.01em;
  display: flex; align-items: baseline; gap: 6px;
}
.logo .amp {
  font-family: var(--font-script);
  color: var(--strawberry-deep);
  font-size: 30px;
  font-weight: 400;
}
.logo .dot { color: var(--strawberry-deep); }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 6px 0;
}
.main-nav a::after {
  content:""; position:absolute; left:50%; bottom: 0; height: 1.5px; width: 0;
  background: var(--strawberry-deep); transition: width .3s ease, left .3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; left: 0; }
.main-nav a:hover { color: var(--chocolate-deep); }

.nav-icons { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--chocolate-deep); position: relative;
  transition: background .25s ease, transform .2s ease;
}
.icon-btn:hover { background: var(--blush-soft); transform: translateY(-1px); }
.icon-badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--strawberry-deep); color: #fff;
  font-size: 10px; font-weight: 600;
  min-width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.menu-toggle { display: none; }

/* Mobile nav */
@media (max-width: 960px) {
  .main-nav {
    position: fixed; inset: 0 0 0 30%; background: var(--cream);
    flex-direction: column; padding: 80px 32px; gap: 18px;
    transform: translateX(100%); transition: transform .35s ease;
    box-shadow: var(--shadow-deep); z-index: 60;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 18px; }
  .menu-toggle { display: inline-flex; }
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 28px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--chocolate-deep);
  color: var(--cream);
  box-shadow: 0 10px 30px rgba(61,38,29,.25);
}
.btn-primary:hover {
  background: var(--strawberry-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201,123,114,.35);
}
.btn-secondary {
  background: var(--cream);
  color: var(--chocolate-deep);
  border: 1.5px solid var(--chocolate-deep);
}
.btn-secondary:hover {
  background: var(--chocolate-deep); color: var(--cream);
  transform: translateY(-2px);
}
.btn-blush {
  background: var(--blush);
  color: var(--chocolate-deep);
}
.btn-blush:hover { background: var(--strawberry); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 38px; font-size: 15px; }
.btn-sm { padding: 10px 18px; font-size: 12px; }

/* ============== Hero ============== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 18% 20%, var(--blush-soft) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, #F8E2CF 0%, transparent 50%),
    var(--ivory);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream); padding: 8px 16px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600; color: var(--chocolate);
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--strawberry-deep); }
.hero h1 {
  margin-top: 22px; margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
}
.hero h1 .accent {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--strawberry-deep);
  display: inline-block;
  font-size: 1.05em;
  line-height: 0.9;
}
.hero p.lead {
  color: var(--ink-soft); font-size: 17px; max-width: 540px; margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap; margin-top: 36px;
  color: var(--ink-soft); font-size: 13px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust i { color: var(--strawberry-deep); }

.hero-visual {
  position: relative;
  aspect-ratio: 1/1.05;
}
.hero-img-main {
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  background: url('https://images.unsplash.com/photo-1602874801006-94c0d6e9b9b3?w=1200&q=85') center/cover;
}
.hero-img-main::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 60%, rgba(61,38,29,.15));
}
.hero-floater {
  position: absolute;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
}
.hero-floater.f1 { top: 8%; left: -22px; animation: float 6s ease-in-out infinite; }
.hero-floater.f2 { bottom: 14%; right: -20px; animation: float 6s ease-in-out infinite reverse; }
.hero-floater .emoji { font-size: 22px; }
.hero-floater strong { display:block; color: var(--chocolate-deep); font-family: var(--font-display); font-size: 15px; }
.hero-floater small { color: var(--muted); }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .hero { padding: 56px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ============== Section Basics ============== */
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  color: var(--strawberry-deep);
  font-size: 24px;
  margin-bottom: 6px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); max-width: 620px; margin: 0 auto; font-size: 16px; }

/* ============== Categories Grid ============== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1/1.15;
  box-shadow: var(--shadow-card);
  transition: transform .35s ease, box-shadow .35s ease;
  background: var(--blush-soft);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(61,38,29,.7));
}
.cat-card .label {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  color: #fff;
}
.cat-card .label h3 {
  color: #fff; font-size: 19px; margin-bottom: 4px;
}
.cat-card .label small { opacity: .85; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.cat-card .arrow {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.85); color: var(--chocolate-deep);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .3s ease, transform .3s ease;
}
.cat-card:hover .arrow { background: var(--strawberry-deep); color: #fff; transform: rotate(-45deg); }

@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============== Product Cards ============== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--blush-soft);
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.product-card:hover .product-img img { transform: scale(1.07); }

.product-badges {
  position: absolute; top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 10px; border-radius: var(--r-pill);
  background: var(--cream); color: var(--chocolate-deep);
  box-shadow: var(--shadow-soft);
}
.badge.bestseller { background: var(--chocolate-deep); color: var(--cream); }
.badge.new { background: var(--strawberry-deep); color: #fff; }
.badge.sale { background: var(--gold); color: #fff; }

.wishlist-btn {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,252,247,.9); color: var(--ink-soft);
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .25s ease, background .25s ease, transform .2s ease;
}
.wishlist-btn:hover, .wishlist-btn.active { color: var(--strawberry-deep); background: #fff; transform: scale(1.08); }
.wishlist-btn.active i { font-weight: 900; }

.quick-add {
  position: absolute; left: 14px; right: 14px; bottom: -50px;
  transition: bottom .35s ease;
}
.product-card:hover .quick-add { bottom: 14px; }

.product-body { padding: 18px 20px 22px; }
.product-cat {
  font-size: 11px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase;
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px; color: var(--chocolate-deep);
  margin: 4px 0 4px;
  line-height: 1.25;
}
.product-fragrance {
  font-style: italic; color: var(--strawberry-deep); font-size: 13px; margin-bottom: 8px;
}
.product-desc { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 14px; min-height: 38px; }
.product-rating { font-size: 12px; color: var(--gold); margin-bottom: 10px; display: flex; gap: 6px; align-items: center; }
.product-rating .count { color: var(--muted); }
.product-price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.product-price { font-family: var(--font-display); font-size: 19px; color: var(--chocolate-deep); font-weight: 600; }
.product-price .compare { color: var(--muted); text-decoration: line-through; font-size: 13px; margin-left: 8px; font-weight: 400; }

@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-body { padding: 14px 14px 18px; }
  .product-name { font-size: 16px; }
}

/* ============== Why Choose Us ============== */
.why-section {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--blush-soft) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--line);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blush-soft);
  color: var(--strawberry-deep);
  font-size: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { color: var(--ink-soft); font-size: 14px; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============== Gift Section ============== */
.gift-section {
  background:
    radial-gradient(circle at 80% 30%, var(--blush) 0%, transparent 40%),
    var(--ivory-deep);
}
.gift-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.gift-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-deep);
  position: relative;
}
.gift-img img { width: 100%; height: 100%; object-fit: cover; }
.gift-img .ribbon {
  position: absolute; top: 24px; left: 24px;
  background: var(--cream); border-radius: var(--r-pill);
  padding: 8px 18px; font-size: 12px; font-weight: 600; color: var(--chocolate-deep);
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}
.gift-text h2 { margin-bottom: 18px; }
.gift-text p { color: var(--ink-soft); font-size: 16px; margin-bottom: 30px; }
.gift-occasions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.gift-tag {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 10px 18px; border-radius: var(--r-pill);
  font-size: 13px; color: var(--chocolate-deep); font-weight: 500;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.gift-tag:hover { background: var(--chocolate-deep); color: var(--cream); border-color: var(--chocolate-deep); }

@media (max-width: 900px) { .gift-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============== Signature Scents ============== */
.scents-section { background: var(--cream); }
.scents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scent-card {
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--chocolate-deep);
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid var(--line);
}
.scent-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.scent-card .scent-emoji {
  position: absolute; top: 26px; right: 26px;
  font-size: 38px;
}
.scent-card h3 {
  font-size: 22px; margin-bottom: 10px;
}
.scent-card p { color: var(--ink-soft); font-size: 14px; }
.scent-card.choc      { background: linear-gradient(135deg, #EFD9C4, #E5C2A4); }
.scent-card.straw     { background: linear-gradient(135deg, var(--blush-soft), var(--blush)); }
.scent-card.coffee    { background: linear-gradient(135deg, #E8D4BE, #C9A87C); color: var(--chocolate-deep); }
.scent-card.caramel   { background: linear-gradient(135deg, #F5DDB8, #E5BD83); }
.scent-card.mango     { background: linear-gradient(135deg, #FCE3B2, #F5C977); }
.scent-card.vanilla   { background: linear-gradient(135deg, #FBF1DC, #F2DDB4); }

@media (max-width: 900px) { .scents-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .scents-grid { grid-template-columns: 1fr; } }

/* ============== Reviews ============== */
.reviews-section { background: var(--ivory-deep); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 30px;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.review-stars { color: var(--gold); margin-bottom: 14px; font-size: 14px; }
.review-title { font-family: var(--font-display); font-size: 17px; margin-bottom: 10px; color: var(--chocolate-deep); }
.review-comment { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blush); color: var(--chocolate-deep);
  font-weight: 700; display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.review-name { font-weight: 600; color: var(--chocolate-deep); font-size: 14px; }
.review-meta { color: var(--muted); font-size: 12px; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============== Instagram ============== */
.insta-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
  margin-top: 30px;
}
.insta-tile {
  aspect-ratio: 1/1; border-radius: var(--r-md); overflow: hidden;
  position: relative; cursor: pointer;
}
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.insta-tile:hover img { transform: scale(1.08); }
.insta-tile::after {
  content: "\f16d"; font-family: "Font Awesome 6 Brands"; font-weight: 400;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px;
  background: rgba(61,38,29,.35); opacity: 0; transition: opacity .3s ease;
}
.insta-tile:hover::after { opacity: 1; }

@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============== Delivery Section ============== */
.delivery-section { background: var(--cream); }
.delivery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.delivery-card {
  text-align: center;
  padding: 30px 22px;
  border-radius: var(--r-lg);
  background: var(--ivory);
  border: 1px solid var(--line);
}
.delivery-card .icon-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--blush-soft); color: var(--strawberry-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.delivery-card h3 { font-size: 16px; margin-bottom: 6px; }
.delivery-card p { color: var(--ink-soft); font-size: 13.5px; }
@media (max-width: 900px) { .delivery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============== Final CTA ============== */
.final-cta {
  background:
    radial-gradient(circle at 20% 50%, rgba(246,213,208,.45), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(217,176,132,.35), transparent 55%),
    var(--chocolate-deep);
  color: var(--cream);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 { color: var(--cream); margin-bottom: 18px; }
.final-cta h2 .accent { font-family: var(--font-script); color: var(--blush); font-weight: 400; }
.final-cta p { max-width: 580px; margin: 0 auto 32px; color: rgba(255,252,247,.8); font-size: 17px; }
.final-cta .btn-primary { background: var(--cream); color: var(--chocolate-deep); }
.final-cta .btn-primary:hover { background: var(--blush); color: var(--chocolate-deep); }

/* ============== Newsletter ============== */
.newsletter {
  background: linear-gradient(135deg, var(--blush-soft), var(--ivory));
  border-radius: var(--r-xl);
  padding: 60px;
  text-align: center;
  margin: 60px auto;
  max-width: 1100px;
}
.newsletter h2 { margin-bottom: 12px; }
.newsletter p { color: var(--ink-soft); margin-bottom: 28px; }
.newsletter form {
  display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap;
}
.newsletter input {
  flex: 1; min-width: 200px;
  padding: 16px 22px; border-radius: var(--r-pill); border: 1px solid var(--line);
  background: var(--cream); outline: none;
  transition: border-color .25s ease;
}
.newsletter input:focus { border-color: var(--strawberry-deep); }

/* ============== Footer ============== */
.site-footer {
  background: var(--chocolate-deep);
  color: rgba(255,252,247,.75);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand p { color: rgba(255,252,247,.65); font-size: 14px; margin-bottom: 22px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,252,247,.2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: background .25s ease, border-color .25s ease;
}
.footer-social a:hover { background: var(--strawberry-deep); border-color: var(--strawberry-deep); }

.footer-col h4 {
  color: var(--cream); font-family: var(--font-body);
  font-size: 14px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,252,247,.65); font-size: 14px; }
.footer-col a:hover { color: var(--blush); }

.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,252,247,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 12.5px; color: rgba(255,252,247,.55);
}
.payment-badges { display: flex; gap: 10px; }
.payment-badges span {
  background: rgba(255,252,247,.08); padding: 6px 12px; border-radius: 6px;
  font-size: 11px; letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============== WhatsApp Float ============== */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 100;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
  transition: transform .25s ease;
  animation: pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0%,100% { box-shadow: 0 14px 40px rgba(37,211,102,.45); }
  50%     { box-shadow: 0 14px 40px rgba(37,211,102,.85); }
}

/* ============== Page Hero ============== */
.page-hero {
  background:
    radial-gradient(circle at 20% 30%, var(--blush-soft) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, #F8E2CF 0%, transparent 50%),
    var(--ivory);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero .breadcrumb { color: var(--muted); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.page-hero .breadcrumb a:hover { color: var(--strawberry-deep); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); max-width: 620px; margin: 0 auto; font-size: 16px; }

/* ============== Filters ============== */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding: 50px 0 90px; }
.filter-card {
  background: var(--cream); border-radius: var(--r-lg); padding: 24px;
  border: 1px solid var(--line); position: sticky; top: 90px;
  max-height: calc(100vh - 110px); overflow-y: auto;
}
.filter-card h4 { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--chocolate-deep); margin-bottom: 14px; font-weight: 700; }
.filter-list li { margin-bottom: 8px; }
.filter-list label { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); cursor: pointer; }
.filter-list input { accent-color: var(--strawberry-deep); }
.filter-divider { height: 1px; background: var(--line); margin: 22px 0; }

.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; gap: 14px; flex-wrap: wrap;
}
.shop-toolbar .count { color: var(--ink-soft); font-size: 14px; }
.shop-toolbar select {
  padding: 10px 16px; border-radius: var(--r-pill); border: 1px solid var(--line);
  background: var(--cream); font-size: 13px; outline: none;
}
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-card { position: relative; top: 0; max-height: none; }
}

/* ============== Product Detail ============== */
.product-detail { padding: 50px 0 80px; }
.detail-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; }
.gallery-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--blush-soft);
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-card);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 14px;
}
.gallery-thumbs img {
  aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--r-md); border: 2px solid transparent; cursor: pointer;
  transition: border-color .25s ease;
}
.gallery-thumbs img.active, .gallery-thumbs img:hover { border-color: var(--strawberry-deep); }

.detail-info .pcat { font-size: 12px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.detail-info h1 { font-size: clamp(2rem, 3.4vw, 2.6rem); margin-bottom: 10px; }
.detail-info .fragrance { font-style: italic; color: var(--strawberry-deep); margin-bottom: 16px; }
.detail-rating { display: flex; gap: 10px; align-items: center; margin-bottom: 18px; color: var(--gold); }
.detail-rating .reviews { color: var(--ink-soft); font-size: 13px; }
.detail-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.detail-price .now { font-family: var(--font-display); font-size: 32px; color: var(--chocolate-deep); font-weight: 600; }
.detail-price .was { color: var(--muted); text-decoration: line-through; font-size: 17px; }
.detail-price .save { background: var(--gold); color: #fff; padding: 4px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; }

.detail-desc { color: var(--ink-soft); margin-bottom: 26px; font-size: 15.5px; }

.qty-row { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--cream); }
.qty-stepper button { padding: 10px 14px; color: var(--chocolate-deep); }
.qty-stepper input { width: 44px; text-align: center; border: 0; background: transparent; outline: none; font-weight: 600; }

.detail-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.trust-row {
  display: flex; gap: 16px; flex-wrap: wrap; padding: 18px; border-radius: var(--r-md);
  background: var(--ivory); margin-bottom: 26px; font-size: 13px; color: var(--ink-soft);
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row i { color: var(--strawberry-deep); }

.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-header { width: 100%; text-align: left; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--chocolate-deep); font-size: 15px; }
.accordion-header i { transition: transform .3s ease; }
.accordion-item.open .accordion-header i { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 0 18px; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.accordion-item.open .accordion-body { display: block; }

@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============== Cart ============== */
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; padding: 40px 0 80px; }
.cart-item {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 20px;
  padding: 20px; background: var(--cream); border-radius: var(--r-lg);
  border: 1px solid var(--line); margin-bottom: 14px; align-items: center;
}
.cart-item img { width: 110px; height: 110px; object-fit: cover; border-radius: var(--r-md); }
.cart-item .ci-name { font-family: var(--font-display); font-size: 17px; color: var(--chocolate-deep); margin-bottom: 4px; }
.cart-item .ci-meta { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.cart-item .ci-actions { display: flex; gap: 14px; align-items: center; }
.cart-item .ci-remove { color: var(--muted); font-size: 13px; }
.cart-item .ci-remove:hover { color: var(--strawberry-deep); }
.cart-item .ci-price { font-family: var(--font-display); font-weight: 600; color: var(--chocolate-deep); font-size: 18px; text-align: right; }

.summary-card {
  background: var(--cream); padding: 30px; border-radius: var(--r-lg); border: 1px solid var(--line);
  position: sticky; top: 90px;
}
.summary-card h3 { margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--ink-soft); font-size: 14px; }
.summary-row.total { font-family: var(--font-display); font-size: 22px; color: var(--chocolate-deep); font-weight: 600; padding-top: 14px; border-top: 1px solid var(--line); margin-top: 8px; }

@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .summary-card { position: relative; top: 0; }
  .cart-item { grid-template-columns: 90px 1fr; }
  .cart-item .ci-price { grid-column: span 2; text-align: left; }
}

/* ============== Forms ============== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 600; color: var(--chocolate-deep); letter-spacing: 0.06em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  padding: 14px 18px; border-radius: var(--r-md); border: 1px solid var(--line);
  background: var(--cream); outline: none; font-size: 14.5px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--strawberry-deep);
  box-shadow: 0 0 0 4px rgba(201, 123, 114, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option {
  border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 16px 18px;
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}
.payment-option input { accent-color: var(--strawberry-deep); }
.payment-option:hover { border-color: var(--strawberry-deep); background: var(--blush-soft); }
.payment-option strong { color: var(--chocolate-deep); display: block; }
.payment-option small { color: var(--muted); font-size: 12.5px; }

/* ============== FAQ ============== */
.faq-wrap { max-width: 800px; margin: 0 auto; padding: 30px 0 80px; }
.faq-item {
  background: var(--cream); border-radius: var(--r-md);
  margin-bottom: 12px; border: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.faq-item.open { box-shadow: var(--shadow-soft); }
.faq-q {
  width: 100%; padding: 22px 26px; text-align: left;
  font-weight: 600; color: var(--chocolate-deep); font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-q i { transition: transform .3s ease; color: var(--strawberry-deep); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { padding: 0 26px 22px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.75; display: none; }
.faq-item.open .faq-a { display: block; }

/* ============== Toast ============== */
.toast {
  position: fixed; bottom: 100px; right: 22px; z-index: 200;
  background: var(--chocolate-deep); color: var(--cream);
  padding: 14px 22px; border-radius: var(--r-md);
  box-shadow: var(--shadow-deep);
  display: flex; align-items: center; gap: 10px;
  transform: translateX(120%); transition: transform .35s ease;
  font-size: 14px;
}
.toast.show { transform: translateX(0); }
.toast i { color: var(--blush); }

/* Empty state */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state i { font-size: 56px; color: var(--blush); margin-bottom: 20px; }
.empty-state h3 { margin-bottom: 10px; }
.empty-state p { color: var(--ink-soft); margin-bottom: 24px; }

/* Map placeholder */
.map-box {
  background: var(--blush-soft); border-radius: var(--r-lg);
  height: 300px; display: flex; align-items: center; justify-content: center;
  color: var(--chocolate-deep); flex-direction: column; gap: 10px;
}
.map-box i { font-size: 40px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 40px 0; }
.about-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-deep); aspect-ratio: 4/5; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.stat-card { background: var(--ivory); padding: 22px; border-radius: var(--r-md); text-align: center; }
.stat-card .num { font-family: var(--font-display); font-size: 30px; color: var(--strawberry-deep); display: block; }
.stat-card .lbl { color: var(--ink-soft); font-size: 12.5px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; background: rgba(43,26,20,.5);
  backdrop-filter: blur(8px); z-index: 70;
  display: none; align-items: flex-start; justify-content: center;
  padding-top: 12vh;
}
.search-overlay.open { display: flex; }
.search-box {
  background: var(--cream); border-radius: var(--r-lg);
  width: min(640px, 92vw); padding: 30px;
  box-shadow: var(--shadow-deep);
}
.search-box input {
  width: 100%; padding: 14px 20px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: var(--ivory); outline: none;
  font-size: 16px;
}
.search-results { margin-top: 18px; max-height: 50vh; overflow-y: auto; }
.search-result {
  display: flex; align-items: center; gap: 14px; padding: 12px;
  border-radius: var(--r-md); transition: background .2s ease;
}
.search-result:hover { background: var(--blush-soft); }
.search-result img { width: 56px; height: 56px; border-radius: var(--r-md); object-fit: cover; }
.search-result .sr-name { font-weight: 600; color: var(--chocolate-deep); }
.search-result .sr-cat { font-size: 12px; color: var(--muted); }

.divider-deco { text-align: center; color: var(--gold); font-size: 18px; letter-spacing: 0.6em; margin: 30px 0; }
