/* =========================================================
   Johit Eco Ganesh — Premium Eco-Friendly Ganesh Idols
   Traditional • Devotional • Eco-Friendly • Festive
   ========================================================= */

:root {
  --saffron: #f5a623;
  --saffron-deep: #e8910c;
  --orange-deep: #e4572e;
  --green: #166b44;
  --green-deep: #0c3b24;
  --green-bright: #1e8a57;
  --gold: #d4a017;
  --gold-light: #f0c85f;
  --gold-pale: #f8e3a8;
  --clay: #a9683f;
  --clay-light: #c89b6d;
  --cream: #fff6e6;
  --cream-soft: #fffdf6;
  --ink: #3b2a1e;
  --ink-soft: #6b5236;
  --wa: #1ebd5e;
  --wa-dark: #128c4b;
  --white: #ffffff;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", "Segoe UI", Arial, sans-serif;

  --header-h: 76px;
  --radius: 18px;
  --shadow-sm: 0 6px 18px rgba(75, 41, 20, 0.08);
  --shadow-md: 0 14px 34px rgba(75, 41, 20, 0.14);
  --shadow-lg: 0 24px 60px rgba(22, 107, 68, 0.22);
  --gold-grad: linear-gradient(135deg, #b8860b 0%, #f0c85f 45%, #d4a017 100%);
  --green-grad: linear-gradient(135deg, #0f4c2e 0%, #166b44 55%, #1e8a57 100%);
  --wa-grad: linear-gradient(135deg, #1ebd5e 0%, #25d366 60%, #2ade70 100%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--saffron); color: var(--green-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: #2a1b11;
  font-weight: 700;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 999;
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}
.skip-link:focus { left: 12px; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  text-align: center;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

.btn-wa { background: var(--wa-grad); color: #fff; box-shadow: 0 10px 24px rgba(30, 189, 94, 0.35); }
.btn-wa:hover { box-shadow: 0 14px 30px rgba(30, 189, 94, 0.45); filter: brightness(1.04); }

.btn-gold { background: var(--gold-grad); color: #4a2e00; box-shadow: 0 10px 24px rgba(212, 160, 23, 0.4); }
.btn-gold:hover { box-shadow: 0 14px 30px rgba(212, 160, 23, 0.5); filter: brightness(1.05); }

.btn-green { background: var(--green-grad); color: #eafff3; border: 1px solid rgba(240, 200, 95, 0.5); box-shadow: 0 10px 24px rgba(22, 107, 68, 0.35); }
.btn-green:hover { box-shadow: 0 14px 30px rgba(22, 107, 68, 0.45); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(255, 248, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.35);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 250, 240, 0.97);
  box-shadow: 0 8px 30px rgba(75, 41, 20, 0.14);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  flex: none;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--green-deep);
  background: var(--gold-grad);
  border-radius: 12px 12px 12px 3px;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); font-size: 20px; color: var(--green-deep); letter-spacing: 0.01em; }
.brand-text small { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  transition: right 0.25s ease;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  background: var(--green-grad);
  border: none;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 120;
}
.nav-toggle .bar {
  width: 22px; height: 2.5px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 56px) 0 90px;
  color: #fff;
  background:
    radial-gradient(1200px 600px at 85% 10%, rgba(240, 200, 95, 0.28), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(110, 185, 145, 0.32), transparent 55%),
    linear-gradient(150deg, var(--green-deep) 0%, var(--green) 45%, var(--orange-deep) 100%);
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at center, rgba(255, 246, 230, 0.55) 0 2px, transparent 3px),
    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='%23f0c85f' stroke-width='1'%3E%3Ccircle cx='60' cy='60' r='12'/%3E%3Ccircle cx='60' cy='60' r='24'/%3E%3Ccircle cx='60' cy='60' r='42'/%3E%3Cpath d='M60 18v84M18 60h84'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 120px 120px;
  animation: patternDrift 60s linear infinite;
  pointer-events: none;
}
@keyframes patternDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 0, 120px 120px; }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-copy { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(255, 246, 230, 0.1);
  border: 1px solid rgba(240, 200, 95, 0.45);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-eyebrow span { font-size: 18px; }

.hero h1 {
  font-size: clamp(30px, 4.4vw, 52px);
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-offer {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.95), rgba(240, 200, 95, 0.9));
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(212, 160, 23, 0.4);
  margin-bottom: 22px;
  transform: rotate(-1deg);
  border: 2px solid rgba(255, 250, 225, 0.85);
}
.offer-small {
  font-size: clamp(14px, 2vw, 19px);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--green-deep);
}
.offer-big {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
}
.offer-big em { font-style: normal; font-size: 0.42em; letter-spacing: 0.2em; vertical-align: middle; margin-left: 6px; }

.hero-sub { font-size: clamp(15px, 1.6vw, 18px); color: #ffe9c9; margin-bottom: 28px; font-weight: 400; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: #ffe9c9;
}
.hero-badges span { font-size: 18px; }

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

.hero-frame {
  position: relative;
  margin: 0 auto;
  max-width: 480px;
  border-radius: 26px;
  padding: 12px;
  background: linear-gradient(160deg, #f0c85f, #b8860b 55%, #f0c85f);
  box-shadow: 0 34px 80px rgba(8, 22, 14, 0.45);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 20px;
  border: 2px dashed rgba(12, 59, 36, 0.35);
  pointer-events: none;
}
.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 18px;
  background: linear-gradient(160deg, #fffdf6, #f6e7c1);
}
.hero-stamp {
  position: absolute;
  right: -20px;
  bottom: 30px;
  background: var(--green-grad);
  color: var(--gold-light);
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding: 10px 14px;
  border: 1px solid rgba(240, 200, 95, 0.6);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transform: rotate(-4deg);
}

.hero-diya {
  position: absolute;
  right: 6%;
  top: 22%;
  color: var(--gold-light);
  animation: diyaFlicker 3.2s ease-in-out infinite;
  opacity: 0.85;
  filter: drop-shadow(0 0 18px rgba(240, 200, 95, 0.9));
}
@keyframes diyaFlicker {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.12); opacity: 1; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: linear-gradient(90deg, var(--green-deep), var(--green) 50%, var(--green-bright));
  border-block: 1px solid rgba(240, 200, 95, 0.35);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  gap: 22px;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--gold-pale);
  letter-spacing: 0.06em;
}
.marquee-track span:nth-child(even) { color: var(--gold-light); font-family: var(--font-body); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-kicker {
  display: inline-block;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; color: #331f10; }
.section-lead { color: var(--ink-soft); font-size: 16.5px; }
.section-lead strong { color: var(--green); }

/* ---------- Catalogue ---------- */
.catalogue { background: var(--cream); position: relative; }
.catalogue::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 70 70'%3E%3Cg fill='none' stroke='%23a9683f' stroke-opacity='.08'%3E%3Ccircle cx='35' cy='35' r='4'/%3E%3Ccircle cx='0' cy='0' r='4'/%3E%3Ccircle cx='70' cy='0' r='4'/%3E%3Ccircle cx='0' cy='70' r='4'/%3E%3Ccircle cx='70' cy='70' r='4'/%3E%3Cpath d='M35 0v70M0 35h70'/%3E%3C/g%3E%3C/svg%3E");
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 42px;
  position: relative;
  z-index: 1;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(169, 104, 63, 0.35);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--gold); transform: translateY(-2px); }
.filter-btn.is-active {
  background: var(--green-grad);
  color: var(--gold-light);
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(22, 107, 68, 0.3);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(262px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 160, 23, 0.4);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90px 70px at 85% 12%, rgba(255, 246, 230, 0.35), transparent 70%);
  pointer-events: none;
}
.tint-clay     { background: linear-gradient(150deg, #d9b28f, #b07b4e); }
.tint-saffron  { background: linear-gradient(150deg, #ffcf7d, #e8910c); }
.tint-maroon   { background: linear-gradient(150deg, #2a8a5c, #0f4c2e); }
.tint-terracotta { background: linear-gradient(150deg, #e08a63, #c05f35); }
.tint-gold     { background: linear-gradient(150deg, #f5dd9f, #c99820); }
.tint-red      { background: linear-gradient(150deg, #4aa77c, #217a4f); }

.product-img-link { display: block; width: 100%; height: 100%; }
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s ease;
}
.product-card:hover .product-media img { transform: scale(1.04); }

.price-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold-grad);
  color: #4a1705;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(20, 8, 8, 0.3);
  z-index: 2;
}
.tag-chip {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(12, 59, 36, 0.88);
  color: var(--gold-pale);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(240, 200, 95, 0.5);
  z-index: 2;
}

.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product-body h3 { font-size: 21px; }
.product-body p { font-size: 14.5px; color: var(--ink-soft); }

.product-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.product-tags li {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--green-deep);
  background: #fdf0d7;
  border: 1px solid rgba(212, 160, 23, 0.45);
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.product-card .btn {
  margin-top: auto;
  width: auto;
  align-self: center;
  padding: 10px 22px;
  font-size: 13.5px;
  gap: 8px;
}
.product-card .btn svg { width: 16px; height: 16px; }

.catalogue-note {
  text-align: center;
  margin-top: 44px;
  font-size: 15.5px;
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
}
.catalogue-note a {
  color: var(--wa-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Offer ---------- */
.offer {
  position: relative;
  background:
    radial-gradient(900px 480px at 15% 0%, rgba(240, 200, 95, 0.22), transparent 60%),
    radial-gradient(760px 420px at 90% 100%, rgba(212, 160, 23, 0.18), transparent 55%),
    linear-gradient(160deg, var(--green-deep) 0%, var(--green) 55%, #1a6e46 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.offer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  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='%23f0c85f' stroke-width='1'%3E%3Ccircle cx='70' cy='70' r='16'/%3E%3Ccircle cx='70' cy='70' r='34'/%3E%3Ccircle cx='70' cy='70' r='55'/%3E%3Cpath d='M70 15v110M15 70h110M34 34l72 72M106 34L34 106'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.offer-inner {
  position: relative;
  border: 2px solid rgba(240, 200, 95, 0.55);
  border-radius: 28px;
  padding: 56px clamp(20px, 4vw, 64px);
  background: rgba(12, 59, 36, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 246, 230, 0.12), 0 30px 70px rgba(8, 22, 14, 0.4);
}
.offer-inner::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(240, 200, 95, 0.45);
  border-radius: 20px;
  pointer-events: none;
}
.offer-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(240, 200, 95, 0.12);
  border: 1px solid rgba(240, 200, 95, 0.45);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.offer-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #fff;
  font-size: clamp(28px, 4.4vw, 46px);
}
.offer-title .rupee {
  font-size: clamp(46px, 8vw, 86px);
  color: var(--gold-light);
  text-shadow: 0 0 40px rgba(240, 200, 95, 0.6);
}
.offer-tag {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 25px);
  font-weight: 700;
  color: var(--gold-pale);
  margin: 14px 0 32px;
}
.offer-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 22px;
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: left;
}
.offer-points li {
  font-size: 15.5px;
  font-weight: 500;
  color: #ffe9cf;
  background: rgba(255, 246, 230, 0.07);
  border: 1px solid rgba(240, 200, 95, 0.28);
  padding: 12px 18px;
  border-radius: 12px;
}
.offer .btn-lg { width: min(100%, 480px); }

/* ---------- Eco ---------- */
.eco { background: var(--cream-soft); }
.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.eco-card {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(169, 104, 63, 0.28);
  border-top: 4px solid var(--gold);
  border-radius: 18px;
  padding: 34px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.eco-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.eco-icon {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  font-size: 30px;
  background: linear-gradient(150deg, #fdf0d7, #f8e0ae);
  border: 1px solid rgba(212, 160, 23, 0.5);
  border-radius: 50%;
  margin-bottom: 16px;
}
.eco-card h3 { font-size: 18px; margin-bottom: 8px; }
.eco-card p { font-size: 14px; color: var(--ink-soft); }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.about-copy .section-kicker { margin-bottom: 16px; }
.about-copy h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 20px; }
.accent-deep { color: var(--green); }
.about-copy p { color: var(--ink-soft); font-size: 16px; margin-bottom: 18px; }
.about-copy .btn { margin-top: 10px; }

.about-visual { display: flex; justify-content: center; }
.about-card {
  position: relative;
  width: min(100%, 380px);
  background: var(--green-grad);
  color: #ffe9c9;
  border-radius: 24px;
  border: 2px solid rgba(240, 200, 95, 0.55);
  padding: 40px 34px;
  box-shadow: var(--shadow-lg);
}
.about-card::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px dashed rgba(240, 200, 95, 0.5);
  border-radius: 16px;
  pointer-events: none;
}
.about-medallion {
  display: inline-grid;
  place-items: center;
  width: 72px; height: 72px;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--green-deep);
  background: var(--gold-grad);
  border-radius: 50%;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.about-card h3 { color: var(--gold-pale); font-size: 22px; margin-bottom: 16px; position: relative; z-index: 1; }
.about-card ul { display: grid; gap: 12px; position: relative; z-index: 1; }
.about-card li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: #ffe9c9;
}
.about-card li::before { content: "🪷"; flex: none; }

/* ---------- Why ---------- */
.why { background: var(--cream-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: #fff;
  border: 1px solid rgba(169, 104, 63, 0.25);
  border-radius: 18px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-num {
  position: absolute;
  right: 14px;
  top: 6px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(212, 160, 23, 0.18);
  line-height: 1;
}
.why-card h3 { font-size: 20px; margin-bottom: 8px; position: relative; }
.why-card h3::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--gold-grad);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: 1px;
}
.why-card p { font-size: 14.5px; color: var(--ink-soft); position: relative; }

/* ---------- Order flow ---------- */
.order {
  background:
    radial-gradient(900px 460px at 50% 0%, rgba(240, 200, 95, 0.16), transparent 60%),
    linear-gradient(160deg, var(--green-deep) 0%, var(--green) 100%);
  color: #fff;
}
.order .section-kicker { border-color: var(--gold-light); }
.order .section-head h2 { color: #fff; }
.order .section-lead { color: #ffe9c9; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}
.step {
  text-align: center;
  background: rgba(255, 246, 230, 0.06);
  border: 1px solid rgba(240, 200, 95, 0.35);
  border-radius: 18px;
  padding: 32px 24px;
  position: relative;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--green-deep);
  background: var(--gold-grad);
  box-shadow: 0 10px 22px rgba(8, 22, 14, 0.35);
  margin-bottom: 16px;
}
.step h3 { color: var(--gold-pale); font-size: 20px; margin-bottom: 8px; }
.step p { color: #ffe9c9; font-size: 14.5px; }
.order .container { text-align: center; }
.order-cta { display: inline-flex; margin: 0 auto; }

/* ---------- Trust & Contact ---------- */
.trust { background: var(--cream); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.trust-item {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trust-icon { display: block; font-size: 30px; margin-bottom: 12px; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 19px; color: #331f10; margin-bottom: 4px; }
.trust-item small { color: var(--ink-soft); font-size: 13.5px; }

.contact-card {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  background: var(--green-grad);
  color: #ffe9c9;
  border-radius: 28px;
  border: 2px solid rgba(240, 200, 95, 0.55);
  padding: 52px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px dashed rgba(240, 200, 95, 0.45);
  border-radius: 20px;
  pointer-events: none;
}
.contact-official { font-size: 34px; display: block; margin-bottom: 12px; }
.contact-card h3 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 10px; }
.contact-card p { color: #ffe9c9; margin-bottom: 22px; position: relative; z-index: 1; }
.contact-phone { font-size: 18px; margin-bottom: 0 !important; color: var(--gold-light) !important; }
.contact-phone strong { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.04em; }
.contact-card .btn { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(160deg, #0e231a, #143325);
  color: #e8d3b3;
  padding-top: 64px;
  border-top: 4px solid var(--gold-grad);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
}
.footer-brand h3 { color: #fff; margin: 8px 0 6px; }
.footer-brand p { font-size: 14.5px; color: #d9bf9a; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  color: var(--gold-light);
  font-size: 14px;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #e8d3b3; font-size: 15px; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 15.5px; margin-bottom: 16px; }
.footer-contact strong { color: #fff; font-size: 17px; }
.footer-bottom {
  border-top: 1px solid rgba(240, 200, 95, 0.22);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 14px; color: #c9ad85; }
.footer-tip { margin-top: 4px; font-size: 12.5px !important; opacity: 0.85; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--wa-grad);
  color: #fff;
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 0 13px 13px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(30, 189, 94, 0.45);
  transition: all 0.3s ease;
}
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }
.wa-float-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.35s ease, padding 0.35s ease;
}
.wa-float:hover .wa-float-label { max-width: 130px; padding: 0 18px 0 8px; }
.wa-float:hover { transform: translateY(-3px); }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.7);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }

.product-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.product-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.product-grid .reveal:nth-child(3) { transition-delay: 0.19s; }
.product-grid .reveal:nth-child(4) { transition-delay: 0.26s; }
.product-grid .reveal:nth-child(5) { transition-delay: 0.33s; }
.product-grid .reveal:nth-child(6) { transition-delay: 0.4s; }
.product-grid .reveal:nth-child(7) { transition-delay: 0.47s; }
.product-grid .reveal:nth-child(8) { transition-delay: 0.54s; }
.product-grid .reveal:nth-child(9) { transition-delay: 0.61s; }
.product-grid .reveal:nth-child(10) { transition-delay: 0.68s; }

/* ---------- Filter animation ---------- */
.product-card.hidden { display: none; }
.product-card.entering {
  animation: cardIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { gap: 36px; }
  .order-cta { margin-inline: auto; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-cta, .hero-badges { justify-content: center; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto; width: 100%; }
  .hero-stamp { right: 6px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 248, 234, 0.98);
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
    padding: 18px 24px 26px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    align-items: stretch;
    z-index: 110;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-links { flex-direction: column; gap: 4px; margin-bottom: 18px; }
  .nav-links a {
    display: block;
    padding: 12px 6px;
    font-size: 17px;
    border-bottom: 1px solid rgba(169, 104, 63, 0.18);
  }
  .nav-links a::after { display: none; }
  .header-wa { justify-content: center; }

  .section { padding: 64px 0; }
  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 68px; }
  .hero-diya { display: none; }
  .hero-frame { max-width: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .wa-float { right: 16px; bottom: 16px; }
  .wa-float .wa-float-label { max-width: 130px; padding: 0 18px 0 8px; }
  .offer-points { grid-template-columns: 1fr; }
  .contact-card { padding: 40px 22px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
}

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