/* === Quacktory × Slosh Seltzer === */
/* Confectionery-pop, tri-band wallpaper, single hero object */

:root {
  --orange: #F26B1E;
  --green: #1FA968;
  --red: #FF3955;
  --yellow: #FFB800;
  --pink: #F8C8DC;
  --pink-soft: #FBCFE0;
  --ink: #0E0B08;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--green);
  color: var(--pink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  overflow-x: hidden;
  letter-spacing: 0.02em;
}
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; text-align: left; }

.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--pink);
  padding: 8px 16px;
}
.skip:focus { left: 8px; top: 8px; z-index: 99; }

/* ===== HERO: tri-band ===== */
.hero {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1.6fr 1.4fr;
  min-height: 100vh;
  overflow: hidden;
}
.band {
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.band--orange { background: var(--orange); }
.band--green  { background: var(--green); }
.band--red    { background: var(--red); }

.wordmark-wall {
  display: flex; gap: 0;
  white-space: nowrap;
  font-family: "Bowlby One SC", "Inter", sans-serif;
  font-size: clamp(64px, 11vw, 160px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--pink);
  width: max-content;
  animation: scroll-left 28s linear infinite;
}
.wordmark-wall span { padding: 0 0.05em; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sparkles */
.sparkles { position: absolute; inset: 0; pointer-events: none; }
.sp {
  position: absolute;
  font-size: 32px;
  color: var(--pink);
  opacity: 0.8;
}
.sp--1 { top: 8%; left: 6%; transform: rotate(-15deg); font-size: 38px; }
.sp--2 { top: 12%; right: 22%; font-size: 24px; color: var(--orange); }
.sp--3 { top: 38%; left: 12%; font-size: 30px; }
.sp--4 { bottom: 18%; left: 22%; font-size: 22px; opacity: 0.6; }
.sp--5 { bottom: 28%; right: 8%; font-size: 28px; color: var(--yellow); }
.sp--6 { top: 20%; left: 38%; font-size: 20px; opacity: 0.6; }
.sp--7 { bottom: 10%; right: 30%; font-size: 26px; }

/* Hero can */
.hero-can {
  position: relative;
  z-index: 5;
  margin: 0 auto;
  width: clamp(200px, 28vw, 380px);
  aspect-ratio: 1;
  background: var(--pink);
  border-radius: 50% 50% 44% 44% / 56% 56% 44% 44%;
  overflow: hidden;
  padding: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  transition: transform .3s ease;
}
.hero-can:hover { transform: scale(1.04) rotate(-3deg); }
.hero-can img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.hero-can__bubble {
  position: absolute; bottom: -22px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--ink);
  font-family: "Bowlby One SC", sans-serif;
  font-size: 14px; letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ===== SHELF (taxonomy as banded shelf) ===== */
.shelf {
  background: var(--pink-soft); color: var(--ink);
  padding: 64px 0;
}
.shelf__head {
  padding: 0 24px 36px;
}
.shelf__title {
  font-family: "Bowlby One SC", sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95; letter-spacing: 0;
  color: var(--ink);
}
.shelf__title span {
  color: var(--red); font-size: 0.7em;
}
.shelf__hint {
  margin-top: 12px;
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--ink);
  font-weight: 500;
}
.shelf__list {
  list-style: none;
  display: flex; flex-direction: column;
}
.shelf-row {
  border-bottom: 6px solid var(--pink-soft);
}
.shelf-row__btn {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(160px, 22%) 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 24px;
  transition: transform .25s, filter .25s;
}
.shelf-row__btn:hover { transform: translateX(8px); filter: brightness(1.05); }

.shelf-row--orange .shelf-row__btn { background: var(--orange); }
.shelf-row--green  .shelf-row__btn { background: var(--green); color: var(--pink); }
.shelf-row--green  .shelf-row__hint { color: var(--pink-soft); }
.shelf-row--red    .shelf-row__btn { background: var(--red); }
.shelf-row--yellow .shelf-row__btn { background: var(--yellow); }
.shelf-row--pink   .shelf-row__btn { background: var(--pink); color: var(--ink); }

.shelf-row__tag {
  font-family: "Bowlby One SC", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1; letter-spacing: 0;
}
.shelf-row__img {
  width: 90px; height: 90px;
  object-fit: contain;
  mix-blend-mode: multiply;
  background: rgba(255,255,255,0.5);
  border-radius: 12px;
  padding: 8px;
}
.shelf-row__size {
  font-family: "Bowlby One SC", sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.02em;
}
.shelf-row__hint {
  grid-column: 1 / -1;
  font-size: 12px; letter-spacing: 0.04em;
  font-weight: 500;
  margin-top: 4px;
}

/* ===== STRIP (production) ===== */
.strip {
  background: var(--ink); color: var(--pink);
  padding: 64px 24px;
}
.strip__title {
  font-family: "Bowlby One SC", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.95; letter-spacing: 0;
  margin-bottom: 32px;
}
.strip__title span { color: var(--orange); font-size: 0.7em; }
.strip__list {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 4px solid var(--pink);
}
.strip__list li {
  padding: 24px 18px;
  border-bottom: 4px solid var(--pink);
  border-right: 4px solid var(--pink);
  display: flex; gap: 16px;
  font-size: 13px; line-height: 1.5;
}
.strip__list li:nth-child(2n) { border-right: 0; }
.strip__list b {
  font-family: "Bowlby One SC", sans-serif;
  font-size: 28px;
  color: var(--yellow);
}

/* ===== B2B ===== */
.b2b {
  background: var(--pink);
  color: var(--ink);
  padding: 64px 24px;
}
.b2b__title {
  font-family: "Bowlby One SC", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.95; letter-spacing: 0;
  margin-bottom: 18px;
}
.b2b__title span { color: var(--red); font-size: 0.7em; }
.b2b__lede {
  font-size: 14px; line-height: 1.5;
  max-width: 60ch;
  margin-bottom: 32px;
  font-weight: 500;
}
.b2b__rows {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--ink);
  color: var(--pink);
  margin-bottom: 32px;
}
.b2b__rows > div {
  padding: 18px 14px;
  border-right: 4px solid var(--pink);
  display: flex; flex-direction: column; gap: 8px;
}
.b2b__rows > div:last-child { border-right: 0; }
.b2b__rows span { font-size: 10px; letter-spacing: 0.16em; color: var(--yellow); }
.b2b__rows b {
  font-family: "Bowlby One SC", sans-serif;
  font-size: 18px;
}

.b2b__form {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px; align-items: end;
}
.b2b__form label {
  display: flex; flex-direction: column;
  font-size: 10px; letter-spacing: 0.16em;
  color: var(--ink); gap: 4px;
}
.b2b__form input, .b2b__form select {
  background: var(--ink); color: var(--pink);
  border: 0;
  padding: 12px 14px;
  font: inherit; font-size: 14px;
  border-radius: 6px;
}
.b2b__form button {
  background: var(--red); color: var(--pink);
  font-family: "Bowlby One SC", sans-serif;
  font-size: 16px; letter-spacing: 0.06em;
  padding: 14px 22px;
  border-radius: 999px;
}
.b2b__form button:hover { background: var(--orange); }

/* ===== FOOTER ===== */
.foot {
  background: var(--ink);
  color: var(--pink);
  padding: 32px 24px 28px;
}
.foot__row {
  display: flex; gap: 12px; align-items: center;
  font-family: "Bowlby One SC", sans-serif;
  font-size: 14px; letter-spacing: 0.12em;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--pink);
  margin-bottom: 24px;
}
.foot__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  font-size: 12px;
}
.foot__grid p { margin-top: 4px; font-weight: 500; }
.foot__h {
  font-family: "Bowlby One SC", sans-serif !important;
  font-size: 12px !important;
  color: var(--yellow) !important;
  letter-spacing: 0.1em;
}

/* ===== MODAL ===== */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; }
.modal__overlay { position: absolute; inset: 0; background: rgba(14,11,8,0.7); backdrop-filter: blur(6px); }
.modal__card {
  position: relative; width: min(560px, 92vw);
  background: var(--pink-soft); color: var(--ink);
  border-radius: 18px; padding: 28px;
  border: 4px solid var(--ink);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.modal__close {
  position: absolute; top: 12px; right: 14px;
  font-size: 18px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: var(--pink);
}
.modal__close:hover { background: var(--red); }
.modal__eyebrow {
  font-size: 10px; letter-spacing: 0.22em;
  padding-bottom: 6px;
  color: var(--red);
}
.modal__title {
  margin-top: 8px;
  font-family: "Bowlby One SC", sans-serif;
  font-size: 48px; line-height: 1;
}
.modal__size {
  font-family: "Bowlby One SC", sans-serif;
  font-size: 20px;
  margin-top: 4px;
  color: var(--orange);
}
.modal__body {
  font-size: 13px; line-height: 1.5;
  margin-top: 16px; max-width: 50ch;
  font-weight: 500;
}
.modal__spec {
  margin-top: 16px; padding-top: 12px;
  border-top: 2px solid var(--ink);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 18px; font-size: 11px; letter-spacing: 0.1em;
}
.modal__spec dt { color: var(--red); }
.modal__spec dd { text-align: right; font-weight: 700; }
.modal__share {
  margin-top: 22px; padding-top: 14px;
  border-top: 2px solid var(--ink);
  display: flex; justify-content: flex-end;
}
.share {
  font-size: 12px; letter-spacing: 0.12em;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink); color: var(--pink);
  display: inline-flex; gap: 8px; align-items: baseline;
}
.share:hover { background: var(--red); }
.share__num, .share__cap {
  font-family: "Bowlby One SC", sans-serif;
  font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .shelf-row__btn {
    grid-template-columns: minmax(140px, auto) 1fr;
  }
  .shelf-row__size { grid-column: 1 / -1; }
  .strip__list { grid-template-columns: 1fr; }
  .strip__list li { border-right: 0; }
  .b2b__rows { grid-template-columns: 1fr 1fr; }
  .b2b__rows > div { border-right: 4px solid var(--pink); }
  .b2b__rows > div:nth-child(2n) { border-right: 0; }
  .b2b__form { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .shelf-row__btn {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .b2b__rows { grid-template-columns: 1fr; }
  .b2b__rows > div { border-right: 0; border-bottom: 4px solid var(--pink); }
  .foot__grid { grid-template-columns: 1fr; }
  .modal__title { font-size: 36px; }
}
