@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  --background: hsl(40, 45%, 92%);
  --foreground: hsl(217, 58%, 26%);
  --card: hsl(40, 40%, 88%);
  --card-foreground: hsl(217, 58%, 26%);
  --primary: hsl(217, 58%, 26%);
  --primary-foreground: hsl(40, 45%, 96%);
  --secondary: hsl(22, 70%, 50%);
  --secondary-foreground: hsl(40, 45%, 96%);
  --muted: hsl(40, 30%, 85%);
  --muted-foreground: hsl(217, 40%, 40%);
  --border: hsl(217, 58%, 26%);
  --navy: hsl(217, 58%, 26%);
  --orange: hsl(22, 70%, 50%);
  --cream: hsl(40, 45%, 92%);
  --cream-dark: hsl(40, 40%, 85%);
  --radius: 1rem;
  --shadow-card: 0 4px 20px -4px hsla(217, 58%, 26%, 0.15);
  --shadow-nav: 0 2px 10px -2px hsla(217, 58%, 26%, 0.2);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

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

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



/* ===== Utilities ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, hsl(22, 80%, 45%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-retro {
  background-color: var(--card);
  border: 3px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ===== Animations ===== */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsla(40, 45%, 92%, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-nav);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.navbar-brand h1 {
  font-size: 1.875rem;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.navbar-logo {
    border-radius: 8px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-nav {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border: 2px solid var(--primary);
}

.btn-nav:hover {
  background-color: hsl(22, 70%, 45%);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
}

.btn-secondary:hover {
  background-color: hsl(22, 70%, 45%);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* ===== Hero Section ===== */
.hero {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}

.hero .container {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-block;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
}

.hero-title {
  font-size: 3rem;
  color: var(--primary);
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.875rem;
  color: var(--secondary);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-image {
  position: relative;
}

.hero-image .card-retro {
  overflow: hidden;
}

.hero-image img.main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-image img.main-image {
    height: 500px;
  }
}

.hero-mascot {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 8rem;
  height: 8rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  display: none;
}

@media (min-width: 768px) {
  .hero-mascot {
    display: block;
  }
}

/* ===== Menu Section ===== */
.menu-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .menu-section {
    padding: 6rem 0;
  }
}

.menu-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.menu-header-line {
  height: 4px;
  width: 4rem;
  background-color: var(--secondary);
  border-radius: 2px;
}

.menu-header-mascot {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.menu-title {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .menu-title {
    font-size: 3.75rem;
  }
}

.menu-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.menu-card {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .menu-card {
    padding: 2rem;
  }
}

.menu-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

@media (min-width: 768px) {
  .menu-card-title {
    font-size: 1.875rem;
  }
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-weight: 600;
  color: var(--primary);
}

.menu-item-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.menu-item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--secondary);
  white-space: nowrap;
}

.menu-items.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 1024px) {
  .menu-items.grid-4 {
    grid-template-columns: repeat(2, 2fr); /* 2 por fila en tablet */
  }
}

@media (max-width: 600px) {
  .menu-items.grid-4 {
    grid-template-columns: 1fr; /* 1 por fila en móvil */
  }
}


/* Promo Box */
.promo-box {
  width: max-content;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
}

.promo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .promo-content {
    flex-direction: row;
  }
}

.promo-mascot {
  width: 100px;
  height: 100px;

}

.promo-title {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .promo-title {
    font-size: 2.25rem;
  }
}

.promo-text {
  opacity: 0.8;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-brand {
    align-items: flex-start;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.footer-logo h3 {
  font-size: 1.875rem;
}

.footer-brand p {
  opacity: 0.8;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-brand p {
    text-align: left;
  }
}

.footer-section {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-section {
    text-align: left;
  }
}

.footer-section h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .footer-item {
    justify-content: flex-start;
  }
}

.footer-item svg {
  width: 18px;
  height: 18px;
  padding: 9px;
  box-sizing: content-box;
  background-color: hsla(22, 70%, 50%, 0.16);
  border-radius: 10px;
  color: var(--secondary);
  flex-shrink: 0;
}

.footer-copyright {
  border-top: 1px solid hsla(40, 45%, 96%, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* === Reviews Section === */
.reviews-section {
  width: 100%;
  margin: 0 auto 30px auto;
  overflow: hidden;
  padding: 0 0 10px 0;
}
.reviews-scroll {
  display: flex;
  gap: 24px;
  animation: scroll-reviews 22s linear infinite;
  will-change: transform;
}
.review-card {
  min-width: 260px;
  max-width: 270px;
  background: #f7f7f8;
  border-radius: 18px;
  box-shadow: none;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid #ececec;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin-bottom: 2px;
  text-align: center;
}
.review-card:hover {
  transform: scale(1.018);
  box-shadow: 0 2px 8px 0 rgba(233,69,96,0.06);
}

.review-stars {
  color: #e94560;
  font-size: 0.98em;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 1.1px;
  text-shadow: none;
  display: block;
}
.review-text {
  color: #232323;
  font-size: 1.01em;
  margin-bottom: 14px;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-family: inherit;
  font-weight: 400;
}
.review-author {
  color: #888;
  font-size: 0.92em;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-top: 8px;
  font-family: inherit;
  opacity: 0.95;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Avatar circular con inicial del autor */
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e94560;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15em;
  font-weight: 600;
  margin: 0 auto 10px auto;
  box-shadow: 0 1px 4px 0 #e9456022;
  letter-spacing: 0.02em;
}
@keyframes scroll-reviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-60%); }
}
@media (max-width: 700px) {
  .review-card { min-width: 120px; max-width: 150px; padding: 8px 2px; }
  .reviews-scroll { gap: 4px; }
  .review-avatar { width: 28px; height: 28px; font-size: 0.95em; }
}

/* ===== Navbar Links & Hamburger ===== */
.navbar .container {
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--primary);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--secondary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: hsla(40, 45%, 92%, 0.98);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-nav);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-links.open {
    max-height: 440px;
  }

  .nav-link {
    padding: 0.9rem 1.25rem;
    border-top: 1px solid hsla(217, 58%, 26%, 0.1);
  }

  .nav-links .btn {
    margin: 0.75rem 1.25rem;
  }
}

/* ===== Gallery Section ===== */
.gallery-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .gallery-section {
    padding: 5rem 0;
  }
}

.gallery {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}

.gallery-track::-webkit-scrollbar {
  height: 8px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: var(--cream-dark);
  border-radius: 4px;
}

.gallery-item {
  flex: 0 0 auto;
  width: 280px;
  margin: 0;
  scroll-snap-align: start;
  border: 3px solid var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--card);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, hsla(217, 58%, 26%, 0.85));
  color: var(--primary-foreground);
  padding: 1.5rem 0.75rem 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background-color: var(--background);
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
  z-index: 2;
}

.gallery-nav:hover {
  background-color: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.gallery-prev {
  left: -10px;
}

.gallery-next {
  right: -10px;
}

@media (max-width: 600px) {
  .gallery-item {
    width: 220px;
  }

  .gallery-item img {
    height: 170px;
  }

  .gallery-nav {
    display: none;
  }
}

/* ===== Location Section ===== */
.location-section {
  padding: 4rem 0;
  background-color: var(--cream-dark);
}

@media (min-width: 768px) {
  .location-section {
    padding: 5rem 0;
  }
}

.location-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .location-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
  }
}

.location-map {
  overflow: hidden;
  min-height: 320px;
  padding: 0;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--primary);
}

.location-detail h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.location-detail p {
  color: var(--muted-foreground);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }
}

/* ===== Toasts ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}

.toast {
  min-width: 220px;
  max-width: 90vw;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s ease;
  background-color: var(--primary);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  background-color: #2e7d32;
}

.toast-error {
  background-color: #c62828;
}

.toast-info {
  background-color: var(--primary);
}

/* ===== Refinamientos de diseño (estilo Lovable) ===== */
.btn {
  border-radius: 9999px;
  font-weight: 700;
}

.btn-secondary,
.btn-nav {
  background: linear-gradient(135deg, hsl(22, 78%, 54%) 0%, hsl(14, 80%, 44%) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 12px 22px -10px hsla(18, 75%, 40%, 0.55);
}

.btn-secondary:hover,
.btn-nav:hover {
  background: linear-gradient(135deg, hsl(22, 78%, 50%) 0%, hsl(14, 80%, 40%) 100%);
  transform: scale(1.05);
}

.btn-outline {
  background-color: var(--cream-dark);
  border: 3px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
}

/* Hero: stats en tarjetas */
.hero-stats {
  gap: 1rem;
}

.hero-stat {
  flex: 1;
  min-width: 0;
  background-color: var(--cream-dark);
  border: 3px solid var(--primary);
  border-radius: 1rem;
  padding: 1rem 0.5rem;
  box-shadow: 0 10px 24px -16px hsla(217, 58%, 26%, 0.45);
}

.hero-stat-value {
  font-size: 2rem;
  background: linear-gradient(135deg, hsl(22, 78%, 54%) 0%, hsl(14, 80%, 44%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--muted-foreground);
}

/* Hero: imagen inclinada + badge halal */
.hero-image .card-retro {
  transform: rotate(1deg);
  transition: transform 0.3s ease;
}

.hero-image .card-retro:hover {
  transform: rotate(0deg);
}

.hero-halal-badge {
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  z-index: 2;
  background: linear-gradient(135deg, hsl(22, 78%, 54%) 0%, hsl(14, 80%, 44%) 100%);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 0.5rem 1rem;
  border: 3px solid var(--primary);
  border-radius: 0.75rem;
  transform: rotate(6deg);
  box-shadow: var(--shadow-card);
}

/* Etiqueta de sección (label naranja sobre el título) */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

/* Reseñas: sección, cabecera + tarjetas rediseñadas */
.reviews-block {
  padding: 4rem 0;
  background-color: hsla(40, 42%, 84%, 0.55);
  border-top: 2px solid hsla(217, 58%, 26%, 0.1);
  border-bottom: 2px solid hsla(217, 58%, 26%, 0.1);
  overflow: hidden;
}

@media (min-width: 768px) {
  .reviews-block {
    padding: 5rem 0;
  }
}

.reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .reviews-header h2 {
    font-size: 3rem;
  }
}

.review-card {
  width: 320px;
  min-width: 320px;
  max-width: none;
  align-items: stretch;
  text-align: left;
  background: var(--cream-dark);
  border: 3px solid var(--primary);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .review-card {
    width: 380px;
    min-width: 380px;
  }
}

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

.review-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  margin: 0;
  background: linear-gradient(135deg, hsl(22, 78%, 54%) 0%, hsl(14, 80%, 44%) 100%);
  box-shadow: none;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  color: var(--primary);
}

.review-stars {
  display: block;
  margin: 0;
  color: var(--secondary);
}

.review-text {
  text-align: left;
  margin: 0;
  color: var(--muted-foreground);
}

/* Menú: icono de categoría + líneas punteadas */
.menu-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: linear-gradient(135deg, hsl(22, 78%, 54%) 0%, hsl(14, 80%, 44%) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.menu-card-icon svg {
  width: 20px;
  height: 20px;
}

.menu-item-name-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.menu-leader {
  flex: 1;
  border-bottom: 1px dashed hsla(217, 58%, 26%, 0.35);
  transform: translateY(-3px);
}

.menu-item-price {
  background: linear-gradient(135deg, hsl(22, 78%, 54%) 0%, hsl(14, 80%, 44%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Footer: badges circulares */
.footer-item svg {
  border-radius: 50%;
}
