@font-face {
  font-family: "Saira Semi Condensed";
  src: url("assets/saira-semi-condensed-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("assets/zen-kaku-gothic-new-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("assets/zen-kaku-gothic-new-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --paper: #f4f6f2;
  --ink: #101210;
  --metal: #c9ceca;
  --accent: #b8ff3d;
  --flavor: #101210;
  --flavor-pale: #e8eee9;
  --shell-width: 430px;
  --header-height: 58px;
  --buy-bar-space: calc(82px + env(safe-area-inset-bottom));
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--metal);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--metal);
  line-height: 1.5;
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.site-shell {
  position: relative;
  width: min(100%, var(--shell-width));
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 36px rgb(16 18 16 / 16%);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 16px;
  border-bottom: 1px solid rgb(16 18 16 / 14%);
  background: rgb(244 246 242 / 94%);
  backdrop-filter: blur(12px);
}

.site-header__brand {
  width: 72px;
}

.site-header__brand img {
  width: 100%;
  height: auto;
}

.site-header__age {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.site-header .cart-trigger {
  justify-self: end;
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(16 18 16 / 24%);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}

.icon-button:active {
  transform: scale(0.95);
}

.icon-button--accent {
  border-color: var(--accent);
  background: var(--accent);
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.button svg {
  width: 17px;
  height: 17px;
}

.button--solid {
  background: var(--ink);
  color: #fff;
}

.button--line {
  background: transparent;
}

.button--accent {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.button:active {
  transform: translateY(1px);
}

/* Product hero */
.hero {
  position: relative;
  height: 690px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.hero__line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgb(16 18 16 / 10%);
}

.hero__line--left {
  left: 24px;
}

.hero__line--right {
  right: 24px;
}

.hero__eyebrow {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.hero__title {
  position: absolute;
  z-index: 1;
  top: 46px;
  right: 0;
  left: 0;
  margin: 0;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 84px;
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0;
  text-align: center;
}

.hero__title span {
  display: block;
}

.hero__title span:last-child {
  color: transparent;
  font-size: 102px;
  -webkit-text-stroke: 1px rgb(16 18 16 / 35%);
}

.hero__fruit {
  position: absolute;
  z-index: 0;
  top: 206px;
  left: -25px;
  width: 205px;
  height: 205px;
  margin: 0;
  opacity: 0.92;
  transform: rotate(-8deg);
}

.hero__fruit::after {
  position: absolute;
  right: 18px;
  bottom: 2px;
  width: 84px;
  height: 7px;
  border-radius: 50%;
  background: rgb(16 18 16 / 16%);
  content: "";
  filter: blur(8px);
}

.hero__fruit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-visual {
  position: relative;
  isolation: isolate;
}

.device-visual__photo,
.device-visual__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.device-visual__photo {
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(16px 20px 20px rgb(16 18 16 / 23%));
}

.device-visual__wash {
  z-index: 2;
  background: var(--flavor);
  mask: url("assets/hd/chill-device-hd.png") center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.52;
  pointer-events: none;
}

.device-visual--hero {
  position: absolute;
  z-index: 2;
  top: 154px;
  left: 50%;
  width: 106px;
  height: 345px;
  transform: translateX(-20%) rotate(7deg);
  animation: device-float 4.8s ease-in-out infinite;
}

.hero__copy {
  position: absolute;
  z-index: 4;
  top: 505px;
  right: 24px;
  left: 24px;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
}

.hero__copy p {
  margin: 0;
  font-size: 13px;
}

.hero__copy .hero__tagline {
  margin-bottom: 2px;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.hero__purchase {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 52px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.hero__purchase > div {
  min-width: 0;
}

.hero__flavor {
  display: block;
  margin-bottom: 1px;
  overflow: hidden;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero__purchase strong {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.hero__purchase small {
  display: block;
  margin-top: 3px;
  font-size: 9px;
}

.hero__purchase .button {
  flex: 0 0 156px;
}

.hero__notice {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 18px;
  left: 24px;
  margin: 0;
  color: rgb(16 18 16 / 62%);
  font-size: 9px;
}

@keyframes device-float {
  0%,
  100% {
    transform: translateX(-20%) rotate(7deg) translateY(0);
  }
  50% {
    transform: translateX(-20%) rotate(5deg) translateY(-8px);
  }
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 142px;
  background: var(--ink);
  color: #fff;
}

.spec-strip__item {
  display: flex;
  min-width: 0;
  padding: 19px 8px 16px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgb(255 255 255 / 16%);
  text-align: center;
}

.spec-strip__item:last-child {
  border-right: 0;
}

.spec-strip__item svg {
  width: 18px;
  height: 18px;
  margin-bottom: 13px;
  color: var(--accent);
  stroke-width: 1.6;
}

.spec-strip__item strong {
  max-width: 100%;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 17px;
  line-height: 1.1;
}

.spec-strip__item span {
  margin-top: 5px;
  color: rgb(255 255 255 / 58%);
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 9px;
}

/* Flavor selector */
.flavors {
  padding: 68px 0 72px;
  background: #fff;
}

.section-heading {
  display: flex;
  padding: 0 24px 28px;
  align-items: end;
  justify-content: space-between;
}

.section-heading span {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.section-heading h2 {
  margin: 12px 0 0;
  font-size: 30px;
  line-height: 1.28;
}

.section-heading__mark {
  color: var(--metal);
  font-size: 60px !important;
  line-height: 0.75;
}

.flavor-stage {
  position: relative;
  height: 455px;
  margin: 0 12px;
  overflow: hidden;
  border: 1px solid rgb(16 18 16 / 16%);
  border-radius: 8px;
  background: var(--flavor-pale);
  transition: background-color 360ms ease;
  touch-action: pan-y;
}

.flavor-stage__index {
  position: absolute;
  top: -18px;
  right: 8px;
  color: rgb(16 18 16 / 10%);
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 122px;
  font-weight: 700;
  line-height: 1;
}

.flavor-stage__fruit {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 164px;
  height: 164px;
  object-fit: cover;
  transform: rotate(-6deg);
  transition: opacity 180ms ease, transform 360ms ease;
}

.device-visual--stage {
  position: absolute;
  z-index: 2;
  top: 50px;
  left: 50%;
  width: 82px;
  height: 314px;
  transform: translateX(14%) rotate(5deg);
  transition: transform 360ms ease;
}

.device-visual--stage .device-visual__photo,
.device-visual--stage .device-visual__wash {
  animation: stage-device-float 4.8s ease-in-out infinite;
}

@keyframes stage-device-float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

.flavor-stage.is-changing .flavor-stage__fruit {
  opacity: 0.35;
  transform: rotate(2deg) scale(0.92);
}

.flavor-stage.is-changing .device-visual--stage {
  transform: translateX(14%) rotate(1deg) translateY(-6px);
}

.flavor-stage__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 44px;
  height: 44px;
  border-color: rgb(16 18 16 / 20%);
  background: rgb(244 246 242 / 78%);
}

.flavor-stage__arrow--left {
  left: 10px;
}

.flavor-stage__arrow--right {
  right: 10px;
}

.flavor-stage__label {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 21px;
  left: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-top: 13px;
  border-top: 1px solid var(--ink);
}

.flavor-stage__label span {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.flavor-stage__label strong {
  font-size: 14px;
}

.flavor-stage__label small {
  grid-column: 1 / -1;
  margin-top: 3px;
  color: rgb(16 18 16 / 60%);
  font-size: 11px;
}

.flavor-swatches {
  display: flex;
  padding: 18px 24px 14px;
  justify-content: center;
  gap: 10px;
}

.flavor-swatch {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px rgb(16 18 16 / 18%);
}

.flavor-swatch.is-active {
  box-shadow: 0 0 0 2px var(--ink);
  transform: scale(1.1);
}

.flavor-rail {
  display: flex;
  padding: 4px 24px 18px;
  gap: 17px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.flavor-rail::-webkit-scrollbar {
  display: none;
}

.flavor-card {
  display: grid;
  flex: 0 0 72px;
  min-height: 105px;
  padding: 0 0 9px;
  place-items: center;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  scroll-snap-align: center;
  cursor: pointer;
}

.flavor-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 7px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.flavor-card span {
  width: 72px;
  overflow: hidden;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flavor-card[aria-selected="true"] {
  border-bottom-color: var(--ink);
}

.flavor-card[aria-selected="true"] img {
  transform: translateY(-3px);
}

.flavors__buy {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 20px 24px 0;
  align-items: end;
  gap: 18px;
  border-top: 1px solid rgb(16 18 16 / 16%);
}

.flavors__buy > div:first-child span,
.flavors__price span {
  display: block;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 9px;
}

.flavors__buy > div:first-child strong {
  font-size: 15px;
}

.flavors__price {
  text-align: right;
}

.flavors__price strong {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 25px;
  line-height: 1;
}

.flavors__buy .button {
  grid-column: 1 / -1;
  width: 100%;
}

/* Engineering band */
.engineering {
  padding: 68px 24px 72px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.engineering__intro > span,
.warning > span {
  color: var(--accent);
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.engineering__intro h2,
.warning h2 {
  margin: 14px 0 18px;
  font-size: 31px;
  line-height: 1.28;
}

.engineering__intro p {
  max-width: 330px;
  margin: 0;
  color: rgb(255 255 255 / 64%);
  font-size: 13px;
}

.engineering__visual {
  position: relative;
  height: 430px;
  margin: 32px -24px 14px;
  overflow: hidden;
  border-top: 1px solid rgb(255 255 255 / 20%);
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.engineering__word {
  position: absolute;
  top: 30px;
  right: -8px;
  color: transparent;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 118px;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1px rgb(255 255 255 / 18%);
}

.device-visual--engineering {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 96px;
  height: 370px;
  transform: translateX(-50%) rotate(-12deg);
  animation: engineering-device-float 4.8s ease-in-out infinite;
}

@keyframes engineering-device-float {
  0%,
  100% {
    transform: translateX(-50%) rotate(-12deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(-10deg) translateY(-8px);
  }
}

.device-visual--engineering .device-visual__photo {
  filter: drop-shadow(22px 24px 28px rgb(0 0 0 / 60%));
}

.engineering__callout {
  position: absolute;
  z-index: 3;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--accent);
  color: rgb(255 255 255 / 78%);
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 10px;
}

.engineering__callout--top {
  top: 160px;
  left: 24px;
}

.engineering__callout--bottom {
  right: 24px;
  bottom: 88px;
}

.engineering__facts {
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.engineering__facts > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.engineering__facts span {
  color: var(--accent);
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 11px;
}

.engineering__facts strong {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 17px;
}

.engineering__facts p {
  grid-column: 2;
  margin: 5px 0 0;
  color: rgb(255 255 255 / 52%);
  font-size: 11px;
}

.warning {
  padding: 62px 24px 66px;
  border-top: 7px solid var(--accent);
  background: #d9ded9;
}

.warning__icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 24px;
}

.warning > span {
  color: var(--ink);
}

.warning p {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
}

.warning__demo {
  margin-top: 20px !important;
  padding-top: 18px;
  border-top: 1px solid rgb(16 18 16 / 24%);
  font-weight: 700;
}

.site-footer {
  display: flex;
  min-height: 195px;
  padding: 40px 24px calc(40px + var(--buy-bar-space));
  align-items: center;
  flex-direction: column;
  background: var(--paper);
  text-align: center;
}

.site-footer img {
  width: 96px;
  margin-bottom: 15px;
}

.site-footer p {
  margin: 0 0 11px;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.site-footer small {
  color: rgb(16 18 16 / 48%);
  font-size: 9px;
}

/* Fixed purchase controls */
.buy-bar {
  position: fixed;
  z-index: 35;
  right: 0;
  bottom: 0;
  left: 50%;
  display: grid;
  width: min(100%, var(--shell-width));
  min-height: 72px;
  padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
  grid-template-columns: minmax(0, 1fr) auto 48px;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgb(16 18 16 / 18%);
  background: rgb(244 246 242 / 96%);
  box-shadow: 0 -8px 24px rgb(16 18 16 / 9%);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  visibility: hidden;
}

.buy-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.buy-bar__selection {
  display: flex;
  min-width: 0;
  min-height: 44px;
  padding: 0;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.buy-bar__copy {
  min-width: 0;
}

.buy-bar__dot {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--flavor);
  box-shadow: 0 0 0 1px rgb(16 18 16 / 22%);
}

.buy-bar__selection small,
.buy-bar__selection strong {
  display: block;
}

.buy-bar__switch {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  color: rgb(16 18 16 / 55%);
}

.buy-bar__selection small {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 8px;
}

.buy-bar__selection strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.buy-bar__price {
  text-align: right;
}

.buy-bar__price strong,
.buy-bar__price small {
  display: block;
}

.buy-bar__price strong {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.buy-bar__price small {
  font-size: 8px;
}

.buy-bar__plus {
  position: absolute;
  top: 6px;
  right: 5px;
  width: 11px !important;
  height: 11px !important;
  padding: 1px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
}

/* Age gate and transition */
.age-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 0;
  place-items: center;
  background: var(--ink);
}

.age-gate__panel {
  display: flex;
  width: min(100%, var(--shell-width));
  min-height: 100svh;
  padding: 24px 24px max(28px, env(safe-area-inset-bottom));
  align-items: stretch;
  flex-direction: column;
  background: var(--paper);
}

.age-gate__topline {
  display: flex;
  justify-content: space-between;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.age-gate__logo {
  width: 90px;
  margin-top: 58px;
}

.age-gate__number {
  margin-top: auto;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 130px;
  font-weight: 700;
  line-height: 0.85;
}

.age-gate h1 {
  margin: 30px 0 8px;
  font-size: 29px;
  line-height: 1.25;
}

.age-gate p {
  margin: 0;
  color: rgb(16 18 16 / 62%);
  font-size: 13px;
}

.age-gate__actions {
  display: grid;
  margin-top: 28px;
  gap: 10px;
}

.age-gate__actions .button {
  width: 100%;
}

.age-gate small {
  margin-top: 16px;
  color: rgb(16 18 16 / 46%);
  font-size: 9px;
}

.age-gate__panel.is-denied .age-gate__number {
  color: #c73535;
}

.flavor-sweep {
  position: fixed;
  z-index: 90;
  top: 0;
  bottom: 0;
  left: 50%;
  display: flex;
  width: min(100%, var(--shell-width));
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
}

.flavor-sweep span {
  width: 20%;
  background: var(--sweep-color);
  transform: translateY(102%);
}

body.intro-running .flavor-sweep {
  visibility: visible;
}

body.intro-running .flavor-sweep span {
  animation: sweep-up 850ms cubic-bezier(0.72, 0, 0.18, 1) both;
}

body.intro-running .flavor-sweep span:nth-child(2) {
  animation-delay: 60ms;
}

body.intro-running .flavor-sweep span:nth-child(3) {
  animation-delay: 120ms;
}

body.intro-running .flavor-sweep span:nth-child(4) {
  animation-delay: 180ms;
}

body.intro-running .flavor-sweep span:nth-child(5) {
  animation-delay: 240ms;
}

@keyframes sweep-up {
  0% {
    transform: translateY(102%);
  }
  45% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-102%);
  }
}

/* Shopping drawer */
.drawer-backdrop {
  position: fixed;
  z-index: 60;
  inset: 0;
  background: rgb(16 18 16 / 54%);
  backdrop-filter: blur(3px);
}

.cart-drawer {
  position: fixed;
  z-index: 70;
  bottom: 0;
  left: 50%;
  display: flex;
  width: min(100%, var(--shell-width));
  max-height: 82svh;
  padding: 10px 20px max(18px, env(safe-area-inset-bottom));
  flex-direction: column;
  border-radius: 8px 8px 0 0;
  background: var(--paper);
  box-shadow: 0 -24px 60px rgb(0 0 0 / 24%);
  transform: translateX(-50%);
}

.cart-drawer__handle {
  width: 42px;
  height: 3px;
  margin: 0 auto 13px;
  border-radius: 2px;
  background: rgb(16 18 16 / 28%);
}

.cart-drawer__header {
  display: flex;
  padding-bottom: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(16 18 16 / 18%);
}

.cart-drawer__header span {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 9px;
}

.cart-drawer__header h2 {
  margin: 3px 0 0;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 25px;
  line-height: 1;
}

.cart-drawer__items {
  min-height: 120px;
  padding: 4px 0;
  overflow-y: auto;
}

.cart-empty {
  display: grid;
  min-height: 160px;
  align-content: center;
  justify-items: center;
  gap: 15px;
  color: rgb(16 18 16 / 48%);
  font-size: 12px;
  text-align: center;
}

.cart-empty p {
  margin: 0;
}

.cart-empty__action {
  min-height: 44px;
  padding-inline: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  padding: 14px 0;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgb(16 18 16 / 12%);
}

.cart-item__visual {
  width: 38px;
  height: 58px;
  border-radius: 8px;
  background: var(--item-color);
}

.cart-item__copy {
  min-width: 0;
}

.cart-item__copy span,
.cart-item__copy strong {
  display: block;
}

.cart-item__copy span {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 9px;
}

.cart-item__copy strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item__copy small {
  color: rgb(16 18 16 / 52%);
  font-size: 10px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 44px 28px 44px;
  align-items: center;
}

.quantity-control button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(16 18 16 / 20%);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.quantity-control button svg {
  width: 13px;
  height: 13px;
}

.quantity-control span {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 13px;
  text-align: center;
}

.cart-drawer__footer {
  padding-top: 14px;
  border-top: 1px solid rgb(16 18 16 / 18%);
}

.cart-drawer__clear {
  display: inline-flex;
  min-height: 44px;
  margin: -8px 0;
  padding: 0 4px;
  align-items: center;
  border: 0;
  background: transparent;
  color: rgb(16 18 16 / 52%);
  font-size: 10px;
  text-decoration: underline;
  cursor: pointer;
}

.cart-drawer__total {
  display: flex;
  margin: 12px 0;
  align-items: end;
  justify-content: space-between;
}

.cart-drawer__total span {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 11px;
}

.cart-drawer__total strong {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.cart-drawer__footer .button {
  width: 100%;
}

.cart-drawer__footer > small {
  display: block;
  margin-top: 9px;
  color: rgb(16 18 16 / 52%);
  font-size: 9px;
  text-align: center;
}

.cart-drawer__footer .button:disabled {
  border-color: var(--metal);
  background: var(--metal);
  color: rgb(16 18 16 / 45%);
  cursor: not-allowed;
}

.concept-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
  background: rgb(16 18 16 / 78%);
}

.concept-modal__panel {
  width: min(100%, 382px);
  max-height: 88svh;
  padding: 28px 24px;
  overflow-y: auto;
  border-radius: 8px;
  background: var(--paper);
}

.concept-modal__mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
}

.concept-modal__panel > span {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.concept-modal h2 {
  margin: 8px 0 20px;
  font-size: 28px;
  line-height: 1.3;
}

.concept-modal__summary {
  padding: 13px 0;
  border-top: 1px solid rgb(16 18 16 / 18%);
  border-bottom: 1px solid rgb(16 18 16 / 18%);
}

.concept-summary__row,
.concept-summary__total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
}

.concept-summary__row + .concept-summary__row {
  margin-top: 7px;
}

.concept-summary__total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgb(16 18 16 / 12%);
  font-weight: 700;
}

.concept-modal__panel > p {
  margin: 18px 0;
  color: rgb(16 18 16 / 62%);
  font-size: 11px;
}

.concept-modal .button {
  width: 100%;
}

.toast {
  position: fixed;
  z-index: 95;
  bottom: 90px;
  left: 50%;
  min-width: 190px;
  padding: 12px 18px;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 359px) {
  .hero__title {
    font-size: 72px;
  }

  .hero__title span:last-child {
    font-size: 88px;
  }

  .hero__purchase .button {
    flex-basis: 144px;
    padding: 0 13px;
  }

  .spec-strip__item strong {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .flavor-sweep {
    display: none;
  }
}
