/* Drink Teaser View Mode */
.drink-teaser {
  position: relative;
  background: #0F2B5B;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(180, 240, 0, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.drink-teaser:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(180, 240, 0, 0.1);
  border-color: #B4F000;
}
.drink-teaser__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.drink-teaser__link:hover {
  text-decoration: none;
}
.drink-teaser__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #0a1a38;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.drink-teaser__image img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.drink-teaser:hover .drink-teaser__image img {
  transform: scale(1.05);
}
.drink-teaser__content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.drink-teaser__brand {
  font-size: 0.75rem;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.drink-teaser__title {
  font-size: 1rem;
  font-weight: 700;
  color: #F4F6F8;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.drink-teaser__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.rating-star {
  font-size: 1rem;
}
/* Rating color classes */
.rating--bad {
  color: #dc2626;
}
.rating--low {
  color: #ea580c;
}
.rating--mid {
  color: #ca8a04;
}
.rating--good {
  color: #16a34a;
}
.rating--top {
  color: #059669;
}
.drink-teaser__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: auto;
}
.drink-teaser__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--border-radius-sm);
  background-color: rgba(180, 240, 0, 0.1);
  color: #B4F000;
  white-space: nowrap;
}
.drink-teaser__tag--more {
  background-color: #e5e7eb;
  color: #6b7280;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .drink-teaser__content {
    padding: 0.75rem;
  }

  .drink-teaser__title {
    font-size: 0.875rem;
  }
}
/* Suggest a drink card — mirrors .drink--view-mode-product-list */
.drink-suggest-card {
  position: relative;
  border: 1px solid var(--ef-border);
  border-radius: var(--border-radius);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.drink-suggest-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.drink-suggest-card-media {
  height: 260px;
  background: #0a1a38;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.drink-suggest-card-icon {
  font-size: 4rem;
  font-weight: 200;
  color: var(--ef-muted);
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}
.drink-suggest-card:hover .drink-suggest-card-icon {
  color: var(--ef-chip-active);
  transform: scale(1.1);
}
.drink-suggest-card-info {
  padding: 0 8px 8px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 4px;
}
.drink-suggest-card-label {
  font-size: 12px;
  color: var(--ef-muted);
  margin: 0;
}
.drink-suggest-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ef-text);
  margin: 0;
  line-height: 1.3;
}
.drink-suggest-card-desc {
  font-size: 12px;
  color: var(--ef-muted);
  margin: 0;
}
