/* Chomok Restaurant - Custom Styles */

:root {
  --brand-yellow: #feda00;
  --brand-yellow-dark: #1d1903;
  --brand-white: #e0e0ca;
  --brand-black: #000000;
  --brand-dark: #1f1f1f;
  --brand-cream: #fffcee;
  --divider-color: rgba(0, 0, 0, 0.1);
  --divider-color-dark: rgba(255, 255, 255, 0.2);
  --side-gap: clamp(8px, 1.5vw, 18px);
}

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

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

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-800.woff2') format('woff2');
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: var(--brand-cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ===== Header ===== */

.site-header {
  position: relative;
  margin: var(--side-gap) var(--side-gap) 0;
  z-index: 20;
}

/* Top info bar */
.top-bar {
  background-color: var(--brand-yellow-dark);
  color: var(--brand-white);
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 2px solid var(--brand-white);
}

.top-bar-item {
  padding: 8px 15px;
  text-align: center;
}

@media (min-width: 992px) {
  .top-bar-left {
    border-right: 2px solid var(--brand-white);
  }
}

@media (max-width: 991px) {
  .top-bar-right {
    display: none;
  }
}

/* Main nav */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  margin: 0 var(--side-gap);
  background-color: var(--brand-yellow-dark);
  padding: 15px clamp(15px, 4vw, 50px);
  border-bottom: 2px solid var(--brand-white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.main-nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-col {
  display: flex;
  align-items: center;
  padding-right: 1.5rem;
  margin-right: 1rem;
}

.logo-img {
  height: 55px;
  width: auto;
}

@media (min-width: 992px) {
  .logo-col {
    border-right: 2px solid var(--brand-white);
  }
}

@media (max-width: 991px) {
  .logo-img {
    height: 34px;
  }

  .logo-col {
    padding-right: 0;
    margin-right: 0;
  }
}

.menu-col {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

.main-menu {
  display: flex;
  gap: 5px;
  margin: 0;
}

.main-menu .nav-link {
  color: var(--brand-white);
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.main-menu .nav-link.active,
.main-menu .nav-link:hover {
  color: var(--brand-white);
  border-bottom: 2px solid var(--brand-white);
}

.main-nav .navbar-toggler {
  border-color: var(--brand-white);
}

.main-nav .navbar-toggler-icon {
  filter: invert(1);
}

.account-col {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.cart-col {
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  margin-left: 1rem;
}

@media (min-width: 992px) {
  .cart-col {
    border-left: 2px solid var(--brand-white);
  }
}

@media (max-width: 991px) {
  .cart-col,
  .account-col {
    display: none;
  }
}

.cart-link {
  color: var(--brand-white);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cart-link:hover {
  opacity: 0.6;
}

/* ===== Hero Slider ===== */

.hero-slider {
  position: relative;
  margin: 10px var(--side-gap) 0;
}

#heroCarousel {
  --bs-carousel-transition-duration: 1.2s;
}

.carousel-item .slider-img {
  height: 70vh;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.25) 35%,
    rgba(0, 0, 0, 0) 65%
  );
}

.slider-caption {
  position: absolute;
  left: clamp(20px, 5vw, 60px);
  bottom: clamp(20px, 5vw, 50px);
  right: clamp(20px, 5vw, 60px);
  text-align: left;
}

.caption-inner {
  max-width: 460px;
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.caption-eyebrow,
.caption-title,
.caption-text,
.caption-buttons {
  opacity: 0;
  transform: translateY(25px);
}

.carousel-item.active .caption-eyebrow,
.carousel-item.active .caption-title,
.carousel-item.active .caption-text,
.carousel-item.active .caption-buttons {
  animation: captionRise 0.8s ease forwards;
}

.carousel-item.active .caption-eyebrow { animation-delay: 0.3s; }
.carousel-item.active .caption-title  { animation-delay: 0.5s; }
.carousel-item.active .caption-text   { animation-delay: 0.7s; }
.carousel-item.active .caption-buttons { animation-delay: 0.9s; }

@keyframes captionRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.caption-eyebrow {
  display: inline-block;
  color: var(--brand-yellow);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.caption-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.caption-text {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.caption-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-brand-yellow {
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
  font-weight: 700;
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: 4px;
  border: 2px solid var(--brand-yellow);
  transition: all 0.3s ease;
}

.btn-brand-yellow:hover {
  background-color: transparent;
  color: var(--brand-white);
  border-color: var(--brand-white);
}

.btn-brand-outline {
  background-color: transparent;
  color: var(--brand-white);
  font-weight: 700;
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: 4px;
  border: 2px solid var(--brand-white);
  transition: all 0.3s ease;
}

.btn-brand-outline:hover {
  background-color: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: var(--brand-dark);
}

@media (max-width: 768px) {
  .caption-title {
    font-size: 1.5rem;
  }

  .caption-text {
    font-size: 0.85rem;
  }

  .caption-inner {
    max-width: 100%;
    padding: 20px 22px;
  }
}

/* ===== Category Scroller ===== */

.category-scroller {
  background-color: var(--brand-white);
  overflow: hidden;
  margin: 15px var(--side-gap) 0;
  padding: 22px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.scroller-track {
  display: flex;
  width: max-content;
  animation: scrollLeftToRight 22s linear infinite;
}

.category-scroller:hover .scroller-track {
  animation-play-state: paused;
}

.scroller-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 40px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-dark);
  position: relative;
  text-decoration: none;
}

.scroller-item::after {
  content: "";
  position: absolute;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-yellow-dark);
}

.scroller-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

@keyframes scrollLeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

@media (max-width: 768px) {
  .scroller-item {
    font-size: 1.05rem;
    padding: 0 26px;
  }

  .scroller-emoji {
    font-size: 1.3rem;
  }
}

/* ===== About Section ===== */

.about-section {
  background-color: var(--brand-cream);
  padding: 70px var(--side-gap) 60px;
}

.about-container {
  width: 100%;
  text-align: center;
}

.about-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-yellow);
  color: var(--brand-dark);
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.about-heading {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brand-dark);
  line-height: 1.05;
  margin: 0 0 35px;
}

.heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: clamp(2.4rem, 6vw, 5rem);
  flex-wrap: wrap;
}

.heading-row-2 {
  font-size: clamp(2.4rem, 6.5vw, 5.3rem);
  margin-top: 10px;
}

.heading-img {
  object-fit: cover;
  border: 3px solid var(--brand-yellow);
  flex-shrink: 0;
}

.pill-img {
  width: clamp(90px, 12vw, 160px);
  height: clamp(48px, 6vw, 80px);
  border-radius: 50px;
}

.circle-img {
  width: clamp(60px, 7vw, 100px);
  height: clamp(60px, 7vw, 100px);
  border-radius: 50%;
}

.about-footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.about-text-col {
  max-width: 420px;
  margin: 0 auto;
}

.about-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-dark);
  line-height: 1.6;
  margin-bottom: 22px;
}

.btn-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--brand-dark);
  color: var(--brand-white);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 50px;
  transition: background-color 0.25s ease;
}

.btn-about-cta:hover {
  background-color: var(--brand-yellow-dark);
  color: var(--brand-white);
}

.cta-arrow {
  font-size: 1.1rem;
}

.about-trust-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.trust-arrow {
  color: var(--brand-yellow);
  transform: scaleX(-1);
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--brand-white);
  background-color: var(--brand-cream);
  font-size: 1.3rem;
  margin-left: -12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-count {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trust-count strong {
  font-size: 1.3rem;
  color: var(--brand-dark);
}

.trust-count span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-dark);
  opacity: 0.7;
}

@media (max-width: 576px) {
  .trust-arrow {
    display: none;
  }
}

/* ===== Menu / Product List ===== */

.menu-section {
  padding: 20px var(--side-gap) 10px;
  background-image: url('../images/food_section_background.png');
  background-repeat: repeat;
  background-position: top left;
}

.menu-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.menu-section-head .badge-text {
  display: inline-block;
  margin-bottom: 10px;
}

.menu-section-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--brand-dark);
  text-transform: uppercase;
  margin: 0;
}

.menu-category {
  border-radius: 20px;
  margin-bottom: 25px;
  overflow: hidden;
}

.menu-category-inner {
  padding: 20px 0;
  text-align: center;
}

.menu-cat-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--brand-white);
  background-color: var(--brand-yellow-dark);
  padding: 15px;
  margin-bottom: 15px;
}

.menu-subtitle {
  display: block;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin: 25px 0 16px;
}

.menu-subtitle:first-of-type {
  margin-top: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
}

.menu-item {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.menu-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-item-photo {
  display: block;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  margin-right: -85px;
  cursor: pointer;
}

.menu-item-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.3));
}

.menu-item-banner {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 150px;
  background-image: url('../images/food_background.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 10px 24px 10px 100px;
}

.menu-item-name {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--brand-dark);
  line-height: 1.1;
  margin: 0 0 6px;
}

.menu-item-desc {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--brand-dark);
  opacity: 0.8;
  margin: 4px 0 0;
  order: 1;
}

.menu-item-price,
.menu-item-prices {
  margin: 6px 0 0;
  order: 0;
}

.menu-item-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.menu-item-price,
.price-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
  border-radius: 0;
  background-color: transparent;
  padding: 5px 10px;
}

.menu-item-price {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

.price-pill {
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.price-pill-input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.price-pill:has(.price-pill-input:checked) {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

.price-pill em {
  font-style: normal;
}

.price-pill em::after {
  content: " - ";
}

.menu-item-actions {
  margin-top: 14px;
  order: 2;
}

.btn-add-cart {
  border: none;
  padding: 10px 22px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-white);
  background-color: var(--brand-dark);
  cursor: pointer;
  transition: filter 0.2s ease;
}

.btn-add-cart:hover {
  filter: brightness(1.3);
}

@media (max-width: 575px) {
  .menu-item {
    flex-direction: column;
  }

  .menu-item-photo {
    width: 100px;
    height: 100px;
    margin-right: 0;
    margin-bottom: -50px;
  }

  .menu-item-banner {
    width: 100%;
    min-height: 90px;
    align-items: center;
    text-align: center;
    background-image: url('../images/food_background_mobile.png');
    padding: 58px 10px 14px;
  }

  .menu-item .menu-item-name {
    font-size: 0.8rem;
  }

  .menu-item-prices {
    justify-content: center;
    gap: 3px 5px;
  }

  .menu-item .price-pill,
  .menu-item .menu-item-price {
    font-size: 0.56rem;
    padding: 3px 6px;
  }

  .menu-item .menu-item-actions {
    margin-top: 10px;
  }

  .menu-item .btn-add-cart {
    width: 100%;
    font-size: 0.72rem;
    padding: 10px 10px;
  }
}

/* ===== Promo Banner Grid ===== */

.banner-section {
  margin: 10px var(--side-gap) 40px;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.banner-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
}

.banner-card:nth-child(1) { grid-column: span 5; }
.banner-card:nth-child(2) { grid-column: span 7; }
.banner-card:nth-child(3) { grid-column: span 4; }
.banner-card:nth-child(4) { grid-column: span 4; }
.banner-card:nth-child(5) { grid-column: span 4; }

.banner-card--img-left {
  flex-direction: row-reverse;
}

.banner-fried-rice    { background-color: #4a1f12; }
.banner-pizza         { background-color: #f0a833; }
.banner-burger        { background-color: #16130f; }
.banner-pasta         { background-color: #dcdcd6; }
.banner-fried-chicken { background-color: #f3e6c8; }

.banner-fried-rice .banner-text,
.banner-burger .banner-text {
  color: var(--brand-white);
}

.banner-pizza .banner-text,
.banner-pasta .banner-text,
.banner-fried-chicken .banner-text {
  color: #4a1f12;
}

.banner-text {
  position: relative;
  z-index: 1;
  max-width: 60%;
}

.banner-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.banner-desc {
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.4;
  margin: 0 0 14px;
}

.banner-price {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.banner-photo {
  flex-shrink: 0;
  width: 42%;
  align-self: stretch;
}

.banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.btn-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: none;
}

.btn-buy-now.is-yellow {
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
}

.btn-buy-now.is-white {
  background-color: var(--brand-white);
  color: #4a1f12;
}

.btn-buy-now.is-dark {
  background-color: #2a1810;
  color: var(--brand-white);
}

@media (max-width: 767px) {
  .banner-card,
  .banner-card:nth-child(1),
  .banner-card:nth-child(2),
  .banner-card:nth-child(3),
  .banner-card:nth-child(4),
  .banner-card:nth-child(5) {
    grid-column: span 12;
  }
}

/* ===== Office & Outlets ===== */

.outlets-section {
  margin: 10px var(--side-gap) 60px;
}

.outlets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.outlet-card {
  background-color: var(--brand-white);
  overflow: hidden;
}

.outlet-map {
  position: relative;
  width: 100%;
  height: 220px;
  background-color: var(--brand-cream);
}

.outlet-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.outlet-info {
  padding: 18px 20px 22px;
}

.outlet-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 0 0 8px;
}

.outlet-address {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--brand-dark);
  opacity: 0.75;
  margin: 0;
}

@media (max-width: 991px) {
  .outlets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .outlets-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Hungry CTA ===== */

.cta-section {
  position: relative;
  background-color: var(--brand-yellow);
  padding: 70px 20px 0;
  overflow: hidden;
}

.cta-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-bottom: 90px;
}

.cta-text {
  text-align: center;
  max-width: 460px;
}

.cta-heading {
  color: #4a1f12;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 14px;
}

.cta-subtext {
  color: #4a1f12;
  font-size: 0.95rem;
  margin: 0 0 24px;
}

.btn-cta-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-white);
  color: #4a1f12;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 30px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.btn-cta-book:hover {
  transform: translateY(-3px);
}

.cta-img {
  flex-shrink: 0;
  width: 220px;
  position: relative;
}

.cta-img::before {
  content: "";
  position: absolute;
  inset: -14px;
  background-color: var(--brand-white);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  z-index: 0;
}

.cta-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cta-img-left img {
  transform: rotate(-8deg);
}

.cta-img-right img {
  transform: rotate(8deg);
}

.cta-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
}

.cta-wave svg {
  display: block;
  width: 100%;
  height: 90px;
}

.cta-wave path {
  fill: #2a1810;
}

@media (max-width: 767px) {
  .cta-content {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 70px;
  }

  .cta-img {
    width: 160px;
  }

  .cta-img img {
    height: 130px;
  }
}

/* ===== Footer ===== */

.site-footer {
  background-color: #2a1810;
  margin-top: -1px;
  padding: 0 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 20px 0 40px;
}

.footer-logo {
  color: var(--brand-yellow);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 20px;
}

.footer-address {
  display: flex;
  gap: 12px;
}

.footer-address-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.footer-address h4 {
  color: var(--brand-white);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.footer-address p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.footer-col h4 {
  color: var(--brand-white);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--brand-yellow);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--brand-yellow);
}

@media (max-width: 767px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ===== Floating Side Action Stack & Offcanvas ===== */

.side-fab-stack {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  background-color: var(--brand-dark);
  box-shadow: -4px 4px 18px rgba(0, 0, 0, 0.25);
}

.fab-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.fab-btn:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.fab-btn:hover {
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
}

.cart-fab-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1.5px solid var(--brand-dark);
}

.fab-btn:hover .cart-fab-badge {
  border-color: var(--brand-white);
}

.login-fab-btn {
  display: none;
}

.cart-offcanvas {
  width: 380px;
  max-width: 90vw;
}

.cart-offcanvas .offcanvas-header {
  background-color: var(--brand-yellow);
  border-bottom: 2px solid var(--brand-dark);
}

.cart-offcanvas .offcanvas-title {
  font-size: 1.3rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background-color: var(--brand-cream);
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cart-item-name {
  font-size: 0.95rem;
  margin: 0;
}

.cart-item-variant {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--brand-dark);
  opacity: 0.6;
}

.cart-item-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--brand-dark);
  flex-shrink: 0;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

.qty-value {
  min-width: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.cart-offcanvas-footer {
  padding: 16px 20px 20px;
  border-top: 2px solid var(--brand-dark);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 14px;
}

.btn-checkout {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: none;
  background-color: var(--brand-dark);
  color: var(--brand-white);
  padding: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-checkout:hover {
  background-color: var(--brand-yellow-dark);
}

@media (max-width: 575px) {
  body {
    padding-bottom: 56px;
  }

  .side-fab-stack {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.25);
  }

  .fab-btn {
    flex: 1;
    width: auto;
    height: 56px;
  }

  .fab-btn:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .login-fab-btn {
    display: flex;
  }
}

/* ===== About Page ===== */

.btn-wc-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--brand-dark);
  color: var(--brand-white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 30px;
  transition: background-color 0.2s ease;
}

.btn-wc-hero:hover {
  background-color: var(--brand-yellow-dark);
  color: var(--brand-white);
}

/* ===== About Page ===== */

/* Our Story hero */

.story-hero-section {
  padding: 70px var(--side-gap) 90px;
  background-color: var(--brand-cream);
}

.story-hero-heading {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 6.5vw, 5rem);
  line-height: 1.05;
  color: var(--brand-dark);
}

.story-hero-heading-img {
  display: inline-block;
  width: clamp(56px, 8vw, 104px);
  height: clamp(56px, 8vw, 104px);
  object-fit: cover;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 clamp(4px, 1vw, 14px);
  transform: translateY(-8%);
}

.story-hero-row {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.story-hero-photo {
  position: relative;
  width: 190px;
  height: 190px;
  justify-self: center;
}

.story-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 0;
}

.story-hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 5px solid var(--brand-cream);
}

.story-hero-photo-left {
  align-self: end;
  margin-bottom: -10px;
}

.story-hero-photo-left::before {
  top: 20px;
  left: 20px;
  background-color: var(--brand-yellow);
}

.story-hero-photo-right {
  align-self: start;
}

.story-hero-photo-right::before {
  top: -20px;
  right: -20px;
  left: auto;
  background-color: var(--brand-dark);
}

.story-hero-body {
  position: relative;
}

.story-hero-index {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-dark);
  opacity: 0.55;
  margin-bottom: 14px;
}

.story-hero-divider {
  position: relative;
  border-top: 1.5px solid var(--brand-dark);
  margin: 0 0 60px;
  height: 0;
}

.story-hero-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--brand-dark);
  color: var(--brand-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.story-hero-cta:hover {
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
}

.story-hero-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--brand-dark);
  opacity: 0.8;
  margin: 0;
  max-width: 480px;
}

.story-hero-trust {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  height: 100%;
  padding-left: 26px;
  border-left: 1.5px solid var(--brand-dark);
}

.story-hero-trust-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-hero-avatars {
  display: flex;
}

.story-hero-avatars span {
  width: 32px;
  height: 32px;
  margin-left: -10px;
  border-radius: 50%;
  background-color: var(--brand-dark);
  color: var(--brand-yellow);
  border: 2px solid var(--brand-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
}

.story-hero-avatars span:first-child {
  margin-left: 0;
}

.story-hero-trust-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-dark);
  max-width: 90px;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .story-hero-row {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .story-hero-photo-left,
  .story-hero-photo-right {
    order: -1;
    margin: 0;
    align-self: center;
  }

  .story-hero-body {
    order: 0;
  }

  .story-hero-index {
    text-align: center;
  }

  .story-hero-text {
    margin: 0 auto;
    text-align: center;
  }

  .story-hero-trust {
    order: 1;
    border-left: none;
    padding-left: 0;
    align-items: center;
  }

  .story-hero-trust-top {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .story-hero-section {
    padding: 50px var(--side-gap) 60px;
  }

  .story-hero-heading {
    margin-bottom: 40px;
  }

  .story-hero-cta {
    width: 84px;
    height: 84px;
    font-size: 0.7rem;
  }

  .story-hero-divider {
    margin-bottom: 50px;
  }
}

/* Mission & Vision */

.mv-section {
  padding: 90px var(--side-gap) 100px;
  background-color: var(--brand-cream);
  overflow: hidden;
}

.mv-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 1.15fr);
  grid-template-rows: auto auto;
  column-gap: 60px;
  row-gap: 36px;
  max-width: 1300px;
  margin: 0 auto;
}

.mv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-dark);
  margin-bottom: 18px;
}

.mv-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-yellow);
}

.mv-mission {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.mv-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--brand-dark);
  opacity: 0.8;
  margin: 0;
}

.mv-text-lg {
  font-size: 1.05rem;
}

.mv-photo {
  border-radius: 18px;
  overflow: hidden;
}

.mv-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-photo-main {
  grid-column: 2;
  grid-row: 1;
  height: clamp(260px, 32vw, 420px);
}

.mv-photos-duo {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 18px;
}

.mv-photos-duo .mv-photo {
  flex: 1;
  height: clamp(150px, 16vw, 210px);
}

.mv-vision {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  padding-bottom: 90px;
}

.mv-vision-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 420px;
}

.mv-arrow-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-dark);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-shell {
  position: absolute;
  right: -30px;
  bottom: -10px;
  width: clamp(200px, 24vw, 300px);
  height: auto;
  color: var(--brand-dark);
  opacity: 0.22;
  pointer-events: none;
}

@media (max-width: 991px) {
  .mv-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .mv-mission,
  .mv-photo-main,
  .mv-photos-duo,
  .mv-vision {
    grid-column: 1;
  }

  .mv-mission { grid-row: 1; }
  .mv-photo-main { grid-row: 2; }
  .mv-photos-duo { grid-row: 3; }
  .mv-vision { grid-row: 4; padding-bottom: 60px; }
}

@media (max-width: 575px) {
  .mv-section {
    padding: 60px var(--side-gap) 70px;
  }

  .mv-photos-duo {
    flex-direction: column;
  }

  .mv-photos-duo .mv-photo {
    height: 220px;
  }

  .mv-vision-row {
    max-width: none;
  }

  .mv-shell {
    width: 220px;
    right: -20px;
  }
}

/* Services highlight */

.services-highlight-section {
  position: relative;
  padding: 90px var(--side-gap);
  overflow: hidden;
}

.services-leaf {
  position: absolute;
  width: clamp(90px, 11vw, 140px);
  height: auto;
  color: var(--brand-dark);
  opacity: 0.15;
  pointer-events: none;
}

.services-leaf-top {
  top: 20px;
  right: 20px;
}

.services-leaf-bottom {
  bottom: 20px;
  left: 20px;
}

.services-highlight-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.services-highlight-heading {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-dark);
  margin: 0 0 18px;
}

.services-highlight-heading strong {
  font-weight: 900;
}

.services-highlight-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--brand-dark);
  opacity: 0.75;
  margin: 0 0 28px;
  max-width: 400px;
}

.services-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  background-color: var(--brand-white);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(31, 31, 31, 0.06);
}

.service-card-icon {
  display: flex;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.service-card-title {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.service-card-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--brand-dark);
  opacity: 0.65;
  margin: 0;
}

@media (max-width: 991px) {
  .services-highlight-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .services-highlight-text {
    margin-left: auto;
    margin-right: auto;
  }

  .services-highlight-grid {
    max-width: 480px;
    margin: 0 auto;
  }

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

@media (max-width: 575px) {
  .services-highlight-section {
    padding: 60px var(--side-gap);
  }

  .services-highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* Customer reviews */

.reviews-section {
  position: relative;
  overflow: hidden;
  background-color: var(--brand-dark);
  padding: 90px var(--side-gap);
}

.reviews-quote-deco {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(7rem, 16vw, 11rem);
  line-height: 1;
  color: var(--brand-yellow);
  opacity: 0.12;
  pointer-events: none;
}

.reviews-head {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto 50px;
  text-align: center;
}

.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-cream);
  margin-bottom: 18px;
}

.reviews-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-yellow);
}

.reviews-heading {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-cream);
  margin: 0 0 16px;
}

.reviews-heading strong {
  font-weight: 900;
  color: var(--brand-yellow);
}

.reviews-subtext {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--brand-cream);
  opacity: 0.7;
  margin: 0 0 20px;
}

.reviews-stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-cream);
}

.reviews-stars,
.review-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--brand-yellow);
}

.reviews-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.review-card {
  display: flex;
  flex-direction: column;
}

.review-stars {
  margin-bottom: 16px;
}

.review-quote {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--brand-dark);
  opacity: 0.8;
  margin: 0 0 24px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--brand-dark);
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-author-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brand-dark);
}

.review-author-role {
  font-size: 0.75rem;
  color: var(--brand-dark);
  opacity: 0.6;
}

@media (max-width: 991px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 575px) {
  .reviews-section {
    padding: 60px var(--side-gap);
  }

  .reviews-head {
    margin-bottom: 36px;
  }
}

/* ===== Menu Page ===== */

.menu-page-section {
  padding: 30px var(--side-gap) 20px;
  background-image: url('../images/food_section_background.png');
  background-repeat: repeat;
  background-position: top left;
}

.menu-page-layout {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  max-width: 1300px;
  margin: 40px auto 0;
}

/* Category sidebar */

.menu-sidebar {
  width: 230px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
}

.menu-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: var(--brand-white);
  border: 1.5px solid var(--brand-dark);
  border-radius: 14px;
  padding: 10px;
}

.menu-cat-btn {
  display: block;
  width: 100%;
  text-align: left;
  background-color: transparent;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-dark);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu-cat-btn:hover {
  background-color: var(--brand-cream);
}

.menu-cat-btn.active {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

/* Food grid */

.menu-page-content {
  flex: 1;
  min-width: 0;
}

.menu-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.food-card-v {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-image: url('../images/food_background_vertical.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 14px;
  padding: 20px;
}

.food-card-v-img {
  display: block;
  width: 100%;
  height: 190px;
  margin-bottom: 14px;
  cursor: pointer;
}

.food-card-v .menu-item-prices,
.food-card-v .menu-item-price {
  justify-content: center;
  margin: 8px 0 16px;
}

.food-card-v .btn-add-cart {
  width: 100%;
  border-radius: 30px;
  margin-top: auto;
}

@media (max-width: 991px) {
  .menu-page-layout {
    flex-direction: column;
  }

  .menu-sidebar {
    width: 100%;
    position: static;
  }

  .menu-sidebar .menu-category-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-sidebar .menu-cat-btn {
    width: auto;
  }

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

@media (max-width: 575px) {
  .menu-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .food-card-v {
    padding: 12px;
    border-radius: 2px;
  }

  .food-card-v-img {
    height: 110px;
    margin-bottom: 10px;
    border-radius: 2px;
  }

  .food-card-v .menu-item-name {
    font-size: 0.85rem;
  }

  .food-card-v .menu-item-prices {
    gap: 4px 6px;
  }

  .food-card-v .price-pill {
    font-size: 0.6rem;
    padding: 4px 7px;
  }

  .food-card-v .btn-add-cart {
    font-size: 0.62rem;
    padding: 8px 10px;
    border-radius: 2px;
  }

  /* Category tabs are replaced by the floating "Category" button (opens
     the right-side offcanvas) on true mobile widths, so hide the inline
     tab row here. */
  .menu-sidebar {
    display: none;
  }
}

/* Category offcanvas (opens from the right via the floating Category button) */

.category-offcanvas {
  width: 320px;
  max-width: 90vw;
}

.category-offcanvas .offcanvas-header {
  background-color: var(--brand-yellow);
  border-bottom: 2px solid var(--brand-dark);
}

.category-offcanvas .offcanvas-title {
  font-size: 1.3rem;
}

.category-offcanvas .offcanvas-body .menu-cat-btn {
  width: 100%;
  text-align: left;
}

/* ===== Shared Page Hero (Shop, Contact) ===== */

.page-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.page-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.page-hero-eyebrow {
  color: var(--brand-yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.page-hero-title {
  color: var(--brand-white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0;
}

/* ===== Shop Page ===== */

.shop-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 60px var(--side-gap) 0;
}

.shop-intro-text {
  font-size: 0.95rem;
  color: var(--brand-dark);
  opacity: 0.8;
  line-height: 1.6;
  margin-top: 16px;
}

.shop-list-section {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 20px var(--side-gap) 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.shop-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.shop-row:nth-child(even) {
  flex-direction: row-reverse;
}

.shop-row-img {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
}

.shop-row-img img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.shop-row-info {
  flex: 1;
}

.shop-row-name {
  font-size: 1.6rem;
  margin: 0 0 18px;
}

.shop-row-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--brand-dark);
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 12px;
}

.shop-row-icon {
  flex-shrink: 0;
  font-size: 1rem;
}

.shop-row-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-dark);
  text-decoration: none;
  border-bottom: 1.5px solid var(--brand-dark);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.shop-row-map-link:hover {
  color: var(--brand-yellow-dark);
  border-color: var(--brand-yellow-dark);
}

@media (max-width: 767px) {
  .shop-row,
  .shop-row:nth-child(even) {
    flex-direction: column;
    gap: 22px;
  }

  .shop-row-img img {
    height: 220px;
  }
}

/* ===== Contact Page ===== */

.contact-section {
  padding: 60px var(--side-gap);
}

.contact-layout {
  display: flex;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  font-size: 1.3rem;
  border-radius: 50%;
  background-color: var(--brand-yellow);
}

.contact-info-item h4 {
  font-size: 1.05rem;
  margin: 0 0 4px;
}

.contact-info-item p {
  font-size: 0.88rem;
  color: var(--brand-dark);
  opacity: 0.75;
  margin: 0;
  line-height: 1.5;
}

.contact-form-wrap {
  flex: 1.3;
  background-color: var(--brand-white);
  border: 1.5px solid var(--brand-dark);
  border-radius: 16px;
  padding: 36px;
}

.contact-form-title {
  font-size: 1.4rem;
  margin: 0 0 22px;
}

.contact-form .form-row,
.auth-form .form-row {
  display: flex;
  gap: 18px;
}

.contact-form .form-group,
.auth-form .form-group {
  flex: 1;
  margin-bottom: 18px;
}

.contact-form label,
.auth-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.auth-form input,
.auth-form textarea {
  width: 100%;
  border: 1.5px solid var(--brand-dark);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--brand-dark);
  background-color: var(--brand-cream);
}

.contact-form select {
  cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.auth-form input:focus,
.auth-form textarea:focus {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 1px;
}

.contact-map {
  max-width: 1100px;
  margin: 10px auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--brand-dark);
  height: 320px;
}

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

@media (max-width: 767px) {
  .contact-layout {
    flex-direction: column;
  }

  .contact-form .form-row,
  .auth-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form-wrap {
    padding: 26px;
  }
}

/* ===== Auth (Login / Register) ===== */

.auth-link {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: underline;
}

.auth-section {
  padding: 60px var(--side-gap);
  display: flex;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background-color: var(--brand-white);
  border: 1.5px solid var(--brand-dark);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.auth-title {
  font-size: 1.8rem;
  margin: 0 0 10px;
}

.auth-subtext {
  font-size: 0.9rem;
  color: var(--brand-dark);
  opacity: 0.75;
  margin: 0 0 28px;
}

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

.auth-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 22px;
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--brand-dark);
  cursor: pointer;
}

.auth-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--brand-dark);
}

.auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 22px;
  cursor: pointer;
}

.auth-terms input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--brand-dark);
}

.auth-submit {
  display: flex;
  width: 100%;
}

.auth-switch {
  font-size: 0.88rem;
  margin: 24px 0 0;
}

@media (max-width: 480px) {
  .auth-card {
    padding: 28px 22px;
  }
}

/* ===== User Dashboard ===== */

.dashboard-section {
  padding: 50px var(--side-gap) 70px;
}

.dashboard-layout {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-sidebar {
  width: 260px;
  flex-shrink: 0;
  background-color: var(--brand-white);
  border: 1.5px solid var(--brand-dark);
  border-radius: 16px;
  padding: 30px 22px;
  position: sticky;
  top: 90px;
}

.dashboard-user {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dashboard-avatar {
  width: 66px;
  height: 66px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-username {
  font-size: 1.1rem;
  margin: 0 0 4px;
}

.dashboard-email {
  font-size: 0.8rem;
  color: var(--brand-dark);
  opacity: 0.7;
  margin: 0;
  word-break: break-word;
}

.dashboard-nav {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-nav-link {
  display: block;
  width: 100%;
  border: none;
  background-color: transparent;
  text-align: left;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-dark);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dashboard-nav-link:hover {
  background-color: var(--brand-cream);
}

.dashboard-nav-link.active {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

.btn-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: transparent;
  border: 1.5px solid var(--brand-dark);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 11px;
  border-radius: 30px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-logout:hover {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

.dashboard-content {
  flex: 1;
  min-width: 0;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.dashboard-stat-card {
  background-color: var(--brand-white);
  border: 1.5px solid var(--brand-dark);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--brand-dark);
  opacity: 0.65;
  margin-top: 6px;
}

.dashboard-section-title {
  font-size: 1.4rem;
  margin: 0 0 20px;
}

.dashboard-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.dashboard-section-header .dashboard-section-title {
  margin-bottom: 0;
}

.dashboard-view-all-btn {
  border: none;
  background-color: transparent;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--brand-dark);
  text-decoration: underline;
  cursor: pointer;
  flex-shrink: 0;
}

.order-view-btn {
  border: 1.5px solid var(--brand-dark);
  background-color: transparent;
  border-radius: 30px;
  padding: 6px 16px;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--brand-dark);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.order-view-btn:hover {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

.orders-table-wrap {
  overflow-x: auto;
  border: 1.5px solid var(--brand-dark);
  border-radius: 14px;
  margin-bottom: 50px;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  white-space: nowrap;
}

.orders-table th,
.orders-table td {
  padding: 14px 18px;
  text-align: left;
}

.orders-table thead {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

.orders-table tbody tr:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.order-status {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.order-status.is-delivered {
  background-color: rgba(46, 125, 50, 0.15);
  color: #2e7d32;
}

.order-status.is-processing {
  background-color: rgba(254, 218, 0, 0.25);
  color: #8a6d00;
}

.order-status.is-cancelled {
  background-color: rgba(198, 40, 40, 0.12);
  color: #c62828;
}

.order-details-modal-content {
  border: 2px solid var(--brand-dark);
  border-radius: 20px;
}

.order-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--brand-dark);
}

.order-detail-row span:first-child {
  opacity: 0.65;
  font-weight: 600;
}

.order-detail-row span:last-child {
  font-weight: 700;
}

.order-detail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--brand-dark);
}

.order-detail-item span:first-child {
  opacity: 0.75;
}

.order-detail-item span:last-child {
  font-weight: 700;
}

.order-detail-row.order-detail-total {
  padding-top: 10px;
}

.order-detail-row.order-detail-total span {
  font-size: 1.05rem;
  font-weight: 800;
  opacity: 1;
}

.account-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.account-info-item {
  background-color: var(--brand-white);
  border: 1.5px solid var(--brand-dark);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account-info-item span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--brand-dark);
  opacity: 0.6;
}

.account-info-item strong {
  font-size: 0.95rem;
  color: var(--brand-dark);
}

@media (max-width: 991px) {
  .dashboard-layout {
    flex-direction: column;
  }

  .dashboard-sidebar {
    width: 100%;
    position: static;
  }
}

/* ===== Checkout Page ===== */

.checkout-section {
  padding: 50px var(--side-gap) 70px;
}

.checkout-layout {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  max-width: 1150px;
  margin: 40px auto 0;
}

.checkout-form-wrap {
  flex: 1.3;
  background-color: var(--brand-white);
  border: 1.5px solid var(--brand-dark);
  border-radius: 16px;
  padding: 36px;
}

.checkout-payment-title {
  margin-top: 30px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-pill {
  cursor: pointer;
}

.checkout-summary {
  flex: 1;
  background-color: var(--brand-white);
  border: 1.5px solid var(--brand-dark);
  border-radius: 16px;
  padding: 30px;
  position: sticky;
  top: 90px;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.checkout-item-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background-color: var(--brand-cream);
  border-radius: 8px;
  flex-shrink: 0;
}

.checkout-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checkout-item-info h4 {
  font-size: 0.92rem;
  margin: 0;
}

.checkout-item-info span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--brand-dark);
  opacity: 0.6;
}

.checkout-item-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-dark);
  white-space: nowrap;
}

.checkout-totals {
  padding-top: 18px;
  margin-top: 6px;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--brand-dark);
  opacity: 0.75;
  margin-bottom: 10px;
}

.checkout-total-final {
  font-size: 1.15rem;
  font-weight: 800;
  opacity: 1;
  padding-top: 12px;
  border-top: 1.5px solid var(--brand-dark);
  margin-bottom: 22px;
}

.checkout-place-order {
  display: flex;
  width: 100%;
}

@media (max-width: 767px) {
  .checkout-layout {
    flex-direction: column;
  }

  .checkout-summary {
    position: static;
    width: 100%;
  }

  .checkout-form-wrap {
    padding: 26px;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .account-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Food View Page ===== */

.food-view-section {
  padding: 50px var(--side-gap) 30px;
}

.food-view-layout {
  display: flex;
  align-items: stretch;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  border: 2px solid var(--brand-dark);
  border-radius: 20px;
  overflow: hidden;
}

.food-view-img-col {
  width: 42%;
  flex-shrink: 0;
  background-color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.food-view-img {
  width: 100%;
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.3));
}

.food-view-info-col {
  flex: 1;
  padding: 40px 40px 40px 0;
  min-width: 0;
}

.food-view-name {
  font-size: 1.9rem;
  margin: 0 0 6px;
}

.food-view-desc {
  font-size: 0.9rem;
  color: var(--brand-dark);
  opacity: 0.7;
  margin: 0 0 26px;
}

.food-view-block {
  margin-bottom: 26px;
}

.food-view-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--brand-dark);
  opacity: 0.6;
  margin: 0 0 12px;
}

.addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.addon-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--brand-dark);
  border-radius: 10px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.addon-item:has(input:checked) {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

.addon-item-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--brand-dark);
  cursor: pointer;
}

.addon-item-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.addon-item-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-dark);
  opacity: 0.75;
}

.food-view-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 6px;
}

.food-view-qty {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--brand-dark);
  border-radius: 30px;
  padding: 6px 16px;
  flex-shrink: 0;
}

.food-view-qty .qty-btn {
  width: 22px;
  height: 22px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.food-view-qty .qty-value {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 14px;
  text-align: center;
}

.food-view-add-btn {
  flex: 1;
  border-radius: 30px;
  padding: 13px 20px;
}

.food-view-suggestions {
  max-width: 1300px;
  margin: 60px auto 0;
  padding: 0 var(--side-gap);
}

.food-view-suggestions .menu-grid-2 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
  .food-view-suggestions .menu-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .food-view-layout {
    flex-direction: column;
  }

  .food-view-img-col {
    width: 100%;
    padding: 26px;
    justify-content: flex-start;
  }

  .food-view-info-col {
    padding: 26px;
  }

  .food-view-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .food-view-qty {
    align-self: flex-start;
    justify-content: flex-start;
  }
}
