/* ============================================================
   PURNIMA — Marigold Boutique
   A warm saffron + forest-green Bengali aesthetic
   ============================================================ */

:root {
  --bg: #fff8f0;
  --bg-soft: #fce9d4;
  --paper: #ffffff;
  --ink: #2a1810;
  --ink-soft: #5a3a28;
  --ink-mute: #946a4f;
  --line: #f0d9bf;
  --line-soft: #f7e7d4;

  --wine: #c44d2c;        /* terracotta-marigold primary */
  --wine-deep: #8a2a14;
  --rose: #e76f51;        /* marigold accent */
  --gold: #e9a93a;        /* saffron */
  --gold-soft: #f5cc7a;
  --cream: #fff1d6;
  --emerald: #264653;     /* deep forest secondary */

  --shadow-sm: 0 3px 10px rgba(196, 77, 44, 0.10);
  --shadow-md: 0 14px 40px rgba(196, 77, 44, 0.14);
  --shadow-lg: 0 28px 70px rgba(138, 42, 20, 0.20);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 44px;

  --serif: 'Lora', Georgia, serif;
  --sans: 'Nunito', system-ui, -apple-system, sans-serif;
  --display: 'Marcellus', Georgia, serif;
  --script: 'Tangerine', cursive;
}

/* Brand-specific overrides (warmer, rounder, festive) */
body { background-image: radial-gradient(circle at 0% 0%, #ffe9c8 0%, transparent 38%), radial-gradient(circle at 100% 100%, #ffd9c0 0%, transparent 40%); background-attachment: fixed; }
em { font-family: var(--display); font-style: italic; color: var(--wine); font-weight: 400; }
.section-title { font-family: var(--display) !important; }
.btn { border-radius: 999px !important; letter-spacing: 0.06em; font-weight: 700; }
.product { border-radius: var(--r-lg) !important; }
.cat-card, .testi-card, .hero-card-inner { border-radius: var(--r-lg) !important; }
.announce { background: linear-gradient(90deg, #c44d2c 0%, #e9a93a 50%, #264653 100%); color: #fff8f0; font-weight: 600; }
.logo-name {
  background: linear-gradient(135deg, #c44d2c 0%, #e9a93a 60%, #264653 100%) !important;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-family: var(--display) !important;
  font-style: normal !important;
  font-size: 30px !important;
  letter-spacing: 0.04em !important;
  font-weight: 400 !important;
}
.footer-brand .logo-name {
  background: linear-gradient(135deg, #f5cc7a 0%, #e9a93a 100%) !important;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-tag { font-family: var(--serif); font-style: italic; letter-spacing: 0.18em; }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
em { font-style: italic; font-family: var(--serif); color: var(--wine); font-weight: 600; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: linear-gradient(90deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
}
.announce-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  width: max-content;
}
.announce-track span { padding: 0 8px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 238, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(251, 246, 238, 0.99);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 46px; height: 46px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(122,26,58,0.25));
  transition: transform 0.4s cubic-bezier(.2,.9,.3,1);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #c9304a 0%, #7a1a3a 60%, #c9a449 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.logo-tag {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 5px;
  font-weight: 500;
}

/* Nav */
.nav {
  display: flex; gap: 26px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav a::after {
  content: '';
  position: absolute; left: 50%; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--wine);
  transition: all 0.25s;
  transform: translateX(-50%);
}
.nav a:hover { color: var(--wine); }
.nav a:hover::after { width: 100%; }

/* Header actions */
.header-actions {
  display: flex; align-items: center; gap: 4px;
}
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  transition: all 0.2s;
  position: relative;
}
.icon-btn:hover { background: var(--bg-soft); color: var(--wine); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--wine);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.cart-count.show { transform: scale(1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

/* Search bar */
.search-bar {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  border-top: 1px solid transparent;
}
.search-bar.open {
  max-height: 80px;
  border-top-color: var(--line-soft);
}
.search-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-mute);
}
.search-bar-inner input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 18px;
  font-family: var(--serif);
  color: var(--ink);
  outline: none;
}
.search-bar-inner input::placeholder { color: var(--ink-mute); font-style: italic; }
.search-close { font-size: 18px; color: var(--ink-mute); }
.search-close:hover { color: var(--wine); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 60px 32px 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.blob-a {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  top: -100px; left: -150px;
}
.blob-b {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #f5c8d4 0%, transparent 70%);
  bottom: -200px; right: -200px;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-title em {
  font-family: var(--script);
  font-size: 1.4em;
  color: var(--wine);
  font-weight: 700;
  line-height: 0.7;
  display: inline-block;
  vertical-align: -0.05em;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--wine);
  line-height: 1;
}
.hero-stats span {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 560px;
}
.hero-card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s cubic-bezier(.2,.9,.3,1);
}
.hero-card-inner {
  width: 100%; height: 100%;
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  color: white;
}
.hero-card-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 25px 25px, 35px 35px;
  pointer-events: none;
}
.hero-card-text { position: relative; z-index: 1; }
.hero-card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.hero-card-title {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-card-1 {
  width: 280px; height: 380px;
  top: 40px; left: 40px;
  transform: rotate(-6deg);
  z-index: 2;
}
.hero-card-2 {
  width: 250px; height: 320px;
  top: 80px; right: 20px;
  transform: rotate(4deg);
  z-index: 1;
}
.hero-card-3 {
  width: 220px; height: 280px;
  bottom: 20px; left: 130px;
  transform: rotate(-3deg);
  z-index: 3;
}
.hero-visual:hover .hero-card-1 { transform: rotate(-3deg) translateY(-10px); }
.hero-visual:hover .hero-card-2 { transform: rotate(2deg) translateY(-10px); }
.hero-visual:hover .hero-card-3 { transform: rotate(-1deg) translateY(-10px); }

.hero-floating {
  position: absolute;
  top: 0; right: 100px;
  font-size: 32px;
  color: var(--gold);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(.2,.8,.3,1);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--wine);
  color: white;
}
.btn-primary:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(122, 26, 58, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: white;
}
.btn-block { width: 100%; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 16px;
  color: var(--cream);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-item div { display: flex; flex-direction: column; line-height: 1.3; }
.trust-item strong { font-size: 14px; letter-spacing: 0.05em; }
.trust-item span { font-size: 12px; color: rgba(247,231,196,0.7); margin-top: 2px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 32px;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-title em {
  font-family: var(--script);
  font-size: 1.3em;
  color: var(--wine);
  font-weight: 700;
  line-height: 0.7;
  display: inline-block;
  vertical-align: -0.05em;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  height: 340px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s cubic-bezier(.2,.9,.3,1);
}
.cat-card:hover { transform: translateY(-6px); }
.cat-card-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.cat-card-pattern {
  position: absolute; inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 20px 20px;
}
.cat-card-icon {
  font-size: 80px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
  transition: transform 0.5s;
}
.cat-card:hover .cat-card-icon { transform: scale(1.1) rotate(-5deg); }
.cat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: white;
  z-index: 2;
}
.cat-card-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.cat-card-count {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}
.cat-card-arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
  z-index: 2;
}
.cat-card:hover .cat-card-arrow {
  background: white;
  transform: rotate(-45deg);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.section-products { padding-top: 40px; }

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-pills {
  display: flex; gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 10px 20px;
  border: 1.5px solid var(--line);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  background: var(--paper);
  transition: all 0.2s;
}
.filter-pill:hover { border-color: var(--wine); color: var(--wine); }
.filter-pill.active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.filter-sort { display: flex; align-items: center; gap: 12px; }
.filter-sort label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.filter-sort select {
  padding: 10px 36px 10px 16px;
  border: 1.5px solid var(--line);
  border-radius: 50px;
  background: var(--paper) 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='%235a443c' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.9,.3,1), box-shadow 0.4s;
  border: 1px solid var(--line-soft);
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-soft);
}
.product-visual {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s cubic-bezier(.2,.9,.3,1);
  background: var(--bg-soft);
}
.product-visual svg { width: 100%; height: 100%; display: block; }
.product-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: var(--bg-soft);
}
.product:hover .product-photo { transform: scale(1.06); transition: transform 0.6s cubic-bezier(.2,.9,.3,1); }
.cart-item-img svg, .summary-item-img svg, .pm-img svg { width: 100%; height: 100%; display: block; }
.summary-item-img, .cart-item-img { overflow: hidden; }
.pm-img > div, .pm-img svg { position: absolute; inset: 0; }
.product:hover .product-visual { transform: scale(1.06); }
.product-pattern {
  position: absolute; inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.4) 2px, transparent 2px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 30px 30px, 20px 20px;
}
.product-icon {
  font-size: 100px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
  z-index: 1;
  position: relative;
}

.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}
.badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  color: white;
}
.badge-new { background: var(--emerald); }
.badge-sale { background: var(--wine); }
.badge-best { background: var(--gold); color: var(--ink); }

.product-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
  transition: all 0.2s;
  z-index: 2;
  opacity: 0;
  transform: translateY(-4px);
}
.product:hover .product-wishlist {
  opacity: 1; transform: translateY(0);
}
.product-wishlist:hover { color: var(--wine); }
.product-wishlist.active { color: var(--wine); }
.product-wishlist.active svg { fill: var(--wine); }

.product-quickadd {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: white;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s;
  z-index: 2;
}
.product:hover .product-quickadd { transform: translateY(0); }
.product-quickadd:hover { background: var(--wine); }

.product-info {
  padding: 18px 16px 20px;
}
.product-cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--ink);
  /* clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 46px;
}
.product-rating {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--ink-mute);
}
.stars {
  color: var(--gold);
  letter-spacing: 0.5px;
  font-size: 13px;
}
.product-prices {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.price-now {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.price-was {
  font-size: 14px;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.price-off {
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.05em;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-mute);
}
.empty-icon { font-size: 48px; color: var(--gold); display: block; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--serif); font-size: 28px; color: var(--ink); margin-bottom: 8px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg-soft);
  max-width: none;
  border-radius: 0;
}
.testimonials .section-head { margin-bottom: 50px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.testi-card {
  background: var(--paper);
  padding: 32px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 24px;
  font-family: var(--serif);
  font-size: 100px;
  line-height: 1;
  color: var(--gold-soft);
  opacity: 0.5;
}
.testi-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-family: var(--serif);
  font-size: 18px;
}
.testi-author strong { display: block; font-size: 14px; }
.testi-author span { font-size: 11px; color: var(--ink-mute); letter-spacing: 0.05em; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: 80px 32px;
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 215, 130, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255, 215, 130, 0.1) 0%, transparent 30%);
}
.newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.newsletter .section-eyebrow { color: var(--gold-soft); }
.newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}
.newsletter h2 em { color: var(--gold-soft); font-family: var(--script); font-size: 1.4em; }
.newsletter p { color: rgba(255,255,255,0.8); font-size: 16px; }
.newsletter-form {
  display: flex; gap: 12px;
  background: rgba(255,255,255,0.1);
  padding: 8px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  color: white;
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form .btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.newsletter-form .btn-primary:hover {
  background: var(--gold-soft);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 70px 32px 30px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name {
  background: linear-gradient(135deg, #f7d77a 0%, #c9a449 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-brand .logo-tag { color: rgba(255,255,255,0.5); }
.footer-about {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
}
.socials {
  display: flex; gap: 12px;
  margin-top: 20px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  color: rgba(255,255,255,0.7);
}
.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-soft); }
.footer-col address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}
.footer-col address strong { color: var(--cream); display: block; margin-bottom: 6px; font-size: 13px; letter-spacing: 0.05em; }
.footer-contact { margin-top: 14px; font-size: 14px; line-height: 1.8; }
.footer-contact a { color: var(--gold-soft); }
.footer-contact a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1400px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.payment-methods { display: flex; align-items: center; gap: 16px; }
.payment-methods > span { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.pm-row { display: flex; gap: 8px; }
.pm {
  background: white;
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.pm.visa { color: #1a1f71; }
.pm.mc { color: #eb001b; }
.pm.rupay { color: #097969; }
.pm.upi { color: #5f259f; }
.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: right;
  line-height: 1.8;
}
.footer-legal a { color: rgba(255,255,255,0.6); }
.footer-legal a:hover { color: var(--gold-soft); }

/* ============================================================
   OVERLAY & DRAWER (CART)
   ============================================================ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(42, 22, 15, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.2,.9,.3,1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-head h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}
.drawer-head h3 span { color: var(--ink-mute); font-weight: 400; font-size: 18px; }
.drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--ink);
  transition: background 0.2s;
}
.drawer-close:hover { background: var(--bg-soft); }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 28px;
}
.drawer-body::-webkit-scrollbar { width: 4px; }
.drawer-body::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }

.cart-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-mute);
}
.cart-empty .ce-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 16px;
}
.cart-empty h4 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-item-img {
  width: 80px;
  height: 100px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  position: relative;
  overflow: hidden;
}
.cart-item-img .product-pattern { opacity: 0.3; }
.cart-item-info { display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.cart-item-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 4px;
}
.cart-item-meta {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cart-item-price {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--wine);
}
.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.qty-control {
  display: flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 50px;
  background: var(--paper);
  overflow: hidden;
}
.qty-control button {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--ink-soft);
  transition: background 0.15s;
}
.qty-control button:hover { background: var(--bg-soft); color: var(--wine); }
.qty-control span {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}
.cart-remove {
  font-size: 11px;
  color: var(--ink-mute);
  text-decoration: underline;
  letter-spacing: 0.05em;
}
.cart-remove:hover { color: var(--wine); }

.drawer-foot {
  border-top: 1px solid var(--line-soft);
  padding: 24px 28px;
  background: var(--paper);
}
.drawer-foot.hidden { display: none; }
.cart-summary { margin-bottom: 18px; }
.cart-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.cart-row.total {
  border-top: 1px solid var(--line-soft);
  margin-top: 8px;
  padding-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.cart-row.total span:last-child {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--wine);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 300;
  background: rgba(42, 22, 15, 0.6);
  backdrop-filter: blur(4px);
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-shell {
  background: var(--paper);
  border-radius: var(--r-xl);
  max-width: 1100px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: scale(0.96) translateY(10px);
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1);
  box-shadow: var(--shadow-lg);
}
.modal.open .modal-shell { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--ink);
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.modal-close:hover { background: var(--ink); color: white; }

.pm-img {
  position: relative;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  min-height: 500px;
}
.pm-img .product-icon { font-size: 200px; }
.pm-img .product-pattern { opacity: 0.25; }

.pm-info {
  padding: 40px 36px;
  overflow-y: auto;
  max-height: 92vh;
}
.pm-info::-webkit-scrollbar { width: 4px; }
.pm-info::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }

.pm-cat {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 8px;
}
.pm-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}
.pm-rating {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--ink-mute);
}
.pm-prices {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.pm-prices .price-now { font-size: 30px; }
.pm-prices .price-was { font-size: 18px; }
.pm-prices .price-off { font-size: 13px; }
.pm-tax-note {
  font-size: 11px;
  color: var(--ink-mute);
  margin-bottom: 24px;
}

.pm-desc {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 14.5px;
  margin-bottom: 24px;
}
.pm-features {
  list-style: none;
  margin-bottom: 24px;
}
.pm-features li {
  padding: 4px 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pm-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 12px;
  margin-top: 4px;
}

.pm-options { margin-bottom: 24px; }
.pm-option-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.pm-sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.pm-size {
  width: 40px; height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--paper);
}
.pm-size:hover { border-color: var(--ink); }
.pm-size.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.pm-actions {
  display: flex; gap: 12px;
  margin-bottom: 24px;
}
.pm-actions .qty-control {
  border-width: 1.5px;
  height: 50px;
}
.pm-actions .qty-control button { width: 40px; height: 100%; font-size: 18px; }
.pm-actions .qty-control span { padding: 0 8px; font-size: 15px; }
.pm-actions .btn-primary { flex: 1; padding: 14px 24px; }

.pm-info-rows {
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
  margin-bottom: 30px;
}
.pm-info-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--ink-soft);
}
.pm-info-row svg { color: var(--wine); flex-shrink: 0; }

/* Reviews */
.pm-reviews {
  border-top: 1px solid var(--line-soft);
  padding-top: 28px;
}
.pm-reviews h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}
.pm-reviews-summary {
  display: flex; align-items: center; gap: 20px;
  padding: 16px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  margin-bottom: 20px;
}
.pm-rating-big {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--wine);
  line-height: 1;
}
.pm-rating-big-sub { font-size: 12px; color: var(--ink-mute); display: block; margin-top: 4px; }
.pm-rating-bars { flex: 1; }
.pm-rating-bar {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.pm-rating-bar-track {
  flex: 1;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.pm-rating-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}
.review {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.review:last-child { border-bottom: none; }
.review-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 8px;
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-family: var(--serif);
}
.review-author { display: flex; flex-direction: column; }
.review-name { font-weight: 600; font-size: 13.5px; }
.review-city { font-weight: 400; font-size: 12px; color: var(--ink-mute); }
.review-date { font-size: 11px; color: var(--ink-mute); }
.review-stars-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.review-stars-row .stars { font-size: 12px; }
.review-title { font-weight: 600; font-size: 13.5px; }
.review-body { font-size: 13.5px; color: var(--ink-soft); line-height: 1.65; }
.review-verified {
  font-size: 10px;
  color: var(--emerald);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
.checkout-shell {
  background: var(--paper);
  border-radius: var(--r-xl);
  max-width: 1000px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  position: relative;
  transform: scale(0.96) translateY(10px);
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1);
  box-shadow: var(--shadow-lg);
}
.modal.open .checkout-shell { transform: scale(1) translateY(0); }

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  max-height: 92vh;
}
.checkout-form, .checkout-summary {
  padding: 36px 32px;
  overflow-y: auto;
}
.checkout-form { border-right: 1px solid var(--line-soft); }
.checkout-summary { background: var(--bg-soft); }
.checkout-form h2, .checkout-summary h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.form-row { margin-bottom: 14px; }
.form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-row input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus { border-color: var(--wine); }

.summary-items {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  max-height: 280px;
  overflow-y: auto;
}
.summary-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px;
  padding: 10px 0;
  align-items: center;
}
.summary-item-img {
  width: 50px; height: 60px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.summary-item-info { font-size: 13px; line-height: 1.3; }
.summary-item-name { font-family: var(--serif); font-size: 15px; font-weight: 500; }
.summary-item-qty { font-size: 11px; color: var(--ink-mute); letter-spacing: 0.05em; }
.summary-item-price { font-weight: 600; font-size: 14px; font-family: var(--serif); }

.summary-totals { padding-bottom: 20px; }
.secure-note {
  text-align: center;
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 12px;
  letter-spacing: 0.03em;
}

/* ============================================================
   RAZORPAY MODAL
   ============================================================ */
.rz-modal { background: rgba(42, 22, 15, 0.7); }
.rz-shell {
  background: white;
  border-radius: 16px;
  max-width: 460px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1);
  box-shadow: var(--shadow-lg);
  font-family: var(--sans);
}
.modal.open .rz-shell { transform: scale(1); }

.rz-head {
  background: linear-gradient(135deg, #072654 0%, #3A95FF 100%);
  color: white;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rz-merchant { display: flex; align-items: center; gap: 12px; }
.rz-logo {
  width: 40px; height: 40px;
  background: white;
  color: var(--wine);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
}
.rz-merchant strong { display: block; font-size: 14px; line-height: 1.2; }
.rz-merchant span { font-size: 18px; font-weight: 700; line-height: 1; display: block; margin-top: 2px; }
.rz-close {
  color: white;
  font-size: 16px;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.rz-close:hover { background: rgba(255,255,255,0.15); }

.rz-body { padding: 20px 22px 22px; }
.rz-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 22px;
  overflow-x: auto;
  gap: 4px;
}
.rz-tabs::-webkit-scrollbar { display: none; }
.rz-tab {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #777;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.15s;
}
.rz-tab.active { color: #072654; border-bottom-color: #3A95FF; }

.rz-pane label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
  margin-top: 12px;
}
.rz-pane input, .rz-bank {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--sans);
}
.rz-pane input:focus, .rz-bank:focus { border-color: #3A95FF; }

.rz-input-card { position: relative; }
.rz-card-icons {
  position: absolute;
  top: 50%; right: 12px;
  transform: translateY(-50%);
  display: flex; gap: 4px;
}
.card-ic {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 3px;
  color: white;
}
.card-ic.visa { background: #1a1f71; }
.card-ic.mc { background: #eb001b; }

.rz-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rz-upi-apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.rz-upi-app {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 6px;
  border: 1.5px solid #eee;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all 0.2s;
}
.rz-upi-app span { font-size: 22px; }
.rz-upi-app:hover { border-color: #3A95FF; background: #f4faff; }

.rz-wallets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.rz-wallet {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid #eee;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.rz-wallet:has(input:checked) { border-color: #3A95FF; background: #f4faff; }
.rz-wallet input { width: auto; padding: 0; margin: 0; accent-color: #3A95FF; }

.rz-bank {
  margin-top: 12px;
  appearance: none;
  background: white 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='%23555' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  padding-right: 36px;
}

.rz-pay {
  margin-top: 24px;
  background: #3A95FF !important;
  border-radius: 8px !important;
  padding: 14px !important;
  font-size: 14px !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  font-weight: 700 !important;
}
.rz-pay:hover { background: #1976d2 !important; }
.rz-secure {
  text-align: center;
  font-size: 11px;
  color: #888;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================================
   PROCESSING MODAL
   ============================================================ */
.proc-modal { background: rgba(42, 22, 15, 0.85); }
.proc-shell {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 360px;
  width: 100%;
  transform: scale(0.94);
  transition: transform 0.3s;
}
.modal.open .proc-shell { transform: scale(1); }
.proc-spinner {
  width: 64px; height: 64px;
  border: 4px solid #eee;
  border-top-color: #3A95FF;
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.proc-shell h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}
.proc-shell p { color: var(--ink-mute); font-size: 13px; margin-bottom: 24px; }
.proc-steps { text-align: left; }
.proc-step {
  font-size: 13px;
  color: #aaa;
  padding: 6px 0 6px 26px;
  position: relative;
  transition: color 0.3s;
}
.proc-step::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 16px;
  border: 2px solid #ddd;
  border-radius: 50%;
  transition: all 0.3s;
}
.proc-step.active { color: var(--ink); font-weight: 600; }
.proc-step.active::before { border-color: #3A95FF; }
.proc-step.done { color: var(--emerald); }
.proc-step.done::before {
  background: var(--emerald) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 10px;
  border-color: var(--emerald);
}

/* ============================================================
   SUCCESS MODAL
   ============================================================ */
.succ-modal { background: rgba(42, 22, 15, 0.85); }
.succ-shell {
  background: white;
  border-radius: 24px;
  padding: 44px 36px 36px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(.2,1.5,.3,1);
}
.modal.open .succ-shell { transform: scale(1); }
.succ-confetti {
  position: absolute; inset: 0;
  pointer-events: none;
}
.succ-confetti span {
  position: absolute;
  font-size: 18px;
  color: var(--gold);
  opacity: 0;
}
.modal.open .succ-confetti span {
  animation: confetti 1.6s ease-out forwards;
}
.succ-confetti span:nth-child(1) { top: 10%; left: 15%; animation-delay: 0.1s !important; }
.succ-confetti span:nth-child(2) { top: 20%; left: 80%; color: var(--rose); animation-delay: 0.2s !important; }
.succ-confetti span:nth-child(3) { top: 30%; left: 30%; color: var(--emerald); animation-delay: 0.3s !important; }
.succ-confetti span:nth-child(4) { top: 60%; left: 90%; animation-delay: 0.4s !important; }
.succ-confetti span:nth-child(5) { top: 70%; left: 10%; color: var(--rose); animation-delay: 0.15s !important; }
.succ-confetti span:nth-child(6) { top: 40%; left: 70%; animation-delay: 0.25s !important; }
.succ-confetti span:nth-child(7) { top: 15%; left: 50%; color: var(--emerald); animation-delay: 0.35s !important; }
.succ-confetti span:nth-child(8) { top: 80%; left: 50%; animation-delay: 0.45s !important; }
@keyframes confetti {
  0% { opacity: 0; transform: translateY(0) rotate(0); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translateY(80px) rotate(360deg); }
}

.succ-check {
  display: flex; justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.succ-circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: drawCircle 0.8s ease-out forwards;
}
.succ-tick {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawTick 0.5s 0.6s ease-out forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawTick { to { stroke-dashoffset: 0; } }

.succ-shell h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.succ-shell > p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.succ-details {
  background: var(--bg-soft);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-bottom: 18px;
  text-align: left;
  position: relative; z-index: 1;
}
.succ-details .cart-row { padding: 5px 0; font-size: 13px; }
.succ-details .cart-row span:last-child { font-weight: 600; color: var(--ink); }
.succ-note {
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 16px;
  font-style: italic;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  z-index: 400;
  opacity: 0;
  transition: all 0.4s cubic-bezier(.2,.9,.3,1);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { height: 480px; max-width: 500px; margin: 0 auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-shell { grid-template-columns: 1fr; max-height: 95vh; }
  .pm-img { min-height: 300px; }
  .pm-img .product-icon { font-size: 130px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-form { border-right: none; border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 768px) {
  .header-inner { padding: 14px 20px; gap: 16px; }
  .logo-tag { display: none; }
  .logo-name { font-size: 22px; }
  .hero { padding: 40px 20px 80px; }
  .hero-stats { gap: 24px; }
  .hero-stats strong { font-size: 24px; }
  .trust-strip { grid-template-columns: 1fr 1fr; padding: 24px 20px; gap: 20px; }
  .section { padding: 60px 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-card { height: 240px; }
  .cat-card-icon { font-size: 60px; }
  .cat-card-name { font-size: 20px; }
  .testi-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 30px; }
  .newsletter-form { flex-direction: column; border-radius: 14px; padding: 12px; }
  .newsletter-form input { padding: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .footer-legal { text-align: center; }
  .drawer { width: 100vw; }
  .pm-info { padding: 28px 22px; }
  .pm-name { font-size: 26px; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .checkout-form, .checkout-summary { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .product-name { font-size: 17px; min-height: auto; }
  .price-now { font-size: 18px; }
  .product-info { padding: 14px 12px 16px; }
  .hero-title { font-size: 36px; }
  .section-title { font-size: 30px; }
  .pm-actions { flex-direction: column; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.15);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-decoration: none !important;
  border: 3px solid #ffffff;
}
.wa-fab:hover {
  transform: scale(1.08) rotate(-4deg);
  background: #1ebe5a;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.2);
}
.wa-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.5;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.92); opacity: 0.55; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
.wa-tip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #0e1b2c;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-family: var(--sans, system-ui), sans-serif;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.wa-tip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #0e1b2c;
}
.wa-fab:hover .wa-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 600px) {
  .wa-fab { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-fab svg { width: 26px; height: 26px; }
  .wa-tip { display: none; }
}
