:root {
  --color-bg: #1a1a1a;
  --color-gusto-primary: #e53935;
  --color-gusto-secondary: #ffffff;
  --color-nash-primary: #10b981;
  --color-nash-secondary: #fcd34d;
  --color-text: #f3f4f6;
  --font-display: "Medula One", cursive;
  --font-hand: "Pacifico", cursive;
  --font-sans: "Space Grotesk", sans-serif;
}

/* Base Styles */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
}

.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 900 !important;
}
.pb-2 {
  padding-bottom: 0.5rem;
}

/* Utility to simulate Tailwind */
.text-center {
  text-align: center;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
.hidden {
  display: none !important;
}
.block {
  display: block;
}
.desktop-only {
  display: none !important;
}
@media (min-width: 768px) {
  .desktop-only {
    display: block !important;
  }
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.text-right {
  text-align: right;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pt-16 {
  padding-top: 4rem;
}
.border-b {
  border-bottom-width: 1px;
}

/* Custom Utilities for PHP dynamic classes */
.text-primary {
  color: var(--primary);
}
.border-primary {
  border-color: var(--primary) !important;
}

/* Theme Config */
.theme-gusto {
  --primary: var(--color-gusto-primary);
  --secondary: var(--color-gusto-secondary);
}

.theme-nash {
  --primary: var(--color-nash-primary);
  --secondary: var(--color-nash-secondary);
}

/* Chalkboard Effect */
.u-chalkboard {
  background-image: url("../assets/chalk-texture.png");
  background-color: #222;
  color: #eee;
  font-family: var(--font-hand);
}

.font-display {
  font-family: var(--font-display);
}
.font-hand {
  font-family: var(--font-hand);
}
.font-sans {
  font-family: var(--font-sans);
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  box-sizing: border-box;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-logo:hover {
  color: white;
}

.btn-switcher {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-switcher:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Links Global Reset */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
p a,
.info-section a {
  /* Text links */
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--primary);
}
p a:hover,
.info-section a:hover {
  color: var(--primary);
}

/* Status Badge */
.status-badge {
  padding: 0.25rem 0.75rem; /* Reduced padding */
  border-radius: 6px; /* Slightly smaller radius */
  font-family: var(--font-hand);
  font-size: 1.25rem; /* Reduced from 1.5rem */
  border: 2px solid; /* Thinner border */
  transform: rotate(-15deg);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 50;
  white-space: nowrap;
}
/* Navbar specific status override */
nav .status-badge {
  font-size: 0.9rem; /* Compact font */
  padding: 0.15rem 0.5rem; /* Very compact padding */
  border-width: 1px; /* Minimal border */
  transform: rotate(0deg);
  box-shadow: none;
  background: transparent;
  border-radius: 4px;
}

.status-open {
  color: #22c55e;
  border-color: #22c55e;
}
.status-closed {
  color: #ef4444;
  border-color: #ef4444;
}
.status-soon {
  color: #f97316;
  border-color: #f97316;
}

/* Matcher Fullscreen Override */
.modal-content.matcher-mode {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  border-radius: 0;
  border: none;
  padding: 0;
  background: #111;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  transform: scale(1.05);
  background-color: white;
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.5),
    rgba(26, 26, 26, 0.9)
  );
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 10;
}

/* Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background: var(--primary);
  color: var(--color-bg);
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
}
.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Info Section */
.info-section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .info-section {
    grid-template-columns: 1fr 1fr;
  }
}
.info-card {
  background: #222;
  padding: 2rem;
  border-radius: 1rem;
}

/* Text Sizes */
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-8xl {
  font-size: 6rem;
  line-height: 1;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.space-y-12 > * + * {
  margin-top: 3rem;
}

/* Map */
.map-container {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  line-height: 0;
}
.map-static-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}
/* Deprecated #map overrides handled by removal */
.map-btn-container {
  text-align: center;
  margin-top: 1rem;
}

/* News Feed Grid */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem; /* Increased spacing for mobile */
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.news-card {
  background: white;
  color: #1a1a1a;
  padding: 1rem;
  transform: rotate(-1deg);
  transition: transform 0.3s;
  text-decoration: none;
  display: block;
}
.news-card:hover {
  /* Removed scale to keep frame fixed */
  transform: rotate(0deg); 
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.news-img-wrapper {
  height: 250px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.news-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center; /* Ensure centering */
  display: block;
  filter: grayscale(10%);
  transition: filter 0.3s, transform 0.5s ease;
}

.news-card:hover .news-img {
  filter: grayscale(0%);
  transform: scale(1.25); /* Internal zoom increased */
}

/* Featured overrides */
@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-card.featured {
    grid-column: span 3;
    display: flex;
    align-items: center;
    text-align: left;
    transform: rotate(0deg); 
  }
  /* Target the wrapper for dimensions */
  .news-card.featured .news-img-wrapper {
    width: 50%;
    height: 350px;
    margin-bottom: 0;
    margin-right: 2rem;
    flex-shrink: 0;
  }
  .news-card.featured .news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1rem 0;
  }
}

/* Weather Widget */
#weather-widget {
  position: absolute;
  top: 120px;
  right: 2rem;
  z-index: 20;
  transform: rotate(3deg);
  pointer-events: none;
  text-align: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  #weather-widget {
    top: 100px;
    right: 1rem;
    transform: scale(0.8) rotate(3deg);
  }
}

/* Sticky Contact */
.sticky-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 101; /* Above Modal */
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.btn-round {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  text-decoration: none;
}
.btn-round:hover {
  transform: scale(1.1);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(5px);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: #111;
  padding: 2rem;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 1rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Hero/* Split Layout */
.split-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh; /* Mobile viewport fix */
  width: 100vw;
  overflow: hidden;
  position: fixed; /* Prevent scrolling */
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .split-container {
    flex-direction: row;
  }
}

.split-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  transition: flex 0.5s ease;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 4px solid #1a1a1a;
}
@media (min-width: 768px) {
  .split-panel {
    border-bottom: none;
    border-right: 4px solid #1a1a1a;
  }
}
/* Mobile Fix: Only enable hover expansion on larger screens */
@media (min-width: 768px) {
  .split-panel:hover {
    flex: 1.5;
  }
}

.split-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s;
  z-index: 0;
}
.split-panel:hover .split-bg {
  transform: scale(1.1);
}
.split-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.7s;
}
.split-panel:hover .split-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.split-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1rem;
}
/* Category Button */
.btn-category {
  background-color: #333;
  color: white;
  border: 1px solid #555;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-category:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
}
/* Reviews Carousel */
.reviews-wrapper {
  overflow: hidden;
  position: relative;
  padding: 4rem 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.reviews-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollReviews 40s linear infinite;
}
.reviews-track:hover {
  animation-play-state: paused;
}
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  background: rgba(255, 255, 255, 0.05); /* Glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  width: 280px; /* Reduced for mobile (two visible on standard 390px-600px width slightly scrolling) */
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
  user-select: none;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: 0.95rem; /* Slightly smaller text */
}

/* Matcher Semantic Styles */
.matcher-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1a1a1a;
  overflow: hidden;
  user-select: none;
  padding: 1rem;
  padding-top: 2rem;
  position: relative;
  box-sizing: border-box;
}

.matcher-container.result-mode {
  padding-top: 3rem;
}

.matcher-control-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
}
.matcher-control-wrapper.left {
  left: 1rem;
}
.matcher-control-wrapper.right {
  right: 1rem;
}

.matcher-btn {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 4px solid #1a1a1a;
  cursor: pointer;
  transition: transform 0.2s;
}
.matcher-btn:hover {
  transform: scale(1.1);
}
.btn-cross {
  background-color: #dc2626;
}
.btn-heart {
  background-color: #16a34a;
}

.matcher-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-family: var(--font-display);
  color: white;
  margin-bottom: 2rem;
  margin-top: 3rem;
  z-index: 10;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .matcher-title {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 3rem;
  }
}

.matcher-card {
  position: relative;
  width: 100%;
  max-width: 24rem;
  aspect-ratio: 3/4;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-color: black;
  flex-shrink: 0;
  margin: 0 auto;
  max-height: 55vh;
}
.matcher-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.matcher-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    black 0%,
    rgba(0, 0, 0, 0.5) 40%,
    transparent 100%
  );
}
/* Ensure box-sizing is handled correctly for proper centering */
.matcher-container,
.matcher-container * {
  box-sizing: border-box;
}

.matcher-card-content {
  position: absolute;
  bottom: 0;
  left: 0; /* Fix: Ensure it starts from left edge */
  width: 100%;
  padding: 1.5rem 1rem; /* Reduce side padding slightly */
  text-align: center;
  padding-bottom: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center; /* Flex center */
  justify-content: flex-end;
}
.matcher-content-centered {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.matcher-question {
  font-size: 1.5rem;
  font-family: var(--font-hand);
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.2;
  padding: 0; /* Remove horizontal padding on text itself */
  text-align: center;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .matcher-question {
    font-size: 2rem;
  }
}
.matcher-hint {
  color: #d1d5db;
  font-size: 0.875rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.spacer-12 {
  height: 3rem;
}

/* Result Podium Semantic */
.podium-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 56rem; /* 4xl */
  padding-bottom: 5rem;
}
.podium-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  max-height: 60vh;
}
.podium-col {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
  z-index: 20;
}
.order-3 {
  order: 3;
}

.podium-step {
  width: 100%;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-top-width: 4px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-color: rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  transition: all 0.3s;
}

.podium-gold {
  height: 380px; /* Increased from 300px */
  background: linear-gradient(
    to top,
    rgba(202, 138, 4, 0.3),
    rgba(234, 179, 8, 0.1)
  );
  border-color: #eab308;
  z-index: 20;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}
.podium-silver {
  height: 320px; /* Increased from 240px */
  background: linear-gradient(
    to top,
    rgba(107, 114, 128, 0.3),
    rgba(156, 163, 175, 0.1)
  );
  border-color: #9ca3af;
}
.podium-bronze {
  height: 280px; /* Increased from 200px */
  background: linear-gradient(
    to top,
    rgba(194, 65, 12, 0.3),
    rgba(234, 88, 12, 0.1)
  );
  border-color: #ea580c;
}

/* Enhanced Menu Styles */
/* Sticky Categories */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-left: -2rem; /* Counteract modal padding if any, though we removed it */
  margin-right: -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.menu-category-scroll {
  display: flex;
  overflow-x: auto;
  gap: 0.75rem;
  /* Removed padding-bottom and margin-bottom from here as it's handled by wrapper */
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: flex-start;
}
.menu-category-scroll::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .menu-category-scroll {
    justify-content: center;
  }
}

.btn-category-pill {
  white-space: nowrap;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05); /* Lighter bg */
  color: #9ca3af; /* Gray initially */
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-category-pill:hover,
.btn-category-pill.active {
  background: var(--primary);
  color: #1a1a1a;
  border-color: var(--primary);
  transform: scale(1.05);
  font-weight: bold;
}

.menu-item-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /* Mobile improvement */
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.menu-item-card:hover {
  transform: translateY(-4px);
  background: rgba(40, 40, 40, 0.7);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.menu-item-card h4 {
  font-size: 2.2rem !important; /* Increased from text-2xl (1.5rem) */
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.menu-item-price {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.25rem;
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.podium-medal {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
  position: absolute;
  top: -1.5rem;
  background: #1a1a1a;
  border-radius: 50%;
  padding: 0.5rem;
  line-height: 1;
}

.podium-name {
  font-family: var(--font-display);
  font-size: 1.35rem; /* Increased from 1.125rem */
  color: var(--primary);
  text-align: center;
  line-height: 1.25;
  padding: 0 0.25rem;
  margin-top: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .podium-name {
    font-size: 1.75rem;
  } /* Increased from 1.5rem */
}

.podium-desc {
  font-size: 0.75rem; /* Increased from 0.625rem */
  text-align: center;
  color: #d1d5db;
  font-family: var(--font-sans);
  padding: 0 0.5rem;
  margin-top: 0.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .podium-desc {
    font-size: 0.9rem;
  } /* Increased from 0.75rem */
}

.podium-price {
  font-weight: 700;
  color: white;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-top: auto;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.matcher-actions {
  width: 100%;
  padding: 1.5rem; /* p-6 */
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  bottom: 0;
  z-index: 50;
  box-shadow: 0 -25px 50px -12px rgba(0, 0, 0, 0.25);
}
.pulse-shadow {
  animation: pulseRed 2s infinite;
  width: 100%;
  padding: 1rem;
  font-size: 1.5rem;
}
@keyframes pulseRed {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(229, 57, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
  }
}
.btn-outline {
  background: transparent !important;
  border: 2px solid white !important;
  padding: 0.75rem !important;
  font-size: 1.25rem !important;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Old ref override */
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0.5;
}
.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
}
.review-stars {
  color: #fcd34d;
  font-size: 1.75rem;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}
.review-text {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.review-author {
  font-weight: 700;
  color: white;
  font-size: 1.2rem;
}
.review-source {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}
.review-source:hover {
  background: rgba(255, 255, 255, 0.2);
}

.review-source[data-source="TripAdvisor"] {
  color: #34e0a1;
} /* Tripadvisor Green */
.review-source[data-source="Google"] {
  color: #4285f4;
} /* Google Blue */
.review-source[data-source="Facebook"] {
  color: #1877f2;
} /* Facebook Blue */
