/* ============================================================
   FESTIVE COLLECTION — Premium Indian Festive Website
   Palette: deep navy/charcoal, gold, warm cream, red/orange, white
   ============================================================ */

:root {
  --bg: #0a0d18;
  --bg-2: #0f1424;
  --surface: #151b2e;
  --surface-2: #1b2340;
  --line: rgba(212, 175, 55, 0.18);
  --gold: #d4af37;
  --gold-light: #f0d58c;
  --gold-deep: #a87e1f;
  --cream: #f5eee0;
  --cream-dim: #cfc6b1;
  --accent: #ff5a2e;
  --accent-deep: #e0442e;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------- Reset ---------------- */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

section { position: relative; }
section[id] { scroll-margin-top: 84px; }

/* ---------------- Reveal animation ---------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal].reveal-left { transform: translateX(-32px); }
[data-reveal].reveal-right { transform: translateX(32px); }
[data-reveal].reveal-left.is-visible,
[data-reveal].reveal-right.is-visible { transform: none; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  color: #241a02;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.28);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(212, 175, 55, 0.42);
}

.btn-ghost {
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.55);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-light);
  transform: translateY(-3px);
}

.btn-lg { padding: 1rem 2.2rem; font-size: 0.85rem; }
.btn-xl { padding: 1.1rem 2.6rem; font-size: 0.9rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.68rem; }

.btn-whatsapp {
  font-size: 1.05rem;
  padding: 1.15rem 2.4rem;
  letter-spacing: 0.08em;
}
.wa-icon { flex-shrink: 0; }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 1.1rem 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(10, 13, 24, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.4);
  padding: 0.7rem 0;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}
.brand .brand-mark {
  font-size: 1.5rem;
  color: var(--gold);
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.6);
}
.brand-text { font-size: 1.05rem; line-height: 1; display: flex; flex-direction: column; }
.brand-text em { font-style: normal; font-size: 0.55rem; letter-spacing: 0.42em; color: var(--gold-light); }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--cream);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }

.btn-nav { padding: 0.6rem 1.2rem; font-size: 0.68rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  z-index: 220;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 18% -10%, rgba(212, 175, 55, 0.13), transparent 60%),
    radial-gradient(900px 600px at 88% 12%, rgba(255, 90, 46, 0.1), transparent 55%),
    radial-gradient(1200px 800px at 50% 120%, rgba(212, 175, 55, 0.08), transparent 60%),
    linear-gradient(180deg, #0d1322, #0a0d18);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  width: 640px; height: 640px;
  left: 50%; top: 38%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 65%);
  animation: glowPulse 7s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.16) 1px, transparent 1.6px),
    radial-gradient(circle at 12% 22%, rgba(255, 90, 46, 0.14) 1.5px, transparent 3px),
    radial-gradient(circle at 88% 70%, rgba(240, 213, 140, 0.12) 1.5px, transparent 3px);
  background-position: 0 0, 140px 90px, 60px 210px;
  background-size: 26px 26px, 150px 150px, 130px 130px;
  mask-image: radial-gradient(ellipse at 50% 35%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 35%, #000 20%, transparent 78%);
}

.hero-lamp {
  position: absolute;
  left: 9%; bottom: 6%;
  width: 120px; height: 160px;
  opacity: 0.8;
  background-image:
    radial-gradient(circle at 50% 12%, rgba(255, 90, 46, 0.5), transparent 42%),
    radial-gradient(ellipse 44px 60px at 50% 74%, transparent 52%, rgba(212, 175, 55, 0.65) 54%, rgba(212, 175, 55, 0.65) 64%, transparent 66%),
    linear-gradient(180deg, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.2));
  border-radius: 50% 50% 0 0 / 62% 62% 0 0;
  animation: floaty 6s var(--ease) infinite;
}

.stars { position: absolute; inset: 0; }
.stars::before,
.stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(240, 213, 140, 0.9), transparent),
    radial-gradient(1.6px 1.6px at 40% 70%, rgba(240, 213, 140, 0.6), transparent),
    radial-gradient(1.4px 1.4px at 60% 20%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(2px 2px at 80% 55%, rgba(240, 213, 140, 0.75), transparent),
    radial-gradient(1.5px 1.5px at 10% 65%, rgba(255, 255, 255, 0.5), transparent);
  background-size: 540px 540px;
}
.stars::after { background-size: 780px 780px; animation: twinkle 5s ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

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

.particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  bottom: -12px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), rgba(212, 175, 55, 0.1));
  opacity: 0;
  animation: rise linear infinite;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.55);
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0) scale(0.6); opacity: 0; }
  12% { opacity: 0.9; }
  100% { transform: translateY(-108vh) translateX(var(--drift, 30px)) scale(1.15); opacity: 0; }
}

.hero-inner { max-width: 900px; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.7rem, 6.4vw, 5.2rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: var(--white);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  max-width: 620px;
  margin: 1.6rem auto 2.4rem;
  color: var(--cream-dim);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  font-weight: 300;
}

.hero-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  margin-top: 4.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.hero-scroll::before {
  content: "SCROLL";
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: rgba(207, 198, 177, 0.6);
  margin-bottom: 6px;
}
.scroll-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollDot 2.2s ease-in-out infinite;
}
.scroll-dot:nth-child(2) { animation-delay: 0.25s; }
.scroll-dot:nth-child(3) { animation-delay: 0.5s; }
@keyframes scrollDot {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

/* ---------------- Shared section styles ---------------- */
.section { padding: 6.5rem 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.2rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.kicker-line {
  width: 42px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.kicker .kicker-line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: 0.01em;
}

.section-sub {
  margin-top: 1.1rem;
  color: var(--cream-dim);
  font-size: 0.98rem;
  font-weight: 300;
}

.grad-text {
  background: linear-gradient(120deg, var(--gold-light) 10%, var(--gold) 45%, var(--accent) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------------- Filter bar ---------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--cream-dim);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
}
.filter-btn:hover {
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.filter-btn.is-active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  border-color: transparent;
  color: #241a02;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.32);
}

/* ---------------- Product grid & cards ---------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-grid.is-reflowing .product-card { animation: cardIn 0.5s var(--ease) both; }
.product-grid.is-reflowing .product-card:nth-child(2) { animation-delay: 0.04s; }
.product-grid.is-reflowing .product-card:nth-child(3) { animation-delay: 0.08s; }
.product-grid.is-reflowing .product-card:nth-child(4) { animation-delay: 0.12s; }
.product-grid.is-reflowing .product-card:nth-child(5) { animation-delay: 0.16s; }
.product-grid.is-reflowing .product-card:nth-child(6) { animation-delay: 0.2s; }
.product-grid.is-reflowing .product-card:nth-child(7) { animation-delay: 0.24s; }
.product-grid.is-reflowing .product-card:nth-child(8) { animation-delay: 0.28s; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

.product-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #10162a;
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .card-media img { transform: scale(1.08); }

.card-tag {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  z-index: 2;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: rgba(10, 13, 24, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-id { font-size: 0.64rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; }
.card-title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.35rem 0 0.4rem;
  line-height: 1.3;
}
.card-desc {
  font-size: 0.82rem;
  color: var(--cream-dim);
  font-weight: 300;
  flex: 1;
  margin-bottom: 0.9rem;
}

.card-info {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.card-info::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255, 90, 46, 0.9);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
}

.card-actions { display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }

.card-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
}
.card-details:hover {
  border-color: rgba(240, 213, 140, 0.6);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.card-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: #241a02;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.34);
}

.card-cta svg { flex-shrink: 0; }

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3.5rem 1rem;
  color: var(--cream-dim);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* ---------------- Featured ---------------- */
.featured { background: linear-gradient(180deg, var(--bg), var(--bg-2), var(--bg)); }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.8rem;
}

.feat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.feat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
}
.feat-card .card-media { aspect-ratio: 4 / 3; }
.feat-card:hover .card-media img { transform: scale(1.1); }

.feat-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(9, 12, 22, 0.95) 6%, rgba(9, 12, 22, 0.35) 46%, transparent 70%);
}
.feat-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241a02;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.feat-title { font-family: var(--font-head); font-size: 1.28rem; font-weight: 700; color: var(--white); }
.feat-meta { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.6rem; margin-top: 0.8rem; }
.feat-id { font-size: 0.66rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; }
.feat-btn { padding: 0.55rem 1rem; font-size: 0.64rem; }

.center { text-align: center; }

/* ---------------- Banner ---------------- */
.banner {
  padding: 5.5rem 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(800px 420px at 50% 0%, rgba(255, 90, 46, 0.14), transparent 60%),
    radial-gradient(760px 460px at 12% 120%, rgba(212, 175, 55, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-2), #12172b);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.banner-glow {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(212, 175, 55, 0.07) 1.5px, transparent 2.5px);
  background-size: 32px 32px;
  opacity: 0.6;
}
.banner-inner { position: relative; max-width: 760px; }
.banner-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.banner-text { color: var(--cream-dim); font-size: 1rem; margin-bottom: 2rem; }

/* ---------------- Why choose us ---------------- */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--gold-light);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.04));
  border: 1px solid var(--line);
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.15);
}
.feature-card h3 { font-family: var(--font-head); font-size: 1.08rem; color: var(--white); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.86rem; color: var(--cream-dim); font-weight: 300; }

/* ---------------- Steps ---------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 940px;
  margin: 0 auto;
}
.step {
  position: relative;
  text-align: center;
  padding: 2.4rem 1.6rem 2rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, 0.4); }
.step-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.75);
  line-height: 1;
  display: block;
  margin-bottom: 1.1rem;
}
.step h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--white); margin-bottom: 0.5rem; }
.step p { font-size: 0.87rem; color: var(--cream-dim); font-weight: 300; }
.steps-note {
  text-align: center;
  margin-top: 2.2rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ---------------- About ---------------- */
.about {
  background:
    radial-gradient(700px 400px at 82% 10%, rgba(212, 175, 55, 0.1), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.about-card {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  padding: 3.4rem 2.4rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(255, 90, 46, 0.12), transparent 34%),
    radial-gradient(circle at 85% 78%, rgba(212, 175, 55, 0.14), transparent 40%);
  pointer-events: none;
}
.about-card > * { position: relative; }
.about-text {
  max-width: 660px;
  margin: 1.2rem auto 2rem;
  color: var(--cream-dim);
  font-size: 1rem;
  font-weight: 300;
}

/* ---------------- Contact ---------------- */
.contact {
  text-align: center;
  background:
    radial-gradient(620px 380px at 50% 0%, rgba(212, 175, 55, 0.08), transparent 62%);
}
.contact-action { margin-top: 1.5rem; }
.contact-note { margin-top: 1.3rem; color: var(--cream-dim); font-size: 0.86rem; }

/* ---------------- Footer ---------------- */
.footer {
  background: #070a13;
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.footer-brand p { margin-top: 1.1rem; color: var(--cream-dim); font-size: 0.88rem; font-weight: 300; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-head);
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.08em;
}
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
.footer-links a, .footer-contact a {
  color: var(--cream-dim);
  font-size: 0.86rem;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-links a:hover, .footer-contact > a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer-contact .btn { margin-top: 0.6rem; transform: none; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
  color: rgba(207, 198, 177, 0.6);
  font-size: 0.78rem;
}

/* ---------------- Product details modal ---------------- */
body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.modal.is-open { opacity: 1; visibility: visible; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 14, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(920px, 100%);
  max-height: 92vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 22px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.45s var(--ease);
}
.modal.is-open .modal-card { transform: none; }

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(10, 13, 24, 0.85);
  color: var(--gold-light);
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.modal-close:hover {
  background: var(--gold);
  color: #241a02;
  transform: rotate(90deg);
}

.modal-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #10162a;
}
.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(10, 13, 24, 0.8);
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.modal-body {
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
}
.modal-id { font-size: 0.68rem; letter-spacing: 0.24em; color: var(--gold); text-transform: uppercase; }
.modal-title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin: 0.5rem 0 0.7rem;
  line-height: 1.25;
}
.modal-desc { color: var(--cream-dim); font-size: 0.92rem; font-weight: 300; margin-bottom: 1.4rem; }

.modal-subhead {
  font-family: var(--font-head);
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.modal-details {
  list-style: none;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.modal-details li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 300;
}
.modal-details li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.modal-status { align-self: flex-start; }
.modal-cta { align-self: flex-start; margin-top: 1.2rem; }

@media (max-width: 760px) {
  .modal-card { grid-template-columns: 1fr; max-height: 90vh; }
  .modal-media { min-height: 260px; max-height: 36vh; }
  .modal-media img { object-fit: cover; }
  .modal-body { padding: 1.6rem 1.4rem; }
  .modal-title { font-size: 1.35rem; }
}

/* ---------------- Floating WhatsApp ---------------- */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 300;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #4bd07d, #1faa55);
  box-shadow: 0 14px 34px rgba(31, 170, 85, 0.42);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 20px 44px rgba(31, 170, 85, 0.55); }
.wa-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(75, 208, 125, 0.5);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    background: rgba(8, 11, 20, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 210;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-link { font-size: 1.05rem; letter-spacing: 0.18em; }
  .btn-nav { margin-top: 0.4rem; }
  .section { padding: 5rem 0; }
  .hero-lamp { display: none; }
}

@media (max-width: 700px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .featured-grid { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr; gap: 1.1rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .section { padding: 4.2rem 0; }
  .hero { padding-top: 7rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: min(320px, 100%); }
  .btn-whatsapp { font-size: 0.92rem; padding: 1rem 1.6rem; }
  .card-body { padding: 1rem; }
  .card-title { font-size: 0.98rem; }
  .card-desc { font-size: 0.76rem; }
  .card-cta { font-size: 0.64rem; letter-spacing: 0.08em; padding: 0.68rem 0.7rem; }
  .card-tag { font-size: 0.55rem; }
  .brand-text em { letter-spacing: 0.28em; }
}

@media (max-width: 480px) {
  .product-grid { gap: 0.8rem; }
  .card-id { font-size: 0.58rem; letter-spacing: 0.16em; }
  .card-info { font-size: 0.62rem; }
  .card-desc { font-size: 0.72rem; }
  .card-body { padding: 0.85rem; }
  .card-info { margin-bottom: 0.8rem; }
  .card-cta { padding: 0.62rem 0.5rem; }
  .wa-float { right: 1rem; bottom: 1rem; width: 52px; height: 52px; }
}

@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;
  }
  [data-reveal] { opacity: 1; transform: none; }
}