/* Visual do cardápio estilo Tagme */
.cardapio-page {
  background: #fff;
  min-height: 100%;
}

.cardapio-tabs {
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}

.cardapio-tabs .v-tab {
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  min-width: auto;
  padding: 0 16px;
}

.cardapio-tabs .v-tab--selected {
  color: #c62828;
}

.cardapio-tabs .v-tab--selected .v-tab__slider {
  background: #c62828;
  height: 3px;
}

.menu-section-title {
  color: #c62828;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.25rem;
}

.menu-subsection-title {
  color: #455a64;
  font-size: 1rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
}

.product-card {
  border: 1px solid #eceff1;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-card__body {
  flex: 1;
  padding: 1rem 1rem 1rem 1.25rem;
  min-width: 0;
}

.product-card__name {
  color: #1a237e;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.product-card__prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.35rem;
}

.product-card__price {
  color: #37474f;
  font-weight: 600;
  font-size: 0.95rem;
}

.product-card__price--old {
  text-decoration: line-through;
  color: #90a4ae;
  font-weight: 400;
}

.product-card__discount {
  background: #2e7d32;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.product-card__badge-novo {
  background: #c62828;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.product-card__desc {
  color: #78909c;
  font-size: 0.85rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.5rem;
}

.product-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.3;
  border: 1px solid transparent;
}

.product-card__badge--allergen {
  background: #ffebee;
  color: #c62828;
  border-color: #ffcdd2;
}

.product-card__badge--vegan {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #c8e6c9;
}

.product-card__badge--wine {
  background: #f3e5f5;
  color: #6a1b9a;
  border-color: #e1bee7;
}

.product-card__badge--feature {
  background: #fff3e0;
  color: #e65100;
  border-color: #ffe0b2;
}

.product-card__variations {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #546e7a;
}

.product-card__img-wrap {
  width: 120px;
  min-width: 120px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img-wrap .v-img {
  width: 100%;
  height: 100%;
  min-height: 120px;
}

.cardapio-dialog .v-card {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
}

.cardapio-dialog__body {
  flex: 1;
  overflow-y: auto;
  background: #fff;
}

@media (max-width: 600px) {
  .product-card {
    flex-direction: column;
  }

  .product-card__img-wrap {
    width: 100%;
    min-width: 100%;
    height: 140px;
  }

  .menu-section-title {
    font-size: 1.15rem;
  }
}
