/* ==========================================================
   Shamruth Crackers — redesign
   Theme: festive night sky · gold · crimson
   ========================================================== */
:root {
  --night: #080c1c;
  --night-2: #0f1530;
  --plum: #162042;
  --plum-2: #223060;
  --gold: #d9b26f;
  --gold-2: #f1dcae;
  --flame: #c98a7a;
  --crimson: #b8646f;
  --ink: #ffffff;
  --muted: #b9c0d4;
  --card: rgba(255,255,255, 0.06);
  --card-line: rgba(255,255,255, 0.12);
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0,0,0, 0.45);
  --grad-gold: linear-gradient(135deg, #f7e7c4 0%, #d9b26f 45%, #a8803f 100%);
  --grad-fire: linear-gradient(135deg, #c98a7a 0%, #b8646f 60%, #3d2461 100%);
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", system-ui, -apple-system, Segoe UI, sans-serif;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--night);
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(34,48,96, 0.55), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(184,100,111, 0.18), transparent 60%);
  background-attachment: fixed;
  line-height: 1.7;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.container { width: min(1200px, 100% - 32px); margin-inline: auto; }

/* starfield canvas behind everything */
#sky {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
}

/* ---------- Offer marquee ---------- */
.offer-bar {
  background: var(--grad-fire);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 60;
}
.offer-track {
  display: inline-flex; gap: 60px; padding: 8px 0;
  animation: marquee 28s linear infinite;
}
.offer-track span::before { content: "✦ "; color: var(--gold-2); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Top info bar ---------- */
.topbar {
  background: rgba(0,0,0, 0.35);
  border-bottom: 1px solid var(--card-line);
  font-size: 13px; color: var(--muted);
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; padding: 8px 0; flex-wrap: wrap;
}
.topbar a:hover { color: var(--gold); }
.topbar .tb-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,12,28, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-line);
  transition: box-shadow .3s, background .3s;
}
.nav.scrolled { background: rgba(8,12,28, 0.94); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; filter: drop-shadow(0 0 12px rgba(217,178,111, .35)); }
.brand-text { font-family: var(--font-head); font-weight: 800; font-size: 20px; line-height: 1.1; }
.brand-text small { display: block; font-family: var(--font-body); font-size: 11px; letter-spacing: 3px; color: var(--gold); font-weight: 600; }
.nav-links { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-links a {
  display: block; padding: 8px 14px; border-radius: 999px;
  font-size: 15px; font-weight: 500; color: var(--muted);
  position: relative; transition: color .25s, background .25s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-links a.active { color: var(--night); background: var(--grad-gold); font-weight: 700; }
.nav-cta { margin-left: 8px; }
.burger {
  display: none; background: none; border: 1px solid var(--card-line);
  color: #fff; width: 44px; height: 44px; border-radius: 12px; font-size: 20px;
}

@media (max-width: 960px) {
  .burger { display: grid; place-items: center; }
  .nav-links {
    position: fixed; inset: calc(var(--nav-h)) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(8,12,28, 0.98); padding: 16px;
    border-bottom: 1px solid var(--card-line);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform .35s ease, opacity .35s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 16px; border-radius: 12px; }
  .nav-cta { margin: 6px 0 0; }
  .brand-text { font-size: 17px; }
  .brand img { height: 42px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px; border: 0;
  font-weight: 700; font-size: 15px; letter-spacing: .3px;
  transition: transform .25s, box-shadow .25s, filter .25s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-gold { background: var(--grad-gold); color: #1a1407; box-shadow: 0 10px 30px rgba(217,178,111, .35); }
.btn-gold:hover { box-shadow: 0 16px 40px rgba(217,178,111, .5); }
.btn-fire { background: var(--grad-fire); color: #fff; box-shadow: 0 10px 30px rgba(184,100,111, .4); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); transition: left .6s;
}
.btn:hover::after { left: 140%; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: 90px 0 80px; text-align: center;
  background:
    radial-gradient(600px 300px at 50% 120%, rgba(217,178,111, .25), transparent 70%),
    linear-gradient(180deg, rgba(22,32,66, .7), rgba(8,12,28, 0));
}
.page-hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(36px, 6vw, 64px); margin: 0 0 8px;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 40px rgba(217,178,111, .15);
}
.crumbs { color: var(--muted); font-size: 14px; }
.crumbs a { color: var(--gold); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 90px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
.title {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15; margin: 0 0 18px;
}
.title .hl { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--muted); font-size: 17px; max-width: 720px; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); align-items: center; gap: 56px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
}
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .35s, border-color .35s, box-shadow .35s, background .35s;
  position: relative; overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(217,178,111, .45);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(217,178,111,.15) inset;
  background: rgba(255,255,255,.09);
}
.card .ico {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-fire); font-size: 26px; margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(184,100,111,.35);
  transition: transform .5s;
}
.card:hover .ico { transform: rotate(-8deg) scale(1.08); }
.card h3 { margin: 0 0 6px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Home hero ---------- */
.hero {
  min-height: calc(100vh - var(--nav-h) - 70px);
  display: grid; align-items: center; overflow: hidden;
  padding: 60px 0;
}
.hero canvas.fw { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--font-head); font-size: clamp(40px, 7vw, 82px); line-height: 1.02; margin: 0 0 20px;
}
.hero h1 .hl { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; }
.hero p { font-size: 18px; color: var(--muted); max-width: 560px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-badges div strong { display: block; font-size: 30px; font-family: var(--font-head); color: var(--gold); }
.hero-badges div span { font-size: 13px; color: var(--muted); letter-spacing: 1px; }
.hero-art { position: relative; display: grid; place-items: center; }
.hero-art .ring {
  position: absolute; width: 110%; aspect-ratio: 1; border-radius: 50%;
  border: 1px dashed rgba(217,178,111, .35); animation: spin 40s linear infinite;
}
.hero-art .ring.r2 { width: 85%; border-style: solid; border-color: rgba(184,100,111,.35); animation-duration: 25s; animation-direction: reverse; }
.hero-art .glow {
  position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,178,111,.45), rgba(184,100,111,.2) 50%, transparent 70%);
  filter: blur(20px); animation: pulse 4s ease-in-out infinite;
}
.hero-art img { position: relative; width: 100%; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 25px 40px rgba(0,0,0,.6)); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { transform: scale(1.12); opacity: .7; } }
@keyframes float { 50% { transform: translateY(-18px); } }

.word-rotate { display: inline-block; min-width: 4ch; color: var(--gold); border-right: 3px solid var(--gold); padding-right: 4px; animation: caret 1s step-end infinite; }
@keyframes caret { 50% { border-color: transparent; } }

/* ---------- Product ribbon ---------- */
.ribbon {
  background: var(--grad-gold); color: #1a1407; overflow: hidden; transform: rotate(-1.5deg);
  margin: 20px -20px; box-shadow: 0 10px 40px rgba(217,178,111,.25);
}
.ribbon .offer-track { animation-duration: 35s; padding: 16px 0; font-family: var(--font-head); font-weight: 800; font-size: 20px; }
.ribbon .offer-track span::before { content: "✺ "; color: var(--crimson); }

/* ---------- About / media ---------- */
.media-frame { position: relative; border-radius: 26px; }
.media-frame img { border-radius: 26px; box-shadow: var(--shadow); width: 100%; }
.media-frame::before {
  content: ""; position: absolute; inset: -14px 14px 14px -14px; border-radius: 26px;
  border: 2px solid var(--gold); z-index: -1;
}
.media-frame .stamp {
  position: absolute; right: -18px; bottom: -18px; width: 130px; height: 130px; border-radius: 50%;
  background: var(--grad-fire); display: grid; place-items: center; text-align: center;
  font-weight: 800; font-size: 13px; line-height: 1.2; box-shadow: var(--shadow);
  animation: spin 18s linear infinite;
}
.media-frame .stamp b { display: block; font-size: 30px; font-family: var(--font-head); color: var(--gold-2); }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; }
.pill-list li {
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(217,178,111, .1); border: 1px solid rgba(217,178,111, .35); color: var(--gold-2);
  transition: transform .25s, background .25s;
}
.pill-list li:hover { transform: translateY(-3px); background: rgba(217,178,111,.22); }

/* vision / mission */
.vmv .card { text-align: center; padding: 38px 28px; }
.vmv .card .ico { margin-inline: auto; width: 72px; height: 72px; border-radius: 50%; font-size: 30px; }
.vmv .card:nth-child(2) .ico { background: var(--grad-gold); box-shadow: 0 10px 25px rgba(217,178,111,.35); }

/* legal notice */
.notice {
  border-radius: 24px; padding: 36px; display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center;
  background: linear-gradient(135deg, rgba(184,100,111,.22), rgba(22,32,66,.45));
  border: 1px solid rgba(184,100,111,.45);
}
.notice .big { font-size: 54px; animation: wiggle 3s ease-in-out infinite; }
.notice h3 { margin: 0 0 6px; font-family: var(--font-head); color: var(--gold); }
.notice p { margin: 0; color: #dde2ee; }
@keyframes wiggle { 0%, 100% { transform: rotate(0); } 10% { transform: rotate(-12deg); } 20% { transform: rotate(10deg); } 30% { transform: rotate(0); } }
@media (max-width: 640px) { .notice { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; } }

/* CTA band */
.cta-band {
  border-radius: 28px; padding: 56px 40px; text-align: center; overflow: hidden; position: relative;
  background: var(--grad-fire);
  box-shadow: 0 30px 60px rgba(184,100,111,.35);
}
.cta-band canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-band > * { position: relative; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(26px, 4vw, 42px); margin: 0 0 10px; }
.cta-band p { margin: 0 auto 26px; max-width: 640px; color: #f3e6ea; }

/* ---------- Brands ---------- */
.brands { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.brands .card { padding: 18px; background: #fff; width: 250px; height: 150px; display: grid; place-items: center; }
.brands .card img { max-height: 110px; max-width: 100%; object-fit: contain; }

/* ---------- Video gallery ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 960px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr; } }
.vcard {
  border-radius: 22px; overflow: hidden; position: relative; cursor: pointer;
  background: #000; border: 1px solid var(--card-line); aspect-ratio: 9 / 12;
  transition: transform .4s, box-shadow .4s, border-color .4s;
}
.vcard:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 25px 50px rgba(0,0,0,.5); border-color: var(--gold); }
.vcard video { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .4s, transform .6s; }
.vcard:hover video { opacity: 1; transform: scale(1.05); }
.vcard .v-over {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  background: linear-gradient(180deg, transparent 45%, rgba(8,12,28,.92));
}
.vcard .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-gold); color: #1a1407; font-size: 26px; padding-left: 5px;
  box-shadow: 0 0 0 0 rgba(217,178,111,.6); animation: ping 2s infinite;
}
@keyframes ping { 70% { box-shadow: 0 0 0 22px rgba(217,178,111,0); } 100% { box-shadow: 0 0 0 0 rgba(217,178,111,0); } }
.vcard h3 { margin: 0; font-size: 20px; }
.vcard span { color: var(--gold); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(3,5,14, .92);
  display: grid; place-items: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox video { max-height: 86vh; max-width: min(900px, 100%); border-radius: 18px; box-shadow: var(--shadow); transform: scale(.9); transition: transform .35s; }
.lightbox.open video { transform: scale(1); }
.lightbox .close {
  position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid var(--card-line); color: #fff; font-size: 22px;
}

/* ---------- Safety tips ---------- */
.safety-hero-card {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  padding: 44px; border-radius: 28px;
  background: linear-gradient(135deg, rgba(217,178,111,.14), rgba(184,100,111,.14));
  border: 1px solid rgba(217,178,111,.3);
}
@media (max-width: 860px) { .safety-hero-card { grid-template-columns: 1fr; padding: 30px 22px; } }
.shield {
  width: min(280px, 70vw); aspect-ratio: 1; margin: auto; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle, rgba(217,178,111,.3), transparent 65%); position: relative; font-size: 120px;
}
.shield::before, .shield::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(217,178,111,.4);
  animation: ripple 3s ease-out infinite;
}
.shield::after { animation-delay: 1.5s; }
@keyframes ripple { from { transform: scale(.6); opacity: 1; } to { transform: scale(1.3); opacity: 0; } }
.tip {
  display: flex; gap: 18px; align-items: flex-start;
}
.tip .num {
  flex: none; font-family: var(--font-head); font-size: 44px; font-weight: 800; line-height: 1;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  min-width: 60px;
}
.tip .tip-ico { font-size: 30px; margin-bottom: 8px; display: inline-block; transition: transform .4s; }
.card:hover .tip-ico { transform: scale(1.25) rotate(8deg); }
.remember {
  margin-top: 40px; padding: 26px 30px; border-radius: 20px; display: flex; gap: 18px; align-items: center;
  background: rgba(184,100,111,.16); border: 1px dashed rgba(184,100,111,.6);
}
.remember .big { font-size: 40px; animation: wiggle 2.5s infinite; }
.remember b { color: var(--gold); }

/* ---------- Contact ---------- */
.contact-card { display: flex; gap: 18px; align-items: flex-start; }
.contact-card .ico { flex: none; margin: 0; }
.contact-card a:hover { color: var(--gold); }
.contact-card small { color: var(--gold); font-weight: 700; letter-spacing: 2px; font-size: 12px; text-transform: uppercase; display: block; }
.form-card { padding: 36px; }
.field { margin-bottom: 18px; position: relative; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--muted); letter-spacing: .5px; }
.field label .req { color: var(--flame); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px;
  background: rgba(0,0,0,.3); border: 1.5px solid var(--card-line); color: #fff;
  font: inherit; font-size: 15px; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field select option { background: var(--night-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(0,0,0,.45);
  box-shadow: 0 0 0 4px rgba(217,178,111,.15);
}
.field.error input, .field.error select { border-color: var(--crimson); animation: shake .4s; }
.field .field-msg { display: none; margin-top: 6px; font-size: 12.5px; font-weight: 600; color: #e0525f; }
.field.error .field-msg { display: block; }
.field .hint { display: block; margin-top: 5px; font-size: 12px; color: var(--muted); }
.field.error .hint { display: none; }
.field.error textarea { border-color: var(--crimson); animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } .form-card { padding: 24px 18px; } }
.map-wrap { border-radius: 22px; overflow: hidden; border: 1px solid var(--card-line); margin-top: 40px; filter: saturate(.9); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Estimate ---------- */
.est-tools {
  position: sticky; top: var(--nav-h); z-index: 30;
  background: rgba(8,12,28, 0.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-line); padding: 14px 0;
}
.est-tools .container { display: flex; gap: 14px; align-items: center; }
.search {
  flex: 1; position: relative;
}
.search input {
  width: 100%; padding: 13px 18px 13px 46px; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1.5px solid var(--card-line); color: #fff; font: inherit;
  transition: border-color .25s, box-shadow .25s;
}
.search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(217,178,111,.15); }
.search::before { content: "🔍"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 16px; }
.cat-chips { display: flex; gap: 8px; overflow-x: auto; padding: 12px 0 2px; scrollbar-width: none; }
.cat-chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; padding: 7px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  background: rgba(255,255,255,.06); border: 1px solid var(--card-line); color: var(--muted);
  transition: all .25s; white-space: nowrap;
}
.chip:hover, .chip.active { background: var(--grad-gold); color: #1a1407; border-color: transparent; }

.est-note {
  margin: 26px 0 10px; padding: 16px 20px; border-radius: 16px; font-size: 14px;
  background: rgba(217,178,111,.08); border: 1px solid rgba(217,178,111,.3); color: #efe0bd;
  display: flex; gap: 12px; align-items: center;
}
.cat-block { margin: 36px 0; scroll-margin-top: calc(var(--nav-h) + 130px); }
.cat-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.cat-head h2 {
  margin: 0; font-family: var(--font-head); font-size: 24px;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cat-head .line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(217,178,111,.5), transparent); }
.cat-head .count { font-size: 12px; color: var(--muted); padding: 4px 10px; border: 1px solid var(--card-line); border-radius: 999px; }
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.prod {
  background: var(--card); border: 1px solid var(--card-line); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
}
.prod:hover { transform: translateY(-6px); border-color: rgba(217,178,111,.4); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.prod.in-cart { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset, 0 0 30px rgba(217,178,111,.15); }
.prod .pimg {
  aspect-ratio: 4 / 3; background: #fff; display: grid; place-items: center; overflow: hidden; cursor: zoom-in; position: relative;
}
.prod .pimg img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s; }
.prod:hover .pimg img { transform: scale(1.08); }
.prod .off {
  position: absolute; top: 10px; left: 10px; background: var(--grad-fire); color: #fff; font-size: 12px; font-weight: 800;
  padding: 4px 10px; border-radius: 999px; box-shadow: 0 6px 16px rgba(184,100,111,.4);
}
.prod .pbody { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod h3 { margin: 0; font-size: 15px; line-height: 1.35; font-weight: 600; }
.prod .content { font-size: 12px; color: var(--muted); }
.prod .prices { display: flex; align-items: baseline; gap: 10px; margin-top: auto; }
.prod .mrp { color: #7d86a0; text-decoration: line-through; font-size: 13px; }
.prod .price { color: var(--gold); font-weight: 800; font-size: 20px; }
.prod .row-total { font-size: 12px; color: var(--gold-2); min-height: 18px; }
.qty { display: flex; align-items: center; gap: 0; border-radius: 999px; overflow: hidden; border: 1.5px solid var(--card-line); background: rgba(0,0,0,.3); margin-top: 8px; }
.qty button {
  width: 42px; height: 40px; border: 0; background: transparent; color: #fff; font-size: 20px; font-weight: 700;
  transition: background .2s, color .2s;
}
.qty button:hover { background: var(--gold); color: #1a1407; }
.qty input {
  flex: 1; min-width: 0; height: 40px; border: 0; background: transparent; color: #fff; text-align: center;
  font: inherit; font-weight: 700; font-size: 16px; -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty input:focus { outline: none; }
.empty-search { text-align: center; padding: 60px 0; color: var(--muted); display: none; }

.cart-bar {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 80;
  width: min(900px, calc(100% - 24px));
  display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 10px;
  padding: 10px 10px 10px 24px; border-radius: 22px;
  background: rgba(14,20,42, .95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(217,178,111,.35); box-shadow: 0 20px 50px rgba(0,0,0,.6);
}
.cart-bar .stat small { display: block; font-size: 11px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }
.cart-bar .stat b { font-size: 22px; font-family: var(--font-head); }
.cart-bar .stat.amt b { color: var(--gold); }
.cart-bar .bump { animation: bump .4s; }
@keyframes bump { 50% { transform: scale(1.25); } }
.cart-bar .btn .badge {
  background: #1a1407; color: var(--gold); border-radius: 999px; font-size: 12px; padding: 2px 8px;
}
@media (max-width: 560px) {
  .cart-bar { grid-template-columns: 1fr 1fr; padding: 10px 14px; bottom: 10px; }
  .cart-bar .btn { grid-column: 1 / -1; }
  .cart-bar .stat b { font-size: 18px; }
}
body.has-cart-bar { padding-bottom: 120px; }

/* drawer / checkout */
.drawer-back { position: fixed; inset: 0; background: rgba(3,5,14,.7); z-index: 150; opacity: 0; pointer-events: none; transition: opacity .3s; }
.drawer-back.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(560px, 100%); z-index: 160;
  background: var(--night-2); border-left: 1px solid var(--card-line); box-shadow: var(--shadow);
  transform: translateX(105%); transition: transform .45s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--card-line); }
.drawer-head h2 { margin: 0; font-family: var(--font-head); font-size: 24px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.drawer .close { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid var(--card-line); color: #fff; font-size: 18px; }
.cart-line { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--card-line); }
.cart-line img { width: 56px; height: 56px; object-fit: contain; background: #fff; border-radius: 10px; }
.cart-line h4 { margin: 0; font-size: 14px; font-weight: 600; }
.cart-line .meta { font-size: 12px; color: var(--muted); }
.cart-line .lt { text-align: right; font-weight: 700; color: var(--gold); }
.cart-line .rm { background: none; border: 0; color: #e89aa8; font-size: 12px; padding: 0; }
.summary { margin: 20px 0; padding: 18px 20px; border-radius: 16px; background: rgba(0,0,0,.3); border: 1px solid var(--card-line); }
.summary div { display: flex; justify-content: space-between; padding: 4px 0; font-size: 15px; color: var(--muted); }
.summary .grand { border-top: 1px solid var(--card-line); margin-top: 8px; padding-top: 12px; color: #fff; font-size: 20px; font-weight: 800; }
.summary .grand span:last-child { color: var(--gold); }
.min-warn { font-size: 13px; color: #f2b8c0; margin: -8px 0 14px; display: none; }
.progress { height: 8px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; margin: 6px 0 18px; }
.progress i { display: block; height: 100%; width: 0; background: var(--grad-gold); border-radius: 999px; transition: width .5s; }
.drawer h3 { font-family: var(--font-head); margin: 24px 0 4px; }
.drawer .sub { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.empty-cart { text-align: center; padding: 40px 0; color: var(--muted); }
.empty-cart div { font-size: 60px; margin-bottom: 10px; }

/* product modal */
.pmodal { position: fixed; inset: 0; z-index: 210; display: grid; place-items: center; padding: 20px; background: rgba(3,5,14,.88); opacity: 0; pointer-events: none; transition: opacity .3s; }
.pmodal.open { opacity: 1; pointer-events: auto; }
.pmodal .box { background: var(--night-2); border: 1px solid var(--card-line); border-radius: 22px; overflow: hidden; max-width: 520px; width: 100%; transform: translateY(20px) scale(.96); transition: transform .35s; }
.pmodal.open .box { transform: none; }
.pmodal img { width: 100%; max-height: 60vh; object-fit: contain; background: #fff; }
.pmodal .info { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.pmodal h3 { margin: 0; }

/* toast */
.toast {
  position: fixed; left: 50%; top: 24px; transform: translate(-50%, -150%); z-index: 300;
  background: var(--night-2); border: 1px solid var(--gold); color: #fff; padding: 14px 22px; border-radius: 14px;
  box-shadow: var(--shadow); transition: transform .4s cubic-bezier(.2,.8,.2,1); font-weight: 600; max-width: calc(100% - 32px);
}
.toast.show { transform: translate(-50%, 0); }

/* ---------- Footer ---------- */
.footer { margin-top: 60px; background: rgba(0,0,0,.4); border-top: 1px solid var(--card-line); position: relative; }
.footer::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 2px; background: var(--grad-gold); opacity: .8; }
.footer .container { padding: 64px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 40px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer h4 { font-family: var(--font-head); color: var(--gold); margin: 0 0 16px; font-size: 18px; }
.footer p, .footer li { color: var(--muted); font-size: 14.5px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer ul a { transition: color .2s, padding .2s; }
.footer ul a:hover { color: var(--gold); padding-left: 6px; }
.footer .ci { display: flex; gap: 12px; align-items: flex-start; }
.footer .ci span:first-child { color: var(--gold); }
.copy { border-top: 1px solid var(--card-line); margin-top: 40px; padding-top: 22px; text-align: center; color: var(--muted); font-size: 13px; }

/* ---------- Floating actions ---------- */
.fab { position: fixed; right: 18px; z-index: 90; display: grid; gap: 12px; bottom: 22px; }
body.has-cart-bar .fab { bottom: 110px; }
.fab a {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-size: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,.45); transition: transform .25s; position: relative;
}
.fab a:hover { transform: scale(1.1); }
.fab .wa { background: #25d366; }
.fab .call { background: var(--grad-fire); }
.fab .wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: ripple 2s infinite;
}
.fab svg { width: 28px; height: 28px; fill: #fff; }
.to-top {
  position: fixed; left: 18px; bottom: 22px; z-index: 90; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid var(--card-line); color: var(--gold); font-size: 18px;
  opacity: 0; transform: translateY(20px); transition: opacity .3s, transform .3s; pointer-events: none;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
body.has-cart-bar .to-top { bottom: 110px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.left { transform: translateX(-50px); }
.reveal.right { transform: translateX(50px); }
.reveal.zoom { transform: scale(.9); }
.reveal.in { opacity: 1; transform: none; }

/* preloader */
.preloader {
  position: fixed; inset: 0; z-index: 999; background: var(--night); display: grid; place-items: center;
  transition: opacity .6s, visibility .6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader .spark {
  width: 70px; height: 70px; border-radius: 50%; position: relative;
  background: conic-gradient(from 0deg, var(--gold), var(--crimson), var(--plum-2), var(--gold));
  animation: spin 1s linear infinite; -webkit-mask: radial-gradient(circle, transparent 55%, #000 57%); mask: radial-gradient(circle, transparent 55%, #000 57%);
}

/* cursor sparkles */
.sparkle { position: fixed; pointer-events: none; z-index: 400; width: 6px; height: 6px; border-radius: 50%; }

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

@media (max-width: 760px) {
  .topbar { display: none; }
  .hero { min-height: auto; padding: 40px 0 60px; }
  .hero-art { max-width: 360px; margin: 0 auto; }
  .media-frame .stamp { width: 104px; height: 104px; right: -6px; bottom: -10px; font-size: 11px; }
  .media-frame .stamp b { font-size: 24px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .prod .pbody { padding: 10px 12px 12px; }
  .prod h3 { font-size: 13.5px; }
  .prod .price { font-size: 17px; }
  .qty button { width: 34px; }
}

/* ==========================================================
   Elegance layer — midnight navy · champagne gold · soft rose
   ========================================================== */
:root {
  --ink: #f6f1e7;               /* warm ivory text */
  --line-gold: rgba(217, 178, 111, 0.28);
  --card: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  --card-line: rgba(217, 178, 111, 0.16);
  --grad-gold: linear-gradient(135deg, #f7e7c4 0%, #d9b26f 50%, #b48a45 100%);
  --grad-fire: linear-gradient(135deg, #b8646f 0%, #7e3a64 55%, #2f2a63 100%);
  --grad-text: linear-gradient(100deg, #f7e7c4 0%, #d9b26f 45%, #f1d3c0 100%);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
body {
  background-color: #080c1c;
  background-image:
    radial-gradient(1100px 620px at 85% -10%, rgba(52, 72, 140, 0.45), transparent 60%),
    radial-gradient(900px 520px at -10% 35%, rgba(184, 100, 111, 0.16), transparent 60%),
    radial-gradient(800px 500px at 50% 110%, rgba(217, 178, 111, 0.08), transparent 60%);
  letter-spacing: .1px;
}

/* headings — refined serif with italic gold highlight */
.title, .hero h1, .page-hero h1, .cta-band h2, .cat-head h2, .drawer-head h2 { font-weight: 600; letter-spacing: .2px; }
.title .hl, .hero h1 .hl, .page-hero h1, .cat-head h2 {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.title .hl, .hero h1 .hl { font-style: italic; font-weight: 500; padding-right: .08em; }
.hero h1 { font-size: clamp(42px, 6.4vw, 78px); line-height: 1.05; }
.page-hero h1 { text-shadow: none; }
.eyebrow { font-size: 12px; letter-spacing: 4px; font-weight: 600; color: #d9b26f; }
.eyebrow::before, .eyebrow::after { width: 32px; height: 1px; background: linear-gradient(90deg, transparent, #d9b26f); }
.eyebrow::after { background: linear-gradient(90deg, #d9b26f, transparent); }
.lead { color: #b9c0d4; font-weight: 300; }

/* offer bar — calm, luxurious */
.offer-bar { background: linear-gradient(90deg, #121a38, #1a2248 50%, #121a38); border-bottom: 1px solid var(--line-gold); color: #efe0bd; font-weight: 500; letter-spacing: .5px; }
.offer-track span::before { color: #d9b26f; }
.topbar { background: rgba(5, 8, 20, .55); border-bottom: 1px solid rgba(217,178,111,.1); }

/* navbar */
.nav { background: rgba(8, 12, 28, .7); border-bottom: 1px solid rgba(217,178,111,.12); }
.nav.scrolled { background: rgba(8, 12, 28, .92); }
.nav-links a { font-weight: 400; letter-spacing: .3px; }
.nav-links a.active { background: transparent; color: #f1dcae; font-weight: 500; box-shadow: inset 0 0 0 1px rgba(217,178,111,.55); }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 50%; bottom: 3px; width: 0; height: 1px; background: #d9b26f;
  transition: width .3s, left .3s;
}
.nav-links a:not(.btn):not(.active):hover::after { width: 40%; left: 30%; }

/* buttons */
.btn { font-weight: 600; letter-spacing: .6px; }
.btn-gold { color: #1a1407; box-shadow: 0 10px 30px rgba(217,178,111,.25), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-gold:hover { box-shadow: 0 16px 40px rgba(217,178,111,.4), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-fire { box-shadow: 0 10px 30px rgba(126,58,100,.45), inset 0 1px 0 rgba(255,255,255,.2); border: 1px solid rgba(241,211,192,.25); }
.btn-ghost { border-color: rgba(217,178,111,.45); color: #f1dcae; }

/* cards — glass with gold hairline */
.card {
  background: var(--card); border: 1px solid var(--card-line);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241,220,174,.55), transparent);
  opacity: 0; transition: opacity .4s;
}
.card:hover::before { opacity: 1; }
.card:hover { border-color: rgba(217,178,111,.4); background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); box-shadow: 0 24px 50px rgba(0,0,0,.45); }
.card .ico {
  background: linear-gradient(145deg, rgba(217,178,111,.18), rgba(217,178,111,.04));
  border: 1px solid rgba(217,178,111,.4); box-shadow: 0 8px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.12);
}
.vmv .card:nth-child(2) .ico { background: linear-gradient(145deg, rgba(232,166,180,.22), rgba(232,166,180,.04)); border-color: rgba(232,166,180,.45); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.card h3 { font-weight: 600; letter-spacing: .2px; }

/* hero art */
.hero-art .ring { border-color: rgba(217,178,111,.3); }
.hero-art .ring.r2 { border-color: rgba(232,166,180,.22); }
.hero-art .glow { background: radial-gradient(circle, rgba(217,178,111,.35), rgba(80,100,190,.18) 50%, transparent 70%); }
.hero-badges div strong { font-weight: 600; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-badges > div { padding-left: 16px; border-left: 1px solid rgba(217,178,111,.35); }
.word-rotate { color: #f1dcae; border-color: #d9b26f; font-style: italic; }

/* ribbon — ivory & gold, no tilt clutter */
.ribbon { background: linear-gradient(90deg, #f7e7c4, #e9cf98 50%, #f7e7c4); color: #1c1a2e; transform: rotate(-1deg); box-shadow: 0 10px 40px rgba(217,178,111,.18); }
.ribbon .offer-track { font-weight: 600; font-style: italic; letter-spacing: .5px; }
.ribbon .offer-track span::before { content: "✦ "; color: #b8646f; font-style: normal; }

/* media & stamps */
.media-frame::before { border: 1px solid rgba(217,178,111,.6); }
.media-frame .stamp { background: radial-gradient(circle at 30% 30%, #2a3566, #121a38); border: 1px solid rgba(217,178,111,.6); color: #efe0bd; font-weight: 500; letter-spacing: 1px; }
.media-frame .stamp b { font-weight: 600; color: #f1dcae; }
.pill-list li { background: rgba(217,178,111,.07); border-color: rgba(217,178,111,.3); color: #efe0bd; font-weight: 500; }

/* notice & CTA */
.notice { background: linear-gradient(135deg, rgba(184,100,111,.14), rgba(34,48,96,.45)); border-color: rgba(232,166,180,.3); }
.notice h3 { color: #f1dcae; font-weight: 600; }
.cta-band { background: radial-gradient(900px 300px at 50% 0%, rgba(217,178,111,.22), transparent 70%), linear-gradient(135deg, #1b2450 0%, #2c2560 50%, #4a2a5e 100%); border: 1px solid rgba(217,178,111,.3); box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.cta-band h2 { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-band p { color: #d7dcea; }

/* brands */
.brands .card { background: #fff; border-color: rgba(217,178,111,.5); }

/* video */
.vcard { border-color: rgba(217,178,111,.18); }
.vcard .play { box-shadow: 0 0 0 0 rgba(217,178,111,.5); }
.vcard .v-over { background: linear-gradient(180deg, transparent 45%, rgba(8,12,28,.94)); }
.vcard h3 { font-family: var(--font-head); font-weight: 500; }

/* safety */
.safety-hero-card { background: linear-gradient(135deg, rgba(217,178,111,.1), rgba(34,48,96,.4)); border-color: rgba(217,178,111,.28); }
.tip .num { font-weight: 600; font-style: italic; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; }
.remember { background: rgba(184,100,111,.1); border: 1px solid rgba(232,166,180,.35); }
.remember b { color: #f1dcae; }

/* forms */
.field input, .field select, .field textarea { background: rgba(5,8,20,.5); border-color: rgba(217,178,111,.18); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #d9b26f; box-shadow: 0 0 0 4px rgba(217,178,111,.12); }
.field label .req { color: #e8a6b4; }

/* estimate */
.est-tools { background: rgba(8,12,28,.88); border-bottom-color: rgba(217,178,111,.14); }
.search input { background: rgba(255,255,255,.04); border-color: rgba(217,178,111,.22); }
.chip { background: transparent; border-color: rgba(217,178,111,.25); color: #cfd4e3; font-weight: 500; letter-spacing: .5px; }
.chip:hover, .chip.active { background: rgba(217,178,111,.14); color: #f1dcae; border-color: rgba(217,178,111,.6); }
.est-note { background: rgba(217,178,111,.06); border-color: rgba(217,178,111,.25); color: #e6dcc4; }
.cat-head .line { background: linear-gradient(90deg, rgba(217,178,111,.45), transparent); }
.prod { background: linear-gradient(170deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); border-color: rgba(217,178,111,.14); }
.prod:hover { border-color: rgba(217,178,111,.45); }
.prod.in-cart { border-color: #d9b26f; box-shadow: 0 0 0 1px rgba(217,178,111,.6) inset, 0 0 34px rgba(217,178,111,.12); }
.prod .off { background: linear-gradient(135deg, #b8646f, #7e3a64); font-weight: 600; letter-spacing: .5px; }
.prod .price { color: #f1dcae; font-weight: 600; }
.qty { border-color: rgba(217,178,111,.25); }
.qty button:hover { background: #d9b26f; color: #1a1407; }
.cart-bar { background: rgba(12,18,40,.94); border-color: rgba(217,178,111,.4); }
.cart-bar .stat b { font-weight: 600; }
.cart-bar .stat.amt b { color: #f1dcae; }
.drawer { background: #0d1330; border-left-color: rgba(217,178,111,.2); }
.summary .grand span:last-child { color: #f1dcae; }

/* footer */
.footer { background: rgba(4,6,16,.6); }
.footer::before { height: 1px; background: linear-gradient(90deg, transparent, #d9b26f, transparent); }
.footer h4 { color: #f1dcae; font-weight: 600; }

/* floating buttons */
.fab .call { background: linear-gradient(145deg, #2a3566, #121a38); border: 1px solid rgba(217,178,111,.5); }
.to-top { color: #d9b26f; border-color: rgba(217,178,111,.3); }
.preloader { background: #080c1c; }
.preloader .spark { background: conic-gradient(from 0deg, #f7e7c4, #d9b26f, #e8a6b4, #2a3566, #f7e7c4); }
::selection { background: rgba(217,178,111,.35); color: #fff; }
.cart-bar .stat b, .hero-badges div strong { font-family: var(--font-body); font-variant-numeric: lining-nums tabular-nums; }

/* theme toggle button */
.nav-actions { display: flex; align-items: center; gap: 10px; order: 3; }
.theme-toggle {
  width: 44px; height: 44px; border-radius: 50%; font-size: 18px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(217,178,111,.35); transition: transform .4s, background .3s;
}
.theme-toggle:hover { transform: rotate(25deg) scale(1.06); }
@media (min-width: 961px) { .nav .container { gap: 14px; } .nav-links { margin-left: auto; } }

/* ==========================================================
   LIGHT THEME (default) — ivory · white · champagne gold · rose
   ========================================================== */
html[data-theme="light"] {
  --ink: #1c2140;
  --muted: #5d6481;
  --card: #ffffff;
  --card-line: rgba(184, 137, 63, 0.18);
  --grad-text: linear-gradient(100deg, #b8893f 0%, #8f6224 50%, #b85a72 100%);
  --grad-gold: linear-gradient(135deg, #f3dca6 0%, #d9ae5f 50%, #b8893f 100%);
  --shadow: 0 20px 50px rgba(60, 45, 20, 0.12);
  color-scheme: light;
}
html[data-theme="light"] body {
  background-color: #fbf8f2;
  background-image:
    radial-gradient(1100px 600px at 90% -10%, rgba(243, 220, 166, 0.55), transparent 60%),
    radial-gradient(900px 520px at -10% 30%, rgba(240, 190, 200, 0.35), transparent 60%),
    radial-gradient(900px 500px at 50% 110%, rgba(190, 205, 255, 0.35), transparent 60%);
  color: var(--ink);
}
html[data-theme="light"] .lead { color: var(--muted); font-weight: 400; }
html[data-theme="light"] .eyebrow { color: #a87a32; }
html[data-theme="light"] .eyebrow::before { background: linear-gradient(90deg, transparent, #b8893f); }
html[data-theme="light"] .eyebrow::after { background: linear-gradient(90deg, #b8893f, transparent); }

/* header */
html[data-theme="light"] .offer-bar { background: linear-gradient(90deg, #1c2450, #2c2a66 50%, #1c2450); color: #f3e3bd; border-bottom: 0; }
html[data-theme="light"] .topbar { background: #ffffff; border-bottom: 1px solid rgba(184,137,63,.15); color: var(--muted); }
html[data-theme="light"] .topbar a:hover { color: #a87a32; }
html[data-theme="light"] .nav { background: rgba(255, 255, 255, .82); border-bottom: 1px solid rgba(184,137,63,.15); }
html[data-theme="light"] .nav.scrolled { background: rgba(255, 255, 255, .96); box-shadow: 0 10px 30px rgba(60,45,20,.08); }
html[data-theme="light"] .nav-links a { color: #3a4060; }
html[data-theme="light"] .nav-links a:hover { color: #1c2140; background: rgba(184,137,63,.08); }
html[data-theme="light"] .nav-links a.active { color: #8f6224; box-shadow: inset 0 0 0 1px rgba(184,137,63,.6); background: rgba(243,220,166,.25); }
html[data-theme="light"] .nav-links .btn { color: #fff; }
html[data-theme="light"] .burger, html[data-theme="light"] .theme-toggle { color: #1c2140; background: #fff; border-color: rgba(184,137,63,.35); }
@media (max-width: 960px) { html[data-theme="light"] .nav-links { background: rgba(255,255,255,.98); border-bottom-color: rgba(184,137,63,.15); box-shadow: 0 20px 40px rgba(60,45,20,.1); } }

/* buttons */
html[data-theme="light"] .btn-gold { color: #2a1d06; box-shadow: 0 10px 26px rgba(184,137,63,.3), inset 0 1px 0 rgba(255,255,255,.6); }
html[data-theme="light"] .btn-ghost { color: #8f6224; border-color: rgba(184,137,63,.55); background: #fff; }
html[data-theme="light"] .btn-ghost:hover { color: #1c2140; border-color: #b8893f; }

/* heroes */
html[data-theme="light"] .page-hero {
  background:
    radial-gradient(700px 300px at 50% 120%, rgba(243,220,166,.7), transparent 70%),
    linear-gradient(180deg, #fff3e2 0%, rgba(251,248,242,0) 100%);
}
html[data-theme="light"] .crumbs { color: var(--muted); }
html[data-theme="light"] .crumbs a { color: #a87a32; }
html[data-theme="light"] .hero h1 { color: #1c2140; }
html[data-theme="light"] .hero p { color: var(--muted); }
html[data-theme="light"] .word-rotate { color: #b85a72; border-color: #b85a72; }
html[data-theme="light"] .hero-badges > div { border-left-color: rgba(184,137,63,.45); }
html[data-theme="light"] .hero-badges div span { color: var(--muted); }
html[data-theme="light"] .hero-art .ring { border-color: rgba(184,137,63,.45); }
html[data-theme="light"] .hero-art .ring.r2 { border-color: rgba(184,90,114,.3); }
html[data-theme="light"] .hero-art .glow { background: radial-gradient(circle, rgba(243,220,166,.9), rgba(240,190,200,.45) 50%, transparent 70%); }
html[data-theme="light"] .hero-art img { filter: drop-shadow(0 25px 40px rgba(28,33,64,.25)); }

/* cards */
html[data-theme="light"] .card {
  background: #fff; border-color: rgba(184,137,63,.16);
  box-shadow: 0 6px 24px rgba(60,45,20,.06); backdrop-filter: none; -webkit-backdrop-filter: none;
}
html[data-theme="light"] .card:hover { background: #fff; border-color: rgba(184,137,63,.45); box-shadow: 0 22px 46px rgba(60,45,20,.14); }
html[data-theme="light"] .card::before { background: linear-gradient(90deg, transparent, #d9ae5f, transparent); height: 2px; }
html[data-theme="light"] .card p { color: var(--muted); }
html[data-theme="light"] .card .ico { background: linear-gradient(145deg, #fff6e2, #f6e6c4); border-color: rgba(184,137,63,.4); box-shadow: 0 8px 20px rgba(184,137,63,.18); }
html[data-theme="light"] .vmv .card:nth-child(2) .ico { background: linear-gradient(145deg, #fff0f3, #f8d9e0); border-color: rgba(184,90,114,.35); }
html[data-theme="light"] .pill-list li { background: #fff; border-color: rgba(184,137,63,.35); color: #7a5520; }
html[data-theme="light"] .pill-list li:hover { background: #fff6e2; }
html[data-theme="light"] .media-frame::before { border-color: rgba(184,137,63,.6); }
html[data-theme="light"] .media-frame img { box-shadow: 0 24px 50px rgba(60,45,20,.18); }

/* ribbon, notice, safety */
html[data-theme="light"] .ribbon { background: linear-gradient(90deg, #1c2450, #2c2a66 50%, #1c2450); color: #f3e3bd; box-shadow: 0 12px 30px rgba(28,36,80,.2); }
html[data-theme="light"] .ribbon .offer-track span::before { color: #e8a6b4; }
html[data-theme="light"] .notice { background: linear-gradient(135deg, #fff4f0, #f5f0ff); border-color: rgba(184,90,114,.25); }
html[data-theme="light"] .notice h3 { color: #8f6224; }
html[data-theme="light"] .notice p { color: #4a5070; }
html[data-theme="light"] .safety-hero-card { background: linear-gradient(135deg, #fff7e8, #f3f1ff); border-color: rgba(184,137,63,.25); }
html[data-theme="light"] .shield { background: radial-gradient(circle, rgba(243,220,166,.8), transparent 65%); }
html[data-theme="light"] .remember { background: #fff3f5; border-color: rgba(184,90,114,.35); }
html[data-theme="light"] .remember b, html[data-theme="light"] .safety-hero-card p[style*="letter-spacing"] { color: #a87a32 !important; }

/* dark "islands" that stay navy for contrast */
html[data-theme="light"] .cta-band,
html[data-theme="light"] .vcard,
html[data-theme="light"] .lightbox,
html[data-theme="light"] .footer,
html[data-theme="light"] .media-frame .stamp { --ink: #f6f1e7; --muted: #b9c0d4; color: var(--ink); }
html[data-theme="light"] .footer { background: linear-gradient(180deg, #141a3a, #0c1128); }
html[data-theme="light"] .brands .card { background: #fff; }

/* forms */
html[data-theme="light"] .field label { color: #4a5070; }
html[data-theme="light"] .field input, html[data-theme="light"] .field select, html[data-theme="light"] .field textarea {
  background: #fdfbf7; border-color: rgba(28,33,64,.14); color: #1c2140;
}
html[data-theme="light"] .field select option { background: #fff; color: #1c2140; }
html[data-theme="light"] .field input:focus, html[data-theme="light"] .field select:focus, html[data-theme="light"] .field textarea:focus {
  background: #fff; border-color: #b8893f; box-shadow: 0 0 0 4px rgba(184,137,63,.15);
}
html[data-theme="light"] .contact-card small { color: #a87a32; }
html[data-theme="light"] .contact-card a:hover { color: #b85a72; }
html[data-theme="light"] .map-wrap { border-color: rgba(184,137,63,.25); box-shadow: var(--shadow); }

/* estimate */
html[data-theme="light"] .est-tools { background: rgba(255,255,255,.92); border-bottom-color: rgba(184,137,63,.15); }
html[data-theme="light"] .search input { background: #fdfbf7; border-color: rgba(28,33,64,.14); color: #1c2140; }
html[data-theme="light"] .search input:focus { border-color: #b8893f; box-shadow: 0 0 0 4px rgba(184,137,63,.15); }
html[data-theme="light"] .chip { background: #fff; border-color: rgba(184,137,63,.3); color: #4a5070; }
html[data-theme="light"] .chip:hover, html[data-theme="light"] .chip.active { background: linear-gradient(135deg, #f3dca6, #d9ae5f); color: #2a1d06; border-color: transparent; }
html[data-theme="light"] .est-note { background: #fff8ea; border-color: rgba(184,137,63,.3); color: #5a4a2a; }
html[data-theme="light"] .cat-head .count { color: var(--muted); border-color: rgba(184,137,63,.3); background: #fff; }
html[data-theme="light"] .prod { background: #fff; border-color: rgba(184,137,63,.15); box-shadow: 0 6px 20px rgba(60,45,20,.06); }
html[data-theme="light"] .prod:hover { box-shadow: 0 20px 40px rgba(60,45,20,.14); border-color: rgba(184,137,63,.45); }
html[data-theme="light"] .prod.in-cart { border-color: #b8893f; box-shadow: 0 0 0 1px #d9ae5f inset, 0 12px 30px rgba(184,137,63,.2); background: #fffbf2; }
html[data-theme="light"] .prod .pimg { border-bottom: 1px solid rgba(184,137,63,.12); }
html[data-theme="light"] .prod .content { color: var(--muted); }
html[data-theme="light"] .prod .price { color: #8f6224; }
html[data-theme="light"] .prod .mrp { color: #9aa0b5; }
html[data-theme="light"] .prod .row-total { color: #b85a72; }
html[data-theme="light"] .qty { background: #fdfbf7; border-color: rgba(28,33,64,.14); }
html[data-theme="light"] .qty button, html[data-theme="light"] .qty input { color: #1c2140; }
html[data-theme="light"] .qty button:hover { background: #d9ae5f; color: #2a1d06; }
html[data-theme="light"] .cart-bar { background: rgba(255,255,255,.96); border-color: rgba(184,137,63,.4); box-shadow: 0 20px 50px rgba(28,33,64,.18); }
html[data-theme="light"] .cart-bar .stat small { color: var(--muted); }
html[data-theme="light"] .cart-bar .stat.amt b { color: #8f6224; }
html[data-theme="light"] .cart-bar .btn .badge { background: #1c2140; color: #f3dca6; }
html[data-theme="light"] .drawer { background: #fff; border-left-color: rgba(184,137,63,.2); }
html[data-theme="light"] .drawer .close, html[data-theme="light"] .lightbox .close { color: #1c2140; background: #f5f1e8; }
html[data-theme="light"] .lightbox .close { color: #fff; background: rgba(255,255,255,.12); }
html[data-theme="light"] .drawer-back, html[data-theme="light"] .pmodal { background: rgba(28,33,64,.45); }
html[data-theme="light"] .cart-line { border-bottom-color: rgba(28,33,64,.1); }
html[data-theme="light"] .cart-line .lt, html[data-theme="light"] .summary .grand span:last-child { color: #8f6224; }
html[data-theme="light"] .cart-line .rm { color: #b85a72; }
html[data-theme="light"] .summary { background: #fbf8f2; border-color: rgba(184,137,63,.2); }
html[data-theme="light"] .summary .grand { color: #1c2140; }
html[data-theme="light"] .progress { background: #efe8da; }
html[data-theme="light"] .min-warn { color: #b85a72; }
html[data-theme="light"] .pmodal .box { background: #fff; }
html[data-theme="light"] .toast { background: #fff; color: #1c2140; border-color: #d9ae5f; }

/* floating + misc */
html[data-theme="light"] .to-top { background: #fff; color: #a87a32; border-color: rgba(184,137,63,.35); box-shadow: 0 8px 20px rgba(60,45,20,.12); }
html[data-theme="light"] .fab .call { background: linear-gradient(145deg, #2a3566, #141a3a); }
html[data-theme="light"] .preloader { background: #fbf8f2; }
html[data-theme="light"] ::selection { background: rgba(217,174,95,.35); color: #1c2140; }

/* smooth switch between themes */
body, .topbar { transition: background-color .4s, color .4s; }
/* theme switch: change everything together, then one short cross-fade of the whole page */
.theme-switching *, .theme-switching *::before, .theme-switching *::after { transition: none !important; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .22s; animation-timing-function: ease-out; }
.card, .prod { transition: transform .35s, border-color .35s, box-shadow .35s, background-color .4s; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal.left, .reveal.right, .reveal.zoom { opacity: 1; transform: none; } }

/* ---------- New logo ---------- */
.brand { color: var(--ink); }
.logo-svg { height: 56px; width: auto; display: block; overflow: visible; }
.foot-brand { color: #f6f1e7; margin-bottom: 18px; display: inline-block; }
.foot-brand .logo-svg { height: 64px; }
.brand img { display: none; }
.logo-svg .lg-burst { transform-origin: 36px 36px; transform-box: view-box; animation: lg-spin 40s linear infinite; }
.logo-svg .lg-dot { animation: lg-twinkle 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.logo-svg .lg-star { transform-origin: center; transform-box: fill-box; animation: lg-pulse 3s ease-in-out infinite; }
.brand:hover .lg-burst { animation-duration: 4s; }
.brand:hover .lg-ray, .brand:hover .lg-ray2 { stroke-width: 2.6; }
@keyframes lg-spin { to { transform: rotate(360deg); } }
@keyframes lg-twinkle { 0%, 100% { opacity: .35; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.25); } }
@keyframes lg-pulse { 50% { transform: scale(1.25); filter: drop-shadow(0 0 3px #f7e3b0); } }
@media (max-width: 960px) { .logo-svg { height: 46px; } }
.logo-svg { height: 64px; }
.nav .brand { margin-left: -6px; }
@media (max-width: 960px) { .logo-svg { height: 50px; } }

/* ==========================================================
   New home sections
   ========================================================== */
/* hanging lanterns */
.lanterns { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.lanterns span { position: absolute; top: calc(-20px + var(--h, 0px)); width: calc(60px * var(--s, 1)); transform-origin: top center; animation: sway 5s ease-in-out infinite; animation-delay: var(--d); filter: drop-shadow(0 10px 18px rgba(217, 87, 62, .35)); }
.lanterns .lantern { width: 100%; height: auto; }
.lanterns .lan-glow { animation: glow 2.2s ease-in-out infinite; animation-delay: var(--d); }
@keyframes sway { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
@keyframes glow { 50% { opacity: .35; } }
@media (max-width: 760px) { .lanterns span:nth-child(2) { display: none; } .lanterns span { width: 42px; } }

/* countdown */
#countdown { margin-top: 50px; }
.countdown {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  padding: 34px 40px; border-radius: 28px;
  background: linear-gradient(135deg, rgba(217,178,111,.12), rgba(52,72,140,.25));
  border: 1px solid rgba(217,178,111,.3);
}
.cd-boxes { display: flex; gap: 14px; }
.cd-boxes div {
  width: 92px; padding: 16px 0; border-radius: 18px; text-align: center;
  background: linear-gradient(160deg, #1b2450, #0e1430); border: 1px solid rgba(217,178,111,.4);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}
.cd-boxes b { display: block; font-family: var(--font-body); font-size: 34px; font-weight: 600; color: #f1dcae; font-variant-numeric: tabular-nums; line-height: 1.1; }
.cd-boxes small { color: #b9c0d4; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
@media (max-width: 560px) { .countdown { padding: 26px 18px; } .cd-boxes { gap: 8px; width: 100%; justify-content: space-between; } .cd-boxes div { width: 23%; } .cd-boxes b { font-size: 26px; } }

/* shop by category */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; margin-top: 40px; }
.cat-card {
  display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 18px;
  background: var(--card); border: 1px solid var(--card-line); position: relative; overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(241,220,174,.25), transparent 70%); transform: translateX(-100%); transition: transform .8s; }
.cat-card:hover::after { transform: translateX(100%); }
.cat-card:hover { transform: translateY(-6px); border-color: rgba(217,178,111,.5); box-shadow: 0 20px 40px rgba(0,0,0,.18); }
.cat-img { width: 72px; height: 72px; border-radius: 14px; overflow: hidden; flex: none; background: #fff; display: grid; place-items: center; font-size: 30px; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-card:hover .cat-img img { transform: scale(1.12); }
.cat-info { flex: 1; min-width: 0; }
.cat-info h3 { margin: 0; font-size: 14.5px; font-weight: 600; letter-spacing: .3px; }
.cat-info small { color: var(--muted); font-size: 12.5px; }
.cat-go { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(217,178,111,.45); color: #d9b26f; transition: background .3s, color .3s, transform .3s; flex: none; }
.cat-card:hover .cat-go { background: #d9b26f; color: #1a1407; transform: translateX(3px); }

/* best deals marquee */
.deals-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.deals-track-wrap { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); padding: 10px 0 20px; }
.deals-track { display: flex; gap: 20px; width: max-content; animation: marquee 45s linear infinite; }
.deals-track:hover { animation-play-state: paused; }
.deal { width: 230px; flex: none; border-radius: 18px; overflow: hidden; background: var(--card); border: 1px solid var(--card-line); transition: transform .3s, box-shadow .3s; }
.deal:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: 0 22px 40px rgba(0,0,0,.2); }
.deal-img { aspect-ratio: 4 / 3; background: #fff; position: relative; overflow: hidden; }
.deal-img img { width: 100%; height: 100%; object-fit: cover; }
.deal-img .off { position: absolute; top: 10px; left: 10px; background: linear-gradient(135deg, #b8646f, #7e3a64); color: #fff; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.deal-body { padding: 12px 14px 14px; }
.deal-body small { color: #d9b26f; font-size: 11px; letter-spacing: 1.5px; font-weight: 600; }
.deal-body h3 { margin: 2px 0 6px; font-size: 15px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.deal-price b { font-size: 19px; color: #f1dcae; margin-right: 8px; }
.deal-price s { color: var(--muted); font-size: 13px; }

/* how to order */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; position: relative; }
.steps::before { content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, rgba(217,178,111,.6) 0 10px, transparent 10px 20px); }
.step { text-align: center; position: relative; padding: 0 8px; }
.step-n { width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-size: 28px; font-weight: 600; color: #1a1407; background: var(--grad-gold); box-shadow: 0 0 0 8px rgba(217,178,111,.15), 0 12px 30px rgba(217,178,111,.35); position: relative; z-index: 1; transition: transform .4s; }
.step:hover .step-n { transform: scale(1.1) rotate(-8deg); }
.step-ico { font-size: 28px; margin-bottom: 6px; }
.step h3 { margin: 0 0 6px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); row-gap: 34px; } .steps::before { display: none; } }

/* light theme tuning for new sections */
html[data-theme="light"] .countdown { background: linear-gradient(135deg, #fff6e4, #eef1ff); border-color: rgba(184,137,63,.3); box-shadow: 0 20px 50px rgba(60,45,20,.08); }
html[data-theme="light"] .cat-card, html[data-theme="light"] .deal { background: #fff; box-shadow: 0 6px 22px rgba(60,45,20,.06); }
html[data-theme="light"] .cat-card:hover, html[data-theme="light"] .deal:hover { box-shadow: 0 22px 44px rgba(60,45,20,.15); }
html[data-theme="light"] .cat-go { color: #a87a32; border-color: rgba(184,137,63,.45); }
html[data-theme="light"] .deal-body small { color: #a87a32; }
html[data-theme="light"] .deal-price b { color: #8f6224; }
html[data-theme="light"] .step-n { color: #2a1d06; }

/* single estimate CTA in the menu: ring when you're on that page */
.nav-links .btn.current { box-shadow: 0 0 0 2px var(--night), 0 0 0 4px #d9b26f; }
html[data-theme="light"] .nav-links .btn.current { box-shadow: 0 0 0 2px #fff, 0 0 0 4px #b8893f; }
/* quiet text link (used instead of a second button) */
.text-link { color: #d9b26f; font-weight: 600; letter-spacing: .3px; border-bottom: 1px solid transparent; transition: border-color .25s, gap .25s; }
.text-link:hover { border-color: currentColor; }
html[data-theme="light"] .text-link { color: #8f6224; }
.yt-frame { width: min(960px, 100%); aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); background: #000; }
.yt-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* estimate submitted panel */
[hidden] { display: none !important; }
.done-panel { text-align: center; display: grid; gap: 12px; padding: 10px 0 20px; }
.done-panel .done-ico { font-size: 60px; animation: bump 1s ease 2; }
.done-panel h3 { margin: 0; font-family: var(--font-head); }
.done-panel .btn { width: 100%; }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.field textarea { resize: vertical; min-height: 84px; }
