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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', system-ui, -apple-system, sans-serif;
      background-color: #FEFEFE;
      color: #2d2d2d;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* =========================================================
       DESIGN TOKENS
    ========================================================= */
    :root {
      --red:        #DE2A1B;
      --red-light:  #fff0ee;
      --red-dark:   #b81e12;
      --yellow:     #F6CF18;
      --yellow-bg:  #fffbe6;
      --white:      #FEFEFE;
      --cream:      #fdf8f2;
      --gray-light: #f4f4f4;
      --gray:       #888;
      --text:       #2d2d2d;
      --text-soft:  #666;
      --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
      --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
      --shadow-lg:  0 12px 40px rgba(0,0,0,0.13);
      --radius-sm:  10px;
      --radius-md:  18px;
      --radius-lg:  28px;
      --max-width:  480px;
    }

    /* =========================================================
       LAYOUT HELPERS
    ========================================================= */
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    section {
      padding: 48px 0;
    }

    .section-title {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--text);
      text-align: center;
      margin-bottom: 6px;
      letter-spacing: -0.3px;
    }

    .section-subtitle {
      font-size: 0.9rem;
      color: var(--text-soft);
      text-align: center;
      margin-bottom: 32px;
    }

    /* =========================================================
       TOP NAV BAR
    ========================================================= */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(254, 254, 254, 0.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1.5px solid rgba(222, 42, 27, 0.1);
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 100%;
    }

    .navbar-inner {
      width: 100%;
      max-width: var(--max-width);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .navbar-brand {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--red);
      letter-spacing: -0.2px;
    }

    .navbar-tag {
      background: var(--yellow);
      color: #5a4200;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      letter-spacing: 0.3px;
    }

    /* =========================================================
       HERO SECTION
    ========================================================= */
    .hero {
      background: linear-gradient(160deg, #fff6f5 0%, #fffdf5 60%, #fff 100%);
      padding: 48px 0 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Decorative background blobs */
    .hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(246,207,24,0.18) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -40px; left: -40px;
      width: 160px; height: 160px;
      background: radial-gradient(circle, rgba(222,42,27,0.09) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-logo-wrap {
      margin-bottom: 20px;
    }

    /* Logo container with a warm circle background */
    .hero-logo-bg {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: var(--white);
      box-shadow: 0 4px 20px rgba(222,42,27,0.15), 0 0 0 6px rgba(246,207,24,0.2);
      overflow: hidden;
    }

    .hero-logo-bg img {
      width: 90px;
      height: 90px;
      object-fit: contain;
    }

    /* Fallback logo if image missing */
    .logo-fallback {
      width: 90px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--red);
      border-radius: 50%;
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--white);
      letter-spacing: -1px;
    }

    .hero-badge {
      display: inline-block;
      background: var(--yellow);
      color: #5a4200;
      font-size: 0.72rem;
      font-weight: 800;
      padding: 3px 14px;
      border-radius: 20px;
      margin-bottom: 14px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .hero-title {
      font-size: 2rem;
      font-weight: 900;
      color: var(--red);
      line-height: 1.15;
      letter-spacing: -0.5px;
      margin-bottom: 8px;
    }

    .hero-tagline {
      font-size: 0.95rem;
      color: var(--text-soft);
      font-weight: 600;
      margin-bottom: 24px;
    }

    .hero-divider {
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
      color: var(--yellow);
      font-size: 1.1rem;
      margin-bottom: 0;
    }

    .hero-divider span {
      font-size: 0.75rem;
      color: var(--text-soft);
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    /* =========================================================
       STICKY CATEGORY NAV (below hero)
    ========================================================= */
    .category-nav {
      position: sticky;
      top: 0px; /* Below main navbar */
      z-index: 90;
      background: var(--white);
      border-bottom: 2px solid rgba(222, 42, 27, 0.1);
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

    .category-scroll {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding: 14px 20px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .category-scroll::-webkit-scrollbar { display: none; }

    .cat-link {
      flex: 0 0 auto;
      background: var(--gray-light);
      color: var(--text-soft);
      border: none;
      border-radius: 50px;
      padding: 10px 20px;
      font-size: 0.85rem;
      font-weight: 700;
      font-family: 'Nunito', sans-serif;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
      scroll-snap-align: start;
      text-decoration: none;
      display: inline-block;
    }

    .cat-link.active,
    .cat-link:active {
      background: var(--red);
      color: #fff;
    }

    .cat-link:hover:not(.active) {
      background: var(--red-light);
      color: var(--red);
    }

    /* =========================================================
       MENU SECTION
    ========================================================= */
    .menu-section {
      background: var(--cream);
      padding: 24px 0 48px;
    }

    /* Category block */
    .category-block {
      margin-bottom: 32px;
      scroll-margin-top: 120px; /* offset for sticky headers */
    }

    /* Category Header (clickable to expand/collapse) */
    .category-header {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 18px 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: var(--shadow-sm);
      transition: all 0.2s ease;
      margin-bottom: 12px;
      user-select: none;
    }

    .category-header:active {
      transform: scale(0.99);
    }

    .category-header.collapsed {
      margin-bottom: 0;
    }

    .category-header-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .category-name {
      font-size: 1.25rem;
      font-weight: 900;
      color: var(--text);
      letter-spacing: -0.3px;
    }

    /* .category-count {
      background: var(--yellow-bg);
      color: #7a5a00;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      border: 1px solid rgba(246,207,24,0.4);
    } */

    .category-toggle {
      font-size: 1.4rem;
      color: var(--red);
      transition: transform 0.3s ease;
      line-height: 1;
    }

    .category-header.collapsed .category-toggle {
      transform: rotate(-90deg);
    }

    /* Product list inside category */
    .product-list {
      background: var(--white);
      border-radius: 0 0 var(--radius-md) var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      max-height: 2000px;
      opacity: 1;
      transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    .product-list.collapsed {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
    }

    /* Individual product item */
    .product-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      transition: background 0.2s ease;
    }

    .product-item:last-child {
      border-bottom: none;
    }

    .product-item:active {
      background: var(--gray-light);
    }

    @media (hover: hover) {
      .product-item:hover {
        background: var(--gray-light);
      }
    }

    .product-info {
      flex: 1;
      min-width: 0; /* allow text truncation */
    }

    .product-name {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 3px;
      letter-spacing: -0.1px;
    }

    .product-uom {
      font-size: 0.75rem;
      color: var(--text-soft);
      font-weight: 600;
    }

    .product-price {
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--red);
      letter-spacing: -0.2px;
      flex-shrink: 0;
      margin-left: 16px;
    }

    /* Veg icon badge (small) */
    .veg-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border: 1.5px solid #2e7d32;
      border-radius: 3px;
      margin-left: 8px;
      vertical-align: middle;
    }

    .veg-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #2e7d32;
    }

    /* =========================================================
       ABOUT SECTION
    ========================================================= */
    .about-section {
      background: var(--white);
      text-align: center;
    }

    .about-text {
      font-size: 0.95rem;
      color: var(--text-soft);
      line-height: 1.7;
      max-width: 340px;
      margin: 0 auto 24px;
    }

    .about-stats {
      display: flex;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      display: block;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--red);
      letter-spacing: -0.5px;
    }

    .stat-label {
      font-size: 0.75rem;
      color: var(--text-soft);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* =========================================================
       VISIT STORE SECTION
    ========================================================= */
    .store-section {
      background: var(--cream);
    }

    .store-card {
      background: var(--white);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    /* Map placeholder */
    .store-map-placeholder {
      width: 100%;
      height: 160px;
      background: linear-gradient(135deg, #e8f4f8 0%, #dce9f0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .store-map-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c5d8e2' fill-opacity='0.4'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23c5d8e2' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E") repeat;
      opacity: 0.5;
    }

    .map-pin-icon {
      font-size: 2.5rem;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
    }

    .store-body {
      padding: 22px 20px;
    }

    .store-name {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 6px;
    }

    .store-address {
      font-size: 0.88rem;
      color: var(--text-soft);
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .store-address strong {
      color: var(--text);
      display: block;
      margin-bottom: 2px;
    }

    /* Map Link Button */
    .btn-maps {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 14px;
      background: var(--red);
      color: #fff;
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem;
      font-weight: 800;
      border: none;
      border-radius: var(--radius-sm);
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.15s ease;
      box-shadow: 0 4px 14px rgba(222,42,27,0.3);
    }

    .btn-maps:active {
      transform: scale(0.98);
      background: var(--red-dark);
    }

    @media (hover: hover) {
      .btn-maps:hover {
        background: var(--red-dark);
      }
    }

    .btn-maps svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    /* Store hours */
    .store-hours {
      margin-top: 16px;
      background: var(--gray-light);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
    }

    .hours-title {
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text-soft);
      margin-bottom: 8px;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.82rem;
      padding: 3px 0;
    }

    .hours-day { color: var(--text); font-weight: 600; }
    .hours-time { color: var(--text-soft); }
    .hours-open { color: #2e7d32; font-weight: 700; }

    .store-section .container {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }


    /* =========================================================
       SOCIAL SECTION
    ========================================================= */
    .social-section {
      background: var(--white);
      text-align: center;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 18px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .social-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 7px;
      text-decoration: none;
      transition: transform 0.2s ease;
    }

    .social-btn:active {
      transform: scale(0.93);
    }

    @media (hover: hover) {
      .social-btn:hover {
        transform: translateY(-3px);
      }
    }

    .social-icon-circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-sm);
    }

    .social-icon-circle svg {
      width: 26px;
      height: 26px;
    }

    .social-icon-circle.instagram {
      background: linear-gradient(135deg, #f9e5c5, #fdcac3, #e8c6f5);
    }

    .social-icon-circle.facebook {
      background: #e7f0fb;
    }

    .social-icon-circle.google {
      background: #fef3e2;
    }

    .social-label {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--text-soft);
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }

    /* Review CTA */
    .review-cta {
      background: linear-gradient(135deg, var(--yellow-bg) 0%, #fff8f6 100%);
      border: 1.5px solid rgba(246,207,24,0.4);
      border-radius: var(--radius-md);
      padding: 22px 18px;
      text-align: center;
    }

    .review-stars {
      font-size: 1.3rem;
      letter-spacing: 2px;
      margin-bottom: 8px;
    }

    .review-heading {
      font-size: 1rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 6px;
    }

    .review-sub {
      font-size: 0.82rem;
      color: var(--text-soft);
      margin-bottom: 16px;
      line-height: 1.5;
    }

    .btn-review {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 11px 22px;
      background: var(--white);
      color: var(--text);
      border: 1.5px solid rgba(0,0,0,0.1);
      border-radius: 50px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.85rem;
      font-weight: 800;
      text-decoration: none;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-review:active {
      transform: scale(0.97);
    }

    @media (hover: hover) {
      .btn-review:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
      }
    }

    /* =========================================================
       FOOTER
    ========================================================= */
    footer {
      background: var(--red);
      color: rgba(255,255,255,0.85);
      text-align: center;
      padding: 24px 20px;
      font-size: 0.78rem;
    }

    footer strong {
      color: #fff;
      font-size: 0.9rem;
      display: block;
      margin-bottom: 4px;
    }

    footer .footer-year {
      color: var(--yellow);
      font-weight: 700;
    }

    /* Divider line decoration */
    .wavy-divider {
      display: block;
      text-align: center;
      color: var(--yellow);
      font-size: 1.2rem;
      letter-spacing: 4px;
      margin: 4px 0;
    }

        footer a {
      color: #fff;
      text-decoration: none;
      font-weight: 700; /* optional */
    }

    footer a:hover {
      text-decoration: underline; /* optional hover effect */
    }

    /* =========================================================
       DESKTOP BREAKPOINTS (non-mobile enhancements)
    ========================================================= */
    @media (min-width: 640px) {
      :root { --max-width: 560px; }
      .hero-title { font-size: 2.4rem; }
    }

    @media (min-width: 960px) {
      :root { --max-width: 800px; }
    }

        /* ========================================
   PRELOADER STYLES
======================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #E21D24;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  padding: 20px;
}

.preloader-logo {
  margin-bottom: 30px;
  opacity: 0;
  animation: logoFadeIn 0.8s ease forwards;
}

.preloader-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

.preloader-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.preloader-tagline .word {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFEA07;
  letter-spacing: 1.5px;
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
}

/* Animation for logo fade in */
@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation for words appearing */
@keyframes wordReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments for mobile */
@media (max-width: 480px) {
  .preloader-logo img {
    width: 100px;
    height: 100px;
  }
  
  .preloader-tagline .word {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
}

