:root {
  --orange: #f25a1d;
  --orange-dark: #d94b13;
  --cream: #fbf5ea;
  --cream-2: #fffaf2;
  --dark: #171717;
  --charcoal: #202020;
  --green: #168b22;
  --text: #222222;
  --muted: #666666;
  --line: #f1b08a;
  --shadow: 0 12px 28px rgba(26, 18, 12, 0.12);
  --radius: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.45;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }

.site-header {
  background: #fff;
  height: 92px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
}
.nav-wrap {
  display: grid;
  grid-template-columns: 245px 1fr auto;
  align-items: center;
  gap: 26px;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brand img {
  width: 198px;
  height: auto;
  margin-bottom: -4px;
}
.brand span {
  font-weight: 800;
  color: var(--green);
  font-size: 17px;
  line-height: 1;
  letter-spacing: .2px;
}
.veg-dot { font-size: 16px; margin-left: 7px; }
.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 38px;
  font-weight: 800;
  font-size: 14px;
}
.main-nav a {
  padding: 37px 0 31px;
  position: relative;
}
.main-nav a.active,
.main-nav a:hover { color: var(--orange); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 3px;
  background: var(--orange);
  border-radius: 4px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 36px;
  border: 0;
  background: transparent;
  justify-self: end;
  padding: 0;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 31px;
  background: #141414;
  margin: 7px auto;
  border-radius: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  min-height: 52px;
  padding: 0 28px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,.12); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-outline {
  color: var(--orange);
  border-color: var(--orange);
  background: #fff;
  min-height: 46px;
  padding: 0 26px;
}

.hero {
  background: linear-gradient(90deg, var(--cream) 0%, var(--cream) 53%, #eee3d3 53%, #eee3d3 100%);
  overflow: hidden;
}
.hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: stretch;
}
.hero-copy {
  padding: 72px 32px 58px 0;
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin: 0 0 16px;
  font-family: "Bebas Neue", Impact, sans-serif;
  text-transform: uppercase;
  line-height: .89;
  letter-spacing: 1px;
}
.hero h1 span {
  display: block;
  color: #1a1a1a;
  font-size: clamp(64px, 7.2vw, 110px);
  text-shadow: 1px 1px 0 #5e5e5e;
}
.hero h1 strong {
  display: block;
  color: var(--orange);
  font-size: clamp(76px, 8.3vw, 130px);
  font-weight: 400;
  text-shadow: 1px 1px 0 #c24512;
}
.veg-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 4px 16px 5px 12px;
  border-radius: 8px;
  background: #f7fff4;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 26px;
}
.leaf { font-size: 25px; transform: rotate(45deg); display: inline-block; }
.hero-copy p {
  max-width: 420px;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 32px;
  color: #252525;
}
.hero-actions { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-image {
  min-height: 560px;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signature-label {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 305px;
  background: rgba(14,14,14,.85);
  color: #fff;
  padding: 0 22px 16px;
  font-family: "Merriweather", Georgia, serif;
}
.signature-label span {
  display: inline-block;
  background: var(--orange);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
  padding: 5px 16px;
  border-radius: 3px;
  transform: translateY(-9px);
}
.signature-label strong {
  display: inline-block;
  font-size: 25px;
  line-height: 1.12;
}
.signature-label em {
  color: #12a017;
  font-style: normal;
  font-size: 18px;
  float: right;
  margin-top: 22px;
}

.section-white { background: #fff; }
.section-title {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 28px;
}
.section-title span,
.story-copy > span {
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .4px;
}
.section-title h2,
.story-copy h2 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 36px;
  line-height: 1.1;
  margin: 4px 0 5px;
  color: #232323;
  font-weight: 900;
}
.section-title i {
  width: 56px;
  height: 3px;
  background: var(--orange);
  display: inline-block;
  position: relative;
  border-radius: 10px;
}
.section-title i::before,
.section-title i::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--orange);
  background: #fff;
  position: absolute;
  top: -4px;
  transform: rotate(45deg);
}
.section-title i::before { left: 20px; }
.section-title i::after { right: 20px; }

.dish-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.dish-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eeeeee;
  text-align: center;
}
.dish-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.dish-body { padding: 17px 14px 18px; min-height: 155px; }
.dish-body h3 {
  font-family: "Merriweather", Georgia, serif;
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.15;
}
.dish-body p {
  min-height: 42px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
}
.dish-body strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--orange);
  min-width: 68px;
  min-height: 28px;
  border-radius: 8px;
  font-size: 12px;
}
.center-action { text-align: center; margin: 29px 0 42px; }

.features-row {
  border: 1.5px solid #f2a77c;
  background: #fffaf5;
  border-radius: 11px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 12px;
  margin-bottom: 30px;
}
.feature-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 13px;
  padding: 0 23px;
  border-right: 2px dotted var(--orange);
}
.feature-item:last-child { border-right: 0; }
.feature-icon {
  color: var(--green);
  font-size: 38px;
  line-height: 1;
  text-align: center;
}
.feature-item h4 { margin: 0 0 4px; font-size: 15px; font-weight: 900; }
.feature-item p { margin: 0; font-size: 12px; font-weight: 600; color: #333; }
.feature-item em { color: var(--green); font-style: normal; }

.story { padding: 0 0 20px; position: relative; overflow: hidden; }
.story-grid {
  display: grid;
  grid-template-columns: 49% 42%;
  gap: 55px;
  align-items: center;
  position: relative;
}
.story-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0 10px 10px 0;
}
.story-copy { padding: 34px 0; }
.story-copy h2 { margin-bottom: 18px; font-size: 38px; }
.story-copy p {
  max-width: 510px;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 15px;
}
.story-copy .btn { min-height: 45px; margin-top: 5px; padding: 0 22px; font-size: 13px; }
.leaf-mark {
  position: absolute;
  right: 0;
  top: 30px;
  color: rgba(235, 180, 133, .25);
  font-size: 190px;
  line-height: 1;
  transform: rotate(18deg);
  pointer-events: none;
}

.reviews {
  position: relative;
  padding-bottom: 24px;
}
.reviews .section-title { padding-top: 8px; margin-bottom: 26px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  width: min(980px, 100%);
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 12px;
  padding: 23px 25px 20px;
  box-shadow: var(--shadow);
  min-height: 180px;
}
.stars { color: var(--orange); letter-spacing: 2px; font-size: 19px; margin-bottom: 9px; }
.review-card p {
  margin: 0 0 17px;
  font-size: 13px;
  font-weight: 600;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 11px;
}
.reviewer img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}
.reviewer strong { display: block; font-size: 13px; }
.reviewer span { display: block; font-size: 12px; color: #777; }
.slider-arrow {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #202020;
  font-size: 34px;
  line-height: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.slider-arrow.left { left: calc((100% - var(--container)) / 2 - 24px); }
.slider-arrow.right { right: calc((100% - var(--container)) / 2 - 24px); }

.catering { background: #fff; padding: 0 0 0; }
.catering-bar {
  background: linear-gradient(90deg, #f75b19 0%, #f05318 100%);
  color: #fff;
  border-radius: 10px 10px 0 0;
  min-height: 105px;
  display: grid;
  grid-template-columns: 1.4fr 1.55fr auto;
  align-items: center;
  gap: 25px;
  padding: 22px 32px;
}
.catering-copy h2 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 29px;
  margin: 0 0 5px;
}
.catering-copy p { margin: 0; font-size: 13px; font-weight: 600; }
.catering-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.catering-benefits div {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
}
.catering-benefits span { grid-row: 1 / 3; font-size: 24px; }
.catering-benefits strong { font-size: 13px; }
.catering-benefits small { font-size: 11px; opacity: .9; }

.site-footer {
  background: radial-gradient(circle at 20% 0%, #272727 0%, #111 50%, #0c0c0c 100%);
  color: #fff;
  padding: 30px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .95fr 1fr .95fr;
  gap: 55px;
}
.footer-brand img { width: 185px; margin-bottom: -3px; }
.footer-brand > span {
  display: block;
  color: #54b94d;
  font-weight: 900;
  margin-bottom: 6px;
}
.footer-brand p,
.footer-col p {
  margin: 0 0 9px;
  color: #e7e7e7;
  font-size: 13px;
}
.socials { display: flex; gap: 10px; margin: 15px 0 13px; }
.socials a {
  width: 28px;
  height: 28px;
  background: #fff;
  color: #111;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
}
.footer-brand small { display: block; color: #ddd; font-size: 12px; }
.footer-col h3 {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 14px;
  margin: 9px 0 17px;
}
.footer-col p {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  line-height: 1.5;
}
.footer-col p span { color: var(--orange); min-width: 17px; font-weight: 900; }
.footer-col a:hover { color: var(--orange); }
.order-col .btn { min-height: 48px; margin: 11px 0 18px; }
.order-col strong {
  color: var(--orange);
  letter-spacing: 3px;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .container { width: min(100% - 36px, var(--container)); }
  .nav-wrap { grid-template-columns: 210px 1fr auto; gap: 18px; }
  .brand img { width: 172px; }
  .main-nav { gap: 20px; font-size: 13px; }
  .hero-grid { grid-template-columns: 48% 52%; }
  .dish-grid { grid-template-columns: repeat(3, 1fr); }
  .features-row { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .feature-item:nth-child(2) { border-right: 0; }
  .feature-item:nth-child(1), .feature-item:nth-child(2) { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 2px dotted var(--orange); }
  .story-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 48px; }
  .catering-bar { grid-template-columns: 1fr; }
  .catering-benefits { max-width: 750px; }
}

@media (max-width: 820px) {
  .site-header { height: 92px; }
  .nav-wrap { grid-template-columns: auto 1fr auto; }
  .brand img { width: 170px; }
  .brand span { font-size: 14px; }
  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 92px;
    background: #fff;
    border-radius: 0 0 14px 14px;
    padding: 12px 22px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 16px 30px rgba(0,0,0,.12);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 14px 0; }
  .main-nav a.active::after { bottom: 8px; width: 40px; right: auto; }
  .menu-toggle { display: block; order: 3; }
  .nav-order { justify-self: end; min-height: 48px; padding: 0 22px; }

  .hero { background: var(--cream); }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy { padding: 34px 0 24px; }
  .hero h1 span { font-size: 70px; }
  .hero h1 strong { font-size: 84px; }
  .veg-badge { font-size: 21px; }
  .hero-image { min-height: 360px; margin: 0 -18px; }
  .signature-label { width: 285px; right: 0; }

  .dish-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .dish-card img { height: 155px; }
  .features-row { grid-template-columns: 1fr; padding: 18px; }
  .feature-item,
  .feature-item:nth-child(2) {
    border-right: 0;
    border-bottom: 2px dotted var(--orange);
    margin-bottom: 18px;
    padding: 0 0 18px;
  }
  .feature-item:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

  .story-grid { grid-template-columns: 1fr; }
  .story-image img { height: 280px; border-radius: 10px; }
  .story-copy { padding: 0 0 20px; }
  .review-grid { grid-template-columns: 1fr; gap: 18px; width: 100%; }
  .slider-arrow { display: none; }
  .catering-benefits { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 520px) {
  .container { width: calc(100% - 28px); }
  .site-header { height: 84px; }
  .brand img { width: 150px; }
  .brand span { font-size: 12px; }
  .nav-wrap { gap: 8px; }
  .nav-order { padding: 0 16px; font-size: 14px; min-height: 44px; }
  .menu-toggle { width: 36px; }
  .menu-toggle span { width: 27px; }
  .main-nav { top: 84px; left: 14px; right: 14px; }

  .hero-copy { padding-top: 28px; }
  .hero h1 span { font-size: 58px; }
  .hero h1 strong { font-size: 70px; }
  .hero-copy p { font-size: 15px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { flex: 1 1 auto; padding: 0 14px; min-height: 48px; }
  .hero-image { min-height: 300px; }
  .signature-label {
    width: 245px;
    padding: 0 15px 12px;
  }
  .signature-label strong { font-size: 20px; }

  .section-title h2, .story-copy h2 { font-size: 29px; }
  .dish-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dish-card img { height: 122px; }
  .dish-body { padding: 13px 10px 14px; min-height: 150px; }
  .dish-body h3 { font-size: 15px; }
  .dish-body p { font-size: 11px; }
  .feature-item { grid-template-columns: 46px 1fr; }
  .catering-bar { padding: 22px 18px; border-radius: 10px 10px 0 0; }
  .catering-copy h2 { font-size: 24px; }
  .footer-brand img { width: 160px; }
}


/* Contact popup form */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.contact-modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(3px);
}
.modal-card {
  position: relative;
  width: min(520px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  border-top: 7px solid var(--orange);
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  background: #fff0e9;
  color: var(--orange);
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.modal-kicker {
  display: block;
  color: var(--orange);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.modal-card h2 {
  font-family: "Merriweather", Georgia, serif;
  margin: 0 0 8px;
  font-size: 32px;
}
.modal-card p {
  margin: 0 0 20px;
  color: #555;
  font-weight: 600;
}
.contact-form {
  display: grid;
  gap: 13px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
  color: #222;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fffaf5;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 90, 29, .12);
}
.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.modal-actions .btn {
  min-height: 48px;
  padding: 0 20px;
  flex: 1 1 190px;
}
.contact-form small {
  color: #777;
  font-size: 12px;
  line-height: 1.4;
}
.footer-brand small a {
  color: var(--orange);
  font-weight: 900;
}

@media (max-width: 520px) {
  .modal-card { padding: 26px 18px 20px; }
  .modal-card h2 { font-size: 27px; }
}


/* Header logo without tagline */
.brand-header {
  justify-content: center;
}
.brand-header img {
  margin-bottom: 0;
}

/* Extra mobile responsiveness improvements */
@media (max-width: 820px) {
  .site-header {
    padding: 0;
  }
  .nav-wrap {
    min-height: 92px;
  }
  .nav-order {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .nav-wrap {
    grid-template-columns: 150px 1fr auto;
    align-items: center;
  }
  .brand-header img {
    width: 145px;
  }
  .nav-order {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .dish-grid {
    grid-template-columns: 1fr;
  }
  .dish-card img {
    height: 180px;
  }
  .review-card {
    min-height: auto;
  }
  .footer-grid {
    gap: 18px;
  }
}


/* Updated product auto-slider */
.dish-slider-wrap {
  position: relative;
  margin: 0 auto;
}
.dish-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 2px 4px 18px;
  scrollbar-width: none;
}
.dish-slider::-webkit-scrollbar {
  display: none;
}
.dish-slider .dish-card {
  flex: 0 0 calc((100% - 80px) / 6);
  scroll-snap-align: start;
}
.dish-slider .dish-body {
  min-height: 118px;
}
.dish-slider .dish-body p {
  margin-bottom: 0;
}
.product-arrow {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid #e8e8e8;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
  font-size: 34px;
  line-height: 34px;
  color: var(--dark);
  cursor: pointer;
}
.product-prev { left: -22px; }
.product-next { right: -22px; }

.footer-brand small a {
  color: var(--orange);
  font-weight: 900;
}
.footer-col p span {
  min-width: 74px;
}

@media (max-width: 1100px) {
  .dish-slider .dish-card {
    flex-basis: calc((100% - 32px) / 3);
  }
}
@media (max-width: 820px) {
  .dish-slider .dish-card {
    flex-basis: calc((100% - 16px) / 2);
  }
  .product-prev { left: -10px; }
  .product-next { right: -10px; }
}
@media (max-width: 520px) {
  .dish-slider .dish-card {
    flex-basis: 82%;
  }
  .product-arrow {
    width: 36px;
    height: 36px;
    font-size: 30px;
  }
}


/* Working AJAX contact form status */
.form-status {
  display: none;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 14px;
}
.form-status.success {
  display: block;
  background: #eaf8ec;
  color: #146c1f;
  border: 1px solid #b9e6bf;
}
.form-status.error {
  display: block;
  background: #fff1ed;
  color: #b83612;
  border: 1px solid #f0b49f;
}

/* Updated hero image crop positioning */
.hero-image img {
  object-position: center center;
}

/* Footer bottom centre attribution */
.footer-bottom {
  width: min(var(--container), calc(100% - 64px));
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  color: #e8e8e8;
  font-size: 13px;
  line-height: 1.7;
}
.footer-bottom a {
  color: var(--orange);
  font-weight: 900;
}

@media (max-width: 520px) {
  .footer-bottom {
    width: calc(100% - 28px);
    margin-top: 18px;
  }
}


/* Reviews without user images */
.reviewer.no-avatar {
  display: block;
}
.reviewer.no-avatar div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reviewer.no-avatar strong {
  display: block;
  font-size: 13px;
}
.reviewer.no-avatar span {
  display: block;
  font-size: 12px;
  color: #777;
}


/* =========================================================
   SLIDER FIX - keep Made Fresh products horizontal
   Root issue: cached/old CSS can make .dish-slider behave like normal block content.
   This forced CSS keeps it as a clean horizontal slider on live hosting.
   ========================================================= */
.signature .dish-slider-wrap {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  margin: 0 auto !important;
  padding: 0 4px !important;
}

.signature .dish-slider {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x mandatory !important;
  padding: 4px 2px 20px !important;
  scrollbar-width: none !important;
}

.signature .dish-slider::-webkit-scrollbar {
  display: none !important;
}

.signature .dish-slider .dish-card {
  display: block !important;
  flex: 0 0 calc((100% - 80px) / 6) !important;
  min-width: 0 !important;
  max-width: none !important;
  scroll-snap-align: start !important;
  margin: 0 !important;
}

.signature .dish-slider .dish-card img {
  width: 100% !important;
  height: 150px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

.signature .dish-slider .dish-body {
  min-height: 120px !important;
  padding: 16px 12px 18px !important;
}

.signature .dish-slider .dish-body h3 {
  font-size: 16px !important;
  line-height: 1.18 !important;
}

.signature .dish-slider .dish-body p {
  min-height: auto !important;
  margin-bottom: 0 !important;
}

.signature .product-arrow {
  display: grid !important;
  place-items: center !important;
  position: absolute !important;
  top: 41% !important;
  transform: translateY(-50%) !important;
  z-index: 5 !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid #e8e8e8 !important;
  background: #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.12) !important;
  font-size: 34px !important;
  line-height: 1 !important;
  color: var(--dark) !important;
  cursor: pointer !important;
}

.signature .product-prev { left: -6px !important; }
.signature .product-next { right: -6px !important; }

@media (max-width: 1100px) {
  .signature .dish-slider .dish-card {
    flex-basis: calc((100% - 32px) / 3) !important;
  }
}

@media (max-width: 820px) {
  .signature .dish-slider .dish-card {
    flex-basis: calc((100% - 16px) / 2) !important;
  }
}

@media (max-width: 520px) {
  .signature .dish-slider {
    gap: 14px !important;
  }

  .signature .dish-slider .dish-card {
    flex-basis: 82% !important;
  }

  .signature .dish-slider .dish-card img {
    height: 185px !important;
  }

  .signature .product-arrow {
    width: 36px !important;
    height: 36px !important;
    font-size: 30px !important;
  }

  .signature .product-prev { left: 2px !important; }
  .signature .product-next { right: 2px !important; }
}
