.drinks-page {
  max-width: 1240px;
  margin: auto;
  padding: 48px 28px 64px;
  color: #eee9dc;
  font:
    16px/1.6 Arial,
    sans-serif;
  text-align: left;
}
.drinks-page h1,
.drinks-page h2,
.drinks-page h3 {
  font-family: Georgia, serif;
  font-weight: 700;
  color: #f1e9da;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.drinks-heading h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin: 16px 0;
}
.drinks-heading p {
  color: #b7b8ae;
  max-width: 560px;
}
.drinks-tools {
  margin: 30px 0;
  padding: 22px;
  border: 1px solid #6e614b;
  border-radius: 12px;
  background: #161b19;
}
.drinks-search {
  display: block;
  font-size: 13px;
  color: #d4c4a5;
}
.drinks-search input {
  display: block;
  width: 100%;
  min-height: 48px;
  margin: 8px 0 18px;
  padding: 12px 16px;
  border: 1px solid #57584c;
  background: #0b100d;
  color: #eee8d8;
  border-radius: 8px;
  font-size: 16px;
}
.drinks-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.drinks-page button {
  border: 1px solid #655b48;
  border-radius: 24px;
  background: #252a24;
  color: #e5dfd0;
  min-height: 44px;
  padding: 9px 16px;
  cursor: pointer;
  font:
    13px Arial,
    sans-serif;
}
.drinks-page button[aria-pressed="true"],
.drinks-page button:hover {
  background: #a3101a;
  border-color: #e05a60;
  color: white;
}
.drinks-page input:focus-visible,
.drinks-page button:focus-visible {
  outline: 3px solid #cbb17f;
  outline-offset: 3px;
}
.drinks-tools #drinks-result {
  margin: 16px 0 0;
  color: #a6afa1;
  font-size: 12px;
}
.drinks-section {
  margin: 32px 0;
}
.drinks-section-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.drinks-section-title h2 {
  margin: 0;
  font-size: 28px;
}
.drinks-section-title span {
  color: #aaa28f;
  font-size: 12px;
}
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.drink-card {
  padding: 22px;
  border: 1px solid #71664d6b;
  border-radius: 10px;
  background: linear-gradient(130deg, #1c201c, #101411);
  min-width: 0;
}
.drink-card h3 {
  font-size: 22px;
  margin: 0 0 18px;
  overflow-wrap: anywhere;
}
.drink-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.drink-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #ffffff14;
}
.drink-card li span {
  color: #adaf9f;
  font-size: 13px;
}
.drink-card li strong {
  color: #e8ce9c;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.drinks-page [hidden] {
  display: none !important;
}
@media (max-width: 900px) {
  .drinks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .drinks-page {
    padding: 30px 18px 40px;
  }
  .drinks-tools {
    padding: 16px;
  }
  .drinks-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .drink-card {
    padding: 18px;
  }
  .drink-card h3 {
    font-size: 21px;
  }
  .drinks-categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 4px 3px 10px;
  }
  .drinks-categories button {
    flex-shrink: 0;
  }
  .drinks-section-title h2 {
    font-size: 25px;
  }
}

.drinks-page .drink-icon {
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.drinks-categories button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease;
}
.drinks-categories button > span { overflow-wrap: anywhere; min-width: 0; }
.drinks-categories .drink-icon {
  width: 21px;
  height: 21px;
  transition: transform 220ms ease;
}
.drinks-categories button:hover .drink-icon,
.drinks-categories button[aria-pressed="true"] .drink-icon { transform: translateY(-2px) rotate(-6deg); }
.drinks-section-title .drinks-category-emblem {
  display: flex;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #87333a;
  border-radius: 14px;
  background: linear-gradient(135deg, #58151c, #211214);
  color: #fff;
}
.drinks-section-title h2 { min-width: 0; overflow-wrap: anywhere; }
.drinks-section-title > span:last-child { margin-left: auto; }
@media (max-width: 600px) {
  .drinks-section-title { flex-wrap: wrap; gap: 10px; }
  .drinks-section-title h2 { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .drinks-categories button, .drinks-categories .drink-icon { transition: none; }
  .drinks-categories button:hover .drink-icon,
  .drinks-categories button[aria-pressed="true"] .drink-icon { transform: none; }
}
