@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Universal Static Reveal - Prevent any element from being hidden by JS scroll animations */
*,
[data-aos],
[data-aos] *,
[data-animation-role],
[data-animation-role] *,
[data-reveal],
[data-reveal] *,
.fade-in-up,
.fade-in,
.scroll-reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

img[data-src],
img[data-image] {
  opacity: 1 !important;
  visibility: visible !important;
}

.main-content {
  opacity: 1 !important;
}

.main-content .shopify-section {
  display: inherit !important;
}

/* AI Summary visually hidden for crawlers */
.ai-summary-section {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ceyou-interactivity-css:v1 — state styles for the interactivity bundle */
.nav-open {
  overflow: hidden;
}

.nav-menu.is-open,
.navbar-collapse.is-open,
.site-nav.is-open,
#mySidenav.is-open {
  display: block;
}

.ceyou-force-nav {
  display: flex !important;
  flex-direction: column;
  gap: .5rem;
}

.js-slider {
  position: relative;
  overflow: hidden;
}

.js-slider .slide,
.js-slider .carousel-item,
.js-slider .slider-item,
.js-slider [data-slide] {
  display: none;
}

.js-slider .slide.is-active,
.js-slider .carousel-item.is-active,
.js-slider .slider-item.is-active,
.js-slider [data-slide].is-active {
  display: block;
  animation: ceyou-fade .4s ease;
}

@keyframes ceyou-fade {
  from {
    opacity: .4;
  }

  to {
    opacity: 1;
  }
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(17, 17, 17, .45);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev {
  left: 12px;
}

.slider-next {
  right: 12px;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(17, 17, 17, .7);
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 2;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: #fff;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .6);
  padding: 1rem;
}

.modal.is-open {
  display: flex;
}

.modal-open {
  overflow: hidden;
}

.ceyou-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, .85);
  cursor: zoom-out;
}

.ceyou-lightbox.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vmin;
}

.ceyou-lightbox img {
  max-width: 96vw;
  max-height: 96vh;
  object-fit: contain;
}

.ceyou-toasts {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.ceyou-toast {
  background: #111;
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: 8px;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
}

.ceyou-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ceyou-field-error {
  display: block;
  color: #c0392b;
  font-size: 1.3rem;
  margin-top: .25rem;
  min-height: 1em;
}

.ceyou-invalid {
  border-color: #c0392b !important;
  outline-color: #c0392b;
}

.ceyou-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 90vw);
  background: #fff;
  color: #111;
  box-shadow: -8px 0 28px rgba(0, 0, 0, .2);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 1300;
  display: flex;
  flex-direction: column;
}

.ceyou-cart-drawer.is-open {
  transform: translateX(0);
}

.ceyou-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.ceyou-cart-close {
  border: 0;
  background: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.ceyou-cart-items {
  flex: 1;
  overflow: auto;
  padding: .5rem 1rem;
}

.ceyou-cart-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 0;
  border-bottom: 1px solid #f1f1f1;
}

.ceyou-cart-name {
  flex: 1;
}

.ceyou-cart-remove {
  border: 0;
  background: none;
  cursor: pointer;
  color: #999;
  font-size: 1.1rem;
}

.ceyou-cart-empty {
  color: #888;
}

.ceyou-cart-foot {
  padding: 1rem;
  border-top: 1px solid #eee;
  font-weight: 600;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
  padding: 12px 0;
  font-size: 1.35rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
  color: #FFD700;
  text-decoration: underline;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
}

/* Global High Contrast Typography & Readability Overrides */
body,
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.small-title,
.text-label,
p,
a,
.btn,
.TemplateMenu a,
.top-header a,
.faq-summary {
  font-family: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

body {
  color: #FFFFFF;
}

/* Background Color Override to match dark olive green */
body,
.bg-accent-green,
header,
.top-section,
.section-intro,
.section-products,
.faq-section {
  background-color: #1F2618 !important;
}

/* Hero Section Styling - Exactly Matching Reference Design */
.top-section {
  padding: 8rem 0 10rem 0 !important;
  background-color: #1F2618 !important;
  background-image: linear-gradient(rgba(16, 19, 13, 0.55), rgba(16, 19, 13, 0.55)), url('../images/hero.WEBP');
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero-title,
.top-section .section-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(2.5rem, 5.5vw, 4.8rem) !important;
  font-weight: 300 !important;
  color: #D6C898 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
  max-width: 920px;
  margin-bottom: 2.5rem !important;
  padding-bottom: 0 !important;
}

.hero-bold,
.hero-title span,
.section-title span,
.top-section .section-title .text-bold {
  font-size: inherit !important;
  font-weight: 800 !important;
  color: #D6C898 !important;
}

.hero-btn-wrapper,
.top-section .btn-wrapper {
  display: flex !important;
  gap: 1.25rem !important;
  margin-top: 2rem !important;
}

.hero-btn,
.top-section .btn-accent-yellow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 140px !important;
  padding: 0.9rem 2.2rem !important;
  background-color: #D2C6A0 !important;
  color: #1C2216 !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  border-radius: 50px !important;
  border: none !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
}

.hero-btn:hover,
.top-section .btn-accent-yellow:hover {
  background-color: #E2D7B4 !important;
  color: #1C2216 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3) !important;
}

.top-section .section-block-wrapper,
.top-section .block-object {
  width: 100% !important;
  max-width: 1060px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.hero-description {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.hero-btn-wrapper,
.top-section .btn-wrapper {
  justify-content: center !important;
  flex-wrap: wrap !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 780px !important;
}

/* Professional Header Navbar & Quick Action Bar */
header {
  background-color: #1F2618 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

.top-header {
  background-color: #1F2618 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 0.5rem 2.5rem !important;
}

.top-header ul {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 2rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  border: none !important;
}

.top-header ul li a {
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.top-header img {
  height: 32px !important;
  width: auto !important;
  opacity: 0.9 !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.top-header img:hover {
  opacity: 1 !important;
  transform: scale(1.05) !important;
}

header .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0.75rem 2.5rem !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
}

.header-logo {
  flex: 0 0 auto !important;
  margin-right: 1.5rem !important;
}

.header-logo img {
  height: 38px !important;
  width: auto !important;
}

.mainmenu {
  flex: 1 1 auto !important;
  display: flex !important;
  justify-content: center !important;
}

.TemplateMenu {
  display: flex !important;
  align-items: center !important;
  gap: 1.8rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.TemplateMenu a {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  padding: 0.5rem 0.8rem !important;
  transition: color 0.2s ease !important;
}

.TemplateMenu a:hover {
  color: #D6C898 !important;
}

.header-actions {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
  margin-left: 1.5rem !important;
}

.header-phone {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  color: #FFFFFF !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.3rem !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  white-space: nowrap !important;
}

.header-phone:hover {
  color: #D6C898 !important;
  text-decoration: none !important;
}

.header-pickup-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.55rem 1.4rem !important;
  background-color: #D2C6A0 !important;
  color: #1C2216 !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  border-radius: 50px !important;
  border: none !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
  white-space: nowrap !important;
}

.header-pickup-btn:hover {
  background-color: #E2D7B4 !important;
  color: #1C2216 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

/* Hide floating old CTA elements if any exist */
.header-cta-wrapper {
  display: none !important;
}

/* Header Navigation Styling */
.TemplateMenu a {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
}

.TemplateMenu a:hover {
  color: #D6C898 !important;
}

/* Section Headings Across Homepage */
.section-title {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 400 !important;
  color: #D6C898 !important;
  letter-spacing: -0.01em !important;
}

.text-label {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #D6C898 !important;
  font-size: 1.35rem !important;
}

.text-yellow {
  color: #D6C898 !important;
}

/* Intro Section (.section-intro) Typography */
.section-intro .section-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(2.5rem, 4.5vw, 3.6rem) !important;
  font-weight: 700 !important;
  color: #D6C898 !important;
  line-height: 1.25 !important;
  margin-bottom: 1.5rem !important;
}

.section-intro p {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.7rem !important;
  line-height: 1.75 !important;
  color: #FFFFFF !important;
  margin-bottom: 1.25rem !important;
}

.section-intro p a {
  color: #D2C6A0 !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  transition: color 0.2s ease !important;
}

.section-intro p a:hover {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

/* Paragraphs & Text inside dark sections */
.bg-accent-green p,
.bg-accent-green li,
.bg-accent-green p span,
.top-section p,
.top-section p span,
.section-wrapper p,
.section-wrapper li,
.section-wrapper p span,
.section-intro p,
.section-products p,
.section-about p,
.section-start p {
  color: #FFFFFF !important;
  font-size: 1.7rem !important;
  line-height: 1.75 !important;
}

/* Text links on dark sections */
.bg-accent-green p a,
.bg-accent-green li a,
.top-section p a,
.section-wrapper p a,
.section-wrapper li a {
  color: #D2C6A0 !important;
  text-decoration: underline !important;
  font-weight: 600;
}

.bg-accent-green p a:hover,
.bg-accent-green li a:hover,
.top-section p a:hover,
.section-wrapper p a:hover {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

/* White card section adjustments */
.split-wrapper.bg-white p,
.split-wrapper.bg-white li,
.split-wrapper.bg-white span,
.bg-white p,
.bg-white li,
.bg-white span {
  color: #1A1A1A !important;
  font-size: 1.55rem;
  line-height: 1.6;
}

.split-wrapper.bg-white .section-title,
.bg-white .section-title {
  color: #B8860B !important;
  /* High contrast gold-brown on white */
}

.split-wrapper.bg-white .text-label,
.bg-white .text-label {
  color: #1A1A1A !important;
}

/* FAQ Accordion Styling - Maximum Contrast & Readability */
.faq-section {
  padding: 4rem 1.5rem;
}

.faq-section .section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem) !important;
  font-weight: 700 !important;
}

.faq-section .text-label {
  font-size: 1.45rem !important;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.faq-item:hover {
  border-color: #D2C6A0;
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-1px);
}

.faq-summary {
  padding: 1.4rem 1.8rem;
  font-size: 2.0rem !important;
  font-weight: 700;
  color: #D2C6A0 !important;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  letter-spacing: 0.02em;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: "+";
  font-size: 2.2rem;
  font-weight: 500;
  color: #D2C6A0 !important;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item[open] .faq-summary::after {
  content: "−";
}

.faq-content {
  padding: 0 1.8rem 1.6rem 1.8rem;
  color: #FFFFFF !important;
  line-height: 1.75;
  font-size: 1.75rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 0.2rem;
  padding-top: 1.3rem;
}

.faq-content p,
.faq-content div,
.faq-content span {
  color: #FFFFFF !important;
  font-size: 1.75rem !important;
  line-height: 1.75 !important;
  margin-bottom: 0.9rem;
}

.faq-content ul,
.faq-content ol {
  color: #FFFFFF !important;
  margin: 0.6rem 0 1.2rem 1.8rem;
  padding: 0;
}

.faq-content li {
  color: #FFFFFF !important;
  font-size: 1.75rem !important;
  line-height: 1.75 !important;
  margin-bottom: 0.5rem;
}

.faq-content strong,
.faq-content b {
  color: #D2C6A0 !important;
  font-weight: 700;
}

.faq-content a {
  color: #D2C6A0 !important;
  text-decoration: underline !important;
  font-weight: 600;
}

.faq-content a:hover {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

@media(prefers-reduced-motion:reduce) {
  .js-slider .is-active {
    animation: none;
  }

  .ceyou-toast {
    transition: none;
  }

  .ceyou-cart-drawer {
    transition: none;
  }
}

@media(prefers-reduced-motion:no-preference) {

  html.ceyou-reveal-ready .fade-in-up,
  html.ceyou-reveal-ready .fade-in,
  html.ceyou-reveal-ready .scroll-reveal,
  html.ceyou-reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  /* Ensure closemenu / mobile-menu-close is strictly hidden on desktop */
  .openmenu,
  .mobile-menu-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* closemenu: hidden by default on desktop, shown via the @media(max-width:991px) block at file bottom */
  @media (min-width: 992px) {
    .closemenu,
    .mobile-menu-close {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }
  }

  /* ==========================================
   CONTACT PAGE STYLING (.contact-grid, cards)
========================================== */

  .contact-page-hero {
    padding: 4rem 1.5rem 2rem 1.5rem !important;
    max-width: 1140px;
    margin: 0 auto;
  }

  .contact-page-hero .section-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(2.5rem, 5vw, 4.2rem) !important;
    font-weight: 700 !important;
    color: #D6C898 !important;
    margin-bottom: 1rem !important;
  }

  .contact-page-hero p {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.7rem !important;
    line-height: 1.75 !important;
    color: #FFFFFF !important;
    max-width: 750px;
  }

  .contact-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 1.75rem !important;
    max-width: 1140px !important;
    margin: 2rem auto 3rem auto !important;
    padding: 0 1.5rem !important;
  }

  .contact-card {
    background: rgba(22, 28, 17, 0.85) !important;
    border: 1px solid rgba(210, 198, 160, 0.3) !important;
    border-radius: 16px !important;
    padding: 2.2rem 1.8rem !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35) !important;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  .contact-card:hover {
    transform: translateY(-4px) !important;
    border-color: #D2C6A0 !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5) !important;
  }

  .contact-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 0.85rem !important;
    margin-bottom: 1.25rem !important;
  }

  .contact-card-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(210, 198, 160, 0.15) !important;
    color: #D2C6A0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.3rem !important;
    flex-shrink: 0 !important;
  }

  .contact-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #D6C898 !important;
    margin: 0 !important;
  }

  .contact-card-body p,
  .contact-card-body span {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.6rem !important;
    line-height: 1.7 !important;
    color: #FFFFFF !important;
  }

  .contact-main-link {
    display: inline-block !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: #D2C6A0 !important;
    text-decoration: none !important;
    margin-bottom: 0.75rem !important;
    transition: color 0.2s ease !important;
    word-break: break-word !important;
  }

  .contact-main-link:hover {
    color: #FFFFFF !important;
    text-decoration: underline !important;
  }

  .location-item {
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .location-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  .location-name {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.65rem !important;
    font-weight: 700 !important;
    color: #D6C898 !important;
    margin-bottom: 0.25rem !important;
  }

  .location-address {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.5rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 0 0.5rem 0 !important;
  }

  .location-map-btn {
    font-size: 1.25rem !important;
    color: #D2C6A0 !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
  }

  .location-map-btn:hover {
    color: #FFFFFF !important;
  }

  /* ==========================================
   MENU PAGE STYLING (.menu-cards-grid, cards)
========================================== */

  .menu-page-hero {
    padding: 4rem 1.5rem 2rem 1.5rem !important;
    max-width: 1200px;
    margin: 0 auto;
  }

  .menu-page-hero .section-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(2.5rem, 5vw, 4.2rem) !important;
    font-weight: 700 !important;
    color: #D6C898 !important;
    margin-bottom: 0.75rem !important;
  }

  .menu-page-hero p {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.7rem !important;
    line-height: 1.75 !important;
    color: #FFFFFF !important;
    max-width: 780px;
  }

  /* Category Filter Tabs Sticky Bar - Full Width, No Borders */
  .menu-category-nav {
    position: sticky !important;
    top: 50px !important;
    z-index: 900 !important;
    width: 100% !important;
    background: #1F2618 !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    padding: 0.85rem 0 !important;
    margin-bottom: 3rem !important;
  }

  .menu-category-scroll {
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    overflow-x: auto !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0.2rem 1.5rem !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  @media (min-width: 1240px) {
    .menu-category-scroll {
      justify-content: center !important;
    }
  }

  .menu-category-scroll::-webkit-scrollbar {
    display: none !important;
  }

  .menu-cat-btn {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    padding: 0.6rem 1.35rem !important;
    border-radius: 50px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(210, 198, 160, 0.3) !important;
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .menu-cat-btn:hover {
    background: rgba(210, 198, 160, 0.15) !important;
    border-color: #D2C6A0 !important;
    color: #D2C6A0 !important;
  }

  .menu-cat-btn.is-active {
    background: #D2C6A0 !important;
    color: #1F2618 !important;
    font-weight: 700 !important;
    border-color: #D2C6A0 !important;
    box-shadow: 0 4px 14px rgba(210, 198, 160, 0.35) !important;
  }

  .menu-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
  }

  /* Menu Category Titles with Organized Spacing */
  .menu-category-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 2.4rem !important;
    font-weight: 700 !important;
    color: #D6C898 !important;
    margin: 3.5rem 0 1.8rem 0 !important;
    padding-bottom: 0.6rem !important;
    border-bottom: 1px solid rgba(210, 198, 160, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    scroll-margin-top: 120px !important;
  }

  /* Menu Cards Grid Layout - Neat, Clean & Organized */
  .menu-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 3.5rem !important;
  }

  .menu-card-item {
    background: rgba(26, 33, 22, 0.85) !important;
    border: 1px solid rgba(210, 198, 160, 0.22) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .menu-card-item:hover {
    transform: translateY(-4px) !important;
    border-color: #D2C6A0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  }

  .menu-card-img-wrapper {
    overflow: hidden !important;
    position: relative !important;
    width: 100% !important;
    height: 215px !important;
    background-color: #161C11 !important;
  }

  .menu-card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.35s ease !important;
  }

  .menu-card-item:hover .menu-card-img {
    transform: scale(1.04) !important;
  }

  .menu-card-content {
    padding: 1.5rem 1.5rem 1.6rem 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    justify-content: space-between !important;
  }

  .menu-card-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    margin-bottom: 0.65rem !important;
  }

  .menu-card-name {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #D6C898 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
  }

  .menu-card-price {
    display: inline-block !important;
    background: rgba(210, 198, 160, 0.12) !important;
    border: 1px solid rgba(210, 198, 160, 0.3) !important;
    color: #FFD700 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    padding: 0.3rem 0.85rem !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
  }

  .menu-card-desc {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.5rem !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0.75rem 0 0 0 !important;
  }
}

/* ==========================================================================
   HAMBURGER MENU BUTTON — visible only on mobile/tablet
   ========================================================================== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: #D2C6A0;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1),
              opacity 0.25s ease;
  transform-origin: center;
}

/* Show a single X when the menu is open */
.hamburger-btn.is-active .hamburger-line {
  display: none;
}

.hamburger-btn.is-active::before,
.hamburger-btn.is-active::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2.5px;
  background-color: #D2C6A0;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: center;
}

.hamburger-btn.is-active::before {
  transform: rotate(45deg);
}

.hamburger-btn.is-active::after {
  transform: rotate(-45deg);
}

/* Mobile nav overlay backdrop */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.mobile-nav-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* ==========================================================================
   MOBILE RESPONSIVE — max-width: 991px
   ========================================================================== */
@media (max-width: 991px) {

  /* Show hamburger button */
  .hamburger-btn {
    display: flex !important;
    order: 3;
    margin-left: auto;
  }

  /* Header layout */
  header .container {
    padding: 0.5rem 1.25rem !important;
    flex-wrap: nowrap !important;
  }

  .header-logo {
    flex: 1 1 auto !important;
    margin-right: 0.75rem !important;
    min-width: 0 !important;
  }

  .header-logo a {
    display: block !important;
  }

  .header-logo img {
    height: 42px !important;
    width: auto !important;
    max-width: 220px !important;
  }

  /* Hide desktop nav, transform into mobile side panel */
  .mainmenu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: min(320px, 85vw) !important;
    height: 100vh !important;
    height: 100dvh !important;
    background-color: #1A2012 !important;
    z-index: 1050 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 5rem 0 2rem 0 !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.4) !important;
    justify-content: flex-start !important;
  }

  .mainmenu.is-open {
    transform: translateX(0) !important;
  }

  /* Navigation links — stacked vertically */
  .TemplateMenu {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 1rem 0 !important;
  }

  .TemplateMenu li {
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .TemplateMenu a {
    display: block !important;
    padding: 1.15rem 2rem !important;
    font-size: 1.45rem !important;
    letter-spacing: 0.18em !important;
    line-height: 1.5 !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease !important;
  }

  .TemplateMenu a:hover,
  .TemplateMenu a:active {
    background: rgba(210, 198, 160, 0.1) !important;
    color: #D2C6A0 !important;
  }

  .TemplateMenu > li > a {
    line-height: 1.5 !important;
  }

  /* Use the hamburger toggle as the single mobile close control */
  .closemenu {
    display: none !important;
  }

  /* Hide phone + pickup actions on mobile */
  .header-actions {
    display: none !important;
  }

  /* Top delivery partner bar */
  .top-header {
    padding: 0.3rem 1rem !important;
  }

  .top-header ul {
    gap: 1rem !important;
    justify-content: center !important;
  }

  .top-header img {
    height: 22px !important;
  }

  /* Hero section */
  .top-section {
    padding: 2.5rem 0 1.75rem 0 !important;
    min-height: calc(100vh - 5.5rem) !important;
    height: calc(100vh - 5.5rem) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-title,
  .top-section .section-title,
  .top-section h1 {
    font-size: clamp(2.4rem, 7vw, 3.2rem) !important;
    max-width: 100% !important;
    margin-bottom: 1.2rem !important;
  }

  .hero-description {
    max-width: 700px !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-btn-wrapper,
  .top-section .btn-wrapper {
    flex-direction: column !important;
    gap: 0.85rem !important;
    width: 100% !important;
  }

  .hero-btn,
  .top-section .btn-accent-yellow {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0.95rem 1.35rem !important;
    font-size: 1.05rem !important;
    text-align: center !important;
  }

  .top-section .section-block-wrapper,
  .top-section .block-object {
    width: 100% !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .hero-description {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-btn-wrapper,
  .top-section .btn-wrapper {
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 760px !important;
  }

  .ai-summary-section {
    display: none !important;
  }

  .top-header {
    display: none !important;
  }

  .section-block {
    padding: 1rem 1rem 0 1rem !important;
  }

  /* Section blocks */
  .section-block {
    padding: 4rem 1.5rem !important;
  }

  /* Split layouts — stack vertically on mobile */
  .split-wrapper {
    flex-direction: column !important;
  }

  .split-content {
    width: 100% !important;
    padding: 2rem 1.5rem !important;
  }

  .split-image {
    width: 100% !important;
  }

  .split-wrapper.bg-white .split-content {
    padding: 2rem 1.5rem !important;
  }

  /* Intro section */
  .section-intro .section-title {
    font-size: clamp(2rem, 5.5vw, 2.8rem) !important;
  }

  .section-intro p {
    font-size: 1.5rem !important;
  }

  /* Product cards */
  .cards-wrapper.w-50 .card-item {
    width: 100% !important;
    margin: 0.75rem 0 !important;
  }

  .cards-16 .card-item {
    width: 100% !important;
    margin: 0.75rem 0 !important;
  }

  /* Button wrappers */
  .btn-wrapper.multiple {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .btn-wrapper.multiple .btn:not(:last-child) {
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }

  .btn-wrapper.multiple .btn {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    padding: 1rem 1.5rem !important;
    border-radius: 999px !important;
    border: none !important;
    background-color: #D2C6A0 !important;
    color: #1C2216 !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease !important;
  }

  .btn-wrapper.multiple .btn:hover,
  .btn-wrapper.multiple .btn:focus {
    transform: translateY(-1px) !important;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16) !important;
    background-color: #E2D7B4 !important;
  }

  .btn-wrapper.center {
    align-items: center !important;
  }

  .btn {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0.65rem 0 !important;
    padding: 1rem 1.5rem !important;
    border-radius: 999px !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12) !important;
    border: none !important;
    background-color: #D2C6A0 !important;
    color: #1C2216 !important;
    text-align: center !important;
  }

  .btn:hover,
  .btn:focus {
    background-color: #E2D7B4 !important;
  }

  /* Takeaway / Parallax Section */
  .section-start .text-block-center {
    padding: 0 0.5rem !important;
  }

  .section-start .section-title,
  .parallax .section-title {
    font-size: clamp(1.8rem, 5vw, 2.6rem) !important;
  }

  .section-start .text-label,
  .parallax .text-label {
    font-size: 1.2rem !important;
  }

  /* Catering / About section */
  .section-about .split-wrapper.bg-white {
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  .section-about .section-title {
    font-size: clamp(1.8rem, 5vw, 2.6rem) !important;
  }

  /* FAQ section */
  .faq-section {
    padding: 3rem 1rem !important;
  }

  .faq-container {
    max-width: 100% !important;
  }

  .faq-section .section-title {
    font-size: clamp(2rem, 5vw, 2.8rem) !important;
  }

  .faq-summary {
    padding: 1.1rem 1.2rem !important;
    font-size: 1.6rem !important;
    gap: 0.75rem !important;
  }

  .faq-summary::after {
    font-size: 1.8rem !important;
    flex-shrink: 0 !important;
  }

  .faq-content {
    padding: 0 1.2rem 1.2rem 1.2rem !important;
    font-size: 1.5rem !important;
  }

  .faq-content p,
  .faq-content div,
  .faq-content span {
    font-size: 1.5rem !important;
  }

  .faq-content li {
    font-size: 1.5rem !important;
  }

  /* Footer */
  .footer-container {
    padding: 0 1.25rem !important;
  }

  .footer-top {
    flex-direction: column !important;
    padding: 3rem 0 2rem !important;
    gap: 1.5rem !important;
  }

  .footer-menu,
  .footer-menu:first-child {
    width: 100% !important;
    margin: 0 !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.5rem !important;
    padding: 1.5rem 0 !important;
  }

  /* Global text size adjustments */
  .bg-accent-green p,
  .bg-accent-green li,
  .section-wrapper p,
  .section-wrapper li {
    font-size: 1.5rem !important;
    line-height: 1.7 !important;
  }

  .text-label {
    font-size: 1.2rem !important;
  }

  .small-title {
    font-size: 1.6rem !important;
  }

  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden !important;
  }

  main, .LayoutPage, .section-wrapper, .section-block {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* Image overflow safety */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Contact page mobile */
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-page-hero {
    padding: 2.5rem 1rem 1.5rem 1rem !important;
  }

  /* Menu page mobile */
  .menu-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .menu-page-hero {
    padding: 2.5rem 1rem 1.5rem 1rem !important;
  }

  .menu-category-nav {
    top: 48px !important;
  }

  .menu-cat-btn {
    font-size: 1.2rem !important;
    padding: 0.5rem 1.1rem !important;
  }

  /* Prevent body scroll when menu is open */
  body.nav-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   EXTRA SMALL SCREENS — max-width: 480px
   ========================================================================== */
@media (max-width: 480px) {

  header .container {
    padding: 0.35rem 0.75rem !important;
  }

  .header-logo img {
    height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
  }

  .header-pickup-btn {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.95rem !important;
  }

  .top-header {
    padding: 0.2rem 0.5rem !important;
  }

  .top-header img {
    height: 18px !important;
  }

  .top-section {
    padding: 2.5rem 0 3.5rem 0 !important;
  }

  .hero-title,
  .top-section .section-title,
  .top-section h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
  }

  .section-block {
    padding: 3rem 1rem !important;
  }

  .faq-summary {
    font-size: 1.4rem !important;
    padding: 1rem 1rem !important;
  }

  .faq-content {
    padding: 0 1rem 1rem 1rem !important;
    font-size: 1.35rem !important;
  }

  .faq-content p,
  .faq-content div,
  .faq-content span,
  .faq-content li {
    font-size: 1.35rem !important;
  }

  .section-intro .section-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem) !important;
  }

  .section-intro p {
    font-size: 1.35rem !important;
  }

  .split-content {
    padding: 1.5rem 1rem !important;
  }

  .btn {
    font-size: 1.1rem !important;
    padding: 1rem 1.5rem !important;
    min-width: 0 !important;
  }

  .footer-top {
    padding: 2rem 0 1.5rem !important;
  }

  .footer-top li,
  .footer-top a,
  .footer-top p {
    font-size: 1.3rem !important;
  }

  .footer p.small-title {
    font-size: 1.3rem !important;
  }
}

/* ==========================================================================
   TABLET — 992px to 1200px
   ========================================================================== */
@media (min-width: 992px) and (max-width: 1200px) {

  header .container {
    padding: 0.5rem 1.5rem !important;
  }

  .TemplateMenu {
    gap: 0.8rem !important;
  }

  .TemplateMenu a {
    font-size: 1.1rem !important;
    padding: 0.4rem 0.5rem !important;
    letter-spacing: 0.15em !important;
  }

  .header-pickup-btn {
    font-size: 1rem !important;
    padding: 0.45rem 1rem !important;
  }

  .header-phone {
    font-size: 1.15rem !important;
  }
}

/* ==========================================================================
   LANDSCAPE PHONES — height constraint
   ========================================================================== */
@media (max-height: 500px) and (max-width: 991px) {
  .mainmenu {
    padding-top: 3.5rem !important;
  }

  .TemplateMenu a {
    padding: 0.8rem 2rem !important;
  }

  .top-section {
    min-height: auto !important;
    padding: 2rem 0 3rem 0 !important;
  }
}

/* ==========================================================================
   TOUCH DEVICE IMPROVEMENTS
   ========================================================================== */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets */
  .TemplateMenu a {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
  }

  .btn {
    min-height: 44px !important;
  }

  .faq-summary {
    min-height: 48px !important;
  }

  /* Remove hover effects that don't work on touch */
  .faq-item:hover {
    transform: none !important;
  }

  .menu-card-item:hover {
    transform: none !important;
  }

  .contact-card:hover {
    transform: none !important;
  }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  header, .top-header, .hamburger-btn, .mobile-nav-overlay {
    position: static !important;
  }

  .mainmenu {
    display: block !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
  }
}

/* ==========================================================================
   BOWL IMAGE CENTERING FIX
   ========================================================================== */
.bowl-card-img {
  object-position: center 30% !important;
  object-fit: cover !important;
}

@media (max-width: 768px) {
  .bowl-card-img {
    object-position: center 25% !important;
  }
}