/* =========================================================
   Meenakshi Fireworks — stylesheet
   Palette: marigold yellow bg, deep red + gold accents
   Type: Baloo 2 (display) + Poppins (body)
   ========================================================= */

:root {
  /* ---- Color tokens ---- */
  --color-bg: #FFC72C;          /* marigold yellow — page background */
  --color-bg-soft: #FFF6DD;     /* warm cream-yellow — cards / panels */
  --color-bg-soft-2: #FFEBB0;   /* deeper cream for stripes */
  --color-primary: #C8161D;     /* deep red — primary brand */
  --color-primary-dark: #8E0F17;/* maroon — hover / text on yellow */
  --color-primary-light: #E8434B;
  --color-ink: #3A0A0A;         /* near-black maroon — body text */
  --color-gold: #C6870C;        /* rich gold — dividers, borders */
  --color-gold-bright: #FFD23F;
  --color-white: #FFFDF7;
  --color-night: #23090B;       /* letterbox / hero backdrop */

  /* ---- Type ---- */
  --font-display: 'Baloo 2', 'Segoe UI', sans-serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  /* ---- Misc ---- */
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 30px rgba(58, 10, 10, 0.15);
  --shadow-pop: 0 16px 40px rgba(58, 10, 10, 0.22);
  --container-max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: 0.2px;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

::selection { background: var(--color-primary); color: var(--color-white); }

:focus-visible {
  outline: 3px solid var(--color-primary-dark);
  outline-offset: 2px;
}

.container-xl { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }

/* =========================================================
   Utility: sparkler-trail divider (signature element)
   A zigzag "light-trail" rule used between sections —
   echoes the streak a lit sparkler leaves in the air.
   ========================================================= */
.sparkler-divider {
  width: 100%;
  height: 22px;
  margin: 0 auto;
  display: block;
}
.sparkler-divider svg { width: 100%; height: 100%; display: block; }
.sparkler-divider path {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 6 10;
}

/* =========================================================
   Top utility strip
   ========================================================= */
.top-strip {
  background: var(--color-primary-dark);
  color: var(--color-bg-soft);
  font-size: 0.82rem;
  padding: 6px 0;
}
.top-strip .container-xl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-strip a { color: var(--color-gold-bright); }
.top-strip .divider-dot { opacity: 0.5; margin: 0 8px; }

/* =========================================================
   Navbar
   ========================================================= */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--color-bg-soft);
  border-bottom: 3px solid var(--color-gold);
  transition: box-shadow .25s ease, padding .25s ease;
}
.site-navbar.is-scrolled { box-shadow: var(--shadow-soft); }

.site-navbar .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-primary);
}
.brand-text .brand-tag {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink);
  border-radius: 999px;
  position: relative;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--color-primary); background: rgba(200,22,29,0.08); }
.nav-links a.active { color: var(--color-white); background: var(--color-primary); }

.nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--color-primary-dark); color: var(--color-white); }

.nav-toggle {
  display: none;
  background: var(--color-primary);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
}

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0 16px;
  border-top: 1px dashed var(--color-gold);
}
.mobile-panel a {
  padding: 12px 8px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  color: var(--color-ink);
}
.mobile-panel a.active { color: var(--color-primary); }
.mobile-panel.open { display: flex; }

@media (max-width: 991px) {
  .nav-links, .nav-cta.desktop-only { display: none; }
  .nav-toggle { display: flex; }
}

/* =========================================================
   Hero slider — no text layer, fully-visible images
   on mobile / tablet / desktop / TV via letterboxing
   ========================================================= */
.hero-slider {
  position: relative;
  width: 100%;
  background: radial-gradient(ellipse at center, #3a0e12 0%, var(--color-night) 65%, #140304 100%);
  overflow: hidden;
}
.hero-slider .slide-viewport {
  position: relative;
  width: 100%;
  height: clamp(220px, 46vw, 620px);
  max-height: 78vh;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide svg {
  width: 100%;
  height: 100%;
  object-fit: contain; /* whole illustration always fully visible */
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}
.hero-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--color-gold-bright);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.hero-dots button.is-active { background: var(--color-gold-bright); }

.hero-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,214,63,0.5);
  color: var(--color-bg-soft);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(2px);
}
.hero-arrow:hover { background: rgba(255,255,255,0.22); }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }

@media (max-width: 575px) {
  .hero-arrow { width: 34px; height: 34px; }
}

/* =========================================================
   Section shells
   ========================================================= */
.section { padding: 64px 0; }
.section-soft { background: var(--color-bg-soft); }
.section-tight { padding: 44px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(200,22,29,0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head { max-width: 680px; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 10px; }
.section-head p { margin: 0; font-size: 1.02rem; opacity: 0.85; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Highlight strip on home */
.highlight-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.highlight-item {
  background: var(--color-bg-soft);
  border: 1px solid rgba(198,135,12,0.35);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.highlight-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.highlight-item .hi-icon {
  width: 48px; height: 48px; margin: 0 auto 10px;
  color: var(--color-primary);
}
.highlight-item h4 { font-size: 1.02rem; margin: 0 0 4px; }
.highlight-item p { font-size: 0.86rem; margin: 0; opacity: 0.8; }

@media (max-width: 767px) {
  .highlight-strip { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary-dark);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .18s ease, background .18s ease;
}
.btn-brand:hover { background: var(--color-primary-dark); color: var(--color-white); transform: translateY(-2px); }

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary-dark);
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all .18s ease;
}
.btn-outline-brand:hover { background: var(--color-primary-dark); color: var(--color-white); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1FA855;
  color: var(--color-white);
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
}
.btn-whatsapp:hover { background: #178a45; color: var(--color-white); }

/* =========================================================
   Category chips (products/gift box/price list filters)
   ========================================================= */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.chip {
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary-dark);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all .18s ease;
}
.chip.is-active, .chip:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* =========================================================
   Product cards
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1199px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(198,135,12,0.25);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }

.product-media {
  aspect-ratio: 4 / 3;
 background-image: linear-gradient(to top, #e6b980 0%, #eacda3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-media svg { width: 62%; height: 62%; }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-gold-bright);
  color: var(--color-primary-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--color-gold); }
.product-name { font-family: var(--font-display); font-size: 1.12rem; margin: 0; color: var(--color-primary-dark); }
.product-note { font-size: 0.85rem; opacity: 0.75; margin: 0; flex: 1; }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed rgba(198,135,12,0.4);
}
.product-price { font-weight: 800; color: var(--color-primary); font-size: 1rem; }
.product-price small { font-weight: 500; color: var(--color-ink); opacity: 0.6; font-size: 0.7rem; display: block; }


.product-card--compact {
  align-self: start;   /* stops it stretching to grid row height */
  height: auto;
}

/* =========================================================
   Gift box cards
   ========================================================= */
.giftbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 991px) { .giftbox-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .giftbox-grid { grid-template-columns: 1fr; } }

.giftbox-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  border-top: 6px solid var(--color-primary);
  position: relative;
  overflow: hidden;
}
.giftbox-card .gb-icon { width: 56px; height: 56px; margin-bottom: 14px; }
.giftbox-card h3 { margin: 0 0 6px; font-size: 1.3rem; }
.giftbox-card .gb-desc { font-size: 0.9rem; opacity: 0.8; margin-bottom: 14px; }
.giftbox-card ul { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.giftbox-card ul li { font-size: 0.9rem; display: flex; align-items: baseline; gap: 8px; }
.giftbox-card ul li::before { content: "✺"; color: var(--color-gold); font-size: 0.9rem; }
.giftbox-card .gb-foot { display: flex; align-items: center; justify-content: space-between; }
.giftbox-ribbon {
  position: absolute; top: 14px; right: -32px;
  background: var(--color-gold-bright); color: var(--color-primary-dark);
  font-size: 0.68rem; font-weight: 800; padding: 4px 36px;
  transform: rotate(38deg); box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* =========================================================
   Price list
   ========================================================= */
.price-toolbar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.price-search {
  flex: 1;
  min-width: 220px;
  position: relative;
}
.price-search input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border-radius: 999px;
  border: 2px solid var(--color-primary);
  font-family: var(--font-body);
  background: var(--color-white);
}
.price-search input:focus { outline: none; box-shadow: 0 0 0 3px rgba(200,22,29,0.18); }
.price-search i { position: absolute; left: 16px; top: 50%; translate: 0 -50%; color: var(--color-primary); }

.price-table-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(198,135,12,0.25);
}
.price-cat-head {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 20px;
  font-size: 1.02rem;
}
table.price-table { width: 100%; border-collapse: collapse; }
table.price-table th {
  text-align: left;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-gold);
  padding: 12px 20px;
  border-bottom: 2px solid var(--color-bg-soft-2);
}
table.price-table td {
  padding: 13px 20px;
  border-bottom: 1px solid #f1e6c8;
  font-size: 0.94rem;
}
table.price-table tr:last-child td { border-bottom: none; }
table.price-table tr:hover td { background: var(--color-bg-soft); }
.price-mrp { text-decoration: line-through; opacity: 0.5; margin-right: 8px; font-size: 0.85rem; }
.price-now { font-weight: 800; color: var(--color-primary); }
.price-note-banner {
  background: rgba(200,22,29,0.08);
  border: 1px dashed var(--color-primary);
  color: var(--color-primary-dark);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

/* =========================================================
   About page bits
   ========================================================= */
.about-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 900px) { .about-hero { grid-template-columns: 1fr; } }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 22px;
  border-left: 5px solid var(--color-primary);
  box-shadow: var(--shadow-soft);
}
.value-card i { color: var(--color-primary); font-size: 1.5rem; margin-bottom: 10px; display: block; }
.value-card h4 { margin: 0 0 6px; font-size: 1.05rem; }
.value-card p { margin: 0; font-size: 0.88rem; opacity: 0.8; }

.timeline { border-left: 3px dashed var(--color-gold); margin-left: 8px; padding-left: 26px; }
.timeline-item { position: relative; padding-bottom: 26px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute; left: -32px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--color-primary); border: 3px solid var(--color-gold-bright);
}
.timeline-item .tl-year { font-weight: 800; color: var(--color-primary); font-size: 0.85rem; }
.timeline-item h4 { margin: 4px 0 4px; font-size: 1.02rem; }
.timeline-item p { margin: 0; font-size: 0.88rem; opacity: 0.8; }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,214,63,0.28), transparent 55%);
  pointer-events: none;
}
.cta-banner h3 { color: var(--color-white); margin: 0 0 6px; font-size: 1.5rem; position: relative; }
.cta-banner p { margin: 0; opacity: 0.9; position: relative; max-width: 480px; }
.cta-banner .cta-actions { position: relative; display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner .btn-outline-brand { color: var(--color-white); border-color: var(--color-white); }
.cta-banner .btn-outline-brand:hover { background: var(--color-white); color: var(--color-primary-dark); }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 34px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card { background: var(--color-white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-soft); }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-info-item i {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(200,22,29,0.1); color: var(--color-primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.contact-info-item h5 { margin: 0 0 3px; font-size: 0.95rem; color: var(--color-primary-dark); font-family: var(--font-display); }
.contact-info-item p { margin: 0; font-size: 0.88rem; opacity: 0.8; }

.form-control-brand {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid #ecd8a3;
  background: var(--color-bg-soft);
  font-family: var(--font-body);
  margin-bottom: 16px;
}
.form-control-brand:focus { outline: none; border-color: var(--color-primary); background: var(--color-white); }
label.form-label-brand { font-weight: 600; font-size: 0.86rem; margin-bottom: 6px; display: block; color: var(--color-primary-dark); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid rgba(198,135,12,0.25); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--color-night);
  color: #f3dcc0;
  padding-top: 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 34px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h5 {
  font-family: var(--font-display);
  color: var(--color-gold-bright);
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer-grid p, .footer-grid a { color: #e8cfae; font-size: 0.88rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover { color: var(--color-gold-bright); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand .brand-mark { width: 40px; height: 40px; }
.footer-brand span { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--color-bg-soft); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,214,63,0.4);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--color-primary); border-color: var(--color-primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,214,63,0.18);
  padding: 18px 0;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #c9a878;
}
.footer-bottom a { color: #c9a878; }
.footer-bottom a:hover { color: var(--color-gold-bright); }

/* =========================================================
   Compliance modal
   ========================================================= */
.compliance-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(35, 9, 11, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(2px);
}
.compliance-overlay.is-open { display: flex; }
.compliance-box {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: 30px 28px 26px;
  border: 3px solid var(--color-gold);
  box-shadow: var(--shadow-pop);
  position: relative;
  animation: popIn .28s ease;
}
@keyframes popIn { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.compliance-box .cb-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--color-primary); color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 14px;
}
.compliance-box h3 { font-size: 1.15rem; margin: 0 0 12px; }
.compliance-box p { font-size: 0.9rem; line-height: 1.6; margin: 0 0 20px; }
.compliance-box .btn-brand { width: 100%; justify-content: center; }

/* =========================================================
   Back to top
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-gold-bright);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 900;
  box-shadow: var(--shadow-soft);
}
.back-to-top.show { display: flex; }

/* =========================================================
   Page intro banner (used on inner pages)
   ========================================================= */
.page-banner {
  background: linear-gradient(120deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
  padding: 46px 0;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% -10%, rgba(255,214,63,0.35), transparent 55%);
}
.page-banner h1 { color: var(--color-white); margin: 0 0 6px; position: relative; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.page-banner .crumb { position: relative; font-size: 0.85rem; opacity: 0.85; }
.page-banner .crumb a { color: var(--color-gold-bright); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
