/* ==========================================================
   Sri Venkateshwara Sweetmeat Stall (SVSS) - Balepet, Bengaluru
   Complete Responsive Design System & Styling (Clean & Crisp, No Blur)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  /* Royal Heritage Color Palette */
  --color-primary: #8a1419; /* Royal Crimson Maroon */
  --color-primary-dark: #5c0b0f;
  --color-primary-light: #b32128;
  
  --color-gold: #c99738; /* Royal Warm Gold */
  --color-gold-light: #e5be6b;
  --color-gold-dark: #9a6e1a;
  --color-gold-glow: rgba(201, 151, 56, 0.35);

  --color-accent-amber: #d97706;
  --color-accent-saffron: #f59e0b;
  
  --color-bg-dark: #120909;
  --color-bg-card-dark: #1e1112;
  --color-surface-dark: #291819;

  --color-bg-light: #faf7f2;
  --color-bg-card-light: #ffffff;
  --color-surface-soft: #f4eee3;
  
  --color-text-main: #2b1c1c;
  --color-text-muted: #6e5c5c;
  --color-text-light: #fdfaf6;
  --color-text-gold: #e2b358;

  --border-gold: rgba(201, 151, 56, 0.28);
  --border-light: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(90, 11, 15, 0.08);
  --shadow-lg: 0 16px 40px rgba(90, 11, 15, 0.14);
  --shadow-gold: 0 8px 30px rgba(201, 151, 56, 0.25);
  --shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.4);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition-smooth);
  touch-action: manipulation;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* ==========================================================
   Typography & Common Utilities
   ========================================================== */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  color: var(--color-primary-dark);
}

.font-serif {
  font-family: var(--font-serif);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #dfb76c 0%, #b88628 50%, #f7dfa5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.maroon-gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold-dark);
  background: rgba(201, 151, 56, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  margin-bottom: 12px;
}

.section-tag::before, .section-tag::after {
  content: '✦';
  font-size: 0.75rem;
  color: var(--color-gold);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

/* ==========================================================
   Buttons & UI Elements
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  transition: var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(138, 20, 25, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover, .btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(138, 20, 25, 0.5);
  background: linear-gradient(135deg, #c0262e 0%, var(--color-primary) 100%);
}

.btn-gold {
  background: linear-gradient(135deg, #e5be6b 0%, #b88628 100%);
  color: #2b1605;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-gold:hover, .btn-gold:active {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 151, 56, 0.45);
  background: linear-gradient(135deg, #f3cf82 0%, #c99738 100%);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover, .btn-whatsapp:active {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold-light);
  border: 1.5px solid var(--color-gold);
}

.btn-outline-gold:hover, .btn-outline-gold:active {
  background: var(--color-gold);
  color: #1a0f0f;
  transform: translateY(-2px);
}

.btn-outline-maroon {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-outline-maroon:hover, .btn-outline-maroon:active {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  min-height: 40px;
}

/* ==========================================================
   Header & Announcement Bar
   ========================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #3f0709 0%, #681014 50%, #3f0709 100%);
  color: #fce7ba;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(201, 151, 56, 0.3);
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.announcement-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.announcement-link:hover {
  color: var(--color-gold-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(201, 151, 56, 0.25);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.brand-logo {
  display: flex;
  align-items: center;
}

.header-emblem-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201, 151, 56, 0.35));
  transition: transform 0.3s ease;
}

.header-emblem-logo:hover {
  transform: scale(1.06);
}

@media (min-width: 768px) {
  .header-emblem-logo {
    height: 72px;
  }
}

@media (max-width: 480px) {
  .header-emblem-logo {
    height: 50px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-main);
  position: relative;
  padding: 6px 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-icon-btn {
  position: relative;
  background: var(--color-surface-soft);
  border: 1px solid var(--border-gold);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-size: 1.1rem;
}

.cart-icon-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.menu-toggle-btn {
  display: none;
  background: var(--color-surface-soft);
  border: 1px solid var(--border-gold);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  color: var(--color-primary);
  align-items: center;
  justify-content: center;
}

/* Mobile Navigation Drawer (Crisp, Solid, No Blur) */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 84%;
  max-width: 320px;
  height: 100vh;
  background: #ffffff;
  z-index: 2500;
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.35);
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.active {
  left: 0;
}

.mobile-drawer-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.mobile-nav-list {
  padding: 16px 0;
  overflow-y: auto;
  flex-grow: 1;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.mobile-nav-link i {
  color: var(--color-gold);
  width: 20px;
  text-align: center;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--color-surface-soft);
  color: var(--color-primary);
}

.mobile-drawer-footer {
  padding: 18px 20px;
  background: var(--color-surface-soft);
  border-top: 1px solid var(--border-gold);
}

/* ==========================================================
   Hero Majestic Banner Carousel Section
   ========================================================== */
.hero-carousel-section {
  position: relative;
  background: #0d0102;
  color: var(--color-text-light);
  min-height: clamp(520px, 68vh, 640px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 68vh, 640px);
  display: flex;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 7s ease-out;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.035);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 1, 2, 0.72) 0%,
    rgba(10, 1, 2, 0.45) 42%,
    rgba(10, 1, 2, 0.15) 75%,
    rgba(10, 1, 2, 0.05) 100%
  );
  pointer-events: none;
}

.hero-slide-container {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: clamp(40px, 6vw, 70px);
  padding-bottom: clamp(40px, 6vw, 70px);
}

/* Royal Frosted Glass Card for Hero Content */
.hero-slide-content {
  max-width: 580px;
  background: linear-gradient(145deg, rgba(18, 2, 5, 0.9) 0%, rgba(32, 5, 9, 0.84) 100%);
  border: 1px solid rgba(201, 151, 56, 0.45);
  border-radius: 16px;
  padding: clamp(24px, 3.5vw, 36px) clamp(22px, 3.5vw, 38px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(201, 151, 56, 0.12);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.12s, opacity 0.7s ease 0.12s;
}

.hero-slide.active .hero-slide-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 151, 56, 0.22);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge.tag-since {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 10px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-style: italic;
  color: var(--color-gold-light);
  margin-bottom: 10px;
  display: block;
}

.hero-description {
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  color: #eedcd2;
  line-height: 1.65;
  margin-bottom: 22px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-cta-group .btn {
  padding: 10px 20px;
  font-size: 0.92rem;
}

/* Slider Nav Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 2, 4, 0.78);
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.hero-slider-arrow:hover {
  background: var(--color-gold);
  color: #1a0405;
  box-shadow: 0 0 22px rgba(201, 151, 56, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow.prev {
  left: 24px;
}

.hero-slider-arrow.next {
  right: 24px;
}

/* Slider Pagination Dots */
.hero-slider-pagination {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--color-gold);
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.hero-dot.active {
  width: 36px;
  background: var(--color-gold);
  border-color: var(--color-gold-light);
  box-shadow: 0 0 12px rgba(201, 151, 56, 0.75);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .hero-carousel-section, .hero-slider-track {
    min-height: 560px;
  }

  .hero-slide-bg {
    background-position: center center;
  }

  .hero-slide-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 1, 2, 0.6) 0%,
      rgba(10, 1, 2, 0.75) 60%,
      rgba(10, 1, 2, 0.88) 100%
    );
  }

  .hero-slide-content {
    max-width: 520px;
  }

  .hero-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .hero-slider-arrow.prev { left: 12px; }
  .hero-slider-arrow.next { right: 12px; }
}

@media (max-width: 768px) {
  .hero-carousel-section, .hero-slider-track {
    min-height: 540px;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    align-items: flex-end;
  }

  .hero-slide-bg {
    background-position: 72% center;
  }

  .hero-slide-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 1, 2, 0.2) 0%,
      rgba(10, 1, 2, 0.6) 42%,
      rgba(10, 1, 2, 0.92) 80%,
      #0d0102 100%
    );
  }

  .hero-slide-container {
    padding: 0 16px 48px 16px;
  }

  .hero-slide-content {
    max-width: 100%;
    padding: 20px 16px;
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
  }

  .hero-title {
    font-size: 1.48rem;
    line-height: 1.22;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-description {
    font-size: 0.86rem;
    margin-bottom: 16px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 8px;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-slider-arrow {
    display: none;
  }

  .hero-slider-pagination {
    bottom: 14px;
  }
}

/* ==========================================================
   Trust / Highlights Strip
   ========================================================== */
.trust-strip {
  background: #ffffff;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 10px;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(201, 151, 56, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================
   About Us & Heritage Story
   ========================================================== */
.about-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--color-bg-light);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
}

.about-visual-stack {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-gold);
  height: 440px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-main-img {
    height: 300px;
  }
}

.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-deep);
  max-width: 260px;
}

.about-accent-card .badge-year {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold-light);
  line-height: 1;
}

.about-accent-card h4 {
  color: #fff;
  font-size: 1rem;
  margin-top: 4px;
}

.about-accent-card p {
  font-size: 0.82rem;
  color: #f7e1d7;
  margin-top: 4px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-style: italic;
  margin-bottom: 18px;
  font-weight: 600;
}

.about-body-text {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-quote-box {
  background: rgba(201, 151, 56, 0.08);
  border-left: 4px solid var(--color-gold);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}

.about-quote-box p {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.pillar-item .icon {
  color: var(--color-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pillar-item .text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-main);
}

/* ==========================================================
   Historic Roots & Vintage Press Archives Gallery
   ========================================================== */
.heritage-gallery-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.heritage-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .heritage-gallery-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.heritage-story-card {
  background: var(--color-bg-light);
  border: 1px solid rgba(201, 151, 56, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.heritage-story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.heritage-story-card.featured-news {
  border: 2px solid var(--color-gold);
  background: linear-gradient(180deg, #fffdfa 0%, var(--color-surface-soft) 100%);
}

.heritage-img-container {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #200d0f;
  position: relative;
}

.heritage-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.heritage-story-card:hover .heritage-img-container img {
  transform: scale(1.04);
}

.heritage-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.heritage-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: rgba(138, 20, 25, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  align-self: flex-start;
}

.heritage-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
}

.heritage-card-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================
   Spotlight Section: Mysore Pak & Dumroot Halwa
   ========================================================== */
.spotlight-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: radial-gradient(circle at center, #240809 0%, #120304 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 151, 56, 0.3);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 40px);
  margin-bottom: 40px;
}

.spotlight-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.spotlight-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--color-gold);
  height: 360px;
}

.spotlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (max-width: 768px) {
  .spotlight-img-wrap {
    height: 260px;
  }
}

.spotlight-card:hover .spotlight-img-wrap img {
  transform: scale(1.05);
}

.spotlight-content h3 {
  color: var(--color-gold-light);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.spotlight-quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-style: italic;
  color: #f7dfa5;
  margin-bottom: 14px;
}

.spotlight-desc {
  color: #d8c8c8;
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.spotlight-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.spotlight-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #efe5e5;
}

.spotlight-feat-item .bullet {
  color: var(--color-gold);
  font-weight: bold;
}

/* ==========================================================
   Signature Specialties Section (Mithai & Savouries)
   ========================================================== */
.specialties-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--color-surface-soft);
  position: relative;
}

.category-filter-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .category-filter-nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 0 4px 12px 4px;
    scrollbar-width: none;
  }
  
  .category-filter-nav::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
  }
}

.filter-btn {
  background: #ffffff;
  color: var(--color-text-main);
  border: 1px solid var(--border-light);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-primary);
}

.filter-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(138, 20, 25, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 151, 56, 0.16);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.product-image-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #f0e6dc;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-badge.gold-badge {
  background: linear-gradient(135deg, #e5be6b 0%, #b88628 100%);
  color: #241103;
}

.product-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-primary-dark);
}

.product-kannada-name {
  font-size: 0.82rem;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

.product-weight-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.weight-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.weight-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.weight-chip {
  padding: 5px 10px;
  font-size: 0.76rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.weight-chip.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  gap: 10px;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
}

.price-sub {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.product-add-btn {
  background: var(--color-surface-soft);
  color: var(--color-primary-dark);
  border: 1px solid var(--border-gold);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-add-btn:hover, .product-add-btn:active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ==========================================================
   Interactive Sweet Box Builder (Mini App)
   ========================================================== */
.box-builder-section {
  padding: clamp(60px, 8vw, 90px) 0;
  background: #ffffff;
}

.builder-container {
  background: var(--color-surface-soft);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
}

.builder-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 40px);
}

.builder-items-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

@media (max-width: 480px) {
  .builder-items-list {
    grid-template-columns: 1fr;
  }
}

.builder-item-card {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.builder-item-card:hover {
  border-color: var(--color-gold);
}

.builder-item-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.builder-item-card .item-rate {
  font-size: 0.82rem;
  color: var(--color-gold-dark);
  font-weight: 700;
}

.builder-qty-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-surface-soft);
  border-radius: var(--radius-full);
  padding: 3px 8px;
}

.builder-qty-btn {
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.builder-qty-val {
  font-weight: 700;
  font-size: 0.9rem;
}

.builder-summary-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.builder-summary-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.selected-items-list {
  flex-grow: 1;
  min-height: 140px;
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 16px;
}

.selected-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 0.88rem;
  gap: 10px;
}

.empty-box-msg {
  text-align: center;
  color: var(--color-text-muted);
  padding: 30px 0;
  font-size: 0.88rem;
}

.builder-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 2px solid var(--border-gold);
  margin-bottom: 18px;
}

.builder-total-row .total-title {
  font-size: 1.02rem;
  font-weight: 700;
}

.builder-total-row .total-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

/* ==========================================================
   Festive & Wedding Gifting Section
   ========================================================== */
.gifting-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(180deg, #faf7f2 0%, #f3ede2 100%);
}

.gifting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.gifting-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--color-gold);
}

.gifting-image-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gifting-image-frame img {
    height: 280px;
  }
}

.gifting-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 14px;
}

.gifting-benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0 28px;
}

@media (max-width: 480px) {
  .gifting-benefits-list {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: #ffffff;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.benefit-card h4 {
  font-size: 0.92rem;
  margin-bottom: 4px;
  color: var(--color-primary-dark);
}

.benefit-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================
   Reviews & Testimonials Section
   ========================================================== */
.reviews-section {
  padding: clamp(60px, 8vw, 90px) 0;
  background: #ffffff;
}

.google-rating-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--color-surface-soft);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  max-width: 500px;
  margin: 0 auto 36px auto;
  flex-wrap: wrap;
  text-align: center;
}

.google-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

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

.review-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.review-quote {
  font-size: 0.92rem;
  color: var(--color-text-main);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.reviewer-info h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.reviewer-info p {
  font-size: 0.76rem;
  color: var(--color-text-muted);
}

/* ==========================================================
   Store Location & Visit Info
   ========================================================== */
.visit-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: radial-gradient(circle at 20% 50%, #29080b 0%, #150304 100%);
  color: #ffffff;
  position: relative;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.visit-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 151, 56, 0.35);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 36px);
}

.visit-info-card h2 {
  color: var(--color-gold-light);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  margin-bottom: 10px;
}

.visit-address-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 18px;
  margin: 20px 0;
}

.visit-address-title {
  color: var(--color-gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.visit-address-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
}

.visit-timings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .visit-timings-grid {
    grid-template-columns: 1fr;
  }
}

.timing-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timing-icon {
  color: var(--color-gold);
  font-size: 1.2rem;
}

.timing-text h5 {
  color: var(--color-gold-light);
  font-size: 0.85rem;
}

.timing-text p {
  color: #dfd0d0;
  font-size: 0.8rem;
}

.visit-action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 3px solid var(--color-gold);
  height: 420px;
}

@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
  background: #0d0203;
  color: #bfaeae;
  padding: clamp(40px, 6vw, 70px) 0 30px;
  border-top: 2px solid var(--color-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-emblem-logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(201, 151, 56, 0.4));
}

.footer-about-text {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 18px;
  color: #bfadad;
}

.footer-col h4 {
  color: var(--color-gold-light);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 6px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--color-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: #a89494;
  font-size: 0.86rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.86rem;
}

.footer-contact-item i {
  color: var(--color-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

/* ==========================================================
   Mobile Bottom Sticky Navigation Bar
   ========================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 62px;
  background: #1a0809;
  border-top: 1px solid var(--border-gold);
  z-index: 1800;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-bottom-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.mobile-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #dfd0d0;
  font-size: 0.68rem;
  font-weight: 600;
  gap: 3px;
  flex: 1;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
}

.mobile-bottom-btn i {
  font-size: 1.15rem;
  color: var(--color-gold-light);
}

.mobile-bottom-btn:hover, .mobile-bottom-btn:active, .mobile-bottom-btn.active {
  color: #ffffff;
}

.mobile-bottom-btn.active i {
  color: #ffffff;
}

.mobile-bottom-badge {
  position: absolute;
  top: 6px;
  right: 25%;
  background: var(--color-primary-light);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
}

/* ==========================================================
   Floating Widgets & Modals
   ========================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1500;
  transition: var(--transition-smooth);
  animation: pulse-green 2.5s infinite;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 74px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}

.floating-whatsapp:hover, .floating-whatsapp:active {
  transform: scale(1.08);
  color: #fff;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Cart / Pre-Order Drawer & Mobile Drawer Overlay (NO BLUR) */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  /* Blur removed as requested */
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #ffffff;
  z-index: 2700;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.35);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  right: 0;
}

.drawer-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-header h3 {
  color: #fff;
  font-size: 1.15rem;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer-body {
  padding: 18px 20px;
  flex-grow: 1;
  overflow-y: auto;
}

.drawer-footer {
  padding: 18px 20px;
  background: var(--color-surface-soft);
  border-top: 1px solid var(--border-gold);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  width: 90%;
  max-width: 400px;
}

@media (min-width: 769px) {
  .toast-container {
    bottom: 30px;
  }
}

.toast {
  background: #1c0a0c;
  color: #fff;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   Responsive Breakpoints & Media Queries
   ========================================================== */

/* Tablets & Small Laptops (<= 992px) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-badge-wrap, .hero-cta-group {
    justify-content: center;
  }

  .about-grid, .spotlight-card, .builder-grid, .gifting-grid, .visit-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .spotlight-card.reverse {
    grid-template-columns: 1fr;
  }

  .spotlight-card.reverse .spotlight-img-wrap {
    order: -1;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }

  .menu-toggle-btn {
    display: flex;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: block;
  }

  .announcement-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .announcement-links {
    justify-content: center;
    font-size: 0.78rem;
  }

  .hero-float-badge.bottom-left, .hero-float-badge.top-right {
    position: static;
    margin-top: 10px;
    width: 100%;
  }

  .about-accent-card {
    position: static;
    max-width: 100%;
    margin-top: 16px;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .visit-action-buttons .btn {
    width: 100%;
  }
}

/* Small Phones (<= 480px) */
@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .announcement-bar {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .header-emblem-logo {
    height: 46px;
  }

  .btn {
    padding: 11px 20px;
    font-size: 0.9rem;
  }
}
