/* ============================================================
   FreshStack Bootstrap — main.css
   Custom design system over Bootstrap 5.3
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ── CSS Variables (Design Tokens) ── */
:root {
  --fs-teal:       #004D40;
  --fs-teal-dark:  #00352c;
  --fs-teal-light: #E8F5F2;
  --fs-orange:     #E64A19;
  --fs-orange-light: rgba(230, 74, 25, 0.08);
  --fs-cream:      #FFF9C4;
  --fs-bg:         #FAFCFB;
  --fs-card-border: 1px solid #E2E8F0;
  --fs-card-shadow: 0px 4px 20px rgba(0, 77, 64, 0.03);
  --fs-card-shadow-hover: 0px 8px 32px rgba(0, 77, 64, 0.08);
  --fs-card-radius: 16px;
  --fs-card-radius-lg: 20px;
  --fs-card-radius-xl: 24px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: #fff;
  color: #0F172A;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════
   BOOTSTRAP OVERRIDES — Match React/Tailwind Design
   ═══════════════════════════════════════════════════ */

/* 1. Kill Bootstrap's blue links everywhere */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

/* 2. Override Bootstrap btn border-radius (it defaults to 6px/0.375rem) */
.btn {
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s;
}
.btn:focus-visible,
.btn:focus {
  box-shadow: none;
  outline: 2px solid rgba(0, 77, 64, 0.3);
  outline-offset: 2px;
}

/* 3. Override Bootstrap card */
.card {
  border-radius: 16px;
  border-color: #E2E8F0;
  box-shadow: 0px 4px 20px rgba(0, 77, 64, 0.03);
}

/* 4. Override Bootstrap form controls */
.form-control {
  border-radius: 10px;
  border-color: #E2E8F0;
  font-family: var(--font-body);
  font-size: 13px;
  color: #0F172A;
}
.form-control:focus {
  border-color: var(--fs-teal);
  box-shadow: 0 0 0 3px rgba(0, 77, 64, 0.1);
}

/* 5. Override Bootstrap badge */
.badge {
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* 6. Override Bootstrap modal */
.modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: 0 24px 64px rgba(0, 77, 64, 0.12);
}

/* 7. Bootstrap nav-link reset */
.nav-link {
  color: #64748B;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--fs-teal);
}

/* 8. Bootstrap offcanvas */
.offcanvas {
  border-radius: 0;
}

/* ── Tailwind-parity helpers Bootstrap doesn't have ── */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-1  { z-index: 1;  }
.z-5  { z-index: 5;  }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.object-fit-cover { object-fit: cover; }
.min-h-screen { min-height: 100vh; }
.tracking-wide  { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }
.leading-tight  { line-height: 1.25; }
.leading-snug   { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.aspect-4-5 { aspect-ratio: 4/5; }
.max-h-560  { max-height: 560px; }
.max-w-480  { max-width: 480px; }
.max-w-520  { max-width: 520px; }
.max-w-1200 { max-width: 1200px; }
.rounded-xl  { border-radius: 12px !important; }
.rounded-2xl { border-radius: 16px !important; }
.rounded-3xl { border-radius: 24px !important; }
.rounded-full { border-radius: 9999px !important; }

/* ── Bootstrap Bootstrap color/bg overrides that collide ── */
.bg-white  { background-color: #ffffff !important; }
.border-0  { border: 0 !important; }


.btn-fs-teal {
  background-color: var(--fs-teal);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 77, 64, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-fs-teal:hover {
  background-color: var(--fs-teal-dark);
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 77, 64, 0.28);
}

.btn-fs-orange {
  background-color: var(--fs-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(230, 74, 25, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-fs-orange:hover {
  background-color: #d03e10;
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(230, 74, 25, 0.35);
}

.btn-fs-outline {
  background-color: white;
  color: #475569;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid #E2E8F0;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 77, 64, 0.04);
  transition: transform 0.25s ease;
}
.btn-fs-outline:hover {
  transform: scale(1.02);
  border-color: #cbd5e1;
  color: #1e293b;
}

#fs-customizer button[data-action="toggle-all-veggies"]:hover,
#fs-customizer button[data-action="toggle-all-veggies"]:focus,
#fs-customizer button[data-action="toggle-all-veggies"]:active {
  color: #fff !important;
}

/* ── Soft UI Card ── */
.fs-card {
  border: var(--fs-card-border);
  box-shadow: var(--fs-card-shadow);
  border-radius: var(--fs-card-radius);
  background-color: #fff;
  /* overflow: hidden; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fs-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--fs-card-shadow-hover);
}
.fs-card-lg {
  border-radius: var(--fs-card-radius-lg);
}
.fs-card-xl {
  border-radius: var(--fs-card-radius-xl);
}

/* ── Card image zoom ── */
.fs-img-zoom {
  overflow: hidden;
}
.fs-img-zoom img {
  transition: transform 0.5s ease;
}
.fs-card:hover .fs-img-zoom img,
.fs-img-zoom:hover img {
  transform: scale(1.08);
}

/* ── Glassmorphism Badge ── */
.fs-badge-glass {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.4px;
  border-radius: 8px;
  padding: 4px 10px;
  color: #fff;
}
.fs-badge-teal  { background-color: rgba(0, 77, 64, 0.82); }
.fs-badge-orange { background-color: rgba(230, 74, 25, 0.9); }
.fs-badge-white {
  background-color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1E293B;
}

/* ── Section Label Pill ── */
.fs-section-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
}
.fs-section-pill-teal {
  background-color: rgba(0, 77, 64, 0.06);
  color: var(--fs-teal);
}
.fs-section-pill-orange {
  background-color: var(--fs-orange-light);
  color: var(--fs-orange);
}

/* ── Heading Font Helpers ── */
.fs-h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: #0F172A;
}
.fs-h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: #0F172A;
}
.fs-h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: #0F172A;
}

/* ── Progress Bar customisation ── */
.fs-progress .progress-bar {
  background-color: var(--fs-teal);
  transition: width 0.45s ease;
}
.fs-progress-wrap {
  background-color: #E2E8F0;
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}

/* ── Sticky Navbar shadow ── */
.fs-navbar {
  box-shadow: 0 2px 16px rgba(0, 77, 64, 0.06);
}
.fs-navbar .container-xl {
  max-width: 1200px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .fs-navbar .container-xl > .d-flex {
    position: static;
  }

  .fs-navbar nav.d-none.d-md-flex {
    position: static;
    transform: none;
    flex: 1 1 auto !important;
    justify-content: center;
    min-width: 0;
  }

  .fs-navbar .fs-nav-link {
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 0.4px;
  }
}

@media (min-width: 1200px) {
  .fs-navbar .container-xl > .d-flex {
    position: relative;
  }

  .fs-navbar nav.d-none.d-md-flex {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    flex: 0 0 auto !important;
    justify-content: center;
    white-space: nowrap;
    z-index: 1;
  }
}

/* ── Pickup bar gradient ── */
.fs-pickup-bar {
  background: linear-gradient(to right, #F0FDF4, #FEFCE8);
  border-bottom: 1px solid #E2E8F0;
}

/* ── Nav link active indicator ── */
.fs-nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #64748B;
  border-radius: 8px;
  padding: 8px 14px;
  position: relative;
  transition: color 0.2s, background-color 0.2s;
  text-decoration: none;
}
.fs-nav-link:hover {
  color: var(--fs-teal);
  background-color: rgba(0, 77, 64, 0.05);
}
.fs-nav-link.active {
  color: var(--fs-teal);
  font-weight: 700;
  background-color: rgba(0, 77, 64, 0.06);
}
.fs-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--fs-teal);
}
.fs-mobile-nav-active {
  background: rgba(255,255,255,.14) !important;
  opacity: 1 !important;
}

/* Menu page typography consistency */
.fs-menu-page h1,
.fs-menu-page h2,
.fs-menu-page h3,
.fs-menu-page .font-heading.fw-800 {
  font-weight: 800 !important;
}

.fs-menu-page .font-heading.fw-700,
.fs-menu-page .font-heading.fw-600 {
  font-weight: 700 !important;
}

.fs-menu-page .fs-card .font-body,
.fs-menu-page .fs-card p.font-body,
.fs-menu-page .fs-card span.font-body {
  font-weight: 500;
}

.fs-menu-page .fs-card .text-muted,
.fs-menu-page .text-muted.font-body {
  color: #64748B !important;
  opacity: 1;
}

/* ── Hero Section ── */
.fs-hero {
  background-color: var(--fs-bg);
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.fs-hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 77, 64, 0.15), 0 8px 24px rgba(0, 77, 64, 0.08);
}
.fs-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  max-height: 560px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── Floating Card (glassmorphism) ── */
.fs-float-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 77, 64, 0.1);
  box-shadow: 0 8px 32px rgba(0, 77, 64, 0.1);
  border-radius: 16px;
  position: absolute;
  z-index: 20;
}

/* ── Logo icon ── */
.fs-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--fs-teal);
  box-shadow: 0 4px 12px rgba(0, 77, 64, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.fs-logo-icon:hover { transform: scale(1.05); }

/* ── Navbar logo image (from assets) ── */
.fs-navbar .fs-logo-icon,
.fs-offcanvas .fs-logo-icon {
  background: url('../assets/FreshStack-Logo-Mark.svg') center/cover no-repeat;
  box-shadow: none;
}
.fs-navbar .fs-logo-icon svg,
.fs-offcanvas .fs-logo-icon svg {
  display: none;
}
.fs-navbar .fs-logo-icon + span,
.fs-offcanvas .fs-logo-icon + span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* ── Category bento grid card ── */
.fs-cat-card {
  border-radius: var(--fs-card-radius-lg);
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 77, 64, 0.04);
  cursor: pointer;
  position: relative;
  display: block;
  text-decoration: none;
}
.fs-cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.fs-cat-card:hover .fs-cat-card-bg {
  transform: scale(1.1);
}
.fs-cat-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,77,64,0.9) 0%, rgba(0,77,64,0.4) 50%, transparent 100%);
}
.fs-cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 5;
}
.fs-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--fs-orange);
  box-shadow: 0 4px 12px rgba(230, 74, 25, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.fs-cat-card:hover .fs-cat-icon { transform: scale(1.1); }

/* ── Promo / Bento Card ── */
.fs-promo-card {
  border-radius: var(--fs-card-radius-xl);
  padding: 40px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.fs-promo-card:hover { transform: scale(1.01); }

/* ── Customize / Order Customizer ── */
.fs-customize-wrap {
  background: #fff;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.fs-customize-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.fs-summary-sidebar-sticky {
  top: var(--fs-customizer-top-offset, 176px);
  z-index: 150;
}
.fs-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 8px;
}
.fs-section-header .title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #111827;
}
.fs-required-badge {
  background-color: var(--fs-teal);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.3px;
  border-radius: 4px;
  padding: 2px 8px;
}

/* ── Choice Rows ── */
.fs-choice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #F3F4F6;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.18s;
  background-color: #fff;
}
.fs-choice-row:last-child { border-bottom: none; }
.fs-choice-row.selected { background-color: var(--fs-teal-light); }
.fs-choice-row:hover:not(.selected) { background-color: #F9FAFB; }

.fs-radio-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.18s, background-color 0.18s;
}
.fs-choice-row.selected .fs-radio-circle {
  border-color: var(--fs-teal);
  background-color: var(--fs-teal);
}
.fs-radio-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  display: none;
}
.fs-choice-row.selected .fs-radio-inner { display: block; }

.fs-check-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.18s, background-color 0.18s;
}
.fs-choice-row.selected .fs-check-box {
  border-color: var(--fs-teal);
  background-color: var(--fs-teal);
}
.fs-check-icon { display: none; }
.fs-choice-row.selected .fs-check-icon { display: block; color: #fff; }

/* ── Counter Buttons ── */
.fs-counter {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fs-counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background-color: var(--fs-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}
.fs-counter-btn:hover { opacity: 0.85; }
.fs-counter-btn-outline {
  background: transparent;
  border: 2px solid #D1D5DB;
  color: #9CA3AF;
}
.fs-counter-btn-outline:hover { border-color: var(--fs-teal); color: var(--fs-teal); }
.fs-counter-qty {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--fs-teal);
  min-width: 18px;
  text-align: center;
}

/* ── Size Buttons ── */
.fs-size-btn {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #E5E7EB;
  background: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
}
.fs-size-btn.active {
  border-color: var(--fs-teal);
  background-color: var(--fs-teal-light);
  color: var(--fs-teal);
}
.fs-size-btn .price-hint {
  display: block;
  font-size: 11px;
  font-weight: 400;
  margin-top: 2px;
  color: #9CA3AF;
}
.fs-size-btn.active .price-hint { color: var(--fs-teal); }

/* ── Color Dot ── */
.fs-color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(0,0,0,0.06);
}

/* ── Add to Order Bar (sticky bottom) ── */
.fs-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 210;
  padding: 12px 16px;
}
.fs-add-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background-color: var(--fs-teal);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}
.fs-add-btn:hover { background-color: var(--fs-teal-dark); }
.fs-add-btn.success { background-color: #388E3C; }

/* ── Category Tabs (Sandwiches page) ── */
.fs-cat-tabs {
  position: sticky;
  z-index: 100;
  top: 64px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0;
}
.fs-tab-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 14px 16px;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  color: #94A3B8;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.fs-tab-btn.active {
  font-weight: 700;
  color: var(--fs-teal);
  border-bottom-color: var(--fs-teal);
  background-color: rgba(0, 77, 64, 0.04);
  border-radius: 6px 6px 0 0;
}

/* ── Section Nav Pills ── */
.fs-section-pill-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  background: #fff;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 11px;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s;
}
.fs-section-pill-nav.active {
  border-width: 2px;
  font-weight: 700;
}

/* ── Sandwich Card ── */
.fs-sandwich-card {
  border: var(--fs-card-border);
  box-shadow: var(--fs-card-shadow);
  border-radius: var(--fs-card-radius);
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fs-sandwich-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 77, 64, 0.08);
}

/* ── Stats row ── */
.fs-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(0, 77, 64, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Footer ── */
.fs-footer {
  background-color: var(--fs-teal);
}

/* ── Offcanvas Mobile Menu ── */
.offcanvas.fs-offcanvas {
  max-width: 300px;
}
.fs-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background-color: var(--fs-teal);
}
.fs-offcanvas .offcanvas-body {
  background-color: var(--fs-teal);
}

/* ── Combo Modal ── */
.fs-combo-card {
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.fs-combo-card:hover { border-color: var(--fs-orange); background: var(--fs-orange-light); }

/* ── Divider line ── */
.fs-divider { border-top: 1px solid #F3F4F6; }

/* ── Contact/Social icon ── */
.fs-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
}
.fs-social-btn:hover { color: #fff; transform: scale(1.08); background: rgba(255,255,255,0.14); }

/* ── Newsletter input ── */
.fs-newsletter-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  flex: 1;
}
.fs-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.fs-newsletter-input:focus { border-color: rgba(255,255,255,0.3); }

/* ── Utilities ── */
.text-teal   { color: var(--fs-teal) !important; }
.text-orange { color: var(--fs-orange) !important; }
.bg-teal     { background-color: var(--fs-teal) !important; }
.bg-orange   { background-color: var(--fs-orange) !important; }
.bg-fs       { background-color: var(--fs-bg) !important; }
.bg-fs-cream { background-color: var(--fs-cream) !important; }
.font-heading { font-family: var(--font-heading) !important; }
.font-body    { font-family: var(--font-body) !important; }
.fw-900 { font-weight: 900 !important; }
.fs-color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(0,0,0,0.06);
}

/* ── Add to Order Bar (sticky bottom) ── */
.fs-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 210;
  padding: 12px 16px;
}
.fs-add-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background-color: var(--fs-teal);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}
.fs-add-btn:hover { background-color: var(--fs-teal-dark); }
.fs-add-btn.success { background-color: #388E3C; }

/* ── Category Tabs (Sandwiches page) ── */
.fs-cat-tabs {
  position: sticky;
  z-index: 100;
  top: 64px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0;
}
.fs-tab-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 14px 16px;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  color: #94A3B8;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.fs-tab-btn.active {
  font-weight: 700;
  color: var(--fs-teal);
  border-bottom-color: var(--fs-teal);
  background-color: rgba(0, 77, 64, 0.04);
  border-radius: 6px 6px 0 0;
}

/* ── Section Nav Pills ── */
.fs-section-pill-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  background: #fff;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 11px;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s;
}
.fs-section-pill-nav.active {
  border-width: 2px;
  font-weight: 700;
}

/* ── Sandwich Card ── */
.fs-sandwich-card {
  border: var(--fs-card-border);
  box-shadow: var(--fs-card-shadow);
  border-radius: var(--fs-card-radius);
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fs-sandwich-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 77, 64, 0.08);
}

/* ── Stats row ── */
.fs-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(0, 77, 64, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Footer ── */
.fs-footer {
  background-color: var(--fs-teal);
}

/* ── Offcanvas Mobile Menu ── */
.offcanvas.fs-offcanvas {
  max-width: 300px;
}
.fs-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background-color: var(--fs-teal);
}
.fs-offcanvas .offcanvas-body {
  background-color: var(--fs-teal);
}

/* ── Combo Modal ── */
.fs-combo-card {
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.fs-combo-card:hover { border-color: var(--fs-orange); background: var(--fs-orange-light); }

/* ── Divider line ── */
.fs-divider { border-top: 1px solid #F3F4F6; }

/* ── Contact/Social icon ── */
.fs-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
}
.fs-social-btn:hover { color: #fff; transform: scale(1.08); background: rgba(255,255,255,0.14); }

/* ── Newsletter input ── */
.fs-newsletter-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  flex: 1;
}
.fs-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.fs-newsletter-input:focus { border-color: rgba(255,255,255,0.3); }

/* ── Utilities ── */
.text-teal   { color: var(--fs-teal) !important; }
.text-orange { color: var(--fs-orange) !important; }
.bg-teal     { background-color: var(--fs-teal) !important; }
.bg-orange   { background-color: var(--fs-orange) !important; }
.bg-fs       { background-color: var(--fs-bg) !important; }
.bg-fs-cream { background-color: var(--fs-cream) !important; }
.font-heading { font-family: var(--font-heading) !important; }
.font-body    { font-family: var(--font-body) !important; }
.fw-900 { font-weight: 900 !important; }
.fw-800 { font-weight: 800 !important; }
.letter-wide { letter-spacing: 0.5px; }
.letter-wider { letter-spacing: 1px; }
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ── Scroll-mt for section anchors ── */
.scroll-anchor { scroll-margin-top: 130px; }

/* ── Animations ── */
.fade-in-up {
  animation: fadeInUp 0.5s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── Media: hide hero image column on small screens ── */
@media (max-width: 991.98px) {
  .fs-hero-img-col { display: none; }
  .fs-hero { min-height: auto; padding: 64px 0; }
}

/* ── Responsive padding ── */
@media (max-width: 767.98px) {
  .fs-promo-card { padding: 24px; }
  .fs-h1 { font-size: 32px; }
  .fs-h2 { font-size: 24px; }
  .section-spacing { padding-top: 64px; padding-bottom: 64px; }
}

/* ── Utilities ── */
.section-spacing { padding-top: 100px; padding-bottom: 100px; }

/* ═══════════════════════════════════════════════════
   MULTI-STEP WIZARD (Wizard/React Style)
   ═══════════════════════════════════════════════════ */

/* Large Choice Card (Step 1-2 Style) */
.fs-choice-card {
  display: flex !important;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 77, 64, 0.04);
  margin-bottom: 12px;
}
.fs-choice-card:hover { border-color: #cbd5e1; }
.fs-choice-card.active {
  border: 2px solid var(--fs-teal);
  background-color: var(--fs-teal-light);
  box-shadow: 0 4px 16px rgba(0, 77, 64, 0.1);
}

.fs-choice-card-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.fs-choice-card-img-sm {
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

/* Check Circle */
.fs-check-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.active .fs-check-circle {
  background-color: var(--fs-teal);
  border-color: var(--fs-teal);
  color: white;
}

/* Toggle Switch */
.fs-toggle {
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background-color: #D1D5DB;
  position: relative;
  cursor: pointer;
  transition: background-color 0.25s ease-out;
}
.fs-toggle.active { background-color: var(--fs-teal); }
.fs-toggle-knob {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.38s cubic-bezier(0.22, 1.2, 0.36, 1), transform 0.22s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.fs-toggle.active .fs-toggle-knob { left: 28px; }

#fs-customizer .fs-toggle:active .fs-toggle-knob { transform: scale(0.94); }
#fs-customizer .fs-toggle.active .fs-toggle-knob { transform: scale(1.02); }

/* Grid items for veggies/sauces */
.fs-step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 575.98px) {
  .fs-step-grid { grid-template-columns: 1fr; }
}

.fs-grid-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.fs-grid-card.active { border-color: var(--fs-teal); background-color: var(--fs-teal-light); }

.fs-grid-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fs-cheese-toggle-card {
  min-height: 64px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.fs-cheese-grid-card {
  min-height: 54px;
  border-radius: 12px;
}

.fs-seasoning-preview-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 6px;
}

.fs-seasoning-preview-item {
  min-width: 52px;
  text-align: center;
  flex-shrink: 0;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.fs-seasoning-preview-thumb {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid #D1D5DB;
  padding: 2px;
  margin: 0 auto 6px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.fs-seasoning-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.fs-seasoning-preview-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1.2;
  color: #64748B;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.fs-seasoning-preview-item.active .fs-seasoning-preview-label {
  color: var(--fs-teal);
  font-weight: 600;
}

.fs-seasoning-preview-item:hover .fs-seasoning-preview-thumb {
  transform: translateY(-1px);
}

.fs-seasoning-list-card {
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  background: #FFFFFF;
  overflow: hidden;
}

.fs-seasoning-row {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #EEF2F7;
  background: #F8FAFC;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.fs-seasoning-row:last-child {
  border-bottom: 0;
}

.fs-seasoning-row:hover {
  background: #F1F5F9;
}

.fs-seasoning-row.active {
  background: var(--row-bg, #FFFBEB);
}

.fs-seasoning-row-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E5E7EB;
  color: #64748B;
  flex-shrink: 0;
}

.fs-seasoning-row-label {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #334155;
}

.fs-seasoning-row.active .fs-seasoning-row-label {
  color: var(--row-accent, #B45309);
}

.fs-seasoning-row-check {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  flex-shrink: 0;
}

.fs-seasoning-row-check.active {
  color: var(--row-accent, #0F172A);
}

.fs-cheese-qty-panel {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background: #F8FAFC;
  padding: 14px;
}

.fs-cheese-qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: var(--fs-teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.fs-cheese-qty-btn.is-disabled {
  background: #CBD5E1;
  color: #64748B;
}

.fs-cheese-qty-readout {
  min-width: 54px;
  text-align: center;
}

.fs-cheese-qty-count {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--fs-teal);
  line-height: 1;
}

.fs-cheese-qty-readout p {
  font-size: 10px;
  color: #94A3B8;
}

.fs-cheese-qty-extra {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #E64A19;
  font-size: 14px;
}

/* React-like step animations/effects (scoped to customizer) */
#fs-customizer .fs-step-panel {
  animation: fsStepSlideIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#fs-customizer .fs-choice-card,
#fs-customizer .fs-grid-card,
#fs-customizer .fs-section-pill-nav,
#fs-customizer .fs-grid-option,
#fs-customizer .fs-grid-card-image {
  animation: fsCardFadeUp 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

#fs-customizer .fs-choice-card,
#fs-customizer .fs-grid-card {
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease, border-color 0.22s ease, background-color 0.22s ease;
  will-change: transform;
}

#fs-customizer .fs-choice-card:hover,
#fs-customizer .fs-grid-card:hover {
  transform: translateY(-1px);
}

#fs-customizer .fs-choice-card.active,
#fs-customizer .fs-grid-card.active {
  animation: fsSelectPop 0.24s cubic-bezier(0.22, 1.2, 0.36, 1);
}

#fs-customizer .row > [class*="col-"]:nth-child(1) .fs-grid-card,
#fs-customizer .space-y-3 > :nth-child(1),
#fs-customizer .space-y-4 > :nth-child(1) { animation-delay: 0.02s; }

#fs-customizer .row > [class*="col-"]:nth-child(2) .fs-grid-card,
#fs-customizer .space-y-3 > :nth-child(2),
#fs-customizer .space-y-4 > :nth-child(2) { animation-delay: 0.05s; }

#fs-customizer .row > [class*="col-"]:nth-child(3) .fs-grid-card,
#fs-customizer .space-y-3 > :nth-child(3),
#fs-customizer .space-y-4 > :nth-child(3) { animation-delay: 0.08s; }

#fs-customizer .row > [class*="col-"]:nth-child(4) .fs-grid-card,
#fs-customizer .space-y-3 > :nth-child(4),
#fs-customizer .space-y-4 > :nth-child(4) { animation-delay: 0.11s; }

#fs-customizer .fs-choice-card:active,
#fs-customizer .fs-grid-card:active,
#fs-customizer .btn:active {
  transform: scale(0.98);
}

#fs-customizer .fs-check-circle {
  transform: scale(0.92);
}

#fs-customizer .active .fs-check-circle {
  transform: scale(1);
}

#fs-customizer .fs-check-circle svg {
  opacity: 0.75;
  transform: scale(0.8);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

#fs-customizer .active .fs-check-circle svg {
  opacity: 1;
  transform: scale(1);
}

@keyframes fsStepSlideIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fsCardFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fsSelectPop {
  0% { transform: scale(0.985); }
  60% { transform: scale(1.012); }
  100% { transform: scale(1); }
}

/* Bottom Nav bar */
.fs-wizard-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #E2E8F0;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  z-index: 250;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.btn-wizard-back {
  flex: 0 0 auto;
  min-width: 100px;
  background: white !important;
  color: #64748B !important;
  border: 1px solid #E2E8F0 !important;
}
.btn-wizard-next {
  flex: 1;
  background: var(--fs-teal) !important;
  color: white !important;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Customizer Body padding for bottom footer */
.fs-customizer-body {
  padding-bottom: 100px !important;
}

/* Redesigned Progress */
.fs-progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.fs-progress-step-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--fs-teal);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVENESS OVERRIDES
   ═══════════════════════════════════════════════════ */

@media (max-width: 767.98px) {
  .fs-summary-sidebar-sticky {
    top: 0;
  }

  .fs-customizer-body {
    padding-bottom: 120px !important;
  }
  
  .fs-wizard-footer {
    padding: 12px !important;
  }

  /* Reduce header font sizes slightly more on small mobile */
  .fs-h1 { font-size: 28px !important; }
  .fs-h2 { font-size: 22px !important; }
  
  /* Stack buttons in some areas if needed */
  .d-mobile-block { display: block !important; }
  
  /* Ensure choice cards don't get too slim */
  .fs-choice-card { gap: 12px; padding: 12px; }
  .fs-choice-card-img { width: 64px; height: 64px; }
  
  /* Step 9 Order Summary spacing */
  #fs-customizer .col-lg-8, #fs-customizer .col-lg-4 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 575.98px) {
  .fs-navbar .container-xl { padding-left: 8px !important; padding-right: 8px !important; }
  
  /* Category tabs horizontal scroll spacing */
  .fs-cat-tabs .container-xl { padding-left: 12px; padding-right: 12px; }
  
  /* Wizard Footer adjustments */
  .btn-wizard-next { font-size: 13px !important; padding: 12px 16px !important; }
  .btn-wizard-back { min-width: 80px !important; padding: 12px 16px !important; }
}

/* Fix for overlapping elements on small heights */
@media (max-height: 500px) {
  .fs-wizard-footer { position: relative; }
  .fs-customizer-body { padding-bottom: 20px !important; }
}

/* ═══════════════════════════════════════════════════
   COMBO MODAL (React parity)
   ═══════════════════════════════════════════════════ */
.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.fs-combo-modal .modal-dialog {
  max-width: 380px;
}

.fs-combo-modal .modal-content {
  position: relative;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 24px 64px rgba(0, 77, 64, 0.15);
  padding: 40px 32px 28px;
}

.fs-combo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  color: #94A3B8;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.fs-combo-close:hover {
  background: #F3F4F6;
}

.fs-combo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(230, 74, 25, 0.08);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--fs-orange);
}

.fs-combo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 34px;
  color: #0F172A;
}

.fs-combo-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
}

.fs-combo-price {
  font-weight: 700;
  color: var(--fs-teal);
}

.fs-combo-images {
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.fs-combo-image {
  overflow: hidden;
  border-radius: 16px;
  flex-shrink: 0;
}

.fs-combo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-combo-image-drink {
  width: 76px;
  height: 100px;
  margin-right: -16px;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0, 77, 64, 0.12);
}

.fs-combo-image-side {
  width: 76px;
  height: 92px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 77, 64, 0.15);
}

.fs-combo-yes {
  min-height: 54px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 77, 64, 0.2);
}

.fs-combo-no {
  margin-top: 16px;
  border: none;
  background: transparent;
  color: #94A3B8;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  padding: 0;
}

.fs-combo-no:hover {
  color: #0F172A;
}

/* Toast notifications */
#fs-toast-root {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3005;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.fs-toast {
  min-width: 240px;
  max-width: 340px;
  border-radius: 12px;
  padding: 12px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

.fs-toast-success {
  background: #0B5D4E;
  color: #FFFFFF;
}

.fs-toast-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.fs-toast-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
}

/* Sandwiches page typography + footer fixes */
.fs-sandwiches-page #menu-sections .fs-sandwich-card h4 {
  font-weight: 800 !important;
  font-size: 14px !important;
  color: #0F172A !important;
}

.fs-sandwiches-page #menu-sections .fs-sandwich-card p.font-body {
  font-weight: 500;
  color: #64748B !important;
}

.fs-sandwiches-page #menu-sections .fs-sandwich-card .text-teal .font-heading {
  font-weight: 700 !important;
}

.fs-sandwiches-page #menu-sections .fs-sandwich-card .text-muted {
  color: #94A3B8 !important;
}

@media (max-width: 575.98px) {
  #fs-toast-root {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .fs-toast {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}
