/* Drinks section */
.drinks-section {
  padding: 60px 0;
  margin: 60px 0;
  text-align: center;
}
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.recipe-card .drink-type-tag {
  position: absolute !important;
  top: 15px !important;
  right: -30px !important;
  background: var(--soft-cream) !important;
  color: var(--cider-brown) !important;
  padding: 4px 35px !important;
  transform: rotate(45deg) !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  border: 1px solid rgba(99, 46, 10, 0.15) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  z-index: 10 !important;
  white-space: nowrap !important;
}
.recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .drinks-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}

/* Skeleton loading styles (legacy parity) */
.skeleton-card {
  opacity: 0.7;
  height: 550px;
  display: flex;
  flex-direction: column;
}
.skeleton-card .recipe-image {
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.skeleton-shimmer {
  background: linear-gradient(
    90deg,
    var(--soft-cream) 0%,
    #e8dfd6 50%,
    var(--soft-cream) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  width: 100%;
  height: 100%;
}
.skeleton-card .recipe-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skeleton-title {
  height: 24px;
  border-radius: 4px;
  width: 85%;
  animation: shimmer 2.5s infinite;
}
.skeleton-meta {
  height: 16px;
  width: 70%;
  border-radius: 4px;
  animation: shimmer 3s infinite;
}
.skeleton-description {
  height: 16px;
  border-radius: 4px;
  width: 95%;
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
