/* ============================================================
   RESTAURANT NEWSLETTER - Style Sheet
   Savory Bistro | Warm & Elegant Email Template
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Primary palette - Warm orange-brown tones */
  --color-primary: #C73E1D;
  --color-primary-dark: #A83215;
  --color-primary-light: #E85D2C;

  --color-secondary: #8B4513;
  --color-secondary-dark: #6B3410;
  --color-secondary-light: #A55A2A;

  --color-accent: #E8A317;
  --color-accent-dark: #C48A10;
  --color-accent-light: #F0B840;

  /* Neutrals */
  --color-cream: #FFF8F0;
  --color-cream-dark: #FDF2E9;
  --color-peach: #FFF0E0;
  --color-taupe: #A0785C;
  --color-taupe-light: #C4A892;

  /* Dark tones */
  --color-espresso: #2C1810;
  --color-espresso-light: #3E2723;
  --color-dark: #1A0E0A;

  /* Functional */
  --color-text: #3E2723;
  --color-text-light: #6D4C41;
  --color-text-muted: #A0785C;
  --color-bg: #FFF8F0;
  --color-white: #FFFFFF;
  --color-star: #E8A317;
  --color-border: #E8D5C4;
  --color-border-light: #F0E6DC;

  /* Shadows */
  --shadow-soft: 0 2px 12px rgba(44, 24, 16, 0.08);
  --shadow-medium: 0 4px 20px rgba(44, 24, 16, 0.12);
  --shadow-card: 0 6px 24px rgba(44, 24, 16, 0.10);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #C73E1D, #E85D2C);
  --gradient-dark: linear-gradient(135deg, #2C1810, #3E2723);
  --gradient-warm: linear-gradient(135deg, #FFF8F0, #FDF2E9);
  --gradient-accent: linear-gradient(135deg, #E8A317, #F0B840);

  /* Typography */
  --font-heading: Georgia, 'Times New Roman', Times, serif;
  --font-body: Arial, Helvetica, sans-serif;

  /* Spacing */
  --space-xs: 6px;
  --space-sm: 10px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 56px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-espresso);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
  outline: none;
  text-decoration: none;
  -ms-interpolation-mode: bicubic;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-espresso);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

ul {
  list-style: none;
}

/* ---------- LAYOUT ---------- */
.email-wrapper {
  width: 100%;
  table-layout: fixed;
  background-color: var(--color-espresso);
}

.email-container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-cream);
  border-collapse: collapse;
}

.email-container table {
  border-collapse: collapse;
  width: 100%;
}

td {
  vertical-align: top;
}

.section-padding {
  padding: var(--space-xl) var(--space-lg);
}

.section-padding-sm {
  padding: var(--space-lg) var(--space-lg);
}

.section-padding-lg {
  padding: var(--space-2xl) var(--space-lg);
}

/* ---------- PREVIEW TEXT ---------- */
.preview-text {
  display: none;
  font-size: 1px;
  color: transparent;
  line-height: 1px;
  max-height: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  mso-hide: all;
}

/* ---------- VIEW IN BROWSER ---------- */
.view-browser {
  background-color: var(--color-espresso);
  text-align: center;
  padding: var(--space-sm) 0;
}

.view-browser a {
  color: var(--color-taupe-light);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.view-browser a:hover {
  color: var(--color-accent);
}

/* ---------- HEADER ---------- */
.header {
  background: var(--gradient-dark);
  padding: var(--space-lg) var(--space-lg);
}

.header-logo {
  text-align: center;
  padding-bottom: var(--space-md);
}

.header-logo a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
}

.header-logo .tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-taupe-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 4px;
}

.header-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-taupe), transparent);
  border: none;
  margin: 0 var(--space-lg);
}

.nav-bar {
  background: var(--gradient-dark);
  padding: var(--space-sm) var(--space-lg) var(--space-lg);
  text-align: center;
}

.nav-bar td {
  text-align: center;
}

.nav-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: var(--radius-sm);
}

.nav-link:hover {
  color: var(--color-accent);
  background: rgba(232, 163, 23, 0.1);
}

.nav-separator {
  color: var(--color-taupe);
  font-size: 12px;
  padding: 0 4px;
}

/* ---------- HERO ---------- */
.hero {
  background: var(--gradient-dark);
  position: relative;
}

.hero-content {
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-espresso);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.hero-subtext {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  color: var(--color-taupe-light);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.hero-btn {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(199, 62, 29, 0.3);
}

.hero-btn:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(199, 62, 29, 0.4);
  transform: translateY(-2px);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-top: 4px solid var(--color-accent);
}

/* ---------- STATS ---------- */
.stats-section {
  background: var(--gradient-warm);
  border-bottom: 1px solid var(--color-border-light);
}

.stats-table {
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
  position: relative;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--color-border-light);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 2px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ---------- SECTION TITLES ---------- */
.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--color-espresso);
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xs);
}

.section-title .title-decor {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--gradient-primary);
  margin-bottom: var(--space-sm);
}

.section-title p {
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 0;
}

/* ---------- TODAY'S SPECIAL ---------- */
.special-section {
  background: var(--color-white);
}

.special-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
}

.special-image {
  width: 100%;
  height: auto;
  display: block;
}

.special-body {
  padding: var(--space-lg);
}

.special-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.special-name {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-espresso);
  margin-bottom: var(--space-xs);
}

.special-desc {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.special-price {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 700;
}

.special-date {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

/* ---------- FOOD CARDS ---------- */
.food-cards-section {
  background: var(--color-cream-dark);
}

.food-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.food-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.food-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.food-card-body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.food-card-category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.food-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-espresso);
  margin-bottom: 4px;
}

.food-card-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.food-card-price {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

.food-card-spacer {
  height: var(--space-lg);
}

/* ---------- PROMOTIONAL BANNER ---------- */
.promo-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.promo-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(232, 163, 23, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.promo-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.promo-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-espresso);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-cream);
  margin-bottom: var(--space-xs);
}

.promo-subtitle {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  color: var(--color-taupe-light);
  margin-bottom: var(--space-sm);
}

.promo-coupon {
  display: inline-block;
  background: rgba(232, 163, 23, 0.12);
  border: 2px dashed var(--color-accent);
  padding: var(--space-sm) var(--space-lg);
  margin: var(--space-sm) 0;
  border-radius: var(--radius-md);
}

.promo-coupon-code {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 3px;
}

.promo-coupon-label {
  font-size: 11px;
  color: var(--color-taupe-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2px;
}

.promo-valid {
  font-size: 12px;
  color: var(--color-taupe);
  margin-top: var(--space-sm);
}

/* ---------- MENU HIGHLIGHT ---------- */
.menu-section {
  background: var(--color-white);
}

.menu-items {
  width: 100%;
}

.menu-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

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

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-espresso);
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
}

.menu-btn-wrap {
  text-align: center;
  margin-top: var(--space-lg);
}

.menu-btn {
  display: inline-block;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 28px;
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--gradient-warm);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border-light);
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 48px;
  color: var(--color-primary);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}

.testimonial-card:last-child {
  margin-bottom: 0;
}

.testimonial-stars {
  color: var(--color-star);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: var(--space-xs);
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 14px;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
}

.testimonial-author {
  padding-left: var(--space-lg);
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-espresso);
}

.testimonial-title {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: var(--gradient-primary);
  text-align: center;
}

.cta-icon {
  font-size: 36px;
  margin-bottom: var(--space-sm);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.cta-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.cta-btn {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-phone {
  margin-top: var(--space-md);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-heading);
}

.cta-phone a {
  color: var(--color-white);
  text-decoration: none;
}

.cta-phone a:hover {
  text-decoration: underline;
}

.cta-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-xs);
}

/* ---------- SOCIAL LINKS ---------- */
.social-section {
  background: var(--color-white);
  text-align: center;
  padding: var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.social-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--color-cream);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1px solid var(--color-border);
}

.social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-espresso);
  color: var(--color-taupe-light);
  font-size: 13px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  letterspacing: 2px;
  text-transform: uppercase;
}

.footer-info {
  line-height: 1.8;
}

.footer-info strong {
  color: var(--color-cream);
  font-weight: 600;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232, 163, 23, 0.3), transparent);
  border: none;
  margin: var(--space-md) 0;
}

.footer-hours {
  line-height: 1.8;
}

.footer-hours td {
  padding: 2px 0;
}

.footer-day {
  color: var(--color-cream);
  font-weight: 600;
  padding-right: var(--space-md);
}

.footer-time {
  color: var(--color-taupe-light);
}

.footer-links {
  text-align: center;
  padding-top: var(--space-sm);
}

.footer-links a {
  color: var(--color-taupe-light);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin: 0 8px;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-copyright {
  text-align: center;
  font-size: 11px;
  color: var(--color-taupe);
  padding-top: var(--space-sm);
}

/* ---------- UTILITIES ---------- */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none;
  mso-hide: all;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.w-full {
  width: 100%;
}

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* ---------- RESPONSIVE ---------- */
@media screen and (max-width: 600px) {
  .email-container {
    max-width: 100% !important;
    width: 100% !important;
  }

  .section-padding {
    padding: var(--space-lg) var(--space-md);
  }

  .section-padding-lg {
    padding: var(--space-xl) var(--space-md);
  }

  .hero-headline {
    font-size: 28px;
  }

  .hero-subtext {
    font-size: 15px;
  }

  .hero-content {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
  }

  .stats-table {
    width: 100% !important;
  }

  .stat-number {
    font-size: 22px;
  }

  .special-name {
    font-size: 20px;
  }

  .promo-title {
    font-size: 24px;
  }

  .cta-title {
    font-size: 24px;
  }

  .food-card-image {
    height: 160px;
  }

  .nav-link {
    font-size: 12px;
    padding: 4px 10px;
  }
}

@media screen and (max-width: 480px) {
  .section-padding {
    padding: var(--space-md) var(--space-sm);
  }

  .section-padding-lg {
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-headline {
    font-size: 24px;
  }

  .hero-subtext {
    font-size: 14px;
  }

  .hero-content {
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-btn {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    text-align: center;
  }

  .stat-item {
    padding: var(--space-md) var(--space-xs);
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .food-card-image {
    height: 140px;
  }

  .food-card-title {
    font-size: 16px;
  }

  .special-name {
    font-size: 18px;
  }

  .special-price {
    font-size: 18px;
  }

  .promo-title {
    font-size: 20px;
  }

  .promo-coupon-code {
    font-size: 18px;
  }

  .cta-title {
    font-size: 22px;
  }

  .cta-btn {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
  }

  .cta-phone {
    font-size: 18px;
  }

  .header-logo a {
    font-size: 24px;
  }

  .nav-link {
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 4px 8px;
  }

  .menu-item-name {
    font-size: 15px;
  }

  .menu-item-price {
    font-size: 14px;
  }

  .testimonial-text {
    font-size: 13px;
    padding-left: var(--space-md);
  }

  .testimonial-author {
    padding-left: var(--space-md);
  }

  .social-link {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }

  .food-card {
    margin-bottom: var(--space-md);
  }

  .food-card-spacer {
    display: none;
  }
}
