/* ━━━━ GOOGLE FONTS IMPORT ━━━━ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400&family=Poppins:wght@300;400;600;700&family=Bebas+Neue&family=Boogaloo&display=swap');



/* ━━━━ CSS CUSTOM PROPERTIES ━━━━ */

:root {

  --color-bg: #121210;

  --color-surface: #1c1c14;

  --color-primary: #FFD700;

  --color-gold: #FFD700;

  --color-text: #f5f0e0;

  --color-muted: #8a8870;

  

  --saffron: var(--color-primary);

  --turmeric: var(--color-gold);

  --charcoal: var(--color-bg);

  --smoke: #1e1e14;

  --cream: var(--color-text);

  --white-smoke: var(--color-text);

  --leaf: #4CAF50;

  --red-dot: #D32F2F;

  --gold: var(--color-gold);

  --card-bg: var(--color-surface);

  --overlay-dark: rgba(18, 18, 16, 0.90);

  --overlay-mid: rgba(18, 18, 16, 0.60);

}



/* ━━━━ INLINE SVG ICONS ━━━━ */

.i {

  display: inline-block;

  width: 18px;

  height: 18px;

  vertical-align: -3px;

  fill: none;

  stroke: currentColor;

  stroke-width: 2;

  stroke-linecap: round;

  stroke-linejoin: round;

  flex-shrink: 0;

}



.stat-icon .i {

  width: 28px;

  height: 28px;

  vertical-align: middle;

  stroke: var(--saffron);

}



.hub-card-icon .i,

.menu-cat-card .i {

  width: 32px;

  height: 32px;

  vertical-align: middle;

  stroke: var(--saffron);

}



.contact-card .icon .i {

  width: 28px;

  height: 28px;

  stroke: var(--saffron);

}



.combo-badge .i {

  width: 12px;

  height: 12px;

  vertical-align: -1px;

  stroke: var(--charcoal);

}



.bottom-nav .icon .i {

  width: 22px;

  height: 22px;

  vertical-align: middle;

}



/* ━━━━ RESET & BASE ━━━━ */

*,

*::before,

*::after {

  box-sizing: border-box;

  margin: 0;

  padding: 0;

}



html {

  scroll-behavior: smooth;

  font-size: 16px;

}



body {

  background: var(--charcoal);

  color: var(--cream);

  font-family: 'Poppins', sans-serif;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;

}



img {

  display: block;

  max-width: 100%;

  height: auto;

}



a {

  text-decoration: none;

  color: inherit;

}



/* ━━━━ TYPOGRAPHY ━━━━ */

.font-display {

  font-family: 'Playfair Display', serif;

}



.font-display-it {

  font-family: 'Playfair Display', serif;

  font-style: italic;

}



.font-bebas {

  font-family: 'Bebas Neue', sans-serif;

  letter-spacing: 2px;

}



.font-poppins {

  font-family: 'Poppins', sans-serif;

}



/* ━━━━ ANIMATIONS ━━━━ */

@keyframes fadeIn {

  from {

    opacity: 0;

  }



  to {

    opacity: 1;

  }

}



@keyframes slideUp {

  from {

    opacity: 0;

    transform: translateY(30px);

  }



  to {

    opacity: 1;

    transform: translateY(0);

  }

}



@keyframes kenburns {

  from {

    transform: scale(1.0) translateY(0);

  }



  to {

    transform: scale(1.08) translateY(-2%);

  }

}



@keyframes pulse {



  0%,

  100% {

    transform: scale(1);

  }



  50% {

    transform: scale(1.025);

  }

}



@keyframes bounce {



  0%,

  100% {

    transform: translateY(0);

  }



  50% {

    transform: translateY(8px);

  }

}



@keyframes scrollGallery {

  from {

    transform: translateX(0);

  }



  to {

    transform: translateX(-50%);

  }

}



/* ━━━━ PARALLAX SYSTEM ━━━━ */

.parallax-section {

  position: relative;

  overflow: hidden;

}



.parallax-bg {

  position: absolute;

  inset: -20% 0;

  width: 100%;

  height: 140%;

  background-size: cover;

  background-position: center;

  will-change: transform;

  z-index: 0;

}



.parallax-content {

  position: relative;

  z-index: 2;

}



/* ━━━━ TOP NAVBAR ━━━━ */

.top-nav {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  height: 56px;

  background: rgba(18, 18, 16, 0.95);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 18px;

  z-index: 100;

  border-bottom: 1px solid rgba(255, 215, 0, 0.2);

}



.navbar-brand-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Boogaloo', cursive;
  font-weight: 400;
  font-size: clamp(18px, 5vw, 24px);
  color: #FFD700;
  white-space: nowrap;
  letter-spacing: 0.5px;
  line-height: 1;
  text-decoration: none;
  pointer-events: none;
}



.nav-logo {

  height: 36px;

  width: auto;

}



.nav-order-btn {

  padding: 8px 16px;

  background: var(--saffron);

  color: var(--charcoal);

  font-family: 'Poppins', sans-serif;

  font-weight: 700;

  font-size: 13px;

  border: none;

  border-radius: 6px;

  cursor: pointer;

  transition: transform 0.15s;

}



.nav-order-btn:active {

  transform: scale(0.95);

}



.hamburger {

  background: none;

  border: none;

  cursor: pointer;

  display: flex;

  flex-direction: column;

  gap: 5px;

  padding: 4px;

}



.hamburger span {

  display: block;

  width: 24px;

  height: 2px;

  background: var(--cream);

  border-radius: 2px;

  transition: all 0.3s;

}



/* ━━━━ REUSABLE SWIPE DECK ━━━━ */

.swipe-deck {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  touch-action: pan-y;
  cursor: grab;
}
.swipe-deck.dragging { cursor: grabbing; }

.swipe-card {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s ease;
  will-change: transform, opacity;
  background: var(--color-surface);
  border: 1px solid rgba(255,215,0,0.2);
}
.swipe-card.no-transition { transition: none !important; }

.swipe-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
}
.swipe-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,215,0,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.swipe-dot-active {
  background: var(--color-gold);
  transform: scale(1.3);
}

/* Desktop: show cards side-by-side in a grid */
@media (min-width: 768px) {
  .swipe-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    height: auto !important;
    cursor: default;
  }
  .swipe-card {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .swipe-dots {
    display: none;
  }
}

/* ━━━━ HERO SECTION ━━━━ */

.hero {

  height: 100dvh;

  min-height: 600px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

}



.hero .parallax-bg {

  background-image: url('images/theme/hero-bg.webp');

  animation: kenburns 12s ease-in-out infinite alternate;

}



.hero-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(to bottom,

      rgba(18, 18, 16, 0.05) 0%,

      rgba(18, 18, 16, 0.50) 45%,

      rgba(18, 18, 16, 0.97) 100%);

  z-index: 1;

}



.hero-content {

  padding: 0 20px 108px;

  text-align: center;

  position: relative;

  z-index: 2;

  width: 100%;

  box-sizing: border-box;

  overflow: hidden;

}



.hero-logo {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto 16px;
  border-radius: 0 !important;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.9));
  animation: fadeIn 0.8s ease both;
  animation-delay: 0.2s;
}



.hero-label {

  font-family: 'Poppins', sans-serif;

  font-size: 11px;

  letter-spacing: 5px;

  color: var(--saffron);

  text-transform: uppercase;

  animation: slideUp 0.7s ease both;

  animation-delay: 0.4s;

}



.hero-h1-italic {

  font-family: 'Playfair Display', serif;

  font-style: italic;

  font-size: 42px;

  color: var(--cream);

  line-height: 1.1;

  animation: slideUp 0.7s ease both;

  animation-delay: 0.55s;

}



.hero-h1-bold {

  font-family: 'Bebas Neue', sans-serif;

  font-size: clamp(2rem, 10vw, 58px);

  color: var(--saffron);

  letter-spacing: 2px;

  line-height: 1;

  animation: slideUp 0.7s ease both;

  animation-delay: 0.65s;

  word-break: break-word;

  overflow-wrap: break-word;

  max-width: 100%;

}



.hero-tagline {

  font-size: 12px;

  color: var(--white-smoke);

  opacity: 0.75;

  margin: 10px 0 18px;

  animation: slideUp 0.7s ease both;

  animation-delay: 0.75s;

}



.hero-divider {

  width: 60px;

  height: 1px;

  background: var(--gold);

  margin: 0 auto 20px;

  animation: slideUp 0.7s ease both;

  animation-delay: 0.85s;

}



.btn-whatsapp {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  width: 100%;

  max-width: 400px;

  margin: 0 auto;

  height: 56px;

  background: var(--saffron);

  color: var(--charcoal);

  font-family: 'Poppins', sans-serif;

  font-weight: 700;

  font-size: 16px;

  border: none;

  border-radius: 10px;

  cursor: pointer;

  animation: slideUp 0.7s ease both, pulse 2.5s ease-in-out 2s infinite;

  animation-delay: 0.95s;

}



.hero-scroll {

  margin-top: 16px;

  text-align: center;

  animation: bounce 2s ease-in-out infinite;

  animation-delay: 2s;

  opacity: 0.5;

  font-size: 22px;

  color: var(--cream);

}



/* ━━━━ STORY / LEGACY SECTION ━━━━ */

.story-section {

  min-height: 480px;

  padding: 80px 24px;

}



.story-section .parallax-bg {

  background-image: url('images/theme/story-bg.webp');

  filter: brightness(0.35);

}



.story-section::before {

  content: '';

  position: absolute;

  inset: 0;

  background: rgba(18, 18, 16, 0.55);

  z-index: 1;

}



.section-label {

  font-size: 10px;

  letter-spacing: 5px;

  text-transform: uppercase;

  color: var(--saffron);

  font-family: 'Poppins', sans-serif;

  margin-bottom: 12px;

}



.section-title {

  font-family: 'Playfair Display', serif;

  font-size: 32px;

  color: var(--cream);

  line-height: 1.25;

  margin-bottom: 18px;

}



.story-body {

  font-size: 14px;

  line-height: 1.85;

  color: var(--white-smoke);

  opacity: 0.88;

  margin-bottom: 32px;

}



.story-stats {

  display: flex;

  gap: 0;

  border-top: 1px solid rgba(255, 215, 0, 0.3);

  padding-top: 28px;

}



.stat-item {

  flex: 1;

  text-align: center;

  border-right: 1px solid rgba(255, 215, 0, 0.3);

  padding: 0 8px;

}



.stat-item:last-child {

  border-right: none;

}



.stat-icon {

  font-size: 24px;

  margin-bottom: 6px;

}



.stat-label {

  font-size: 11px;

  color: var(--white-smoke);

  opacity: 0.75;

  line-height: 1.3;

}



/* ━━━━ COMBOS SPOTLIGHT SECTION ━━━━ */

.combos-section {

  padding: 72px 0;

  background: radial-gradient(ellipse at 50% 30%, #1e1e14 0%, #121210 70%);

  position: relative;

  overflow: hidden;

}



.combos-watermark {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  font-family: 'Bebas Neue', sans-serif;

  font-size: 130px;

  color: var(--saffron);

  opacity: 0.04;

  white-space: nowrap;

  pointer-events: none;

  z-index: 0;

  letter-spacing: 8px;

}



.combo-cards-wrap {

  display: flex;

  gap: 16px;

  padding: 0 20px 8px;

  overflow-x: auto;

  scroll-snap-type: x mandatory;

  scroll-padding: 0 20px;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;

}



.combo-cards-wrap::-webkit-scrollbar {

  display: none;

}



.combo-card {

  min-width: 0;               /* ← let grid control width, not min-width */

  max-width: 100%;

  background: var(--card-bg);

  border-radius: 14px;

  overflow: hidden;

  border: 1px solid rgba(255, 215, 0, 0.25);

  flex-shrink: 0;

  position: relative;

  z-index: 1;

}



.combo-card-img {

  width: 100%;

  aspect-ratio: 4 / 3;        /* responsive height, not fixed 200px */

  object-fit: cover;

  display: block;

}



.combo-badge {

  position: absolute;

  top: 14px;

  right: 14px;

  background: var(--saffron);

  color: var(--charcoal);

  font-family: 'Poppins', sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  padding: 4px 10px;

  border-radius: 20px;

  text-transform: uppercase;

}



.combo-body {

  padding: 12px;

}



.combo-name {

  font-family: 'Playfair Display', serif;

  font-size: 15px;

  color: var(--cream);

  margin-bottom: 4px;

}



.combo-price {

  font-family: 'Bebas Neue', sans-serif;

  font-size: 22px;

  color: var(--saffron);

  margin-bottom: 10px;

}



.combo-includes {

  list-style: none;

  font-size: 11px;

  color: var(--white-smoke);

  opacity: 0.85;

  line-height: 1.7;

  margin-bottom: 10px;

}



.btn-order-wa {

  display: block;

  width: 100%;

  padding: 14px;

  background: #FFD700 !important;

  color: #1a0f00 !important;

  font-family: 'Poppins', sans-serif;

  font-weight: 700;

  font-size: 15px;

  text-align: center;

  border: none !important;

  border-radius: 8px;

  cursor: pointer;

  box-shadow: none !important;

  transition: transform 0.15s;

}



.btn-order-wa:active {

  transform: scale(0.97);

}



/* ━━━━ MENU CARDS (shared across all menu pages) ━━━━ */

.menu-section {

  padding: 64px 0 100px;

}



.category-tabs {

  display: flex;

  gap: 10px;

  padding: 0 16px 24px;

  overflow-x: auto;

  scroll-snap-type: x mandatory;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;

  position: sticky;

  top: 56px;

  background: var(--charcoal);

  z-index: 10;

  padding-top: 12px;

}



.category-tabs::-webkit-scrollbar {

  display: none;

}



.tab-pill {

  white-space: nowrap;

  padding: 8px 18px;

  border-radius: 24px;

  border: 1px solid rgba(255, 215, 0, 0.35);

  font-size: 13px;

  font-family: 'Poppins', sans-serif;

  color: var(--white-smoke);

  cursor: pointer;

  scroll-snap-align: start;

  transition: background 0.2s, color 0.2s;

  flex-shrink: 0;

  background: transparent;

}



.tab-pill.active,

.tab-pill:hover {

  background: var(--saffron);

  color: var(--charcoal);

  border-color: var(--saffron);

  font-weight: 600;

}



.menu-grid {

  display: flex;

  flex-direction: column;

  gap: 14px;

  padding: 0 16px;

}



.menu-card {

  display: flex;

  gap: 14px;

  align-items: center;

  background: var(--card-bg);

  border-radius: 14px;

  padding: 14px;

  border: 1px solid rgba(255, 215, 0, 0.15);

  transition: border-color 0.2s;

}



.menu-card:active {

  border-color: var(--saffron);

}



.menu-card-img-wrap {

  position: relative;

  flex-shrink: 0;

}



.menu-card-img {

  width: 84px;

  height: 84px;

  border-radius: 10px;

  object-fit: cover;

}



.veg-dot,

.nonveg-dot {

  position: absolute;

  top: -4px;

  right: -4px;

  width: 16px;

  height: 16px;

  border-radius: 50%;

  border: 2px solid var(--charcoal);

}



.veg-dot {

  background: var(--leaf);

}



.nonveg-dot {

  background: var(--red-dot);

}



.menu-info {

  flex: 1;

  min-width: 0;

}



.menu-dish-name {

  font-family: 'Playfair Display', serif;

  font-size: 16px;

  color: var(--cream);

  margin-bottom: 4px;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}



.menu-dish-desc {

  font-size: 12px;

  color: var(--white-smoke);

  opacity: 0.65;

  line-height: 1.45;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  margin-bottom: 8px;

}



.menu-card-footer {

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.dish-price {

  font-family: 'Bebas Neue', sans-serif;

  font-size: 22px;

  color: var(--saffron);

  letter-spacing: 1px;

}



.btn-order-small {

  padding: 7px 14px;

  background: var(--saffron);

  color: var(--charcoal);

  font-family: 'Poppins', sans-serif;

  font-weight: 700;

  font-size: 12px;

  border: none;

  border-radius: 6px;

  cursor: pointer;

  white-space: nowrap;

  transition: transform 0.15s;

}



.btn-order-small:active {

  transform: scale(0.95);

}



/* ━━━━ GALLERY STRIP ━━━━ */

.gallery-strip {

  overflow: hidden;

  padding: 40px 0;

  position: relative;

}



.gallery-strip::before,

.gallery-strip::after {

  content: '';

  position: absolute;

  top: 0;

  width: 80px;

  height: 100%;

  z-index: 2;

  pointer-events: none;

}



.gallery-strip::before {

  left: 0;

  background: linear-gradient(to right, var(--charcoal), transparent);

}



.gallery-strip::after {

  right: 0;

  background: linear-gradient(to left, var(--charcoal), transparent);

}



.gallery-track {

  display: flex;

  gap: 14px;

  animation: scrollGallery 28s linear infinite;

  width: max-content;

}



.gallery-track:hover {

  animation-play-state: paused;

}



.gallery-img {

  width: 200px;

  height: 150px;

  border-radius: 14px;

  object-fit: cover;

  flex-shrink: 0;

}



/* ━━━━ BOTTOM NAV (Mobile) ━━━━ */

.bottom-nav {

  position: fixed;

  bottom: 0;

  left: 0;

  right: 0;

  height: 64px;

  background: rgba(18, 18, 16, 0.97);

  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(14px);

  display: flex;

  border-top: 1px solid rgba(255, 215, 0, 0.2);

  z-index: 100;

}



.bottom-nav a {

  flex: 1;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 3px;

  color: var(--white-smoke);

  opacity: 0.5;

  font-size: 10px;

  font-family: 'Poppins', sans-serif;

  transition: opacity 0.2s, color 0.2s;

  text-decoration: none;

}



.bottom-nav a.active,

.bottom-nav a:hover {

  opacity: 1;

  color: var(--saffron);

}



.bottom-nav a span.icon {

  font-size: 20px;

}



/* ━━━━ SLIDE-IN MOBILE MENU ━━━━ */

.mobile-menu-overlay {

  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.7);

  z-index: 200;

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.3s;

}



.mobile-menu-overlay.open {

  opacity: 1;

  pointer-events: all;

}



.mobile-menu-panel {

  position: absolute;

  top: 0;

  right: 0;

  width: 80%;

  max-width: 320px;

  height: 100%;

  background: var(--smoke);

  padding: 80px 24px 24px;

  transform: translateX(100%);

  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  border-left: 1px solid rgba(255, 215, 0, 0.2);

  overflow-y: auto;

}



.mobile-menu-overlay.open .mobile-menu-panel {

  transform: translateX(0);

}



.mobile-menu-panel a {

  display: block;

  padding: 14px 0;

  font-family: 'Playfair Display', serif;

  font-size: 20px;

  color: var(--cream);

  border-bottom: 1px solid rgba(255, 215, 0, 0.12);

  transition: color 0.2s;

}



.mobile-menu-panel a:hover {

  color: var(--saffron);

}



/* ━━━━ SCROLL REVEAL ANIMATIONS ━━━━ */

.reveal {

  opacity: 0;

  transform: translateY(30px);

  transition: opacity 0.65s ease, transform 0.65s ease;

}



.reveal.visible {

  opacity: 1;

  transform: translateY(0);

}



.reveal-delay-1 {

  transition-delay: 0.1s;

}



.reveal-delay-2 {

  transition-delay: 0.2s;

}



.reveal-delay-3 {

  transition-delay: 0.3s;

}



.reveal-delay-4 {

  transition-delay: 0.4s;

}



/* ━━━━ FOOTER ━━━━ */

.footer {

  background: #0e0e0c;

  padding: 48px 24px 80px;

  text-align: center;

  border-top: 1px solid rgba(255, 215, 0, 0.15);

}



.footer-logo {

  width: 120px;

  height: auto;

  margin: 0 auto 16px;

  border-radius: 0 !important;

  object-fit: contain;

  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));

}



.footer-tagline {

  font-family: 'Playfair Display', serif;

  font-style: italic;

  color: var(--gold);

  font-size: 15px;

  margin-bottom: 24px;

}



.footer-wa-btn {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 14px 28px;

  background: #25D366;

  color: white;

  font-family: 'Poppins', sans-serif;

  font-weight: 700;

  font-size: 15px;

  border-radius: 10px;

  margin-bottom: 28px;

  cursor: pointer;

  border: none;

  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);

  transition: transform 0.15s;

}



.footer-wa-btn:active {

  transform: scale(0.97);

}



.footer-links {

  display: flex;

  justify-content: center;

  gap: 20px;

  margin-bottom: 20px;

  flex-wrap: wrap;

}



.footer-links a {

  font-size: 13px;

  color: var(--white-smoke);

  opacity: 0.6;

  transition: opacity 0.2s;

}



.footer-links a:hover {

  opacity: 1;

  color: var(--saffron);

}



.footer-copy {

  font-size: 11px;

  color: var(--white-smoke);

  opacity: 0.35;

}



/* ━━━━ PAGE HERO (non-homepage) ━━━━ */

.page-hero {

  height: 45vh;

  min-height: 260px;

  display: flex;

  align-items: flex-end;

  padding: 0 24px 40px;

  position: relative;

  overflow: hidden;

}



.page-hero-bg {

  position: absolute;

  inset: -20% 0;

  height: 140%;

  width: 100%;

  background-size: cover;

  background-position: center;

  will-change: transform;

  filter: brightness(0.4);

}



.page-hero-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, var(--charcoal) 0%, transparent 60%);

}



.page-hero-content {

  position: relative;

  z-index: 2;

}



.page-hero-title {

  font-family: 'Bebas Neue', sans-serif;

  font-size: 52px;

  color: var(--cream);

  letter-spacing: 3px;

}



.page-hero-sub {

  font-size: 13px;

  color: var(--saffron);

  font-family: 'Poppins', sans-serif;

  letter-spacing: 3px;

  text-transform: uppercase;

}



/* ━━━━ BREADCRUMB ━━━━ */

.breadcrumb {

  padding: 12px 20px;

  font-size: 12px;

  color: var(--white-smoke);

  opacity: 0.55;

  font-family: 'Poppins', sans-serif;

}



.breadcrumb a {

  color: var(--saffron);

}



.breadcrumb a:hover {

  text-decoration: underline;

}



/* ━━━━ LOCATION SECTION ━━━━ */

.location-section {

  padding: 64px 24px;

}



.map-embed {

  width: 100%;

  height: 240px;

  border-radius: 14px;

  overflow: hidden;

  border: 1px solid rgba(201, 146, 42, 0.2);

  margin-bottom: 24px;

}



.map-embed iframe {

  width: 100%;

  height: 100%;

  border: 0;

}



.contact-row {

  display: flex;

  gap: 12px;

  margin-top: 20px;

}



.btn-call {

  flex: 1;

  padding: 14px;

  background: transparent;

  border: 2px solid #FFD700;

  color: #FFD700;

  font-family: 'Poppins', sans-serif;

  font-weight: 600;

  font-size: 15px;

  border-radius: 8px;

  cursor: pointer;

  text-align: center;

  transition: background 0.2s, color 0.2s;

}



.btn-call:hover {

  background: #FFD700;

  color: var(--charcoal);

}



/* ━━━━ UTILITY ━━━━ */

.section-padding {

  padding: 64px 24px;

}



.gold-divider {

  width: 48px;

  height: 2px;

  background: #FFD700;

  margin: 14px 0;

}



.page-body-padding {

  padding-top: 56px;

  padding-bottom: 64px;

}



/* ━━━━ MENU HUB GRID ━━━━ */

.menu-hub-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 16px;

  padding: 0 16px;

}



.menu-hub-card {

  background: var(--card-bg);

  border-radius: 18px;

  padding: 28px 16px;

  text-align: center;

  border: 1px solid rgba(255, 215, 0, 0.15);

  transition: transform 0.25s, border-color 0.25s;

  text-decoration: none;

  display: block;

}



.menu-hub-card:hover {

  transform: translateY(-4px);

  border-color: var(--saffron);

}



.hub-card-icon {

  font-size: 40px;

  margin-bottom: 10px;

}



.hub-card-title {

  font-family: 'Playfair Display', serif;

  font-size: 18px;

  color: var(--cream);

  margin-bottom: 6px;

}



.hub-card-desc {

  font-size: 12px;

  color: var(--white-smoke);

  opacity: 0.65;

  line-height: 1.45;

}



/* ━━━━ ABOUT PAGE ━━━━ */

.about-content {

  padding: 48px 24px;

  max-width: 720px;

  margin: 0 auto;

}



.about-content p {

  font-size: 14px;

  line-height: 1.85;

  color: var(--white-smoke);

  opacity: 0.88;

  margin-bottom: 20px;

}



.about-content h3 {

  font-family: 'Playfair Display', serif;

  font-size: 24px;

  color: var(--cream);

  margin-bottom: 12px;

  margin-top: 32px;

}



/* ━━━━ CONTACT PAGE ━━━━ */

.contact-info-grid {

  display: grid;

  grid-template-columns: 1fr;

  gap: 16px;

  margin-top: 24px;

}



.contact-card {

  background: var(--card-bg);

  border-radius: 14px;

  padding: 20px;

  border: 1px solid rgba(255, 215, 0, 0.15);

  text-align: center;

}



.contact-card .icon {

  font-size: 28px;

  margin-bottom: 10px;

}



.contact-card h3 {

  font-family: 'Poppins', sans-serif;

  font-size: 14px;

  font-weight: 600;

  color: var(--cream);

  margin-bottom: 6px;

}



.contact-card p {

  font-size: 13px;

  color: var(--white-smoke);

  opacity: 0.75;

  line-height: 1.5;

}



/* ━━━━ MENU CATEGORY CARDS (home page) ━━━━ */

.menu-cat-card {

  transition: transform 0.2s, border-color 0.2s;

}



.menu-cat-card:hover {

  transform: translateY(-3px);

  border-color: var(--saffron) !important;

}



/* ━━━━ RESPONSIVE MOBILE ━━━━ */

@media (max-width: 480px) {

  .hero-content {

    padding: 0 16px 108px;

  }



  .hero-h1-bold {

    font-size: clamp(1.8rem, 9vw, 2.8rem);

    letter-spacing: 1px;

  }



  .hero h2 {

    font-size: clamp(1.1rem, 5vw, 1.6rem) !important;

  }

}



/* ━━━━ RESPONSIVE TABLET+ ━━━━ */

@media (min-width: 768px) {

  .menu-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

  }



  .combo-cards-wrap {

    justify-content: center;

  }



  .hero-h1-italic {

    font-size: 56px;

  }



  .hero-h1-bold {

    font-size: 72px;

    letter-spacing: 3px;

  }



  .contact-info-grid {

    grid-template-columns: repeat(2, 1fr);

  }



  .menu-hub-grid {

    grid-template-columns: repeat(3, 1fr);

  }



  .contact-row {

    max-width: 500px;

  }

}



@media (min-width: 1024px) {

  .menu-grid {

    grid-template-columns: repeat(3, 1fr);

  }



  .hero-content {

    max-width: 600px;

    margin: 0 auto;

  }



  .menu-hub-grid {

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

  }

}
/* ????????????????????????????????????????????
   YOUTUBE SHORTS GRID
???????????????????????????????????????????? */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.short-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,215,0,0.2);
  background: var(--color-background);
}


/* ????????????????????????????????????????????
   PATCH 3  MOBILE GRID AND OVERFLOW FIXES
???????????????????????????????????????????? */

/* FIX 1  COMBO / PLATTER CARDS SECTION — 2 columns on ALL screen sizes */
.combos-grid,
.signature-combos,
.combo-cards-wrapper,
.combo-cards-wrap,
[class*="combo"] .cards-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;   /* 2 cols always, even on 375px */
  gap: 12px !important;
  padding: 0 14px !important;
  width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

.combo-card,
.signature-card,
[class*="combo-card"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  flex-shrink: 0;
}

/* Desktop: same 2 cols but wider gap */
@media (min-width: 640px) {
  .combos-grid,
  .signature-combos,
  .combo-cards-wrapper,
  .combo-cards-wrap {
    gap: 16px !important;
    padding: 0 24px !important;
  }
}

.combos-section,
.signature-section {
  overflow-x: hidden;
  width: 100%;
}

/* FIX 2  MENU CATEGORY GRID */
.menu-grid,
.categories-grid,
[class*="menu-grid"],
[class*="category-grid"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px 16px;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.menu-card,
.category-card,
[class*="menu-card"],
[class*="category-card"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px;
  min-height: 0;                /* no min-height — let content decide */
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  text-align: center;
  background: #231508;
  border: 1px solid rgba(255, 215, 0, 0.15);
  text-decoration: none;
}

.menu-card svg,
.category-card svg,
.menu-card-icon svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.menu-card-name,
.category-name,
[class*="card-name"] {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text, #f5ede0);
  line-height: 1.2;
  word-break: break-word;
  text-align: center;
}

.menu-card-from,
.category-price,
[class*="card-from"],
[class*="card-price"] {
  font-size: 0.75rem;
  color: var(--color-primary, #FFD700);
  text-align: center;
}

.menu-card.full-menu,
.category-card.full-menu,
.menu-card--full,
a[href*="menu.html"].menu-card {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  background: var(--color-primary, #FFD700);
  color: #1a0f00;
}

@media (min-width: 768px) {
  .menu-grid,
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 24px 24px;
  }

  .menu-card-name,
  .category-name {
    font-size: 1rem;
  }

  .menu-card-from,
  .category-price {
    font-size: 0.875rem;
  }
}

/* FIX 3  GLOBAL OVERFLOW PREVENTION */
html, body {
  overflow-x: hidden;
  width: 100%;
}

section,
.section,
main,
.container,
.wrapper {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

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

/* YOUTUBE SHORTS CARDS */
.yt-card {
  display: flex;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 9/16;
  background: #111;
  flex-direction: column;
}

.yt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-play-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Instagram reel thumbnail placeholder */
.insta-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 60%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.insta-thumb-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(240,148,51,0.15), rgba(220,39,67,0.15), rgba(188,24,136,0.15));
}

.yt-grid {
  display: flex;
  gap: 16px;
  padding: 0 16px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.yt-grid::-webkit-scrollbar {
  display: none;
}

.yt-grid .yt-card {
  flex: 0 0 calc(85% - 16px);
  min-width: 250px;
  scroll-snap-align: center;
}

@media (min-width: 768px) {
  .yt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
  }
  .yt-grid .yt-card {
    flex: auto;
    min-width: 0;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PATCH 6 — MENU CARD COMPACT CENTERED
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.menu-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  padding: 0 14px 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  align-items: start !important;       /* ← KEY FIX: don't stretch cards to row height */
}

.menu-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 18px 12px !important;       /* compact padding */
  min-height: 0 !important;
  height: auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
  border-radius: 12px !important;
  background: #231508 !important;
  border: 1px solid rgba(255, 215, 0, 0.15) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important;
  transition: border-color 0.15s, background 0.15s !important;
  box-shadow: none !important;
}

.menu-card:hover {
  border-color: rgba(255, 215, 0, 0.5) !important;
  background: rgba(255, 215, 0, 0.04) !important;
}

.menu-card:active {
  border-color: #FFD700 !important;
  background: rgba(255, 215, 0, 0.08) !important;
}

.menu-card-icon {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

.menu-card-icon svg {
  width: 30px;
  height: 30px;
}

.menu-card-name {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #f5ede0 !important;
  text-align: center !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.menu-card-price,
.menu-card-from {
  font-size: 0.7rem !important;
  color: #FFD700 !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  opacity: 0.85 !important;
}

/* Full Menu card — yellow bg, horizontal, spans full width */
.menu-card.full-menu {
  grid-column: 1 / -1 !important;
  align-self: stretch !important;      /* full-menu can stretch */
  flex-direction: row !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 14px 16px !important;
  background: #FFD700 !important;
  border-color: #FFD700 !important;
  border-radius: 12px !important;
}

.menu-card.full-menu .menu-card-name {
  color: #1a0f00 !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
}

.menu-card.full-menu .menu-card-price,
.menu-card.full-menu .menu-card-from {
  color: #1a0f00 !important;
  opacity: 0.7 !important;
}

/* Desktop: 3 columns, compact sizing */
@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    padding: 0 24px 24px !important;
    align-items: start !important;
  }

  .menu-card {
    gap: 8px !important;
    padding: 20px 14px !important;
  }

  .menu-card-icon { width: 40px !important; height: 40px !important; }
  .menu-card-icon svg { width: 32px !important; height: 32px !important; }
  .menu-card-name { font-size: 0.88rem !important; }
  .menu-card-price, .menu-card-from { font-size: 0.75rem !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PATCH 4 — GOOGLE MAPS STYLE BRANCHES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.branches-section {
  padding: 32px 12px 24px;
}

.section-sub {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin-top: 4px;
  margin-bottom: 16px;
}

.branches-grid {
  display: flex !important;
  gap: 12px !important;
  padding: 0 16px 16px !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  align-items: stretch !important;
}

.branches-grid::-webkit-scrollbar {
  display: none;
}

.branches-grid .branch-card {
  flex: 0 0 75% !important;
  min-width: 220px !important;
  scroll-snap-align: center !important;
}

@media (min-width: 768px) {
  .branches-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    overflow-x: visible !important;
  }
  .branches-grid .branch-card {
    flex: auto !important;
    min-width: 0 !important;
  }
}

.branch-card {
  background: #231508;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Clickable branch card — anchor tag reset */
a.branch-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

a.branch-card-link:active {
  transform: scale(0.97);
}

.branch-card:hover {
  border-color: #FFD700;
}

.branch-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a0f00;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

.branch-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.branch-status {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.branch-status.open {
  background: rgba(0, 0, 0, 0.6);
  color: #4ade80;
}

.branch-status.closed {
  background: rgba(0, 0, 0, 0.6);
  color: #f87171;
}

.branch-body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.branch-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4px;
}

.branch-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f5ede0;
  margin: 0;
  line-height: 1.2;
}

.branch-locality {
  font-size: 0.65rem;
  color: var(--color-muted);
  margin: 1px 0 0;
}

.branch-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.rating-stars {
  font-size: 0.75rem;
  font-weight: 700;
  color: #f59e0b;
  white-space: nowrap;
}

.rating-count {
  font-size: 0.62rem;
  color: var(--color-muted);
}

/* Hide address and tags on mobile (too cramped in 2-col) */
.branch-address,
.branch-tags {
  display: none;
}

@media (min-width: 768px) {
  .branch-body {
    padding: 14px 16px 16px;
    gap: 8px;
  }
  .branch-name { font-size: 1rem; }
  .branch-locality { font-size: 0.75rem; }
  .rating-stars { font-size: 0.85rem; }
  .rating-count { font-size: 0.7rem; }
  .branch-address,
  .branch-tags {
    display: flex;    /* show on desktop */
  }
  .branch-tags { display: block; }
}

/* ━━━━ BRANCH ACTIONS — 2+1 GRID ━━━━ */
.branch-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;  /* Call | Directions side by side */
  grid-template-rows: auto auto !important;
  gap: 8px !important;
  margin-top: 10px !important;
  width: 100% !important;
}

.branch-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 9px 8px !important;
  border-radius: 8px !important;
  font-size: 0.78rem !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  transition: all 0.15s !important;
  white-space: nowrap !important;
  -webkit-tap-highlight-color: transparent !important;
  box-shadow: none !important;
  /* reset any global button dimensions */
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  animation: none !important;
}

.branch-btn.btn-call {
  background: rgba(255, 215, 0, 0.08) !important;
  color: #FFD700 !important;
  border-color: rgba(255, 215, 0, 0.25) !important;
}

.branch-btn.btn-call:active {
  background: #FFD700 !important;
  color: #1a0f00 !important;
}

/* WhatsApp in grid — same row as Call on mobile */
.branch-actions .btn-whatsapp {
  grid-column: auto !important;        /* ← now in same row as Call */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 9px 6px !important;
  background: rgba(37, 211, 102, 0.08) !important;
  color: #25D366 !important;
  border: 1px solid rgba(37, 211, 102, 0.25) !important;
  border-radius: 8px !important;
  font-size: 0.72rem !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  animation: none !important;
  box-shadow: none !important;
}

.branch-actions .btn-whatsapp:active {
  background: #25D366 !important;
  color: #fff !important;
}

/* Directions — full width second row */
.branch-btn.btn-directions {
  grid-column: 1 / -1 !important;     /* full width below */
  background: rgba(96, 165, 250, 0.08) !important;
  color: #60a5fa !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
}

.branch-btn.btn-directions:active {
  background: #60a5fa !important;
  color: #1a0f00 !important;
}

/* Desktop: all 3 in one row */
@media (min-width: 768px) {
  .branch-actions {
    grid-template-columns: 1fr 1fr 1fr !important;
    grid-template-rows: auto !important;
  }
  .branch-btn.btn-directions {
    grid-column: auto !important;
  }
  .branch-actions .btn-whatsapp {
    grid-column: auto !important;
    padding: 9px 8px !important;
  }
}

/* Combo & signature order buttons — orange */
.combo-order-btn,
.signature-order-btn,
a[class*="order-btn"],
button[class*="order"] {
  display: block;
  width: 100%;
  padding: 14px;
  background: #FFD700 !important;
  color: #1a0f00 !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  border: none !important;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: none !important;
  text-decoration: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 84px;             /* above bottom-nav (64px) */
  right: 16px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:active {
  transform: scale(0.93);
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
  }
}

/* ════════════════════════════════════════════════
   PATCH 7 — NAVBAR LOGO + TAMIL TEXT
════════════════════════════════════════════════ */

/* Navbar brand wrapper */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* New sticker-style logo — NO border-radius */
.navbar-logo {
  height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  border-radius: 0 !important;
  filter: none;
  background: transparent;
}

/* Keep old nav-logo still working for footer / hero */
.nav-logo {
  height: 36px;
  width: auto;
  border-radius: 0 !important;
}

/* Tamil shop name next to logo (Image) */
.navbar-tamil-img {
  height: 38px;
  max-width: 60vw;
  width: auto;
  object-fit: contain;
  margin-top: 4px;
}

@media (max-width: 360px) {
  .navbar-tamil-img { height: 30px; }
}

/* ════════════════════════════════════════════════
   PATCH 7 — BRANCH GRID: HORIZONTAL SCROLL MOBILE, 3-COL DESKTOP
════════════════════════════════════════════════ */

.branches-grid {
  display: flex !important;
  gap: 12px !important;
  padding: 0 16px 16px !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
}

.branches-grid::-webkit-scrollbar {
  display: none;
}

.branches-grid .branch-card {
  flex: 0 0 75% !important;
  min-width: 220px !important;
  scroll-snap-align: center !important;
}

@media (min-width: 768px) {
  .branches-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    padding: 0 24px !important;
    gap: 16px !important;
    overflow-x: visible !important;
  }
  .branches-grid .branch-card {
    flex: auto !important;
    min-width: 0 !important;
  }
}

/* ━━━━ INSTAGRAM REELS SCROLL ━━━━ */
.reels-scroll {
  display: flex;
  gap: 16px;
  padding: 0 16px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reels-scroll::-webkit-scrollbar {
  display: none;
}

.reel-card {
  flex: 0 0 75%;
  min-width: 260px;
  max-width: 350px;
  scroll-snap-align: center;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.reel-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.reel-tap-area {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.reel-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 3;
  pointer-events: none;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, opacity 0.3s ease;
  opacity: 0;
}

.reel-play-icon.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.reel-mute-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  background: rgba(0,0,0,0.6);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(6px);
}

.reel-mute-btn svg {
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reel-insta-badge {
  position: absolute;
  bottom: 16px;
  left: 12px;
  z-index: 5;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
  .reels-scroll {
    justify-content: center;
    overflow-x: visible;
  }
  .reel-card {
    flex: 0 0 300px;
  }
}

/* ── Branch action buttons: 3 equal columns ── */
.branch-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  grid-template-rows: auto !important;
  gap: 8px !important;
  margin-top: 12px !important;
  width: 100% !important;
}

.branch-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 10px 6px !important;
  border-radius: 8px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  text-align: center !important;
  transition: all 0.15s ease !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important;
  box-shadow: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  /* reset inherited sizing */
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  animation: none !important;
}

.branch-btn svg {
  width: 13px !important;
  height: 13px !important;
  flex-shrink: 0 !important;
}

/* Branch Action Buttons - Standardized Gold Outline */
.branch-btn.btn-call,
.branch-actions .btn-whatsapp,
.branch-btn.btn-directions {
  grid-column: auto !important;
  background: transparent !important;
  color: #FFD700 !important;
  border: 1.5px solid #FFD700 !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 10px 6px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  animation: none !important;
}

.branch-btn.btn-call:active,
.branch-btn.btn-call:hover,
.branch-actions .btn-whatsapp:active,
.branch-actions .btn-whatsapp:hover,
.branch-btn.btn-directions:active,
.branch-btn.btn-directions:hover {
  background: #FFD700 !important;
  color: #1a0f00 !important;
}

/* ════════════════════════════════════════════════
   PATCH 7 — PRICE BOARD SECTION
════════════════════════════════════════════════ */

.priceboard-section {
  padding: 48px 16px;
}

.priceboard-note {
  font-size: 0.8rem;
  color: #9c7a5a;
  margin-bottom: 24px;
  text-align: center;
}

.priceboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .priceboard-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .priceboard-extras {
    grid-column: 1 / -1;
  }
}

.priceboard-card {
  background: #231508;
  border: 1px solid rgba(232, 105, 42, 0.15);
  border-radius: 14px;
  overflow: hidden;
}

.priceboard-header {
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.priceboard-header.chicken {
  background: #e8692a;
  color: #1a0f00;
}

.priceboard-header.mutton {
  background: #7c2d12;
  color: #f5ede0;
}

.priceboard-header.extras {
  background: #231508;
  color: #c9a060;
  border-bottom: 1px solid rgba(232, 105, 42, 0.2);
}

.priceboard-items {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: 'Baloo Thambi 2', cursive;
}

.pb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  color: #c9b89a;
  gap: 8px;
}

.pb-row:last-child {
  border-bottom: none;
}

.pb-row span:first-child {
  flex: 1;
  text-align: left;
}

.pb-row span:last-child {
  font-weight: 700;
  color: #e8692a;
  flex-shrink: 0;
  white-space: nowrap;
}

.pb-row.pb-highlight {
  background: rgba(232, 105, 42, 0.06);
  border-radius: 6px;
  padding: 7px 8px;
  margin: 2px -8px;
}

.pb-row.pb-highlight span:first-child {
  color: #f5ede0;
}

/* Extras two-column layout */
.priceboard-items.two-col {
  flex-direction: row;
  gap: 16px;
  padding: 12px 16px;
}

.extras-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.extras-col .pb-row {
  font-size: 0.78rem;
}

/* CTA button */
.priceboard-cta {
  text-align: center;
  margin-top: 20px;
}

.priceboard-order-btn {
  display: inline-block;
  background: #e8692a;
  color: #1a0f00;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}

.priceboard-order-btn:hover,
.priceboard-order-btn:active {
  background: #d45a1e;
  color: #1a0f00;
}

