
:root {
  --primary: #01693a;
  --primary-dark: #007a4b;
  --secondary: #ed274b;
  --secondary-gold: #ffc222;
  --secondary-brown: #f3274c;
  --accent-green: #d4ff6e;
  --accent-cream: #ffd074;
  --bg: #ffffff;
  --text: #434343;
  --gray: #909090;
  --border: #e5e7eb;
  --surface: #f3f3f3;
  --page: #ffffff;
  --font-heading: 'Poppins', serif;
  --font-body: 'Nunito', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Template-specific styles */
/* =========================================================
   Fresh Bite — template.css
   Fonts: Nunito (body/headings), Playball (decorative eyebrows), Oswald (nav CTA)
   ========================================================= */

/* ── Google Font Imports ── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=Playball&family=Oswald:wght@600&display=swap');

/* ── Design Tokens ── */
:root {
  --fb-green:        #01693a;
  --fb-green-dark:   #007a4b;
  --fb-red:          #ed274b;
  --fb-red-dark:     #f3274c;
  --fb-orange:       #ff7200;
  --fb-yellow:       #ffc222;
  --fb-gold:         #ffd074;
  --fb-lime:         #d4ff6e;
  --fb-dark:         #151418;
  --fb-heading:      #222222;
  --fb-body:         #434343;
  --fb-muted:        #909090;
  --fb-border:       #e5e7eb;
  --fb-surface:      #f3f3f3;
  --fb-surface-blue: #f5f8fd;
  --fb-white:        #ffffff;
  --fb-card-shadow:  0 11px 17px rgba(0,0,0,.15);
  --fb-radius-card:  18px;
  --fb-radius-pill:  9999px;
  --fb-radius-btn:   56px;
  --fb-section-pad:  clamp(3rem, 6vw, 6rem) clamp(1rem, 5vw, 4rem);
  --fb-container:    1310px;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Nunito', var(--font-body, sans-serif);
  color: var(--fb-body);
  background: var(--fb-white);
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

/* ── Utility ── */
.fb-section {
  padding: var(--fb-section-pad);
}

.fb-eyebrow {
  font-family: 'Playball', cursive;
  font-size: 1.125rem;
  color: var(--fb-green);
  margin-bottom: .5rem;
}

.fb-eyebrow-playball {
  font-family: 'Playball', cursive;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--fb-green);
  line-height: 1;
  margin-bottom: .5rem;
}

.fb-eyebrow-center,
.fb-eyebrow-playball.fb-eyebrow-center { text-align: center; }

.fb-eyebrow-large { font-size: 3rem; }

.fb-section-heading {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--fb-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.fb-section-body {
  font-size: .9375rem;
  color: var(--fb-body);
  line-height: 1.75;
  max-width: 56ch;
}

/* ── Buttons ── */
.fb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 56px;
  padding: 0 2rem;
  background: var(--fb-red);
  color: var(--fb-white);
  font-family: 'Nunito', sans-serif;
  font-size: .875rem;
  font-weight: 800;
  border-radius: var(--fb-radius-btn);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  text-decoration: none;
  white-space: nowrap;
}
.fb-btn-primary:hover { background: var(--fb-red-dark); transform: translateY(-1px); }
.fb-btn-primary:focus-visible { outline: 2px solid var(--fb-red); outline-offset: 3px; }

.fb-btn-green {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 56px;
  padding: 0 2rem;
  background: var(--fb-green-dark);
  color: var(--fb-white);
  font-family: 'Nunito', sans-serif;
  font-size: .875rem;
  font-weight: 800;
  border-radius: var(--fb-radius-btn);
  border: none;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  white-space: nowrap;
}
.fb-btn-green:hover { background: var(--fb-green); }

.fb-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  padding: 0 1.5rem;
  background: transparent;
  color: var(--fb-green);
  font-family: 'Nunito', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  border-radius: var(--fb-radius-btn);
  border: 2px solid var(--fb-green);
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.fb-btn-outline:hover { background: var(--fb-green); color: var(--fb-white); }

.fb-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-height: 44px;
  color: var(--fb-heading);
  font-family: 'Nunito', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
}
.fb-btn-ghost:hover { color: var(--fb-green); }

.fb-btn-icon { position: relative; }

.fb-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--fb-white);
  border-radius: var(--fb-radius-pill);
  flex-shrink: 0;
}
.fb-btn-primary .fb-btn-arrow svg { stroke: var(--fb-red); }
.fb-btn-green .fb-btn-arrow svg { stroke: var(--fb-green-dark); }

.fb-btn-ghost-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--fb-white);
  border-radius: var(--fb-radius-pill);
  border: 8px solid var(--fb-yellow);
  flex-shrink: 0;
}

/* ── Diet badges (required) ── */
.diet-badge-veg .diet-badge-icon { border-color: #16a34a; }
.diet-badge-veg .diet-badge-icon span { background: #16a34a; }
.diet-badge-egg .diet-badge-icon { border-color: #ca8a04; }
.diet-badge-egg .diet-badge-icon span { background: #ca8a04; }
.diet-badge-non-veg .diet-badge-icon { border-color: #dc2626; }
.diet-badge-non-veg .diet-badge-icon span { background: #dc2626; }

/* =========================================================
   HEADER
   ========================================================= */
.fb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--fb-white);
  box-shadow: 0 4px 54px rgba(0, 22, 89, .17);
}

.fb-header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1920px;
  margin: 0 auto;
  padding: .75rem clamp(1rem, 5vw, 3.5rem);
  height: 97px;
}

.fb-logo { display: flex; align-items: center; }
.fb-logo-img { height: 73px; width: auto; object-fit: contain; }
.fb-logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fb-heading);
}

.fb-nav { flex: 1; display: flex; justify-content: center; }

.fb-nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fb-nav-link {
  display: flex;
  align-items: center;
  height: 41px;
  padding: 0 1.125rem;
  font-family: 'Nunito', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--fb-heading);
  transition: color .2s;
  white-space: nowrap;
}
.fb-nav-link:hover,
.fb-nav-link.is-active { color: var(--fb-green); }

.fb-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.fb-btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 57px;
  padding: 0 2.5rem;
  background: var(--fb-yellow);
  color: var(--fb-white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 7px;
  transition: background .2s;
  white-space: nowrap;
  text-transform: uppercase;
}
.fb-btn-nav:hover { background: #e6a800; }

.fb-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 31px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.fb-burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fb-heading);
  border-radius: 1px;
  transition: transform .25s, opacity .25s;
}

/* =========================================================
   HERO — SPLIT
   ========================================================= */
.fb-hero-split {
  min-height: clamp(520px, 80vh, 980px);
  background: var(--fb-white);
  position: relative;
  overflow: hidden;
}

.fb-hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: var(--fb-container);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
  gap: clamp(2rem, 5vw, 5rem);
  min-height: inherit;
}

.fb-hero-copy { display: flex; flex-direction: column; align-items: flex-start; }

.fb-hero-headline {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  color: var(--fb-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.fb-hero-sub {
  font-size: 1rem;
  color: var(--fb-heading);
  line-height: 1.9;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.fb-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.fb-hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-image,
.fb-hero-img {
  width: 100%;
  max-width: 580px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--fb-radius-pill);
  background: var(--fb-surface);
}

.fb-hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1.5rem 0 .5rem;
}

.fb-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: var(--fb-radius-pill);
  background: var(--fb-border);
}
.fb-dot-active {
  width: 18px;
  background: var(--fb-green);
  box-shadow: 0 0 0 1px var(--fb-green);
}

/* ── Hero — Centered ── */
.fb-hero-centered {
  min-height: clamp(400px, 70vh, 800px);
  background: var(--fb-white);
}

.fb-hero-centered-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: var(--fb-container);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem) 3rem;
}

.fb-hero-headline-center { text-align: center; max-width: 16ch; }
.fb-hero-sub-center { text-align: center; }
.fb-hero-actions-center { justify-content: center; }

.fb-hero-media-center {
  width: 100%;
  margin-top: 3rem;
}

.fb-hero-img-center {
  width: 100%;
  max-width: 1280px;
  border-radius: 20px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

/* =========================================================
   ABOUT PREVIEW (Delivery Guarantee)
   ========================================================= */
.fb-about-preview {
  background: var(--fb-white);
}

.fb-about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--fb-container);
  margin: 0 auto;
  padding: var(--fb-section-pad);
}

.fb-about-preview-img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 20px;
}

.fb-about-preview-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }

.fb-about-phone {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: .5rem 0;
}

.fb-about-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--fb-radius-pill);
  background: rgba(1,105,58,.1);
  flex-shrink: 0;
}

.fb-about-phone-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--fb-heading);
}

.fb-about-phone-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fb-orange);
}

/* =========================================================
   ABOUT STORY
   ========================================================= */
.fb-about-story {
  background: var(--fb-white);
}

.fb-about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--fb-container);
  margin: 0 auto;
  padding: var(--fb-section-pad);
}

.fb-about-story-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
}

.fb-about-story-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }

.fb-story-values { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }

.fb-story-value {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--fb-heading);
}

.fb-story-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* =========================================================
   GALLERY PREVIEW (Mosaic)
   ========================================================= */
.fb-gallery-preview {
  background: var(--fb-white);
}

.fb-gallery-preview-inner {
  max-width: var(--fb-container);
  margin: 0 auto;
  padding: var(--fb-section-pad);
}

.fb-gallery-heading { margin-bottom: 1.5rem; }

.fb-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.125rem;
}

.fb-gallery-cell {
  border-radius: 20px;
  overflow: hidden;
  background: var(--fb-surface);
  aspect-ratio: 1 / 1;
}

.fb-gallery-cell img,
.fb-gallery-cell .gallery-image-html img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   GALLERY GRID
   ========================================================= */
.fb-gallery-grid { background: var(--fb-white); }

.fb-gallery-grid-inner {
  max-width: var(--fb-container);
  margin: 0 auto;
  padding: var(--fb-section-pad);
}

.fb-gallery-grid-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.125rem;
}

.fb-gallery-grid-cell {
  border-radius: 20px;
  overflow: hidden;
  background: var(--fb-surface);
  aspect-ratio: 4 / 3;
}

.fb-gallery-grid-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   DISH CARDS (shared by FEATURED_DISHES, MENU_PREVIEW)
   ========================================================= */
.fb-dish-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.fb-dish-card {
  background: var(--fb-white);
  border-radius: var(--fb-radius-card);
  border: 1px solid var(--fb-border);
  box-shadow: var(--fb-card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.fb-dish-card:hover { transform: translateY(-4px); box-shadow: 0 18px 30px rgba(0,0,0,.18); }

.fb-dish-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--fb-surface);
}

.fb-dish-card-img,
.fb-dish-card-img-wrap img,
.fb-dish-card-img-wrap .feature-image-html img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fb-dish-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .375rem;
  flex: 1;
}

.fb-dish-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fb-heading);
  line-height: 1.3;
}

.fb-dish-card-desc {
  font-size: .8125rem;
  color: var(--fb-muted);
  line-height: 1.5;
}

.fb-dish-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .5rem;
}

.fb-dish-card-price {
  font-size: .875rem;
  font-weight: 800;
  color: var(--fb-green-dark);
}

/* =========================================================
   FEATURED DISHES section wrapper
   ========================================================= */
.fb-featured-dishes { background: var(--fb-white); }

.fb-featured-dishes-inner {
  max-width: var(--fb-container);
  margin: 0 auto;
  padding: var(--fb-section-pad);
}

.fb-featured-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.fb-featured-title-row { display: flex; flex-direction: column; }

/* =========================================================
   MENU PREVIEW
   ========================================================= */
.fb-menu-preview { background: var(--fb-white); }

.fb-menu-preview-inner {
  max-width: var(--fb-container);
  margin: 0 auto;
  padding: var(--fb-section-pad);
}

.fb-menu-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================================================
   FULL MENU
   ========================================================= */
.fb-full-menu { background: var(--fb-white); }

.fb-full-menu-inner {
  max-width: var(--fb-container);
  margin: 0 auto;
  padding: var(--fb-section-pad);
}

.fb-menu-subtitle { margin-bottom: 2rem; }

.fb-menu-category { margin-bottom: 3rem; }

.fb-menu-cat-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fb-heading);
  border-bottom: 3px solid var(--fb-green);
  padding-bottom: .5rem;
  margin-bottom: 1rem;
}

.fb-menu-cat-desc {
  font-size: .9375rem;
  color: var(--fb-body);
  margin-bottom: 1rem;
}

.fb-menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.fb-menu-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--fb-radius-card);
  border: 1px solid var(--fb-border);
  background: var(--fb-white);
  transition: box-shadow .2s;
}
.fb-menu-item:hover { box-shadow: var(--fb-card-shadow); }

.fb-menu-item-img-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--fb-surface);
}

.fb-menu-item-img,
.fb-menu-item-img-wrap img,
.fb-menu-item-img-wrap .menu-image-html img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fb-menu-item-info { flex: 1; }

.fb-menu-item-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
}

.fb-menu-item-name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--fb-heading);
}

.fb-menu-item-desc {
  font-size: .8125rem;
  color: var(--fb-body);
  line-height: 1.5;
  margin-bottom: .375rem;
}

.fb-menu-item-price {
  font-size: .875rem;
  font-weight: 800;
  color: var(--fb-green-dark);
}

/* =========================================================
   CTA BANNER — default
   ========================================================= */
.fb-cta-banner {
  background: var(--fb-surface-blue);
  text-align: center;
}

.fb-cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--fb-section-pad);
}

.fb-cta-heading { font-size: clamp(1.5rem, 3vw, 2.25rem); text-align: center; }
.fb-cta-body { text-align: center; }

/* =========================================================
   SPECIAL OFFER (cta-banner--special-offer)
   ========================================================= */
.fb-special-offer {
  background: var(--fb-white);
  overflow: hidden;
}

.fb-special-offer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.fb-special-offer-copy {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 8vw, 8rem) clamp(3rem, 6vw, 5rem) clamp(2rem, 8vw, 8rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  z-index: 1;
}

.fb-special-offer-pricing {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.fb-offer-sale-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--fb-orange);
}

.fb-offer-orig-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fb-border);
  text-decoration: line-through;
}

.fb-special-offer-media {
  position: relative;
  background: var(--fb-gold);
  border-radius: 50px 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 673px;
}

.fb-special-offer-img {
  width: 100%;
  max-width: 639px;
  aspect-ratio: 639 / 525;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* =========================================================
   CTA BANNER CUSTOM (full-width with bg image)
   ========================================================= */
.fb-cta-custom {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 1280px;
}

.fb-cta-custom-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fb-cta-custom-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fb-cta-custom-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  min-height: 411px;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  background: rgba(255,255,255,.75);
}

.fb-cta-custom-heading {
  text-align: center;
  max-width: 22ch;
}

.fb-cta-custom-body {
  text-align: center;
  max-width: 50ch;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.fb-testimonials { background: var(--fb-white); }

.fb-testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: var(--fb-container);
  margin: 0 auto;
  padding: var(--fb-section-pad);
}

.fb-testimonials-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
}

.fb-testimonials-copy { display: flex; flex-direction: column; gap: 1.5rem; }

.fb-testimonials-list { display: flex; flex-direction: column; gap: 1.5rem; }

.fb-testimonial-item {
  padding: 1.5rem;
  background: var(--fb-surface);
  border-radius: 12px;
  border-left: 4px solid var(--fb-green);
  margin: 0;
}

.fb-testimonial-stars {
  font-size: 1.125rem;
  color: var(--fb-orange);
  margin-bottom: .75rem;
}

.fb-testimonial-quote {
  font-size: 1rem;
  font-weight: 300;
  color: var(--fb-body);
  line-height: 1.875;
  margin-bottom: .75rem;
}

.fb-testimonial-attribution {
  font-size: .875rem;
  font-weight: 700;
  color: var(--fb-body);
}

.fb-testimonial-location { font-weight: 400; color: var(--fb-muted); }

/* =========================================================
   BLOG PREVIEW
   ========================================================= */
.fb-blog-preview {
  background: var(--fb-surface);
  padding: var(--fb-section-pad);
}

.fb-blog-preview-inner {
  max-width: var(--fb-container);
  margin: 0 auto;
}

.fb-blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.fb-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.fb-blog-card {
  background: var(--fb-white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.fb-blog-card:hover { transform: translateY(-4px); box-shadow: var(--fb-card-shadow); }

.fb-blog-card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--fb-border);
}

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

.fb-blog-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.fb-blog-card-meta {
  font-size: .625rem;
  font-weight: 600;
  color: var(--fb-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.fb-blog-card-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--fb-heading);
  line-height: 1.4;
}

.fb-blog-card-excerpt {
  font-size: .8125rem;
  color: var(--fb-body);
  line-height: 1.6;
  flex: 1;
}

.fb-blog-card-link {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--fb-green);
  margin-top: auto;
}
.fb-blog-card-link:hover { color: var(--fb-green-dark); text-decoration: underline; }

/* =========================================================
   CONTACT
   ========================================================= */
.fb-contact { background: var(--fb-white); }

.fb-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: var(--fb-container);
  margin: 0 auto;
  padding: var(--fb-section-pad);
}

.fb-contact-list { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .875rem; }

.fb-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--fb-body);
}

.fb-contact-icon { flex-shrink: 0; color: var(--fb-green); margin-top: 2px; }

.fb-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.fb-form-row { display: flex; flex-direction: column; gap: .375rem; }

.fb-form-label {
  font-size: .875rem;
  font-weight: 700;
  color: var(--fb-heading);
}

.fb-form-input {
  width: 100%;
  padding: .75rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: .9375rem;
  color: var(--fb-heading);
  background: var(--fb-white);
  border: 1px solid var(--fb-border);
  border-radius: 9px;
  outline: none;
  transition: border-color .2s;
}
.fb-form-input:focus { border-color: var(--fb-green); }

.fb-form-textarea { resize: vertical; min-height: 140px; }

/* =========================================================
   MAP
   ========================================================= */
.fb-map { background: var(--fb-surface); }

.fb-map-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: var(--fb-container);
  margin: 0 auto;
  padding: var(--fb-section-pad);
  align-items: start;
}

.fb-map-address {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .9375rem;
  color: var(--fb-body);
  margin: .75rem 0;
}

.fb-map-phone { font-size: 1rem; font-weight: 700; color: var(--fb-orange); margin-bottom: 1.25rem; }
.fb-map-phone a { color: inherit; }

.fb-map-embed {
  border-radius: 20px;
  overflow: hidden;
  background: var(--fb-surface);
  min-height: 400px;
  height: 400px;
}

.fb-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.fb-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  height: 100%;
  color: var(--fb-muted);
  font-size: .875rem;
  text-align: center;
  padding: 2rem;
}

.fb-map-location-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0;
}

.fb-map-tab {
  padding: .5rem 1.25rem;
  font-family: 'Nunito', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  color: var(--fb-heading);
  background: var(--fb-white);
  border: 2px solid var(--fb-border);
  border-radius: var(--fb-radius-pill);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.fb-map-tab:hover { border-color: var(--fb-green); color: var(--fb-green); }
.fb-map-tab.is-active { background: var(--fb-green); color: var(--fb-white); border-color: var(--fb-green); }
.fb-map-tab:focus-visible { outline: 2px solid var(--fb-green); outline-offset: 2px; }

.fb-map-location-info { margin-bottom: 1.25rem; }

.fb-map-directions {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--fb-green);
  margin-top: .5rem;
}
.fb-map-directions:hover { text-decoration: underline; }

/* =========================================================
   HOURS
   ========================================================= */
.fb-hours { background: var(--fb-white); }

.fb-hours-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--fb-section-pad);
  text-align: center;
}

.fb-hours-note { margin: .5rem auto 2rem; }

.fb-hours-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--fb-border);
}

.fb-hours-table {
  width: 100%;
  border-collapse: collapse;
}

.fb-hours-row { border-bottom: 1px solid var(--fb-border); }
.fb-hours-row:last-child { border-bottom: none; }

.fb-hours-day,
.fb-hours-time {
  padding: 1rem 1.5rem;
  font-size: .9375rem;
  color: var(--fb-body);
}

.fb-hours-day {
  font-weight: 700;
  color: var(--fb-heading);
  text-align: left;
  background: var(--fb-surface);
}

.fb-hours-time { text-align: right; }

/* =========================================================
   FOOTER
   ========================================================= */
.fb-footer {
  background: var(--fb-surface-blue);
  border-top: 10px solid var(--fb-yellow);
}

.fb-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1920px;
  margin: 0 auto;
  padding: 3.5rem clamp(1rem, 5vw, 4rem) 2rem;
  align-items: start;
}

.fb-footer-brand { display: flex; flex-direction: column; gap: .75rem; max-width: 360px; }

.fb-footer-logo-img { height: 60px; width: auto; object-fit: contain; }
.fb-footer-logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fb-heading);
}

.fb-footer-tagline { font-size: .9375rem; color: var(--fb-body); }

.fb-footer-phone,
.fb-footer-email {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--fb-orange);
}

.fb-footer-social { display: flex; gap: 1rem; margin-top: .5rem; }

.fb-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--fb-radius-pill);
  background: var(--fb-white);
  color: var(--fb-heading);
  transition: background .2s, color .2s;
}
.fb-social-link:hover { background: var(--fb-green); color: var(--fb-white); }

.fb-footer-nav { display: flex; gap: clamp(2rem, 4vw, 5rem); }

.fb-footer-col { display: flex; flex-direction: column; gap: .875rem; }

.fb-footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fb-heading);
}

.fb-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.fb-footer-links li,
.fb-footer-links a {
  font-size: .9375rem;
  color: var(--fb-body);
  transition: color .2s;
}
.fb-footer-links a:hover { color: var(--fb-green); }

.fb-footer-bottom {
  background: var(--fb-red-dark);
  text-align: center;
  padding: 1rem;
}

.fb-footer-bottom p {
  font-size: .875rem;
  color: var(--fb-white);
  margin: 0;
}

/* =========================================================
   SEO PAGES
   ========================================================= */
.fb-dish-page,
.fb-category-page {
  padding: var(--fb-section-pad);
  max-width: var(--fb-container);
  margin: 0 auto;
}

.fb-back-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--fb-green);
  margin-bottom: 2rem;
}
.fb-back-link:hover { text-decoration: underline; }

.fb-dish-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: 3rem;
}

.fb-dish-img-wrap { border-radius: 20px; overflow: hidden; }
.fb-dish-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.fb-dish-details { display: flex; flex-direction: column; gap: 1rem; }

.fb-dish-name { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--fb-heading); }
.fb-dish-price { font-size: 1.5rem; font-weight: 800; color: var(--fb-green-dark); }
.fb-dish-desc { font-size: .9375rem; color: var(--fb-body); line-height: 1.7; }

.fb-dish-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.fb-dish-tag {
  padding: .25rem .75rem;
  background: rgba(1,105,58,.1);
  color: var(--fb-green);
  border-radius: var(--fb-radius-pill);
  font-size: .75rem;
  font-weight: 700;
}

.fb-related-dishes { margin-top: 3rem; }
.fb-related-title { font-size: 1.5rem; font-weight: 700; color: var(--fb-heading); margin-bottom: 1.5rem; }

.fb-category-page-inner { max-width: var(--fb-container); margin: 0 auto; }
.fb-category-header { margin-bottom: 2rem; }
.fb-category-name { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--fb-heading); margin-bottom: .5rem; }
.fb-category-desc { font-size: .9375rem; color: var(--fb-body); }
.fb-category-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.fb-dish-page-inner { max-width: var(--fb-container); margin: 0 auto; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .fb-dish-cards-grid,
  .fb-blog-grid { grid-template-columns: repeat(2, 1fr); }

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

  .fb-special-offer-inner { grid-template-columns: 1fr; }
  .fb-special-offer-media { border-radius: 0 0 20px 20px; min-height: auto; }

  .fb-footer-inner { grid-template-columns: 1fr; }
  .fb-footer-nav { flex-wrap: wrap; }
}

/* Tablet ≤ 768px */
@media (max-width: 768px) {
  :root { --fb-section-pad: 2.5rem 1.25rem; }

  /* Nav mobile */
  .fb-nav-toggle { display: flex; }
  .fb-nav { display: none; }
  .fb-nav.is-open {
    display: flex;
    position: fixed;
    top: 97px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--fb-white);
    z-index: 99;
    overflow-y: auto;
    padding: 1.5rem;
  }
  .fb-nav.is-open .fb-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .fb-nav.is-open .fb-nav-link { font-size: 1.125rem; height: auto; padding: 1rem 0; border-bottom: 1px solid var(--fb-border); width: 100%; }

  /* Hero */
  .fb-hero-split-inner { grid-template-columns: 1fr; min-height: auto; }
  .fb-hero-media { order: -1; }
  .hero-media-image, .fb-hero-img { max-width: 100%; border-radius: 20px; }

  /* Sections 2-col → 1-col */
  .fb-about-preview-inner,
  .fb-about-story-inner,
  .fb-testimonials-inner,
  .fb-contact-inner,
  .fb-map-inner,
  .fb-dish-layout { grid-template-columns: 1fr; }

  .fb-contact-inner { grid-template-columns: 1fr; }

  /* Cards 2 → 1 */
  .fb-dish-cards-grid { grid-template-columns: 1fr; }
  .fb-blog-grid { grid-template-columns: 1fr; }
  .fb-gallery-mosaic { grid-template-columns: 1fr; }

  .fb-hero-centered-inner { padding-top: 2.5rem; }
  .fb-hero-img-center { aspect-ratio: 4 / 3; }
}

/* Mobile ≤ 480px */
@media (max-width: 480px) {
  .fb-btn-primary,
  .fb-btn-green { min-height: 48px; padding: 0 1.5rem; font-size: .8125rem; }

  .fb-hero-headline { font-size: clamp(2rem, 8vw, 2.5rem); }

  .fb-section-heading { font-size: 1.5rem; }
  .fb-eyebrow-playball { font-size: 1.75rem; }

  .fb-header-inner { height: 72px; }
  .fb-logo-img { height: 48px; }
}
