/* =====================================================================
   Sri Lakshmi Crackers — Premium Indian Traditional / Diwali Design
   ===================================================================== */

:root {
  --maroon: #7a1622;
  --maroon-deep: #4b0a12;
  --maroon-dark: #3a0610;
  --red: #b0242f;
  --saffron: #f97316;
  --saffron-deep: #ea580c;
  --gold: #d4af37;
  --gold-soft: #e8c96a;
  --gold-light: #f9e3a1;
  --cream: #fdf6e6;
  --cream-2: #f7ecd2;
  --cream-3: #f1e2c3;
  --text-dark: #33201a;
  --text-muted: #7c6a5c;
  --green: #1e7d48;
  --wa: #25d366;
  --wa-dark: #1da851;
  --white: #ffffff;
  --radius: 18px;
  --shadow-card: 0 12px 34px -14px rgba(74, 10, 18, 0.35);
  --shadow-soft: 0 8px 24px -12px rgba(74, 10, 18, 0.22);
  --grad-gold: linear-gradient(135deg, #f9e3a1 0%, #d4af37 50%, #b8860b 100%);
  --grad-maroon: linear-gradient(135deg, #8a1c18 0%, #5c0f16 55%, #4b0a12 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; border: none; cursor: pointer; }
input { font-family: inherit; }

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Gold text / gradient helpers ---------- */
.gold-text {
  background: linear-gradient(100deg, #b8860b, #f7c948, #d4af37, #f7c948);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:active { transform: scale(0.97); }

.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-xl { padding: 18px 40px; font-size: 1.1rem; }

.btn-gold {
  background: var(--grad-gold);
  color: #4a2c05;
  box-shadow: 0 10px 26px -10px rgba(212, 175, 55, 0.65);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -10px rgba(212, 175, 55, 0.7); }

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.6);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  color: var(--maroon);
  border-color: rgba(122, 22, 34, 0.4);
}
.btn-outline:hover { background: rgba(122, 22, 34, 0.08); }

.wa-icon { width: 19px; height: 19px; flex: none; display: inline-block; }
.btn-lg .wa-icon { width: 22px; height: 22px; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(43, 5, 9, 0.97), rgba(75, 10, 18, 0.97));
  border-bottom: 2px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 6px 24px -12px rgba(0, 0, 0, 0.45);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 12px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-diya { filter: drop-shadow(0 0 8px rgba(255, 200, 90, 0.55)); animation: diyaGlow 3s ease-in-out infinite; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold-light);
  letter-spacing: 0.4px;
}
.brand-name em {
  font-style: normal;
  color: #fff;
}
.brand-tag { font-size: 0.66rem; color: var(--gold-soft); letter-spacing: 0.6px; }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: block;
  padding: 8px 11px;
  color: #f4e6c8;
  font-size: 0.86rem;
  font-weight: 500;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.main-nav a:hover { color: #fff; background: rgba(212, 175, 55, 0.18); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
}
.menu-toggle span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(320px, 84vw);
  background: linear-gradient(180deg, var(--maroon-deep), #2a0407);
  border-left: 2px solid rgba(212, 175, 55, 0.4);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 90px 28px 30px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  color: #f4e6c8;
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.mobile-menu a:hover { background: rgba(212, 175, 55, 0.15); color: #fff; }
.mobile-menu a[rel="noopener"] { background: var(--wa); color: #fff; border-color: var(--wa); margin-top: 10px; font-weight: 600; }

.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(20, 3, 5, 0.55);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-overlay.show { opacity: 1; pointer-events: auto; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0 70px;
  background:
    radial-gradient(100% 90% at 50% 0%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(120% 120% at 80% 110%, rgba(184, 36, 47, 0.25), transparent 60%),
    linear-gradient(160deg, #3a0610 0%, #5c0f16 45%, #4b0a12 100%);
  color: #fdf3de;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.rangoli-overlay {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%23d4af37' stroke-opacity='0.14'%3E%3Ccircle cx='120' cy='120' r='118'/%3E%3Ccircle cx='120' cy='120' r='96'/%3E%3Ccircle cx='120' cy='120' r='72'/%3E%3Ccircle cx='120' cy='120' r='46'/%3E%3Ccircle cx='120' cy='120' r='16'/%3E%3Cpath d='M120 0L132 66L120 46L108 66Z'/%3E%3Cpath d='M120 240L132 174L120 194L108 174Z'/%3E%3Cpath d='M0 120L66 132L46 120L66 108Z'/%3E%3Cpath d='M240 120L174 132L194 120L174 108Z'/%3E%3Cpath d='M24 24L60 60M216 24L180 60M24 216L60 180M216 216L180 180'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 300px 300px;
  animation: rangoliDrift 80s linear infinite;
}

.sparkles i {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px 3px rgba(255, 220, 130, 0.55);
  animation: twinkle 3.2s ease-in-out infinite;
}
.sparkles i::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 225, 150, 0.5), transparent 70%);
}

.hero-diyas .diya {
  position: absolute;
  font-size: 2.4rem;
  filter: drop-shadow(0 0 16px rgba(255, 200, 90, 0.8));
  animation: diyaFloat 4.5s ease-in-out infinite;
}
.diya-1 { top: 18%; left: 6%; }
.diya-2 { bottom: 16%; right: 7%; animation-delay: 1.2s; }
.diya-3 { bottom: 22%; left: 12%; animation-delay: 2s; }

.hero-content { position: relative; z-index: 2; }

.hero-kicker {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  font-weight: 800;
  color: #fff;
  max-width: 860px;
  margin: 0 auto 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ecd9ac;
  max-width: 600px;
  margin: 0 auto 34px;
  font-weight: 300;
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #efdcb4;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }

.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, rgba(212,175,55,0.9), rgba(240,190,80,0.9), rgba(212,175,55,0.9));
  color: #3a0610;
  overflow: hidden;
  padding: 9px 0;
  transform: rotate(-0.4deg) translateY(14px);
  white-space: nowrap;
}
.marquee-track { display: inline-block; animation: marquee 26s linear infinite; }
.marquee-track span { margin: 0 26px; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.8px; }

/* =====================================================================
   SECTIONS
   ===================================================================== */
.section { padding: 90px 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  color: var(--maroon);
  margin-bottom: 12px;
}
.section-sub { color: var(--text-muted); font-size: 0.98rem; }

/* =====================================================================
   WHY CHOOSE US
   ===================================================================== */
.why-us { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.why-card {
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--gold); }
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  font-size: 1.8rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fdf6e6, #f3e3bf);
  border: 1px solid rgba(212, 175, 55, 0.5);
  margin-bottom: 16px;
  box-shadow: inset 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.why-card h3 { color: var(--maroon); font-size: 1.15rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); }

/* =====================================================================
   CATEGORIES
   ===================================================================== */
.categories { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 20px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  padding: 26px 18px 22px;
  color: #fff;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.cat-card .cat-emoji {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 2.6rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: transform 0.35s ease;
}
.cat-card:hover .cat-emoji { transform: scale(1.15) rotate(-6deg); }
.cat-card h3 { font-size: 1.2rem; margin-bottom: 6px; text-shadow: 0 2px 8px rgba(0,0,0,0.35); }
.cat-card p { font-size: 0.8rem; opacity: 0.92; margin-bottom: 14px; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.cat-btn {
  align-self: flex-start;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.25s ease;
}
.cat-card:hover .cat-btn { background: rgba(255,255,255,0.32); }

/* category gradient themes */
.cat-0 { background: linear-gradient(135deg, #e07b00, #b45309); }      /* Sparklers */
.cat-1 { background: linear-gradient(135deg, #c0392b, #8a1c18); }      /* Flower Pots */
.cat-2 { background: linear-gradient(135deg, #b45309, #7a1622); }      /* Chakkars */
.cat-3 { background: linear-gradient(135deg, #7a5c12, #b8860b); }      /* Rockets */
.cat-4 { background: linear-gradient(135deg, #8a6d1d, #c9a227); }      /* Fancy */
.cat-5 { background: linear-gradient(135deg, #e96b3a, #c01f2d); }      /* Kids */
.cat-6 { background: linear-gradient(135deg, #9c1f2e, #6d0f1a); }      /* Family */
.cat-7 { background: linear-gradient(135deg, #d4a017, #8a5a00); }      /* Gift */
.cat-8 { background: linear-gradient(135deg, #c07a1a, #7a1622); }      /* Combo */
.cat-9 { background: linear-gradient(135deg, #51308a, #2d1b55); }      /* Sky shots */

/* =====================================================================
   PRODUCTS
   ===================================================================== */
.products { background: var(--cream); }

.products-toolbar { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-bottom: 18px; }

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  padding: 0 18px;
  flex: 1;
  min-width: 260px;
  max-width: 420px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.search-box:focus-within { border-color: var(--gold); box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.18); }
.search-box svg { width: 18px; height: 18px; color: var(--text-muted); }
.search-box input { flex: 1; border: none; outline: none; padding: 13px 4px; font-size: 0.92rem; background: transparent; }

.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 999px;
  background: #fff;
  color: var(--text-muted);
  border: 1.5px solid rgba(122, 22, 34, 0.18);
  transition: all 0.22s ease;
}
.chip:hover { border-color: var(--gold); color: var(--maroon); }
.chip.active { background: var(--grad-maroon); color: #fff; border-color: var(--maroon); box-shadow: 0 6px 18px -8px rgba(122,22,34,0.6); }

.product-count { font-size: 0.86rem; color: var(--text-muted); margin: 4px 0 20px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 22px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-card); }

.product-img {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.22), transparent 60%);
}
.product-img::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.14'%3E%3Ccircle cx='60' cy='60' r='58'/%3E%3Ccircle cx='60' cy='60' r='40'/%3E%3Ccircle cx='60' cy='60' r='24'/%3E%3Cpath d='M60 0L66 24L60 14L54 24Z'/%3E%3Cpath d='M60 120L66 96L60 106L54 96Z'/%3E%3Cpath d='M0 60L24 66L14 60L24 54Z'/%3E%3Cpath d='M120 60L96 66L106 60L96 54Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 140px;
}
.product-img .pimg-emoji {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.28));
  transition: transform 0.35s ease;
}
.product-card:hover .pimg-emoji { transform: scale(1.12) rotate(-4deg); }

/* product image gradient themes */
.pimg-0  { background: linear-gradient(135deg, #f5a623, #d97706); }  /* Sparklers gold */
.pimg-1  { background: linear-gradient(135deg, #e05252, #b0242f); }  /* Flower Pots red */
.pimg-2  { background: linear-gradient(135deg, #d97706, #b45309); }  /* Chakkars */
.pimg-3  { background: linear-gradient(135deg, #8a5a1c, #b8860b); }  /* Rockets */
.pimg-4  { background: linear-gradient(135deg, #7a1622, #d4af37); }  /* Fancy */
.pimg-5  { background: linear-gradient(135deg, #ff8c42, #f15a24); }  /* Kids */
.pimg-6  { background: linear-gradient(135deg, #972233, #6d0f1a); }  /* Family */
.pimg-7  { background: linear-gradient(135deg, #d4af37, #a67c00); }  /* Gift */
.pimg-8  { background: linear-gradient(135deg, #e8852b, #b02a1f); }  /* Combo */
.pimg-9  { background: linear-gradient(135deg, #5b3a8f, #2d1b55); }  /* Sky */

.badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--grad-gold);
  color: #4a2c05;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.3);
}
.badge.badge-saffron { background: linear-gradient(135deg, #ff9a3d, #f97316); color: #fff; }

.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-category { font-size: 0.72rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--saffron-deep); margin-bottom: 6px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.18rem; color: var(--maroon); margin-bottom: 6px; }
.product-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; flex: 1; }

.product-pricing { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.price { font-size: 1.3rem; font-weight: 700; color: var(--maroon); }
.price-rrp { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.discount-tag { font-size: 0.75rem; font-weight: 700; color: var(--green); background: rgba(30,125,72,0.12); padding: 3px 9px; border-radius: 999px; }

.product-wa {
  width: 100%;
  padding: 13px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--wa);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 18px -8px rgba(37,211,102,0.55);
}
.product-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }

.products-note {
  margin-top: 44px;
  text-align: center;
  background: var(--grad-maroon);
  color: #f6e8c6;
  border-radius: var(--radius);
  padding: 22px;
  font-size: 1rem;
  border: 1px solid rgba(212,175,55,0.45);
}
.products-note a { color: #ffd97a; font-weight: 600; text-decoration: underline; }

.no-results { text-align: center; padding: 50px 0; color: var(--text-muted); font-size: 1.05rem; }
.no-results strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--maroon); margin-bottom: 6px; }

/* =====================================================================
   OFFERS
   ===================================================================== */
.offers {
  background:
    radial-gradient(90% 90% at 85% 10%, rgba(212,175,55,0.18), transparent 55%),
    var(--grad-maroon);
  color: #f5e8c8;
}
.offers .section-eyebrow { color: var(--gold-soft); }
.offers .section-head h2 { color: #fff; }
.offers .section-sub { color: #dfc9a0; }

.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

.offer-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -16px rgba(0,0,0,0.5); }
.offer-card .offer-emoji { font-size: 2.6rem; display: block; margin-bottom: 12px; filter: drop-shadow(0 6px 10px rgba(0,0,0,0.3)); }
.offer-card h3 { font-size: 1.3rem; color: #fff; margin-bottom: 4px; }
.offer-card .offer-label { font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 14px; }
.offer-price { font-size: 1.7rem; font-weight: 700; color: var(--gold-light); margin-bottom: 18px; }
.offer-price small { font-size: 0.85rem; color: #d9c29a; }

/* =====================================================================
   ORDER FLOW
   ===================================================================== */
.order-flow { background: var(--cream-2); }
.steps { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.step {
  flex: 1;
  min-width: 180px;
  max-width: 250px;
  background: #fff;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.3s ease;
}
.step:hover { transform: translateY(-5px); }
.step-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: #4a2c05;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px -3px rgba(0,0,0,0.3);
}
.step-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.step h3 { font-size: 1.05rem; color: var(--maroon); margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-muted); }
.step-arrow { align-self: center; font-size: 1.6rem; color: var(--gold); font-weight: 700; }

.order-note {
  text-align: center;
  font-weight: 600;
  color: var(--maroon);
  background: rgba(255,255,255,0.6);
  border: 1px dashed rgba(212,175,55,0.6);
  border-radius: 999px;
  padding: 14px 22px;
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* =====================================================================
   MEMORIES / EMOTIONAL
   ===================================================================== */
.memories { background: var(--cream); }
.memories-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
  background: linear-gradient(180deg, #fff7e6, #f7ead0);
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 26px;
  padding: clamp(30px, 5vw, 60px);
  box-shadow: var(--shadow-card);
}

.memories-visual {
  position: relative;
  height: 340px;
  border-radius: 22px;
  background:
    radial-gradient(60% 55% at 50% 50%, rgba(212,175,55,0.22), transparent 62%),
    linear-gradient(160deg, #5c0f16, #7a1622 60%, #3a0610);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mem-ring {
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  border: 2px dashed rgba(212,175,55,0.55);
  animation: spin 40s linear infinite;
}
.mem-ring::after {
  content: "";
  position: absolute; inset: 24px;
  border-radius: 50%;
  border: 2px dashed rgba(255,220,140,0.45);
}
.mem-family { font-size: 4.6rem; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4)); position: relative; z-index: 2; }
.mem-emoji {
  position: absolute;
  font-size: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
  animation: diyaFloat 5s ease-in-out infinite;
}
.mem-e1 { top: 26px; left: 34px; }
.mem-e2 { top: 30px; right: 40px; animation-delay: 1s; }
.mem-e3 { bottom: 30px; left: 44px; animation-delay: 2s; }
.mem-e4 { bottom: 40px; right: 30px; animation-delay: 0.6s; }
.mem-e5 { top: 46%; right: 16px; animation-delay: 1.6s; }

.memories-text h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--maroon); margin-bottom: 18px; }
.memories-text p { color: var(--text-muted); margin-bottom: 24px; font-size: 1rem; max-width: 480px; }

/* =====================================================================
   SAFETY
   ===================================================================== */
.safety { background: var(--cream-2); }
.safety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.safety-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(122,22,34,0.12);
  border-radius: 14px;
  padding: 18px 20px;
  align-items: flex-start;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.safety-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.safety-card span {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #4a2c05;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.safety-card p { font-size: 0.9rem; color: var(--text-muted); }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact { background: var(--cream); }
.contact-card {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  background: var(--grad-maroon);
  color: #f6e8c6;
  border-radius: 26px;
  padding: clamp(36px, 6vw, 58px);
  border: 1px solid rgba(212,175,55,0.5);
  box-shadow: 0 26px 60px -24px rgba(74,10,18,0.55);
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23d4af37' stroke-opacity='0.14'%3E%3Ccircle cx='70' cy='70' r='69'/%3E%3Ccircle cx='70' cy='70' r='52'/%3E%3Ccircle cx='70' cy='70' r='34'/%3E%3Ccircle cx='70' cy='70' r='14'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-deco { display: block; font-size: 2.6rem; margin-bottom: 14px; animation: diyaGlow 3s ease-in-out infinite; }
.contact-card h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 14px; }
.contact-card p { color: #e6d2a8; margin-bottom: 20px; font-size: 0.98rem; }
.contact-number strong {
  display: inline-block;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 1.3rem;
  color: #ffd97a;
  margin-bottom: 22px;
  letter-spacing: 1px;
}
.contact-note { font-weight: 600; font-size: 0.9rem !important; color: #f6e8c6 !important; margin-top: 18px !important; margin-bottom: 0 !important; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  position: relative;
  background: #2a0407;
  color: #dfc9a0;
  overflow: hidden;
}
.footer-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23d4af37' stroke-opacity='0.08'%3E%3Cpath d='M80 0L92 60L80 36L68 60Z'/%3E%3Cpath d='M0 80L60 92L36 80L60 68Z'/%3E%3Cpath d='M160 80L100 92L124 80L100 68Z'/%3E%3Cpath d='M80 160L92 100L80 124L68 100Z'/%3E%3Ccircle cx='80' cy='80' r='40'/%3E%3Ccircle cx='80' cy='80' r='70'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 220px 220px;
  pointer-events: none;
}
.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 36px;
  padding: 60px 0 40px;
  z-index: 1;
}
.footer-logo { font-size: 2.2rem; animation: diyaGlow 3s ease-in-out infinite; }
.footer h3 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.4rem; margin: 8px 0 4px; }
.footer-brand p { font-size: 0.9rem; color: var(--gold-soft); }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.footer-links ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.footer-links a { font-size: 0.9rem; color: #d8c193; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 10px; }
.footer-contact strong { color: #ffd97a; }
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(212,175,55,0.2);
  padding: 18px 0;
  text-align: center;
  font-size: 0.83rem;
  color: #a08a62;
}

/* =====================================================================
   FLOATING WHATSAPP
   ===================================================================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.7);
  transition: transform 0.25s ease, background 0.25s ease;
  text-decoration: none;
}
.wa-float:hover { transform: translateY(-4px); background: var(--wa-dark); }
.wa-float .wa-icon { width: 24px; height: 24px; }
.wa-float-ring {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(37,211,102,0.7);
  animation: floatPulse 2.4s ease-out infinite;
}

/* =====================================================================
   REVEAL ANIMATIONS
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* =====================================================================
   KEYFRAMES
   ===================================================================== */
@keyframes diyaGlow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255, 200, 90, 0.6)); }
  50% { filter: drop-shadow(0 0 16px rgba(255, 220, 130, 0.95)); }
}
@keyframes diyaFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.15); }
}
@keyframes rangoliDrift { from { background-position: 0 0; } to { background-position: 300px 300px; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes floatPulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1220px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .memories-inner { grid-template-columns: 1fr; gap: 30px; }
  .memories-visual { height: 260px; }
  .step-arrow { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { min-height: 84vh; padding: 100px 0 64px; }
  .hero-trust { gap: 10px; }
  .hero-trust span { font-size: 0.78rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; padding: 44px 0 30px; }
  .products-toolbar { flex-direction: column; align-items: stretch; }
  .search-box { max-width: none; }
  .filter-chips { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .chip { flex: none; }
  .wa-float { padding: 13px 16px; font-size: 0.88rem; }
  .btn-nav { padding: 10px 14px; font-size: 0.82rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 14px; }
  .product-img { height: 130px; font-size: 3rem; }
  .product-body { padding: 14px 14px 16px; }
  .product-name { font-size: 1rem; }
  .product-wa { font-size: 0.85rem; padding: 11px; }
  .brand-name { font-size: 1.05rem; }
  .brand-tag { font-size: 0.58rem; }
  .memories-visual { height: 210px; }
  .mem-family { font-size: 3.4rem; }
  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 14px; }
  .cat-card { min-height: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}