.drink.foam-drink {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-content: start;
  padding: 28px 24px 24px;
  isolation: isolate;
  background: #100b0e;
}
.foam-drink .foam-copy { min-width: 0; z-index: 2; }
.foam-drink h3 { padding-right: 0; margin-top: 30px; }
.foam-drink .foam-copy p { font-size: 1rem; }
.foam-drink .foam-glass {
  position: relative;
  inset: auto;
  width: 100%;
  height: 260px;
  align-self: center;
  margin-top: 24px;
  filter: none;
  mix-blend-mode: lighten;
}
.foam-glass img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .35s ease;
}
.foam-glass img.is-active { opacity: 1; }
.foam-picker { grid-column: 1 / -1; position: relative; z-index: 2; }
.foam-picker small { color: #d1bec6; font-size: .8125rem; margin: 12px 0; }
.foam-options { display: flex; flex-wrap: wrap; gap: 8px; }
.foam-options button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #76505f;
  border-radius: 2px;
  background: #160e13;
  color: #f4e8ed;
  font: inherit;
  font-size: .875rem;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  touch-action: manipulation;
}
.foam-options button:hover { border-color: #ff4a93; background: #391123; }
.foam-options button[aria-pressed="true"] { background: #f3126b; border-color: #f3126b; color: #fff; }
.foam-options button:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.foam-picker .foam-description { margin: 14px 0 6px; min-height: 2.8em; color: #f1dce5; font-size: .875rem; max-width: none; }
.foam-picker .foam-availability { font-size: .8125rem; color: #b9a5af; max-width: none; }
@media (prefers-reduced-motion: reduce) {
  .foam-glass img, .foam-options button { transition: none; }
}
