/* ============================================
   MENU PAGE - Ristorante Valastro
   Stile coerente con index.ejs e prenota.ejs
   ============================================ */

/* ===== HERO ===== */
.menu-hero {
  padding: 8rem 2rem 5rem;
  background: var(--color-valastro-blue);
  border-bottom: 4px solid var(--color-valastro-gold);
  color: var(--color-white);
}

.menu-hero .container {
  max-width: 900px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-white-60);
  text-decoration: none;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--color-white);
}

.hero-text {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-white-70);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== MENU CONTROLS ===== */
.menu-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-wrapper {
  position: relative;
  flex: 1;
  max-width: 360px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}

#menu-search {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-main);
  background: var(--color-white);
  border: 1px solid var(--color-gray-300);
  border-radius: 0;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#menu-search::placeholder {
  color: var(--color-text-muted);
}

#menu-search:focus {
  border-color: var(--color-valastro-blue);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.filter-select {
  padding: 1rem 2.5rem 1rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-main);
  background: var(--color-white);
  border: 1px solid var(--color-gray-300);
  border-radius: 0;
  outline: none;
  cursor: pointer;
  appearance: none;
  /* background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230e2841' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); */
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333333' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.filter-select:hover,
.filter-select:focus {
  border-color: var(--color-valastro-blue);
}

/* ===== BTN FILTER ===== */
.btn-filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-valastro-blue);
  border: 1px solid var(--color-valastro-blue);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-filter:hover {
  background: transparent;
  color: var(--color-valastro-blue);
}

.btn-filter svg {
  flex-shrink: 0;
}

/* ===== FILTER MODAL ===== */
.filter-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  animation: fadeIn 0.3s ease-out;
}

.filter-modal.active {
  display: block;
}

.filter-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.filter-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  max-height: 85vh;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Filter Modal Header */
.filter-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.filter-modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-valastro-gold);
  margin: 0;
}

.btn-close-modal {
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close-modal:hover {
  color: var(--color-text-main);
}

/* Filter Modal Body */
.filter-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.filter-section {
  margin-bottom: 2rem;
}

.filter-section:last-child {
  margin-bottom: 0;
}

.filter-section-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-valastro-blue);
  margin: 0 0 0.5rem 0;
}

.filter-section-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem 0;
}

/* Price Sort Buttons */
.price-sort-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-sort {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-main);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-sort:hover {
  border-color: var(--color-valastro-blue);
  color: var(--color-valastro-blue);
}

.btn-sort.active {
  background: var(--color-valastro-blue);
  border-color: var(--color-valastro-blue);
  color: var(--color-white);
}

.btn-sort svg {
  flex-shrink: 0;
}

/* Filter Checkboxes */
.filter-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.filter-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.filter-checkbox input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--color-valastro-gold);
  border-color: var(--color-valastro-gold);
}

.filter-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
  opacity: 1;
}

.filter-checkbox:hover .checkbox-custom {
  border-color: var(--color-valastro-gold);
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--color-text-main);
}

/* Filter Modal Footer */
.filter-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.btn-reset-filters {
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reset-filters:hover {
  color: var(--color-text-main);
  border-color: var(--color-text-main);
}

.btn-apply-filters {
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-valastro-gold);
  border: 1px solid var(--color-valastro-gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-apply-filters:hover {
  background: transparent;
  color: var(--color-valastro-gold);
}

/* ===== SECTIONS NAV ===== */
.sections-nav-section {
  padding: 2rem 0;
  background: var(--color-bg-main);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* Offset per scroll alle sezioni (compensa navbar sticky) */
.menu-section {
  scroll-margin-top: 120px;
}

.sections-nav {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.section-tab {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-tab:hover {
  color: var(--color-valastro-blue);
}

.section-tab.active {
  color: var(--color-valastro-blue);
  border-color: var(--color-valastro-blue);
  background: rgba(14, 40, 65, 0.05);
}

/* ===== MENU CONTENT ===== */
.menu-content-section {
  padding: 5rem 2rem 8rem;
  background: var(--color-bg-main);
}

.menu-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== MENU SECTION ===== */
.menu-section {
  margin-bottom: 5rem;
}

.menu-section:last-child {
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--color-valastro-blue);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.section-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== DISH LIST ===== */
.dishes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ===== DISH ITEM ===== */
.dish-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s ease;
}

.dish-item.with-image {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}

.dish-item:first-child {
  padding-top: 0;
}

.dish-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dish-item:hover {
  background: var(--color-bg-alt);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Dish Image */
.dish-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-alt);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.dish-image-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dish-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dish-image-container:hover .dish-image {
  transform: scale(1.05);
}

.dish-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 40, 65, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dish-image-container:hover .dish-image-overlay {
  opacity: 1;
}

.dish-image-overlay svg {
  color: white;
}

.dish-content {
  flex: 1;
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.dish-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-main);
  line-height: 1.3;
}

.dish-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-valastro-blue);
  white-space: nowrap;
  flex-shrink: 0;
}

.dish-description {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.dish-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dish-tag {
  padding: 0.25rem 0.6rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0;
  background: var(--color-gray-100);
  color: var(--color-text-muted);
  border: 1px solid var(--color-gray-200);
}

.dish-tag.vegetariano {
  background: rgba(76, 175, 80, 0.1);
  color: #2e7d32;
  border-color: rgba(76, 175, 80, 0.2);
}

.dish-tag.vegano {
  background: rgba(129, 199, 132, 0.1);
  color: #388e3c;
  border-color: rgba(129, 199, 132, 0.2);
}

.dish-tag.senza-glutine {
  background: rgba(255, 193, 7, 0.1);
  color: #f57f17;
  border-color: rgba(255, 193, 7, 0.2);
}

.dish-tag.senza-lattosio {
  background: rgba(33, 150, 243, 0.1);
  color: #1565c0;
  border-color: rgba(33, 150, 243, 0.2);
}

.dish-tag.piccante {
  background: rgba(244, 67, 54, 0.1);
  color: #c62828;
  border-color: rgba(244, 67, 54, 0.2);
}

/* ===== LOADING STATE ===== */
.menu-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  gap: 1.5rem;
}

.loading-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-gray-300);
  border-top-color: var(--color-valastro-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.menu-loading p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.menu-loading.hidden {
  display: none;
}

/* ===== EMPTY STATE ===== */
.menu-empty {
  text-align: center;
  padding: 6rem 2rem;
}

.menu-empty h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-valastro-blue);
  margin-bottom: 0.75rem;
}

.menu-empty p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .menu-hero {
    padding: 6rem 1.5rem 4rem;
  }
  
  .hero-text {
    margin-bottom: 3rem;
  }
  
  .menu-controls {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .search-wrapper {
    width: 100%;
    max-width: none;
  }
  
  .filter-select {
    width: 100%;
  }
  
  .btn-filter {
    width: 100%;
    justify-content: center;
  }
  
  .filter-modal-content {
    width: 95%;
    max-height: 90vh;
  }
  
  .filter-modal-header {
    padding: 1.25rem 1.5rem;
  }
  
  .filter-modal-header h3 {
    font-size: 1.25rem;
  }
  
  .filter-modal-body {
    padding: 1.5rem;
  }
  
  .filter-modal-footer {
    padding: 1.25rem 1.5rem;
    flex-direction: column;
  }
  
  .btn-reset-filters,
  .btn-apply-filters {
    width: 100%;
  }
  
  .price-sort-buttons {
    grid-template-columns: 1fr;
  }
  
  .filter-checkboxes {
    grid-template-columns: 1fr;
  }
  
  .sections-nav-section {
    padding: 1.5rem 0;
  }
  
  .sections-nav {
    gap: 0.25rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 1rem;
    margin: 0 -1rem;
    -webkit-overflow-scrolling: touch;
  }
  
  .section-tab {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    flex-shrink: 0;
  }
  
  .menu-content-section {
    padding: 4rem 1.5rem 6rem;
  }
  
  .menu-section {
    margin-bottom: 4rem;
  }
  
  .dish-item {
    padding: 1.5rem 0;
  }
  
  .dish-item:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .dish-header {
    flex-wrap: wrap;
  }
  
  .dish-name {
    font-size: 1.15rem;
    flex-basis: 70%;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .dish-name {
    font-size: 1.1rem;
    flex-basis: 100%;
  }
  
  .dish-price {
    font-size: 0.95rem;
  }
  
  .dish-item.with-image {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .dish-image-container {
    max-width: 100%;
  }
}

/* ============================================
   IMAGE LIGHTBOX MODAL
   ============================================ */

.image-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(90vh - 80px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-title {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-align: center;
  padding: 0 2rem;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .lightbox-image {
    max-height: calc(95vh - 60px);
  }
  
  .lightbox-title {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .lightbox-close {
    top: -2.5rem;
    width: 36px;
    height: 36px;
  }
}
/* ========================================
   TASTING MENUS (MENU DEGUSTAZIONE)
   ======================================== */

.tasting-menus-section {
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--color-border);
}

.tasting-menus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tasting-menu-card {
  background: var(--color-bg-alt);
  border: 2px solid var(--color-valastro-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}

.tasting-menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(197, 160, 89, 0.2);
}

.tasting-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.tasting-menu-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-valastro-gold);
  margin: 0;
  flex: 1;
}

.tasting-menu-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-valastro-gold);
  white-space: nowrap;
  margin-left: 1rem;
}

.tasting-menu-description {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.tasting-menu-courses {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tasting-course {
  padding-left: 1rem;
  border-left: 3px solid var(--color-valastro-gold);
}

.tasting-course-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-text-main);
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.tasting-course-options {
  margin-top: 0.5rem;
}

.tasting-options-intro {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0 0 0.5rem 0;
  font-style: italic;
}

.tasting-options-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tasting-option-item {
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-main);
}

.tasting-option-item::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: var(--color-valastro-gold);
  font-weight: bold;
}

.tasting-option-name {
  font-weight: 500;
  color: var(--color-text-main);
}

.tasting-option-desc {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-top: 0.25rem;
  padding-left: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .tasting-menus-grid {
    grid-template-columns: 1fr;
  }
  
  .tasting-menu-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .tasting-menu-price {
    margin-left: 0;
  }
  
  .tasting-menu-title {
    font-size: 1.5rem;
  }
}
