.drinks-menu {
  max-width: 900px;
  margin: 0 auto 3rem;
  background-color: var(--light-text);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.drinks-title {
  font-family: "Meow Script", cursive;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  text-align: center;
  font-weight: 700;
}

.drinks-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.drinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.drinks-section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.drinks-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.drinks-item-name {
  font-weight: 500;
}

.drinks-item-price {
  font-weight: 700;
  color: var(--primary-color);
  text-align: right;
  min-width: 100px;
}

.drinks-item-desc {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.2rem;
}

.price-notice-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--primary-color);
}

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