.product-sections {
  display: grid;
  gap: 26px;
}

.product-group h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.product-group + .product-group {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-group .products {
  align-items: stretch;
}

.product.sold-out button {
  position: relative;
  overflow: hidden;
  filter: grayscale(1);
  opacity: .55;
  cursor: not-allowed;
}

.sold-out-banner {
  position: absolute;
  top: 42%;
  left: -24%;
  width: 150%;
  transform: rotate(-22deg);
  background: var(--red);
  color: white;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
  padding: 6px 0;
  box-shadow: 0 4px 12px #17211b35;
  z-index: 2;
}

.idle-dialog {
  max-width: 460px;
  border: 0;
  border-radius: 22px;
  padding: 28px;
  color: var(--ink);
  box-shadow: 0 22px 80px #17211b38;
}

.idle-dialog::backdrop {
  background: #17211b80;
}

.idle-dialog h2 {
  font-size: 2rem;
  letter-spacing: -.05em;
}

.idle-dialog strong {
  color: var(--red);
}
