:root {
  --green-900: #15321e;
  --green-800: #1a3529;
  --green-700: #214032;
  --gold-500: #c8a462;
  --gold-400: #d6b87d;
  --gold-icon: #c5a86b;
  --off-white: #e0e0e0;
  --cream-100: #f8f2ea;
  --cream-200: #efe4d6;
  --ink-900: #173127;
  --ink-700: #5b655f;
  --white: #ffffff;
  --shadow-soft: 0 22px 44px rgba(15, 38, 29, 0.12);
  --shadow-card: 0 16px 28px rgba(14, 34, 27, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../vendor/fonts/dancing-script.woff2") format("woff2");
}

@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../vendor/fonts/dancing-script.woff2") format("woff2");
}

@font-face {
  font-family: "Great Vibes";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../vendor/fonts/great-vibes.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../vendor/fonts/playfair-display.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../vendor/fonts/playfair-display.woff2") format("woff2");
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  color: var(--ink-900);
  background: linear-gradient(180deg, #fcfaf6 0%, #f8f1e7 100%);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.topbar {
  background: var(--green-900);
  color: var(--off-white);
  font-size: 0.9rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.8rem;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: color 0.25s ease;
  cursor: default;
}

.topbar-item:hover {
  color: var(--gold-icon);
}

.topbar-item:hover .tb-icon {
  opacity: 1;
}

.tb-icon {
  flex-shrink: 0;
  color: var(--gold-icon);
  opacity: 0.92;
  font-size: 0.85rem;
  width: 1.1em;
  text-align: center;
}

.topbar-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.topbar-item a:hover {
  color: var(--gold-icon);
  text-decoration: underline;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.tb-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
}

.tb-social i,
.tb-social svg {
  font-size: 0.95rem;
  line-height: 1;
  width: 16px;
  height: 16px;
}

.tb-social:hover {
  color: var(--gold-icon);
  background: rgba(255, 255, 255, 0.08);
}

.navbar {
  background: rgba(255, 248, 240, 0.96);
  border-bottom: 1px solid rgba(20, 70, 52, 0.08);
  box-shadow: 0 6px 18px rgba(15, 38, 29, 0.04);
  transition: box-shadow 0.3s ease;
}

.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 248, 240, 0.98);
  box-shadow: 0 4px 24px rgba(13, 58, 43, 0.18);
  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar-placeholder {
  display: none;
  height: 0;
  transition: height 0.3s ease;
}

.navbar-sticky + .navbar-placeholder {
  display: block;
  height: 76px;
}

@media (min-width: 992px) {
  .navbar {
    min-height: 104px;
  }

  .navbar-sticky + .navbar-placeholder {
    height: 104px;
  }

  .brand-logo {
    width: 200px;
    height: auto;
  }
}

.lightboxable {
  cursor: zoom-in;
  transition: filter 0.25s ease;
}

.lightboxable:hover {
  filter: brightness(0.9);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  padding: 2rem;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay .lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-overlay .lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  z-index: 10000;
}

.lightbox-overlay .lightbox-close:hover {
  opacity: 1;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.brand-logo {
  height: 48px;
  width: auto;
}

.navbar-nav .nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-900);
  padding: 1rem 0.2rem !important;
  transition: color 0.25s ease;
}

.nav-item {
  margin: 0 1rem;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--green-900);
  transition: width 0.25s ease;
}

.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--green-900);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
}

.btn-brand {
  color: var(--white);
  background: var(--green-900);
  border: 1px solid var(--green-900);
}

.btn-brand i {
  color: var(--gold-icon);
}

.btn-brand:hover,
.btn-brand:focus {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.btn-outline-brand {
  color: var(--green-900);
  background: transparent;
  border: 1px solid rgba(13, 58, 43, 0.2);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: var(--white);
  background: var(--green-900);
  border-color: var(--green-900);
}

.hero-section {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: #F8F6EF;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.hero-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 1%;
  /* background: #F8F6EF; */
}

.logo-img-main {
  display: block;
  max-width: 280px;
  margin: 0 auto;
}

/* --- Logo --- */
.logo-section {
  text-align: center;
  margin-bottom: 10px;
}

/* --- Separator --- */
.hero-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0 20px 0;
  gap: 15px;
}

.sep-line {
  height: 1px;
  width: 130px;
  background-color: #AC8B53;
}

/* --- Text section --- */
.hero-text {
  text-align: center;
}

.cursive-text {
  font-family: 'Great Vibes', cursive;
  font-size: 34px;
  color: #0F3321;
  margin: 0 0 -2px 0;
}

.main-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: #0F3321;
  margin: 0 0 12px 0;
  letter-spacing: 1px;
}

.desc-text {
  font-size: 13px;
  color: #22402F;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
  max-width: 320px;
}

.phone-btn {
  margin-top: 22px;
  background-color: #0F3321;
  color: #fff;
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  gap: 10px;
  transition: transform 0.2s, background-color 0.2s;
}

.phone-btn:hover {
  background-color: #1a4f35;
  color: #fff;
  transform: translateY(-2px);
}

.phone-btn i {
  font-size: 18px;
  color: var(--gold-icon);
}

.feature-strip {
  padding: 0;
  margin-top: 0;
}

.feature-strip-bg {
  background: var(--green-900);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.feature-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
}

.feature-strip .row {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.feature-card {
  height: 100%;
  padding: 1.4rem 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-text {
  flex: 1;
  min-width: 0;
}

.feature-strip .col-lg-3:last-child .feature-card {
  border-right: 0;
}

.feature-icon {
  width: 2.65rem;
  height: 2.65rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-card p {
  margin: 0;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.78);
}

.about-section {
  overflow-x: hidden;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--gold-500);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-block {
  padding: 5rem 0;
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.section-heading h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--green-900);
}

.about-section h2,
.contact-section h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--green-900);
}

.section-heading p,
.about-section p,
.contact-section p {
  color: var(--ink-700);
  line-height: 1.8;
}

.menu-section {
  background:
    radial-gradient(circle at top center, rgba(200, 164, 98, 0.1), rgba(200, 164, 98, 0) 34%),
    transparent;
}

.dish-card {
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 34px rgba(14, 34, 27, 0.12);
}

.dish-card img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.dish-body {
  padding: 0.85rem 1rem 1rem;
}

.dish-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dish-info h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.dish-price {
  color: var(--green-800);
  font-weight: 800;
  font-size: 0.95rem;
}

.dish-cart-btn {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.dish-cart-btn:hover {
  background: var(--green-700);
  transform: scale(1.1);
}

.recommendations-wrapper {
  position: relative;
  padding: 0 calc(3rem + 15px);
}

.recommendations-swiper {
  overflow: hidden;
}

.recommendations-swiper .swiper-slide {
  height: auto;
}

.recommendations-swiper .swiper-slide .dish-card {
  height: 100%;
  box-shadow: none;
}

.recommendations-swiper .swiper-slide .dish-card img {
  height: 220px;
}

.recommendations-swiper .swiper-slide .dish-card:hover {
  transform: none;
  box-shadow: none;
}

.recommendations-wrapper .swiper-button-next,
.recommendations-wrapper .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
}

.recommendations-wrapper .swiper-button-next:hover,
.recommendations-wrapper .swiper-button-prev:hover {
  background: var(--green-700);
  transform: translateY(-50%) scale(1.08);
}

.recommendations-wrapper .swiper-button-prev {
  left: 0.25rem;
}

.recommendations-wrapper .swiper-button-next {
  right: 0.25rem;
}

.recommendations-wrapper .swiper-button-next::after,
.recommendations-wrapper .swiper-button-prev::after {
  font-size: 1.1rem;
  font-weight: 700;
}

.dish-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-700);
  margin-top: 0.2rem;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .recommendations-wrapper {
    padding: 0 2.5rem;
  }

  .recommendations-wrapper .swiper-button-next,
  .recommendations-wrapper .swiper-button-prev {
    width: 2.25rem;
    height: 2.25rem;
  }

  .recommendations-wrapper .swiper-button-next::after,
  .recommendations-wrapper .swiper-button-prev::after {
    font-size: 0.9rem;
  }
}

.specials-section {
  background:
    radial-gradient(circle at bottom center, rgba(200, 164, 98, 0.08), rgba(200, 164, 98, 0) 34%),
    transparent;
}

.about-image-frame,
.contact-card,
.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.about-image-frame {
  padding: 0.6rem;
}

.about-image-frame img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 10px);
}

.about-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.about-point {
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--gold-500);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.62);
}

.about-point strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green-900);
}

.gallery-card {
  position: relative;
  display: block;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card span {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(13, 58, 43, 0.82);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.contact-card {
  padding: 2rem;
}

.contact-card h3 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-900);
}

.contact-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 0.9rem;
  color: var(--ink-700);
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  gap: 0.85rem;
}

.site-footer {
  padding: 2.2rem 0;
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.88);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 54px;
  width: auto;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
}

/* 移动端导航中的 topbar 信息 — 桌面端隐藏 */
.topbar-mobile-nav {
  display: none;
}

@media (max-width: 991.98px) {
  .topbar {
    display: none;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
  }

  .navbar-collapse {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-collapse.show {
    padding-bottom: 1.5rem;
  }

  body.mobile-nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  main {
    padding-top: 65px;
  }

  .topbar-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 0 0.5rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(13, 58, 43, 0.12);
  }

  .topbar-mobile-nav .topbar-left,
  .topbar-mobile-nav .topbar-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar-mobile-nav .topbar-left {
    gap: 0.5rem 1.2rem;
  }

  .topbar-mobile-nav .topbar-item {
    font-size: 0.85rem;
    color: var(--ink-700);
  }

  .topbar-mobile-nav .tb-icon {
    font-size: 0.8rem;
  }

  .topbar-mobile-nav .tb-social {
    width: 32px;
    height: 32px;
    color: var(--ink-700);
    background: rgba(13, 58, 43, 0.06);
  }

  .topbar-mobile-nav .tb-social:hover {
    color: var(--gold-icon);
    background: rgba(13, 58, 43, 0.1);
  }

  .navbar .btn-brand {
    margin-top: 1rem;
    display: inline-flex;
  }

  .navbar-nav .nav-link {
    padding: 0.6rem 0.2rem !important;
    font-size: 0.88rem;
  }

  .hero-section {
    height: 420px;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background-image: url('../img/hero-pad-thai2.jpg');
    background-size: cover;
    background-position: center;
  }

  .hero-svg {
    display: none;
  }

  .hero-content {
    width: 100%;
    padding: 2rem 1.5rem;
    left: 0;
    transform: none;
    transform-origin: initial;
    
    background: rgba(0,0,0,0.25);
  }

  .hero-content .cursive-text,
  .hero-content .main-tagline,
  .hero-content .desc-text {
    color: #fff;
  }

  .hero-content .sep-line {
    background-color: #fff;
  }

  .hero-content .hero-separator svg {
    fill: #fff;
  }

  .hero-content .cursive-text,
  .hero-content .main-tagline,
  .hero-content .desc-text {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }

  .logo-img-main {
    max-width: 200px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    height: 460px;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    font-size: 0.8rem;
  }

  .topbar-left {
    gap: 0.4rem 1rem;
  }

  .topbar-right {
    gap: 0.3rem;
  }

  .tb-social {
    width: 24px;
    height: 24px;
  }

  .tb-social i,
  .tb-social svg {
    font-size: 0.8rem;
    width: 14px;
    height: 14px;
  }

  .section-block {
    padding: 4rem 0;
  }

  .feature-inner {
    padding: 0;
  }

  .feature-strip .row {
    margin-left: 0;
    margin-right: 0;
  }

  .feature-strip .row > .col-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .feature-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    height: 195px;
  }

  .feature-strip .col-6:nth-child(odd) .feature-card {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .feature-strip .row > .col-6:nth-child(3),
  .feature-strip .row > .col-6:nth-child(4) {
    margin-top: 0;
  }

  .feature-strip .col-6:nth-child(3) .feature-card,
  .feature-strip .col-6:nth-child(4) .feature-card {
    border-bottom: 0;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .footer-content {
    text-align: center;
    justify-content: center;
  }
}

.navbar-toggler {
  border: 0 !important;
  padding: 0.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.floating-order-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1020;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem   ;
  border-radius: 4px 0 0 4px;
  border: none;
  box-shadow: 0 4px 18px rgba(15, 38, 29, 0.25);
  writing-mode: horizontal-tb;
  transition: background 0.25s ease, box-shadow 0.25s ease, right 0.3s ease;
}

.floating-order-btn:hover {
  right: 0;
  box-shadow: 0 6px 24px rgba(15, 38, 29, 0.35);
}

.floating-order-btn i {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.floating-order-btn:hover i {
  transform: scale(1.15);
}

.floating-order-text {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .floating-order-btn {
    padding: 0.6rem 0.85rem;
    gap: 0.35rem;
    z-index: 1040;
  }

  .floating-order-text {
    font-size: 0.7rem;
  }

  .floating-order-btn i {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .floating-order-text {
    font-size: 0.75rem;
  }

  .floating-order-btn {
    padding: 0.65rem 1rem;
  }
}

@media (min-width: 1200px) {
  .dish-body  h3 {
    font-size: 24px !important;
  }
}
