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

:root {
  --orange: #e8531a;
  --orange-light: #ff6b35;
  --cream: #fdf6ec;
  --dark: #1a1208;
  --dark-2: #2e2010;
  --muted: #6b5b45;
  --border: rgba(232, 83, 26, 0.15);
  --card-bg: #fffaf4;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(26, 18, 8, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-logo span {
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.925rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid transparent;
}

.nav-links a:hover {
  background: var(--card-bg);
  color: var(--dark);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  border: 1px solid transparent !important;
  transition:
    transform 0.2s ease,
    background 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--orange-light) !important;
  transform: scale(1.04) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 1.5rem;
  padding: 0.75rem;
  margin-right: -0.75rem;
  transition: transform 0.2s ease;
  position: relative;
  z-index: 105;
}

.hamburger:active {
  transform: scale(0.9);
}

/* HERO */
.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2rem 4rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 83, 26, 0.1);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(232, 83, 26, 0.2);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--dark);
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  animation: lineGrow 1s 1.2s ease forwards;
}

@keyframes lineGrow {
  to {
    width: 100%;
  }
}

.hero-sub {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 44ch;
  animation: fadeUp 0.8s 0.6s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.8s ease both;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(26, 18, 8, 0.2);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: var(--card-bg);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.8s 1s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s 0.4s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.hero-img-wrap {
  width: 380px;
  height: 480px;
  border-radius: 40% 60% 60% 40% / 50% 50% 60% 40%;
  overflow: hidden;
  position: relative;
  animation: morphBlob 8s ease-in-out infinite;
  box-shadow: 0 32px 80px rgba(232, 83, 26, 0.2);
}

@keyframes morphBlob {
  0%,
  100% {
    border-radius: 40% 60% 60% 40% / 50% 50% 60% 40%;
  }

  33% {
    border-radius: 60% 40% 50% 60% / 40% 60% 50% 60%;
  }

  66% {
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 50%;
  }
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-float-card.left {
  bottom: 80px;
  left: -30px;
  animation-delay: 0.5s;
}

.hero-float-card.top {
  top: 40px;
  right: -20px;
  animation-delay: 1s;
}

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.float-icon.orange {
  background: rgba(232, 83, 26, 0.12);
}

.float-icon.green {
  background: rgba(34, 197, 94, 0.12);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.section-header p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* CATEGORIES */
.categories-section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.categories-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  margin: -1.5rem 0;
}

.categories-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-card {
  min-width: 140px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cat-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(232, 83, 26, 0.12);
}

.cat-card.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(232, 83, 26, 0.3);
}

.cat-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}

.cat-card:hover .cat-img,
.cat-card.active .cat-img {
  transform: scale(1.1);
}

.cat-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
}

.cat-card.active .cat-name {
  color: var(--white);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.ctrl-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: scale(1.08);
}

.ctrl-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--dark);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  font-family: "Playfair Display", serif;
  font-size: 30rem;
  color: rgba(255, 255, 255, 0.03);
  top: -4rem;
  left: -2rem;
  line-height: 1;
  pointer-events: none;
}

.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-section .section-label {
  color: var(--orange-light);
}

.testimonials-section .section-header h2 {
  color: var(--white);
}

.testimonial-slide {
  display: none;
  animation: fadeSlide 0.5s ease forwards;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
}

.testimonial-img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin: 0 auto 2rem;
  display: block;
  border: 3px solid rgba(232, 83, 26, 0.5);
}

.testimonial-text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--orange-light);
  font-weight: 500;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* RESERVE */
.reserve-section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.reserve-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 340px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

.reserve-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 18, 8, 0.85) 0%,
    transparent 60%
  );
  transition: opacity 0.3s ease;
}

.reserve-card:hover::before {
  opacity: 0.95;
}

.reserve-card:hover {
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.reserve-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.reserve-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.reserve-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.reserve-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--dark);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.875rem;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reserve-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateX(4px);
}

/* MENU SECTION */
.menu-section {
  padding: 6rem 2rem;
  background: var(--dark-2);
}

.menu-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.menu-section .section-header h2 {
  color: var(--white);
}

.menu-section .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

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

.menu-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 83, 26, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.menu-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.05);
}

.menu-card-body {
  padding: 1.25rem;
}

.menu-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange-light);
  margin-bottom: 0.4rem;
}

.menu-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.menu-card-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange-light);
  font-family: "Playfair Display", serif;
}

.add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 1.1rem;
}

.add-btn:hover {
  background: var(--orange-light);
  transform: scale(1.15) rotate(90deg);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand-name span {
  color: var(--orange);
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 28ch;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.footer-col ul a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

/* MOBILE NAV */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  padding: 1.25rem 1.5rem;
  gap: 0.75rem;
  align-items: stretch;
}

.mobile-menu.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.5rem;
}

.mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 1.75rem;
  padding: 0.75rem;
  margin-right: -0.75rem;
  transition: transform 0.2s ease;
}

.mobile-close:active {
  transform: scale(0.9);
}

.mobile-menu > a {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(26, 18, 8, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: all 0.25s ease;
}

.mobile-menu > a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--orange);
  transition: transform 0.25s ease;
}

.mobile-menu > a:hover,
.mobile-menu > a:active {
  background: var(--card-bg);
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 6px 16px rgba(232, 83, 26, 0.1);
  padding-left: 1.75rem;
}

.mobile-menu > a:hover::after,
.mobile-menu > a:active::after {
  transform: translateX(4px);
}

/* SCROLL ANIM */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem 3rem;
    gap: 2rem;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-img-wrap {
    width: 280px;
    height: 340px;
  }

  .hero-float-card {
    display: none;
  }

  .reserve-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-img {
    width: 100%;
    max-width: 250px;
    height: 160px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .testimonial-img {
    max-width: 200px;
    height: 130px;
  }
}

/* ==========================================================================
   MENU PAGE SPECIFIC STYLES
   ========================================================================== */

/* Active link styling */
.nav-links a.active {
  background: var(--card-bg);
  color: var(--orange);
  font-weight: 600;
  border: 1px solid var(--border);
}

/* Menu Page Hero */
.menu-hero {
  background: linear-gradient(135deg, #fdf6ec 0%, #f7ebd9 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.menu-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 83, 26, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.menu-hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 83, 26, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.menu-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 1rem;
}

.menu-hero h1 span {
  color: var(--orange);
}

.menu-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* Search and Controls Sticky Bar */
.menu-controls {
  z-index: 90;
  background: rgba(253, 246, 236, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
  box-shadow: 0 4px 20px rgba(26, 18, 8, 0.04);
}

.menu-controls-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.search-wrapper {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.search-wrapper i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.95rem;
}

.search-input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 3rem;
  border-radius: 50px;
  border: 1.5px solid rgba(26, 18, 8, 0.1);
  background: var(--white);
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 83, 26, 0.1);
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.sort-select {
  padding: 0.8rem 2rem 0.8rem 1.25rem;
  border-radius: 50px;
  border: 1.5px solid rgba(26, 18, 8, 0.1);
  background: var(--white);
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b5b45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  transition: all 0.25s ease;
}

.sort-select:focus {
  outline: none;
  border-color: var(--orange);
}

/* Category Filter Track */
.filter-categories {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.25rem 0;
  scrollbar-width: none;
  /* Firefox */
}

.filter-categories::-webkit-scrollbar {
  display: none;
  /* Safari & Chrome */
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(26, 18, 8, 0.1);
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-btn:hover {
  background: var(--card-bg);
  color: var(--dark);
  border-color: var(--orange);
}

.filter-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(232, 83, 26, 0.2);
}

/* Filter Toggles Row */
.filter-toggles {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.toggle-btn {
  background: var(--white);
  border: 1px solid rgba(26, 18, 8, 0.1);
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.toggle-btn i {
  font-size: 0.75rem;
}

.toggle-btn.active[data-type="veg"] {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
}

.toggle-btn.active[data-type="spicy"] {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
}

.toggle-btn.active[data-type="special"] {
  border-color: var(--orange);
  background: rgba(232, 83, 26, 0.08);
  color: var(--orange);
}

/* Menu Grid */
.menu-page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

.menu-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  transition: all 0.3s ease;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1.5px dashed var(--border);
}

.no-results i {
  font-size: 3rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.no-results h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.no-results p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Premium Menu Cards */
.menu-page-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(26, 18, 8, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-page-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #f0eae0;
  cursor: pointer;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-page-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(253, 246, 236, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
}

.card-fav-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(253, 246, 236, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.card-fav-btn:hover {
  color: #ef4444;
  transform: scale(1.1);
}

.card-fav-btn.active {
  color: #ef4444;
  background: var(--white);
  border-color: #ef4444;
  animation: heartPop 0.3s ease;
}

@keyframes heartPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.diet-indicator {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.diet-indicator.veg {
  color: #10b981;
}

.diet-indicator.non-veg {
  color: #ef4444;
}

.diet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.spicy-meter {
  display: flex;
  gap: 2px;
  color: rgba(26, 18, 8, 0.15);
}

.spicy-meter.level-1 i:nth-child(1) {
  color: #f59e0b;
}

.spicy-meter.level-2 i:nth-child(-n + 2) {
  color: #f97316;
}

.spicy-meter.level-3 i:nth-child(-n + 3) {
  color: #ef4444;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.card-title-row h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: color 0.2s ease;
}

.card-title-row h3:hover {
  color: var(--orange);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #f59e0b;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 83, 26, 0.08);
}

.card-price {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

/* Premium Card Quantity Controller */
.action-wrapper {
  height: 38px;
  display: flex;
  align-items: center;
}

.card-add-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(232, 83, 26, 0.15);
}

.card-add-btn:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.qty-controller {
  display: flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 2px;
  gap: 0.6rem;
  animation: qtyPop 0.2s ease forwards;
}

@keyframes qtyPop {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(232, 83, 26, 0.1);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: var(--orange);
  color: var(--white);
}

.qty-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  min-width: 14px;
  text-align: center;
}

/* Floating Cart Trigger Button */
.floating-cart {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--orange);
  color: var(--white);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(232, 83, 26, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 95;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cart:hover {
  transform: scale(1.08) translateY(-4px);
  background: var(--orange-light);
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #10b981;
  color: var(--white);
  border: 2px solid var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 50px;
  line-height: 1;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 210;
  box-shadow: -10px 0 40px rgba(26, 18, 8, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.4);
  backdrop-filter: blur(4px);
  z-index: 205;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
}

.cart-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cart-close-btn:hover {
  background: rgba(232, 83, 26, 0.08);
  color: var(--orange);
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Custom Scrollbar for Cart list */
.cart-items-list::-webkit-scrollbar {
  width: 6px;
}

.cart-items-list::-webkit-scrollbar-track {
  background: transparent;
}

.cart-items-list::-webkit-scrollbar-thumb {
  background: rgba(26, 18, 8, 0.1);
  border-radius: 3px;
}

.cart-items-list::-webkit-scrollbar-thumb:hover {
  background: rgba(26, 18, 8, 0.2);
}

.empty-cart-state {
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: auto;
}

.empty-cart-state i {
  font-size: 3.5rem;
  color: var(--muted);
  opacity: 0.4;
}

.empty-cart-state p {
  color: var(--muted);
  font-size: 0.95rem;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(232, 83, 26, 0.08);
  animation: itemSlideIn 0.3s ease;
}

@keyframes itemSlideIn {
  from {
    transform: translateX(20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #f0eae0;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.cart-item-cust {
  font-size: 0.72rem;
  color: var(--orange-light);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.cart-item-price {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  background: var(--cream);
  border-radius: 50px;
  padding: 1px;
  gap: 0.4rem;
}

.cart-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  color: var(--dark);
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cart-qty-btn:hover {
  background: var(--orange);
  color: var(--white);
}

.cart-qty-val {
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 12px;
  text-align: center;
}

/* Promo and Checkout Footer */
.cart-footer-summary {
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.promo-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.promo-input {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(26, 18, 8, 0.1);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
}

.promo-input:focus {
  outline: none;
  border-color: var(--orange);
}

.promo-btn {
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.promo-btn:hover {
  background: var(--orange);
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.summary-line.total {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  border-top: 1px dashed rgba(26, 18, 8, 0.15);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

.checkout-btn {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.9rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(232, 83, 26, 0.2);
  transition: all 0.25s ease;
}

.checkout-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

/* Detail Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.5);
  backdrop-filter: blur(8px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--white);
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(30px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-overlay.open .modal-container {
  transform: translateY(0) scale(1);
}

.modal-body {
  overflow-y: auto;
  padding-bottom: 2rem;
}

.modal-hero-img-wrap {
  width: 100%;
  height: 280px;
  position: relative;
}

.modal-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  color: var(--dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-close-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.modal-content-inner {
  padding: 2rem;
}

.modal-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.modal-title-row h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}

.modal-info-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(232, 83, 26, 0.08);
  padding-bottom: 1rem;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

/* Nutrition Grid */
.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.nutrition-item {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.nutrition-val {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.15rem;
}

.nutrition-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
}

/* Customizations */
.custom-section {
  margin-bottom: 2rem;
}

.custom-option-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.custom-checkbox-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--card-bg);
  border: 1px solid rgba(232, 83, 26, 0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-checkbox-row:hover {
  border-color: var(--orange);
}

.custom-lbl-side {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.custom-checkbox-row input {
  accent-color: var(--orange);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.custom-lbl-side span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}

.custom-price-side {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-light);
}

/* Modal Action Bar */
.modal-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.modal-price-display {
  display: flex;
  flex-direction: column;
}

.modal-price-lbl {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
}

.modal-price-val {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dark);
}

.modal-add-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(232, 83, 26, 0.25);
}

.modal-add-btn:hover {
  background: var(--orange-light);
  transform: translateY(-1.5px);
}

/* Success Order Placement Anim overlay */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.9);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.success-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.success-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-overlay.open .success-card {
  transform: scale(1);
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  animation: successPulse 1.5s infinite;
}

@keyframes successPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.success-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.success-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.success-close-btn {
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.success-close-btn:hover {
  background: var(--orange);
}

/* RESPONSIVE UPDATES FOR MENU PAGE */
@media (max-width: 991px) {
  .menu-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-controls {
    padding: 1rem;
  }

  .menu-controls-inner {
    gap: 0.75rem;
  }

  .search-sort-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .search-wrapper {
    min-width: 100%;
  }

  .sort-wrapper {
    justify-content: space-between;
  }

  .cart-drawer {
    width: 100%;
  }

  .modal-container {
    max-height: 95vh;
  }

  .modal-hero-img-wrap {
    height: 200px;
  }

  .modal-content-inner {
    padding: 1.5rem;
  }
}

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

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

  .modal-action-bar {
    padding: 1rem 1.5rem;
  }
}

/* ==========================================================================
   RESERVE PAGE SPECIFIC STYLES
   ========================================================================== */

/* Active nav link for Reserve */
.nav-links a.active-reserve {
  background: var(--card-bg);
  color: var(--orange);
  font-weight: 600;
  border: 1px solid var(--border);
}

/* Reserve Hero */
.reserve-hero {
  background: linear-gradient(135deg, #fdf6ec 0%, #f7ebd9 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.reserve-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 83, 26, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.reserve-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 1rem;
}

.reserve-hero h1 span {
  color: var(--orange);
}

.reserve-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Layout Split */
.reserve-page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

.reserve-grid-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Booking Form styling */
.booking-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(26, 18, 8, 0.02);
}

.booking-form-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(232, 83, 26, 0.08);
}

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group-custom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group-custom.no-margin {
  margin-bottom: 0;
}

.form-label-custom {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input-wrap {
  position: relative;
}

.form-input-wrap i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.95rem;
}

.form-input-field {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 2.8rem;
  border-radius: 50px;
  border: 1.5px solid rgba(26, 18, 8, 0.1);
  background: var(--white);
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-input-field:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 83, 26, 0.1);
}

/* Guest count pills */
.guests-pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.guest-pill-btn {
  background: var(--white);
  border: 1.5px solid rgba(26, 18, 8, 0.1);
  color: var(--muted);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.guest-pill-btn:hover {
  border-color: var(--orange);
  color: var(--dark);
  background: var(--card-bg);
}

.guest-pill-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(232, 83, 26, 0.2);
}

/* Time Slot selection */
.time-session-group {
  margin-bottom: 1rem;
}

.session-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slots-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.slot-btn-item {
  background: var(--white);
  border: 1.5px solid rgba(26, 18, 8, 0.1);
  color: var(--muted);
  padding: 0.6rem 0.5rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.slot-btn-item:hover {
  border-color: var(--orange);
  color: var(--dark);
}

.slot-btn-item.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 10px rgba(232, 83, 26, 0.18);
}

/* Seating Toggles */
.seating-prefs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pref-pill-btn {
  background: var(--white);
  border: 1.5px solid rgba(26, 18, 8, 0.1);
  color: var(--muted);
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pref-pill-btn:hover {
  border-color: var(--orange);
  color: var(--dark);
}

.pref-pill-btn.active {
  border-color: var(--orange);
  background: rgba(232, 83, 26, 0.08);
  color: var(--orange);
  font-weight: 600;
}

/* Submit Button */
.booking-submit-btn {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.95rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 6px 20px rgba(232, 83, 26, 0.2);
  transition: all 0.25s ease;
  margin-top: 2rem;
}

.booking-submit-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 83, 26, 0.25);
}

/* Visual dining zone side selector */
.dining-zones-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.zones-header {
  margin-bottom: 0.5rem;
}

.zones-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.zones-header p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.zone-selection-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26, 18, 8, 0.01);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zone-selection-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.zone-selection-card.selected {
  border-color: var(--orange);
  background: var(--card-bg);
  box-shadow: 0 8px 24px rgba(232, 83, 26, 0.08);
}

.zone-card-img-wrap {
  width: 150px;
  min-height: 150px;
  position: relative;
  background: #f0eae0;
}

.zone-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zone-card-body-details {
  padding: 1.25rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zone-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.zone-title-row h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.zone-select-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 18, 8, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  transition: all 0.2s ease;
  background: var(--white);
}

.zone-selection-card.selected .zone-select-checkbox {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.zone-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.zone-card-tag-row {
  display: flex;
  gap: 0.4rem;
}

.zone-feature-tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  background: var(--cream);
  color: var(--muted);
  border-radius: 50px;
  border: 1px solid rgba(232, 83, 26, 0.08);
}

/* Success Booking Modal */
.booking-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.5);
  backdrop-filter: blur(8px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: opacity 0.3s ease;
}

.booking-success-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.booking-receipt-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 95vh;
  display: flex;
  flex-direction: column;
}

.booking-success-overlay.open .booking-receipt-card {
  transform: translateY(0) scale(1);
}

.receipt-header {
  background: var(--cream);
  padding: 2rem;
  text-align: center;
  border-bottom: 1.5px dashed var(--border);
  position: relative;
}

.receipt-header::before,
.receipt-header::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
}

.receipt-header::before {
  left: -8px;
}

.receipt-header::after {
  right: -8px;
}

.receipt-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.receipt-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.receipt-header p {
  font-size: 0.85rem;
  color: var(--muted);
}

.receipt-body {
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Simulated QR */
.qr-code-wrapper {
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.simulated-qr {
  width: 130px;
  height: 130px;
  background-image: repeating-conic-gradient(
    var(--dark) 0% 25%,
    transparent 0% 50%
  );
  background-size: 12px 12px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(26, 18, 8, 0.06);
  position: relative;
}

.simulated-qr::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 48%,
    var(--orange) 50%,
    var(--orange) 52%,
    transparent 54%
  );
  animation: qrScanner 2s infinite ease-in-out;
}

@keyframes qrScanner {
  0% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(135px);
  }

  100% {
    transform: translateY(-5px);
  }
}

.qr-code-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

/* Details list */
.receipt-details-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(232, 83, 26, 0.08);
  padding-top: 1rem;
}

.receipt-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.receipt-lbl {
  color: var(--muted);
  font-weight: 500;
}

.receipt-val-highlight {
  color: var(--dark);
  font-weight: 600;
}

.receipt-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.receipt-btn-primary {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.85rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.receipt-btn-primary:hover {
  background: var(--orange);
}

.receipt-btn-secondary {
  width: 100%;
  background: transparent;
  color: var(--muted);
  border: 1.5px solid rgba(26, 18, 8, 0.15);
  padding: 0.85rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.receipt-btn-secondary:hover {
  background: var(--card-bg);
  color: var(--dark);
  border-color: var(--dark);
}

/* RESPONSIVE UPGRADES FOR RESERVE */
@media (max-width: 991px) {
  .reserve-grid-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .booking-form-card {
    padding: 1.75rem;
  }

  .form-row-split {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .slots-grid-layout {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   REVIEWS PAGE SPECIFIC STYLES
   ========================================================================== */

/* Active nav link for Reviews */
.nav-links a.active-reviews {
  background: var(--card-bg);
  color: var(--orange);
  font-weight: 600;
  border: 1px solid var(--border);
}

/* Reviews Hero */
.reviews-hero {
  background: linear-gradient(135deg, #fdf6ec 0%, #f7ebd9 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.reviews-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 83, 26, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.reviews-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 1rem;
}

.reviews-hero h1 span {
  color: var(--orange);
}

.reviews-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Layout Split */
.reviews-page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

/* Dashboard Row */
.reviews-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.dashboard-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(26, 18, 8, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Score display */
.score-display-box {
  text-align: center;
  padding: 1rem 0;
}

.score-num {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.score-stars {
  font-size: 1.25rem;
  color: #f59e0b;
  margin: 0.5rem 0;
}

.score-total-count {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* Distribution Bars */
.rating-bars-container {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.rating-bar-lbl {
  min-width: 45px;
  font-weight: 600;
  color: var(--dark);
}

.rating-progress-track {
  flex-grow: 1;
  height: 8px;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.rating-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--orange);
  border-radius: 4px;
  width: 0%;
  /* Set by JS/HTML */
  transition: width 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rating-bar-percent {
  min-width: 32px;
  text-align: right;
  font-weight: 600;
}

/* Attributes Grid */
.attributes-breakdown-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.attributes-scores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.attribute-item-score {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.85rem;
  border-radius: var(--radius-sm);
}

.attr-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.attr-score-stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.attr-score-val {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.attr-stars {
  font-size: 0.75rem;
  color: #f59e0b;
}

/* Write CTA Box */
.write-cta-card {
  text-align: center;
  background: linear-gradient(135deg, var(--white) 0%, #fff7eb 100%);
  border: 1.5px dashed var(--orange);
}

.write-cta-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.write-cta-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.write-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(232, 83, 26, 0.2);
  transition: all 0.25s ease;
}

.write-review-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

/* Reviews Feed Grid Split */
.reviews-feed-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Left controls sidebar */
.reviews-sidebar-controls {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 80;
}

.sidebar-control-group h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.reviews-filter-pills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reviews-filter-pill-btn {
  background: var(--white);
  border: 1px solid rgba(26, 18, 8, 0.1);
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.reviews-filter-pill-btn:hover {
  border-color: var(--orange);
  color: var(--dark);
  background: var(--card-bg);
}

.reviews-filter-pill-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.reviews-filter-pill-btn span.badge {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(26, 18, 8, 0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 50px;
  color: var(--muted);
  transition: all 0.2s ease;
}

.reviews-filter-pill-btn.active span.badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* Sort dropdown custom reviews */
.reviews-sort-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(26, 18, 8, 0.1);
  background: var(--white);
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b5b45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  transition: all 0.2s ease;
}

.reviews-sort-select:focus {
  outline: none;
  border-color: var(--orange);
}

/* Feed Cards List */
.reviews-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-feed-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(26, 18, 8, 0.01);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: reviewFadeIn 0.4s ease;
}

@keyframes reviewFadeIn {
  from {
    transform: translateY(15px);
    opacity: 0;
  }

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

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review-author-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(26, 18, 8, 0.05);
}

.review-author-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.review-verified-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.review-date-info {
  font-size: 0.8rem;
  color: var(--muted);
}

.review-rating-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-stars-display {
  font-size: 0.95rem;
  color: #f59e0b;
}

.review-experience-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

.review-experience-tag.dine-in {
  background: rgba(232, 83, 26, 0.08);
  color: var(--orange);
}

.review-experience-tag.delivery {
  background: rgba(34, 197, 94, 0.08);
  color: #16a34a;
}

.review-text-content {
  font-size: 0.92rem;
  color: var(--dark);
  line-height: 1.6;
}

.review-ordered-dishes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-top: 1px solid rgba(232, 83, 26, 0.08);
  padding-top: 1rem;
}

.review-dish-tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  background: var(--cream);
  color: var(--muted);
  border-radius: 50px;
}

.review-helpful-action-bar {
  display: flex;
  align-items: center;
}

.helpful-thumbs-btn {
  background: transparent;
  border: 1px solid rgba(26, 18, 8, 0.1);
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.helpful-thumbs-btn:hover {
  border-color: var(--orange);
  color: var(--dark);
}

.helpful-thumbs-btn.active {
  background: rgba(232, 83, 26, 0.08);
  border-color: var(--orange);
  color: var(--orange);
  font-weight: 600;
  animation: thumbsPop 0.3s ease;
}

@keyframes thumbsPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2) rotate(-10deg);
  }

  100% {
    transform: scale(1);
  }
}

/* Write Review Overlay Modal */
.write-review-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.5);
  backdrop-filter: blur(8px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: opacity 0.3s ease;
}

.write-review-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.write-review-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 95vh;
  display: flex;
  flex-direction: column;
}

.write-review-overlay.open .write-review-card {
  transform: translateY(0) scale(1);
}

.write-review-header {
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.write-review-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--dark);
}

.write-review-close-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.write-review-close-btn:hover {
  background: rgba(232, 83, 26, 0.08);
  color: var(--orange);
}

.write-review-body {
  padding: 2rem;
  overflow-y: auto;
}

/* Interactive Star Rating Selector */
.star-selector-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}

.star-selector-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}

.interactive-stars-row {
  display: flex;
  gap: 0.5rem;
}

.star-select-icon {
  font-size: 2.2rem;
  color: rgba(26, 18, 8, 0.12);
  cursor: pointer;
  transition: all 0.15s ease;
}

.star-select-icon.hover,
.star-select-icon.selected {
  color: #f59e0b;
}

.star-select-icon:hover {
  transform: scale(1.15);
}

/* Experience Select row */
.experience-selection-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.experience-option-pill {
  flex: 1;
  background: var(--white);
  border: 1.5px solid rgba(26, 18, 8, 0.1);
  color: var(--muted);
  padding: 0.75rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.experience-option-pill:hover {
  border-color: var(--orange);
  color: var(--dark);
}

.experience-option-pill.active {
  border-color: var(--orange);
  background: rgba(232, 83, 26, 0.08);
  color: var(--orange);
  font-weight: 600;
}

/* Custom Textarea styling */
.textarea-custom {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(26, 18, 8, 0.1);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  resize: vertical;
  min-height: 100px;
  transition: all 0.3s ease;
}

.textarea-custom:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 83, 26, 0.1);
}

.character-counter-row {
  display: flex;
  justify-content: flex-end;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.3rem;
  margin-bottom: 1.5rem;
}

/* Submit review button */
.submit-review-action-btn {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.9rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 83, 26, 0.2);
  transition: all 0.2s ease;
}

.submit-review-action-btn:hover {
  background: var(--orange-light);
  transform: translateY(-1.5px);
}

/* RESPONSIVE UPGRADES FOR REVIEWS */
@media (max-width: 991px) {
  .reviews-dashboard {
    grid-template-columns: 1fr 1fr;
  }

  .write-cta-card {
    grid-column: 1 / -1;
  }

  .reviews-feed-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reviews-sidebar-controls {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .sidebar-control-group {
    flex: 1;
    min-width: 200px;
  }

  .reviews-filter-pills {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

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

  .dashboard-card {
    padding: 1.5rem;
  }

  .review-feed-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .sidebar-control-group {
    min-width: 100%;
  }

  .reviews-filter-pills {
    width: 100%;
  }

  .reviews-filter-pill-btn {
    flex-grow: 1;
  }
}
