:root {
  --bg: #03090d;
  --bg-end: #020507;
  --panel: rgba(18, 24, 28, 0.82);
  --panel-strong: rgba(18, 24, 28, 0.94);
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f5f7f8;
  --muted: #aeb8bd;
  --gold: #f5b400;
  --gold-2: #d88a00;
  --green: #3fd873;
  --danger: #ff4e4e;
  --header-h: 94px;
  --radius: 7px;
  --text-base: 16px;
  --text-small: 14px;
  --text-meta: 12px;
  --text-micro: 11px;
  --page-pad-inline: clamp(18px, 1.95vw, 30px);
  --page-pad-block: clamp(8px, 1.36vh, 14px);
  --grid-gap: clamp(14px, 1.42vw, 22px);
  --rail-width: clamp(160px, 11.9vw, 183px);
  /* Layout contract: site-grid includes both ad rails; page-content is the usable public-page column. */
  --site-grid-max: 1620px;
  --page-content-max: 1180px;
  --product-content-max: 1150px;
  --profile-panel-max-h: 468px;
  --page-heading-max: 40px;
  --content-max: var(--site-grid-max);
  --ad-billboard-h: clamp(112px, 13.4vh, 137px);
  --ad-horizontal-h: clamp(70px, 8.2vh, 84px);
  --result-panel-h: clamp(380px, 45.75vh, 468px);
  --result-image-w: calc(var(--result-panel-h) * 270 / 468);
  --result-gap: clamp(12px, 1vw, 15px);
  --metric-strip-h: 79px;
  --related-strip-h: 160px;
  --result-side-adjust: 0px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg-end);
}

body {
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", "Aptos", "Segoe UI", sans-serif;
  font-size: var(--text-base);
  line-height: 1.5;
  background:
    radial-gradient(circle at 50% 10%, rgba(251, 179, 0, 0.08), transparent 24rem),
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.04), transparent 26rem),
    linear-gradient(180deg, #071016 0%, #03080c 48%, var(--bg-end) 100%);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 35%, black, transparent 74%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.bookmark-button {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 36px;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--amber, var(--gold));
  background: transparent;
  cursor: pointer;
  transition: color 110ms ease, transform 110ms ease, filter 110ms ease;
}

.bookmark-button::after {
  position: absolute;
  inset: 0;
  border: 1.5px solid currentColor;
  border-radius: 7px;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(0.55);
}

.bookmark-button svg {
  width: 24px;
  height: 28px;
  overflow: visible;
}

.bookmark-button path {
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transition: fill 90ms ease;
}

.bookmark-button:hover,
.bookmark-button:focus-visible {
  filter: brightness(1.16);
  transform: translateY(-1px);
  outline: 0;
}

.bookmark-button:focus-visible {
  border-radius: 4px;
  box-shadow: 0 0 0 2px rgba(255, 184, 0, 0.32);
}

.bookmark-button.is-bookmarked path {
  fill: currentColor;
}

.bookmark-button.is-pressing svg {
  animation: bookmark-press 280ms cubic-bezier(0.2, 0.8, 0.3, 1);
}

.bookmark-button.is-pressing::after {
  animation: bookmark-ring 320ms cubic-bezier(0.2, 0.8, 0.3, 1);
}

.bookmark-button:disabled {
  cursor: default;
  opacity: 0.55;
  filter: none;
  transform: none;
}

@keyframes bookmark-press {
  0% { transform: scale(1); }
  28% { transform: scale(0.76); }
  62% { transform: scale(1.14); }
  100% { transform: scale(1); }
}

@keyframes bookmark-ring {
  0% { opacity: 0; transform: scale(0.55); }
  30% { opacity: 0.58; }
  100% { opacity: 0; transform: scale(1.35); }
}

@media (prefers-reduced-motion: reduce) {
  .bookmark-button,
  .bookmark-button::after,
  .bookmark-button svg {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  height: var(--header-h);
  display: grid;
  grid-template-columns: 260px 1fr 286px 150px;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(3, 8, 11, 0.88);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 950;
  font-size: 18px;
  line-height: 0.96;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 49px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(245, 180, 0, 0.22));
}

.brand-text {
  display: block;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 62px);
  font-size: var(--text-small);
  font-weight: 900;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  color: #f4f4f4;
  padding: 12px 0;
}

.primary-nav a.is-active {
  color: var(--gold);
}

.primary-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(245, 180, 0, 0.8);
}

.search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.search input {
  width: 100%;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  color: var(--text);
  padding: 0 44px 0 14px;
  outline: none;
  font-size: var(--text-small);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.search input:focus {
  border-color: rgba(245, 180, 0, 0.6);
}

.search button {
  position: absolute;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  color: #f5f5f5;
  background: transparent;
  display: grid;
  place-items: center;
}

.search svg,
.locale svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.search-results {
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 70;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 15, 0.98);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.search-result {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  width: 100%;
  padding: 8px;
  border: 0;
  border-radius: 6px;
  color: var(--text);
  text-align: left;
  background: transparent;
}

.search-result:hover,
.search-result:focus {
  background: rgba(255,255,255,0.08);
}

.search-result img {
  width: 34px;
  height: 44px;
  object-fit: contain;
  border-radius: 3px;
}

.search-result strong,
.search-result span {
  display: block;
}

.search-result span {
  color: var(--muted);
  font-size: var(--text-meta);
}

.locale {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-left: 40px;
  border-left: 1px solid var(--line);
  font-weight: 900;
  font-size: var(--text-small);
}

.site-grid {
  display: grid;
  grid-template-columns: var(--rail-width) minmax(0, 1fr) var(--rail-width);
  gap: var(--grid-gap);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--page-pad-block) var(--page-pad-inline) 8px;
}

.content-column {
  grid-column: 2;
  min-width: 0;
}

.public-page-shell {
  width: min(var(--page-shell-max, var(--page-content-max)), calc(100% - 40px));
  margin-inline: auto;
}

.public-page-shell--product { --page-shell-max: var(--product-content-max); }

@media (min-width: 1261px) {
  .public-page-shell--product {
    width: min(
      var(--product-content-max),
      calc(100% - var(--rail-width) - var(--rail-width) - var(--grid-gap) - var(--grid-gap) - var(--page-pad-inline) - var(--page-pad-inline))
    );
  }
}

@media (min-width: 901px) and (max-width: 1260px) {
  .public-page-shell--product { width: min(994px, calc(100% - 36px)); }
}

@media (max-width: 900px) {
  .public-page-shell { width: min(var(--page-shell-max, var(--page-content-max)), calc(100% - 28px)); }
}

@media (max-width: 640px) {
  .public-page-shell { width: min(var(--page-shell-max, var(--page-content-max)), calc(100% - 20px)); }
  .public-page-shell--product { width: min(var(--page-shell-max), calc(100% - 28px)); }
}

.app-state {
  display: none;
}

.app-state.is-visible {
  display: block;
  animation: state-in 360ms ease both;
}

@keyframes state-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-map {
  position: absolute;
  inset: 0 0 auto 0;
  height: 520px;
  background: url("../01_Elements/Worldmap.png") center 7px / min(970px, 92vw) auto no-repeat;
  opacity: 0.83;
  filter: saturate(1.05);
  pointer-events: none;
}

.landing-state {
  position: relative;
  min-height: 900px;
  padding-top: 62px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  min-height: 456px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy h1 {
  margin: 34px 0 10px;
  text-transform: uppercase;
  font-weight: 950;
  line-height: 0.96;
  font-size: clamp(44px, 4.9vw, 76px);
  text-shadow: 0 5px 26px rgba(0,0,0,0.72);
}

.hero-copy h1 span {
  display: block;
  color: #fff;
  font-size: 0.76em;
}

.hero-copy h1 {
  color: var(--gold);
}

.hero-copy p {
  margin: 0 0 30px;
  color: #fff;
  font-size: 22px;
}

.discover-button {
  position: relative;
  width: min(419px, calc(100vw - 54px));
  height: 73px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: transparent;
  box-shadow: 0 14px 34px rgba(0,0,0,0.32), 0 0 30px rgba(245, 180, 0, 0.22);
  transition: transform 180ms ease, filter 180ms ease;
}

.discover-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.discover-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.discover-button.is-loading img {
  filter: brightness(0.72) saturate(0.85);
}

.button-loading {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
}

.discover-button.is-loading .button-loading {
  display: grid;
}

.button-loading::after {
  content: "";
  width: 26px;
  height: 26px;
  border: 3px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 780ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(1turn); }
}

.handwritten {
  position: relative;
  margin-top: 42px !important;
  font-family: "Comic Sans MS", "Trebuchet MS", cursive;
  font-size: 20px !important;
  transform: rotate(-1deg);
}

.handwritten::before {
  content: "↗";
  position: absolute;
  left: 48%;
  top: -48px;
  font-size: 48px;
  color: #fff;
  transform: rotate(-25deg);
}

.ad-slot {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.055), transparent 22rem),
    linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  color: #fff;
  text-transform: uppercase;
}

.ad-slot span,
.ad-slot strong {
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.ad-slot strong {
  font-size: var(--text-base);
  text-transform: none;
}

.ad-rail {
  padding-top: 0;
}

.ad-left {
  grid-column: 1;
}

.ad-right {
  grid-column: 3;
}

.ad-vertical {
  width: 100%;
  max-width: var(--rail-width);
  height: calc(100svh - var(--header-h) - (var(--page-pad-block) * 2));
  min-height: 600px;
  max-height: 884px;
  position: sticky;
  top: calc(var(--header-h) + var(--page-pad-block));
}

.ad-horizontal {
  width: min(970px, 100%);
  min-height: var(--ad-horizontal-h);
  margin: 0 auto;
}

.ad-billboard {
  min-height: var(--ad-billboard-h);
  margin: 0 0 var(--result-gap);
}

.landing-top-ad {
  margin-top: -8px;
}

.landing-bottom-ad {
  margin-top: 18px;
}

.discovery-strip {
  margin: 16px auto 0;
  padding: 14px 10px 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(0,0,0,0.28);
}

.strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 2px 11px;
}

.strip-head h2 {
  margin: 0;
  font-size: var(--text-small);
  text-transform: uppercase;
}

.text-link {
  border: 0;
  color: #fff;
  background: transparent;
  font-size: var(--text-meta);
}

.text-link span {
  color: var(--gold);
  font-size: 22px;
  vertical-align: -2px;
}

.beer-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.beer-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 9px;
  background: rgba(255,255,255,0.035);
  color: #fff;
  text-align: left;
}

.beer-card:hover {
  border-color: rgba(245,180,0,0.45);
  background: rgba(255,255,255,0.055);
}

.beer-card img {
  width: 38px;
  height: 72px;
  object-fit: contain;
  align-self: center;
  border-radius: 4px;
}

.beer-card > span {
  min-width: 0;
  align-self: center;
  overflow: hidden;
}

.beer-card strong,
.beer-card span {
  display: block;
  min-width: 0;
}

.beer-card strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--text-meta);
  line-height: 1.18;
}

.beer-card .meta,
.beer-card .country {
  color: #d8dee1;
  font-size: var(--text-micro);
  line-height: 1.32;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-rating {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-micro);
}

.mini-rating .stars {
  font-size: var(--text-meta);
}

.related-strip .mini-rating {
  line-height: 1;
  white-space: nowrap;
}

.related-strip .mini-rating .stars {
  transform: translateY(2px);
}

.related-strip .mini-rating .rating-value {
  display: inline-block;
  margin-left: 5px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.result-state {
  padding-top: 0;
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.96fr);
  gap: var(--result-gap);
  align-items: stretch;
}

.result-main {
  min-width: 0;
}

.beer-result-panel,
.metric-grid,
.brewery-about-card,
.buy-card,
.related-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(0,0,0,0.28);
}

.beer-result-panel {
  display: grid;
  grid-template-columns: var(--result-image-w) minmax(0, 1fr);
  height: var(--result-panel-h);
  overflow: hidden;
}

.beer-image-wrap {
  position: relative;
  margin: 0;
  height: var(--result-panel-h);
  aspect-ratio: 270 / 468;
  overflow: hidden;
  background: #192537;
}

.beer-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.beer-details {
  display: flex;
  flex-direction: column;
  padding: 21px 28px 18px 34px;
  overflow: hidden;
}

.result-title-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  min-width: 0;
}

.brewery-logo-wrap {
  flex: 0 0 64px;
  width: 64px;
  aspect-ratio: 1;
  margin: 0;
  padding: 5px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.035);
}

.brewery-logo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brewery-profile-header-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brewery-profile-header-link.has-logo { grid-template-columns: auto minmax(0, 1fr); }
.brewery-profile-header-link .brewery-logo-wrap,
.brewery-profile-header-link h2 { transition: border-color 140ms ease, box-shadow 140ms ease, color 140ms ease; }
.brewery-profile-header-link:is(:hover, :focus-visible) { outline: none; }
.brewery-profile-header-link:is(:hover, :focus-visible) .brewery-logo-wrap {
  border-color: rgba(245, 180, 0, .62);
  box-shadow: 0 0 0 1px rgba(245, 180, 0, .14);
}
.brewery-profile-header-link:is(:hover, :focus-visible) h2 { color: var(--gold); }

.result-title-copy {
  width: 100%;
  min-width: 0;
}

.result-beer-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  min-width: 0;
  margin-bottom: 6px;
}

.result-title-row h1 {
  max-width: 100%;
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.detail-bookmark-button {
  margin-top: -2px;
  color: var(--gold);
}

.beer-style {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.beer-distinction {
  display: grid;
  gap: 3px;
  min-width: 0;
  margin: 1px 0 0;
  padding: 1px 0 1px 11px;
  border-left: 2px solid var(--gold);
}

.beer-distinction[hidden] {
  display: none;
}

.beer-distinction > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.beer-distinction > a {
  overflow: hidden;
  color: #f1f4f5;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.beer-distinction > a:is(:hover, :focus-visible) {
  color: var(--gold);
}

.beer-distinction > a span {
  display: inline-block;
  margin-left: 3px;
  transition: transform 150ms ease;
}

.beer-distinction > a:is(:hover, :focus-visible) span {
  transform: translateX(3px);
}

.brewery-link {
  color: #fff;
  border-bottom: 1px solid rgba(245, 180, 0, 0.45);
}

.brewery-link:hover,
.brewery-link:focus {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  height: var(--metric-strip-h);
  margin: var(--result-gap) 0 0;
  padding: 12px 0;
}

.metric-grid > div {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  min-width: 0;
  padding: 4px 9px;
  border-left: 1px solid var(--line-soft);
  text-align: center;
}

.metric-grid > div:first-child {
  border-left: 0;
}

.metric-grid dt {
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  font-size: var(--text-micro);
}

.metric-grid dd {
  max-width: 100%;
  margin: 0;
  font-size: var(--text-meta);
  font-weight: 700;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.metric-grid.has-seasonal {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.public-ai-estimate {
  display: inline-block;
  flex: 0 0 auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--gold);
  background: transparent;
  font-size: 8px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: none;
  vertical-align: 0.22em;
  white-space: nowrap;
}

.public-estimate-anchor {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.public-estimate-anchor > .public-ai-estimate {
  position: absolute;
  top: 50%;
  left: calc(100% + 4px);
  translate: 0 -42%;
}

.metric-grid dd.has-ai-estimate {
  display: grid;
  place-items: center;
}

.estimate-centers-combined > .public-estimate-anchor {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.estimate-centers-combined > .public-estimate-anchor > .public-ai-estimate {
  position: static;
  translate: none;
}

.metric-tooltip {
  position: relative;
  cursor: help;
}

.metric-tooltip:focus {
  border-color: rgba(245, 180, 0, 0.58);
  box-shadow: inset 0 0 0 1px rgba(245, 180, 0, 0.16);
  outline: none;
}

.metric-grid .info-tooltip-copy {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: calc(100% + 9px);
  width: min(245px, calc(100vw - 32px));
  padding: 9px 11px;
  border: 1px solid rgba(245, 180, 0, 0.48);
  border-radius: 5px;
  color: #f5f7f8;
  background: #101a1f;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 4px);
  transition: opacity 130ms ease, transform 130ms ease, visibility 0s linear 130ms;
}

.metric-tooltip:hover .info-tooltip-copy {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 420ms;
}

.metric-tooltip:focus .info-tooltip-copy {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.metric-grid > .metric-tooltip:first-child .info-tooltip-copy {
  left: 0;
  transform: translate(0, 4px);
}

.metric-grid > .metric-tooltip:last-child .info-tooltip-copy,
.metric-grid:not(.has-seasonal) > .metric-tooltip:nth-last-child(2) .info-tooltip-copy {
  right: 0;
  left: auto;
  transform: translate(0, 4px);
}

.metric-grid > .metric-tooltip:first-child:hover .info-tooltip-copy,
.metric-grid > .metric-tooltip:first-child:focus .info-tooltip-copy,
.metric-grid > .metric-tooltip:last-child:hover .info-tooltip-copy,
.metric-grid > .metric-tooltip:last-child:focus .info-tooltip-copy,
.metric-grid:not(.has-seasonal) > .metric-tooltip:nth-last-child(2):hover .info-tooltip-copy,
.metric-grid:not(.has-seasonal) > .metric-tooltip:nth-last-child(2):focus .info-tooltip-copy {
  transform: translate(0, 0);
}

@media (max-width: 760px) {
  .metric-grid > .metric-tooltip:nth-child(odd) .info-tooltip-copy {
    left: 0;
    right: auto;
    transform: translate(0, 4px);
  }

  .metric-grid > .metric-tooltip:nth-child(even) .info-tooltip-copy {
    right: 0;
    left: auto;
    transform: translate(0, 4px);
  }

  .metric-grid > .metric-tooltip:nth-child(odd):hover .info-tooltip-copy,
  .metric-grid > .metric-tooltip:nth-child(odd):focus .info-tooltip-copy,
  .metric-grid > .metric-tooltip:nth-child(even):hover .info-tooltip-copy,
  .metric-grid > .metric-tooltip:nth-child(even):focus .info-tooltip-copy {
    transform: translate(0, 0);
  }

}

.rating-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 14px;
  font-size: var(--text-small);
}

.beer-distinction:not([hidden]) + .rating-row {
  margin-top: 12px;
}

.stars {
  color: var(--gold);
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(245, 180, 0, 0.2);
}

.rating-star {
  position: relative;
  display: inline-block;
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  margin-right: var(--star-spacing, 0);
  line-height: 1;
}

/* Beer-card spans are normally block-level text rows; star slots must stay inline. */
.beer-card .stars {
  display: inline-flex;
}

.beer-card .rating-star {
  display: inline-block;
}

.rating-star::before,
.rating-star::after {
  position: absolute;
  inset: 0;
}

.rating-star::before {
  color: currentColor;
  content: "\2606";
}

.rating-star::after {
  width: 0;
  overflow: hidden;
  color: currentColor;
  content: "\2605";
}

.rating-star.is-full::after {
  width: 100%;
}

.rating-star.is-half::after {
  width: 50%;
}

.rating-row.is-unrated .stars,
.mini-rating.is-unrated .stars {
  color: var(--muted);
  text-shadow: none;
}

.rating-row .stars {
  --star-spacing: 1px;
  font-size: 26px;
}

#resultStars {
  transform: translateY(-2px);
}

.rating-source {
  color: var(--muted);
}

.beer-description {
  color: #e8edef;
  font-size: var(--text-small);
  line-height: 1.5;
  max-width: none;
  margin: 0 0 14px;
}

@media (min-width: 901px) {
  .detail-page .beer-description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--beer-description-lines, 3);
  }
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.tag-row span {
  min-width: 0;
  padding: 7px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  color: #dbe2e5;
  text-align: center;
  text-transform: uppercase;
  font-size: var(--text-micro);
  background: rgba(255,255,255,0.035);
}

.result-side {
  display: grid;
  min-width: 0;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  height: calc(var(--result-panel-h) + var(--metric-strip-h) + (var(--result-gap) * 2) + var(--related-strip-h) + var(--result-side-adjust));
}

.brewery-about-card,
.buy-card {
  padding: 18px 20px;
}

.brewery-about-card {
  display: flex;
  min-height: 358px;
  width: 100%;
  min-width: 0;
  flex-direction: column;
}

.brewery-about-header {
  display: block;
  min-width: 0;
}

.brewery-about-identity {
  min-width: 0;
  margin-top: 12px;
}

.buy-card {
  display: flex;
  min-height: 265px;
  flex-direction: column;
}

.brewery-about-card h2,
.buy-card h2 {
  margin: 0;
  text-transform: uppercase;
}

.brewery-about-card h2 {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brewery-about-card h2.is-long {
  font-size: var(--text-small);
}

.buy-card h2 {
  margin-bottom: 13px;
  font-size: var(--text-small);
}

.buy-card.is-empty > h2 {
  display: none;
}

.brewery-facts {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  width: 100%;
  gap: 12px;
  min-width: 0;
  margin-top: 1px;
}

.brewery-fact {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: var(--text-meta);
  font-weight: 700;
  line-height: 1.2;
}

.brewery-fact > span,
.brewery-location-link > span,
.brewery-fact time {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brewery-location-link {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brewery-location-link:hover,
.brewery-location-link:focus-visible {
  color: #fff0be;
  outline: none;
}

.brewery-fact-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brewery-website-icon {
  color: var(--gold);
}

.brewery-country-flag {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 14px;
  border-radius: 1px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.brewery-founded-fact {
  justify-self: end;
}

.brewery-location-fact {
  width: max-content;
  max-width: 100%;
  justify-self: center;
}

.brewery-calendar-icon {
  flex-basis: 19px;
  width: 19px;
  height: 19px;
  color: #e7ecee;
}

.brewery-about-description {
  display: -webkit-box;
  overflow: hidden;
  margin: 22px 0 0;
  color: #e8edef;
  font-size: var(--text-small);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.detail-page .brewery-about-description {
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  overflow: visible;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.buy-card p {
  margin: 13px 0;
  color: #dce3e6;
  font-size: var(--text-small);
  line-height: 1.45;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid rgba(245,180,0,0.75);
  border-radius: 5px;
  color: #fff;
  background: rgba(245,180,0,0.04);
  text-transform: uppercase;
  font-size: var(--text-micro);
  font-weight: 900;
}

.outline-button.full {
  width: 100%;
  margin-top: auto;
  color: var(--gold);
  background: transparent;
}

.purchase-list {
  display: grid;
  gap: 0;
  margin-top: 3px;
  flex: 0 0 auto;
  align-content: start;
}

.buy-card.is-empty .purchase-list {
  flex: 1 1 auto;
  margin-top: 0;
  align-content: stretch;
}

.buy-card .purchase-empty-state {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 4px 0 8px;
  animation: detail-purchase-empty-arrive 360ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  text-align: center;
}

.buy-card .purchase-empty-illustration {
  width: clamp(132px, 16vh, 166px);
  height: clamp(132px, 16vh, 166px);
  display: block;
  margin: -3px 0 0;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.2));
}

.buy-card .purchase-empty-title {
  margin: 0;
  color: var(--gold);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -0.018em;
}

.buy-card .purchase-empty-copy {
  display: grid;
  margin: 10px 0 0;
  color: #c4c9cc;
  font-size: var(--text-meta);
  font-weight: 700;
  line-height: 1.35;
}

.buy-card .purchase-empty-action {
  min-height: calc(32px * 1.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 14px;
  color: var(--gold);
  font-size: var(--text-meta);
  font-weight: 950;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: color 150ms ease, transform 150ms ease, filter 150ms ease;
}

.buy-card .purchase-empty-action img {
  width: calc(32px * 1.07);
  height: calc(32px * 1.07);
  display: block;
  object-fit: contain;
  transition: transform 170ms ease;
}

.buy-card .purchase-empty-action:hover,
.buy-card .purchase-empty-action:focus-visible {
  color: #ffc933;
  filter: brightness(1.08);
  outline: 0;
  transform: translateY(-1px);
}

.buy-card .purchase-empty-action:focus-visible {
  border-radius: 4px;
  box-shadow: 0 0 0 2px rgba(245, 180, 0, 0.28);
}

.buy-card .purchase-empty-action:hover img,
.buy-card .purchase-empty-action:focus-visible img {
  transform: translate(2px, -2px) rotate(2deg);
}

@keyframes detail-purchase-empty-arrive {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .buy-card .purchase-empty-state,
  .buy-card .purchase-empty-action,
  .buy-card .purchase-empty-action img {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.store-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
  height: 76px;
  border-bottom: 1px solid var(--line-soft);
}

.store-row:last-child {
  border-bottom: 0;
}

.purchase-list .store-row[hidden] {
  display: none;
}

.store-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  overflow: hidden;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff2525, #9b0f0f);
}

.store-logo::before {
  content: none;
}

.store-logo.has-image {
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: transparent;
  background: rgba(247, 249, 250, 0.96);
}

.store-logo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: contain;
}

.store-name {
  display: block;
  font-weight: 900;
  font-size: var(--text-meta);
}

.deal-button {
  display: inline-grid;
  place-items: center;
  height: 34px;
  min-width: 84px;
  border: 0;
  border-radius: 5px;
  padding: 0 11px;
  color: #111;
  background: linear-gradient(180deg, #ffc526, #eba300);
  text-transform: uppercase;
  font-size: var(--text-micro);
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  letter-spacing: 0;
}

.related-strip {
  margin-top: var(--result-gap);
  height: var(--related-strip-h);
  padding: 12px 10px 10px;
}

.related-strip .beer-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.beer-card.is-compact {
  grid-template-columns: 38px minmax(0, 1fr);
  height: 90px;
  min-height: 0;
  padding: 8px 9px;
  overflow: hidden;
}

.beer-card.is-compact img {
  width: 32px;
  height: 66px;
}

.beer-card.is-compact .country {
  display: none;
}

.beer-card.is-compact .meta {
  display: -webkit-box;
  white-space: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.beer-card.is-compact .mini-rating {
  margin-top: 5px;
}

.result-bottom-ad {
  margin-top: clamp(10px, 1.36vh, 14px);
}

.site-footer {
  max-width: 1200px;
  margin: 0 auto 26px;
  display: none;
  gap: 18px;
  justify-content: center;
  color: #aeb8bd;
  font-size: 12px;
}

.site-footer span {
  color: #fff;
  font-weight: 900;
}

.legal-page {
  min-height: 100vh;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 24px;
}

.legal-content a {
  color: var(--gold);
  font-weight: 900;
}

.legal-content h1 {
  margin: 28px 0 18px;
  font-size: clamp(36px, 6vw, 64px);
  text-transform: uppercase;
}

.legal-content h2 {
  margin: 28px 0 10px;
  color: #fff;
}

.legal-content p {
  color: #d7dee2;
  line-height: 1.65;
}

.cookie-panel {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 10, 13, 0.98);
  box-shadow: 0 18px 60px rgba(0,0,0,0.44);
}

.cookie-panel p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-panel button {
  min-width: 80px;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  color: #141414;
  background: var(--gold);
  font-weight: 950;
}

@media (min-width: 1620px) {
  /* The capped shell resolves these shares to 755px and 380px. */
  .result-grid {
    grid-template-columns: minmax(0, 755fr) minmax(320px, 380fr);
  }
}

@media (min-width: 1261px) and (max-height: 940px) {
  :root {
    --header-h: 84px;
    --page-pad-block: 8px;
    --grid-gap: clamp(12px, 1.2vw, 18px);
    --ad-billboard-h: clamp(94px, 12.5vh, 118px);
    --ad-horizontal-h: clamp(58px, 8vh, 72px);
    --result-panel-h: clamp(350px, 45vh, 422px);
    --result-image-w: calc(var(--result-panel-h) * 270 / 468);
    --result-gap: 10px;
    --metric-strip-h: 68px;
    --related-strip-h: 143px;
    --result-side-adjust: 2px;
  }

  .site-header {
    grid-template-columns: 250px 1fr 286px 138px;
    padding-inline: 28px;
  }

  .site-grid {
    padding-bottom: 0;
  }

  .landing-state {
    min-height: auto;
    padding-top: clamp(16px, 3vh, 36px);
  }

  .hero-map {
    height: clamp(360px, 50vh, 480px);
    background-position: center top;
    background-size: min(910px, 84vw) auto;
  }

  .hero-copy {
    min-height: clamp(318px, 44vh, 400px);
  }

  .hero-copy h1 {
    margin-top: clamp(18px, 3vh, 32px);
    font-size: clamp(42px, 4.35vw, 64px);
  }

  .hero-copy p {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .discover-button {
    width: min(382px, calc(100vw - 54px));
    height: 67px;
  }

  .handwritten {
    margin-top: 30px !important;
    font-size: 18px !important;
  }

  .handwritten::before {
    top: -42px;
    font-size: 42px;
  }

  .landing-top-ad {
    margin-top: -2px;
  }

  .landing-bottom-ad {
    margin-top: 12px;
  }

  .discovery-strip {
    margin-top: 12px;
    padding: 11px 10px 9px;
  }

  .strip-head {
    margin-bottom: 8px;
  }

  .beer-strip {
    gap: 8px;
  }

  .beer-card {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 78px;
    padding: 7px 8px;
  }

  .beer-card img {
    width: 34px;
    height: 62px;
  }

  .beer-card.is-compact {
    grid-template-columns: 34px minmax(0, 1fr);
    height: 78px;
    padding: 7px 8px;
  }

  .beer-card.is-compact img {
    width: 30px;
    height: 58px;
  }

  .mini-rating {
    margin-top: 4px;
  }

  .beer-details {
    padding: 18px 24px 16px 27px;
  }

  .result-title-row h1 {
    font-size: 28px;
  }

  .result-title-row {
    gap: 22px;
  }

  .brewery-logo-wrap {
    flex-basis: 58px;
    width: 58px;
  }

  .beer-style {
    margin-bottom: 9px;
    font-size: 15px;
  }

  .metric-grid,
  .metric-grid.has-seasonal {
    margin-top: var(--result-gap);
    padding-block: 8px;
  }

  .metric-grid > div {
    padding: 4px 6px;
  }

  .rating-row {
    margin-bottom: 10px;
  }

  .rating-row .stars {
    font-size: 24px;
  }

  .beer-description {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 11px;
    line-height: 1.43;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .tag-row span {
    padding: 6px 10px;
  }

  .brewery-about-card,
  .buy-card {
    padding: 15px 18px;
  }

  .brewery-about-card h2 {
    margin-bottom: 16px;
  }

  .buy-card h2 {
    margin-bottom: 10px;
  }

  .brewery-about-card {
    min-height: 290px;
  }

  .brewery-facts {
    gap: 9px;
  }

  .brewery-fact {
    gap: 6px;
    font-size: var(--text-micro);
  }

  .brewery-about-description {
    margin-top: 14px;
    line-height: 1.4;
    -webkit-line-clamp: 3;
  }

  .buy-card p {
    margin: 10px 0;
    line-height: 1.35;
  }

  .store-row {
    height: 55px;
  }

  .deal-button {
    min-height: 30px;
    padding-inline: 10px;
  }
}

@media (min-width: 1261px) and (max-height: 820px) {
  .result-bottom-ad {
    display: none;
  }
}

@media (max-width: 1260px) {
  .site-header {
    grid-template-columns: auto 1fr 240px;
  }

  .locale {
    display: none;
  }

  .site-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 1030px;
    padding-inline: 18px;
  }

  .content-column {
    grid-column: 1;
  }

  .ad-rail {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1260px) {
  .detail-page .brewery-about-header {
    gap: 12px;
  }

  .detail-page .brewery-about-header .brewery-logo-wrap {
    flex-basis: 52px;
    width: 52px;
  }

  .detail-page .brewery-about-card h2 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    text-overflow: clip;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .detail-page .brewery-about-header .brewery-facts {
    grid-template-columns: minmax(0, 1fr) max-content;
    row-gap: 8px;
  }

  .detail-page .brewery-about-header .brewery-identity-fact {
    grid-column: 1;
    grid-row: 1;
  }

  .detail-page .brewery-about-header .brewery-founded-fact {
    grid-column: 2;
    grid-row: 1;
  }

  .detail-page .brewery-about-header .brewery-location-fact {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: auto;
    --result-panel-h: auto;
  }

  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    gap: 16px;
    height: auto;
    padding: 18px;
  }

  .primary-nav {
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 26px;
    padding-bottom: 2px;
  }

  .site-grid {
    padding: 14px;
  }

  .landing-state {
    padding-top: 20px;
    min-height: auto;
  }

  .hero-copy {
    min-height: 420px;
  }

  .hero-map {
    height: 430px;
    background-size: 820px auto;
  }

  .beer-strip,
  .related-strip .beer-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-grid,
  .beer-result-panel {
    grid-template-columns: 1fr;
  }

  .result-side,
  .related-strip,
  .metric-grid,
  .metric-grid.has-seasonal {
    height: auto;
  }

  .beer-image-wrap img {
    max-height: none;
  }

  .beer-result-panel,
  .beer-image-wrap {
    height: auto;
  }

  .beer-details {
    padding: 22px;
  }

  .beer-distinction > a {
    overflow: visible;
    white-space: normal;
  }

  .brewery-about-card {
    min-height: 0;
  }

  .brewery-about-description {
    display: block;
    overflow: visible;
  }

  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
  }

  .metric-grid > div {
    min-height: 72px;
  }

  .metric-grid > div:nth-child(3n + 1) {
    border-left: 0;
  }

  .metric-grid > div:nth-child(n + 4) {
    border-top: 1px solid var(--line-soft);
  }

  .site-footer {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-grid > div:nth-child(3n + 1) {
    border-left: 1px solid var(--line-soft);
  }

  .metric-grid > div:nth-child(odd) {
    border-left: 0;
  }

  .metric-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line-soft);
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 31px;
    height: 45px;
  }

  .result-title-row {
    gap: 16px;
  }

  .brewery-logo-wrap {
    flex-basis: 52px;
    width: 52px;
  }

  .brewery-about-header {
    gap: 12px;
  }

  .detail-page .brewery-about-card h2 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    text-overflow: clip;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .brewery-about-header .brewery-facts {
    grid-template-columns: minmax(0, 1fr) max-content;
    row-gap: 8px;
  }

  .brewery-about-header .brewery-identity-fact {
    grid-column: 1;
    grid-row: 1;
  }

  .brewery-about-header .brewery-founded-fact {
    grid-column: 2;
    grid-row: 1;
  }

  .brewery-about-header .brewery-location-fact {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }

  .detail-bookmark-button {
    width: 27px;
    height: 32px;
  }

  .detail-bookmark-button svg {
    width: 21px;
    height: 25px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .beer-strip,
  .related-strip .beer-strip {
    grid-template-columns: 1fr;
  }

  .beer-card {
    min-height: 88px;
  }

  .store-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    height: auto;
    min-height: 76px;
  }

  .deal-button {
    grid-column: 2 / -1;
    width: 100%;
    margin-bottom: 10px;
  }

  .cookie-panel {
    display: grid;
  }
}
