/* ============================================================
   MAHA PATTASU – SHARED STYLESHEET
   Design System: Red #C8102E | Navy #0B1F3A | Gold #F2B705
                  WhatsApp Green #25D366 | White #FFFFFF
   Fonts: Baloo 2 (headings) | Noto Sans (body)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700;800&family=Noto+Sans:wght@400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --red:       #C8102E;
  --red-dark:  #a00d25;
  --navy:      #0B1F3A;
  --navy-light:#143058;
  --gold:      #F2B705;
  --gold-light:#ffd43b;
  --wa-green:  #25D366;
  --wa-dark:   #1ba94d;
  --white:     #FFFFFF;
  --off-white: #FDF8F0;
  --light-grey:#F5F5F5;
  --text-dark: #1a1a2e;
  --text-mid:  #4a4a6a;
  --text-light:#777;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
  --font-head: 'Baloo 2', sans-serif;
  --font-body: 'Noto Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2rem,5vw,3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem,2.5vw,1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-mid); }

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ── Section Labels ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200,16,46,.08);
  padding: .3rem .9rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.section-title {
  color: var(--navy);
  margin-bottom: .75rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,16,46,.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,16,46,.4);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(242,183,5,.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.1rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .88rem; }

/* WhatsApp icon SVG inline */
.wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ── WhatsApp FAB (Floating Action Button) ─────────────────── */
#wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--wa-green);
  color: var(--white);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  transition: var(--transition);
  text-decoration: none;
}
#wa-fab:hover {
  background: var(--wa-dark);
  transform: scale(1.1);
}
#wa-fab svg { width: 30px; height: 30px; }
.fab-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .45rem .85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
#wa-fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.site-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--red);
}
.logo-sub {
  font-size: .7rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-link {
  font-size: .93rem;
  font-weight: 600;
  color: var(--navy);
  padding: .5rem .8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--red);
  background: rgba(200,16,46,.06);
}

/* Products dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > .nav-link::after {
  content: ' ▾';
  font-size: .75rem;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,.07);
  padding: .6rem;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--off-white);
  color: var(--red);
}
.dropdown-item .di-icon { font-size: 1.3rem; }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

/* Hamburger */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  cursor: pointer;
  z-index: 1100;
}
#hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
#hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav drawer */
#mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 1.5rem;
  flex-direction: column;
  gap: .4rem;
  border-top: 2px solid var(--gold);
}
#mobile-nav.open { display: flex; }
.mob-nav-link {
  display: block;
  padding: .85rem 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mob-nav-link:hover, .mob-nav-link.active {
  color: var(--red);
  background: rgba(200,16,46,.06);
}
.mob-nav-section {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  padding: .6rem 1.1rem .2rem;
  margin-top: .4rem;
}
.mob-cta-group {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-grey);
}

/* ── TOP INFO BAR ─────────────────────────────────────────── */
#top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  padding: .4rem 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.top-bar-item a { color: var(--gold); transition: var(--transition); }
.top-bar-item a:hover { color: #fff; }

/* ── HERO SECTION ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  overflow: hidden;
}
.hero-slider {
  display: flex;
  width: 300%;
  height: 100%;
  animation: heroBannerSlide 15s infinite ease-in-out;
}
.hero-slide {
  width: 33.3333%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide.slide-1 {
  background-image: url('../images/hero-banner.jpg');
}
.hero-slide.slide-2 {
  background-image: url('../images/fancy-crackers/fancy-1.jpg');
}
.hero-slide.slide-3 {
  background-image: url('../images/sparklers-fountains/sparkler-1.jpg');
}

@keyframes heroBannerSlide {
  0%, 28%       { transform: translateX(0); }
  33.33%, 61.33% { transform: translateX(-33.3333%); }
  66.66%, 94.66% { transform: translateX(-66.6666%); }
  100%          { transform: translateX(0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,31,58,.92) 0%,
    rgba(11,31,58,.65) 50%,
    rgba(200,16,46,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 4rem 0;
}

/* Page load animation for Hero */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(242,183,5,.15);
  border: 1px solid rgba(242,183,5,.4);
  color: var(--gold);
  font-size: .82rem;
  font-weight: 700;
  padding: .4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
  letter-spacing: .05em;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}
.hero h1 span { color: var(--gold); }

.hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  max-width: 540px;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

/* Primary CTA Button Hover in Hero */
.hero .btn-wa,
#hero-wa-btn {
  background: var(--wa-green);
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
}
.hero .btn-wa:hover,
#hero-wa-btn:hover {
  background: var(--wa-green);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(242,183,5,.5), 0 0 20px rgba(242,183,5,.35);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip-sec {
  background: var(--navy);
  color: var(--white);
  padding: 1.1rem 0;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.trust-strip-sec.visible,
.trust-strip-sec.is-visible {
  opacity: 1;
}
.trust-strip-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  flex-wrap: wrap;
}
.trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-strip-sep {
  color: var(--gold);
  font-weight: 700;
}

/* ── FEATURED CATEGORY CARDS GRID ─────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(30px);
}
.cat-card.visible,
.cat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.categories-grid .cat-card:nth-child(1) { transition-delay: 0.1s; }
.categories-grid .cat-card:nth-child(2) { transition-delay: 0.2s; }
.categories-grid .cat-card:nth-child(3) { transition-delay: 0.3s; }
.categories-grid .cat-card:nth-child(4) { transition-delay: 0.4s; }
.categories-grid .cat-card:nth-child(5) { transition-delay: 0.5s; }
.categories-grid .cat-card:nth-child(6) { transition-delay: 0.6s; }

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,16,46,.2);
}

.cat-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg,#0B1F3A,#143058);
}
.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cat-card:hover .cat-card-img img {
  transform: scale(1.03);
}

.cat-badge {
  position: absolute;
  top: .9rem;
  left: .9rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
  padding: .25rem .7rem;
  border-radius: 99px;
  letter-spacing: .05em;
  z-index: 2;
}
.cat-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cat-icon { font-size: 2rem; margin-bottom: .5rem; }
.cat-card-body h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: .4rem;
  font-size: 1.35rem;
}
.cat-card-body p {
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 1.1rem;
}
.cat-price-from {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: .8rem;
}
.cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--red);
  transition: var(--transition);
}
.cat-card:hover .cat-arrow { gap: .6rem; }

/* ── WHY CHOOSE US (4 POINTS) ─────────────────────────────── */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

.why-us-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(30px);
}
.why-us-card.visible,
.why-us-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-us-grid .why-us-card:nth-child(1) { transition-delay: 0.1s; }
.why-us-grid .why-us-card:nth-child(2) { transition-delay: 0.2s; }
.why-us-grid .why-us-card:nth-child(3) { transition-delay: 0.3s; }
.why-us-grid .why-us-card:nth-child(4) { transition-delay: 0.4s; }

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.why-us-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(242, 183, 5, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.1rem;
  transition: all 0.3s ease;
}
.why-us-card:hover .why-us-icon-box {
  transform: rotate(-5deg);
  background: rgba(242, 183, 5, 0.22);
}

.why-us-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.why-us-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-mid);
}

/* ── HOW IT WORKS (3 STEPS) ───────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.step-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(30px);
}
.step-card.visible,
.step-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps-grid .step-card:nth-child(1) { transition-delay: 0.1s; }
.steps-grid .step-card:nth-child(2) { transition-delay: 0.25s; }
.steps-grid .step-card:nth-child(3) { transition-delay: 0.4s; }

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}

.step-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.25);
  position: relative;
  z-index: 2;
}

@media (min-width: 769px) {
  .step-card:not(:last-child)::after {
    content: '➔';
    position: absolute;
    top: 3.2rem;
    right: -1.2rem;
    font-size: 1.4rem;
    color: var(--gold);
    z-index: 3;
  }
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.step-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* CSS-based placeholder images for categories without real photos */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.placeholder-sound   { background: linear-gradient(135deg,#1a0a20,#3a1020); }
.placeholder-sparkle { background: linear-gradient(135deg,#0a1a20,#1a3040); }
.placeholder-fancy   { background: linear-gradient(135deg,#1a1020,#2a0a30); }
.placeholder-rocket  { background: linear-gradient(135deg,#0a1820,#0a2840); }
.placeholder-kids    { background: linear-gradient(135deg,#1a200a,#0a2010); }
.placeholder-combo   { background: linear-gradient(135deg,#201a0a,#302000); }

/* ── PRODUCT CARDS GRID ───────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.07);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,16,46,.12);
}
.product-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light-grey);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.07); }
.product-card-body {
  padding: 1.1rem 1.2rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body h4 {
  color: var(--navy);
  margin-bottom: .35rem;
}
.product-card-body p {
  font-size: .86rem;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: .9rem;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.price-on-request {
  font-size: .82rem;
  color: var(--text-light);
  font-style: italic;
}
.discount-pill {
  background: rgba(200,16,46,.1);
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 99px;
}

/* ── CATEGORY & STATIC PAGE HERO ─────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 4.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,16,46,.25) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold); background: rgba(242,183,5,.15); }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ── ABOUT PAGE STATIC HERO ────────────────────────────────── */
.about-hero {
  position: relative;
  background: var(--navy);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.92) 0%, rgba(200,16,46,0.3) 100%),
              url('../images/hero-banner.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.about-hero h1 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
.about-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.about-hero-cta {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}
.about-hero .btn-wa {
  background: var(--wa-green);
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.about-hero .btn-wa:hover {
  background: var(--wa-green);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(242, 183, 5, 0.5), 0 0 20px rgba(242, 183, 5, 0.35);
}

/* ── PRODUCTS PAGE STATIC HERO ─────────────────────────────── */
.products-hero {
  position: relative;
  background: var(--navy);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}
.products-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.92) 0%, rgba(200,16,46,0.35) 100%),
              url('../images/fancy-crackers/fancy-1.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.products-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.products-hero h1 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
.products-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.products-hero-cta {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}
.products-hero .btn-wa {
  background: var(--wa-green);
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.products-hero .btn-wa:hover {
  background: var(--wa-green);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(242, 183, 5, 0.5), 0 0 20px rgba(242, 183, 5, 0.35);
}

/* ── VIP COMBO CARD FEATURED GOLD ACCENT ───────────────────── */
.cat-card-vip-featured {
  border: 2px solid var(--gold) !important;
  box-shadow: 0 6px 24px rgba(242, 183, 5, 0.22) !important;
  position: relative;
}
.cat-card-vip-featured .cat-badge {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
}
.cat-card-vip-featured:hover {
  border-color: var(--gold-light) !important;
  box-shadow: 0 10px 32px rgba(242, 183, 5, 0.4) !important;
}

/* ── OUR STORY NARRATIVE BLOCK ─────────────────────────────── */
.our-story-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.our-story-block.visible,
.our-story-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.our-story-block h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.our-story-block p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 1.25rem;
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,183,5,.12) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-content h2 { color: var(--white); margin-bottom: .75rem; }
.cta-content p  { color: rgba(255,255,255,.7); margin-bottom: 2.2rem; font-size: 1.05rem; }
.cta-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.call-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: .75rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  text-decoration: none;
}
.call-chip:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
}

/* ── BRANDS STRIP ─────────────────────────────────────────── */
.brands-section {
  background: var(--off-white);
  padding: 3rem 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.brands-label {
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-light);
  margin-bottom: 1.6rem;
}
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-sm);
  padding: .7rem 1.8rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  min-width: 110px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.brand-chip:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(242,183,5,.25);
  transform: translateY(-2px);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: .6rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: .93rem;
  color: var(--text-mid);
  margin-bottom: 1.1rem;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: .9rem; color: var(--navy); }
.author-info span   { font-size: .78rem; color: var(--text-light); }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text .section-label { display: inline-block; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p  { margin-bottom: 1rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.stat-item {
  text-align: center;
  padding: 1.2rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,.06);
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1.1;
}
.stat-label {
  font-size: .8rem;
  color: var(--text-light);
  font-weight: 500;
}
.trust-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pillar:hover {
  border-color: rgba(200,16,46,.15);
  box-shadow: var(--shadow-md);
}
.pillar-icon { font-size: 1.8rem; flex-shrink: 0; }
.pillar-text strong { display: block; font-size: .95rem; color: var(--navy); }
.pillar-text span   { font-size: .84rem; color: var(--text-mid); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-icon { font-size: 3rem; margin-bottom: 1rem; }
.contact-card h3 { color: var(--navy); margin-bottom: .5rem; }
.contact-card p  { font-size: .9rem; color: var(--text-mid); margin-bottom: 1.25rem; }
.contact-card .btn { width: 100%; justify-content: center; }
.contact-details { margin-top: 2.5rem; }
.detail-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--light-grey);
}
.detail-row:last-child { border-bottom: none; }
.detail-icon { font-size: 1.3rem; color: var(--red); flex-shrink: 0; }
.detail-text strong { display: block; font-size: .9rem; color: var(--navy); }
.detail-text span   { font-size: .85rem; color: var(--text-mid); }
.contact-map {
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-light);
  border: 1px solid rgba(0,0,0,.08);
}

/* ── LEGAL PAGES ──────────────────────────────────────────── */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.3rem; color: var(--navy); margin-bottom: .75rem; border-bottom: 2px solid var(--gold); padding-bottom: .4rem; }
.legal-section h3 { font-size: 1.05rem; color: var(--navy); margin: 1.2rem 0 .4rem; }
.legal-section p  { font-size: .95rem; color: var(--text-mid); margin-bottom: .75rem; }
.legal-section ul { padding-left: 1.4rem; list-style: disc; }
.legal-section ul li { font-size: .95rem; color: var(--text-mid); margin-bottom: .4rem; }
.legal-last-updated {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-sm);
  padding: .5rem 1.1rem;
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

/* ── GOLD SHIMMER ANIMATION ───────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.gold-shimmer {
  background: linear-gradient(
    90deg,
    var(--gold) 25%,
    #fff5c0 50%,
    var(--gold) 75%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── DIVIDERS ─────────────────────────────────────────────── */
.gold-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 99px;
  margin: .75rem auto 0;
}
.gold-divider-left { margin-left: 0; }

/* ── FESTIVE BANNER ───────────────────────────────────────── */
.festive-banner {
  background: linear-gradient(90deg, var(--red), var(--navy) 50%, var(--red));
  background-size: 200%;
  animation: shimmer 5s linear infinite;
  color: #fff;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  padding: .6rem 1rem;
  letter-spacing: .04em;
}

/* ── DISCOUNT BADGE ───────────────────────────────────────── */
.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--red);
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
  padding: .3rem .8rem;
  border-radius: 99px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ── FOOTER ───────────────────────────────────────────────── */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: .9rem; margin-top: .85rem; max-width: 280px; }
.footer-brand .site-logo .logo-name { color: var(--gold); }
.footer-brand .site-logo .logo-sub  { color: rgba(255,255,255,.6); }
.footer-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.1rem;
  position: relative;
}
.footer-heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  margin-top: .35rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .85rem;
}
.footer-contact-item span:first-child { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item p { font-size: .88rem; color: rgba(255,255,255,.65); }
.footer-wa-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--wa-green);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  transition: var(--transition);
  width: fit-content;
}
.footer-wa-btn:hover { background: var(--wa-dark); transform: translateY(-2px); }
.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.gst-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 99px;
  padding: .3rem .8rem;
  font-size: .76rem;
  color: rgba(255,255,255,.6);
  margin-top: .75rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .primary-nav, .header-cta { display: none; }
  #hamburger { display: flex; }
  .hero { min-height: 100svh; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-badges { gap: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .brands-row { gap: 1.2rem; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid   { grid-template-columns: 1fr; }
  .hero-cta-group  { flex-direction: column; align-items: flex-start; }
  .cta-btn-group   { flex-direction: column; }
  .top-bar-inner   { justify-content: center; }
}
@media (max-width: 380px) {
  .logo-sub { display: none; }
  .site-logo img { height: 40px; }
}
