:root {
  --ink: #121611;
  --muted: #5c665f;
  --paper: #111111;
  --white: #ffffff;
  --green: #23a455;
  --leaf: #0f6f42;
  --pink: #ee3f79;
  --yellow: #ffd447;
  --orange: #ff7b31;
  --aqua: #35c7b5;
  --line: rgba(18, 22, 17, 0.16);
  --shadow: 0 22px 58px rgba(18, 22, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.frame-loading::after {
  content: "Loading fresh frames";
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  background: rgba(18, 22, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.85rem;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-150%);
  padding: 0.7rem 0.9rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 1.6rem, 1.6rem);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.6rem;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--pink);
}

.brand-mark svg {
  width: 1.55rem;
  height: 1.55rem;
}

.nav-links {
  gap: 0.45rem;
  padding: 0.32rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  backdrop-filter: blur(14px);
  font-size: 0.92rem;
  font-weight: 850;
}

.nav-links a {
  min-height: 2.15rem;
  padding: 0.45rem 0.68rem;
  border-radius: 7px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.scroll-story {
  position: relative;
  min-height: 430vh;
  background: #111;
}

.animation-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #111;
}

.bg-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(18px) saturate(1.2) brightness(0.72);
}

.hero-frame {
  position: absolute;
  top: 50%;
  left: min(68vw, calc(100% - 360px));
  width: auto;
  height: min(96vh, 1280px);
  max-width: 720px;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 32px 54px rgba(0, 0, 0, 0.28));
}

.stage-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.03) 40%, rgba(0, 0, 0, 0.5)),
    linear-gradient(to right, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.2));
}

.scroll-meter {
  position: absolute;
  right: clamp(1rem, 2rem, 2rem);
  top: 50%;
  z-index: 4;
  width: 0.46rem;
  height: min(360px, 42vh);
  transform: translateY(-50%);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(var(--scroll-progress, 0));
  transform-origin: bottom;
  background: linear-gradient(to top, var(--white), var(--yellow));
}

.truck-pill {
  position: absolute;
  right: clamp(1rem, 2rem, 2rem);
  bottom: clamp(1rem, 2rem, 2rem);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  padding: 0.72rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.pulse {
  width: 0.68rem;
  height: 0.68rem;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(35, 164, 85, 0.64);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  100% {
    box-shadow: 0 0 0 0.72rem rgba(35, 164, 85, 0);
  }
}

.story-copy {
  position: relative;
  z-index: 5;
  width: min(680px, calc(100% - 2rem));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -100vh;
  margin-left: clamp(1rem, 7rem, 7rem);
  color: var(--white);
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.34);
}

.story-copy-intro {
  margin-top: -92vh;
}

.story-copy-mid {
  margin-top: 28vh;
}

.story-copy-end {
  margin-top: 26vh;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  max-width: 8ch;
  font-size: clamp(3.6rem, 5.8rem, 5.8rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.45rem, 4.2rem, 4.2rem);
}

h3 {
  font-size: 1.15rem;
}

.story-copy p:not(.eyebrow) {
  max-width: 31rem;
  margin: 1.15rem 0 0;
  font-size: 1.14rem;
  line-height: 1.55;
}

.hero-actions,
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.button {
  display: inline-flex;
  width: fit-content;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.45rem;
  padding: 0.86rem 1.05rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  text-shadow: none;
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--pink);
}

.button-secondary,
.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.14);
}

.section {
  padding: clamp(4rem, 6.6rem, 6.6rem) clamp(1rem, 2rem, 2rem);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-bright {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #f7cf38 0 25%, #e9394f 25% 50%, #b19add 50% 75%, #8fcf94 75% 100%);
}

.section-bright::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 72%);
}

.section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.section-bright .eyebrow {
  color: var(--white);
}

.section-heading h2,
.section-map h2,
.section-order h2 {
  color: var(--white);
  text-shadow: none;
}

.section-kicker {
  max-width: 25rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  font-weight: 700;
}

.menu-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.menu-item,
.stop-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.menu-item {
  position: relative;
  display: grid;
  grid-template-rows: 210px auto 1fr auto;
  min-height: 440px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

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

.menu-item h3,
.menu-item p,
.menu-item strong {
  padding-inline: 1rem;
}

.menu-item h3 {
  margin-top: 1rem;
}

.menu-item p,
.stop-list p,
.section-text,
.order-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.menu-item strong {
  display: block;
  margin: 0.25rem 0 1rem;
  font-size: 1.35rem;
}

.menu-item:nth-child(1) {
  transform: translateY(1.4rem);
}

.menu-item:nth-child(2) {
  transform: translateY(-0.4rem);
}

.menu-item:nth-child(3) {
  transform: translateY(1.9rem);
}

.marquee-band {
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  border-block: 3px solid var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  padding: 0.85rem 1.25rem;
  font-weight: 950;
  text-transform: uppercase;
}

.marquee-track span:nth-child(2n) {
  background: var(--pink);
  color: var(--white);
}

.marquee-track span:nth-child(3n) {
  background: var(--green);
  color: var(--white);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section-map {
  background:
    linear-gradient(135deg, rgba(19, 94, 57, 0.96), rgba(131, 76, 164, 0.96)),
    var(--leaf);
  color: var(--white);
}

.section-map .eyebrow,
.section-map h2,
.section-map .section-text {
  color: var(--white);
}

.section-text {
  max-width: 31rem;
  font-weight: 650;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(2rem, 4rem, 4rem);
  align-items: start;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.route-tags span {
  padding: 0.55rem 0.7rem;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 900;
}

.stop-list {
  display: grid;
  gap: 1rem;
}

.stop-list article {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4.25rem;
  color: var(--ink);
  box-shadow: 8px 8px 0 rgba(255, 212, 71, 0.95);
}

.stop-list article::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 1.3rem;
  width: 1.65rem;
  height: 1.65rem;
  background: var(--pink);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.stop-list time {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--leaf);
  font-weight: 950;
}

.section-order {
  background:
    linear-gradient(120deg, #ffbf32, #f04462 46%, #8a72d6),
    #111;
}

.order-panel {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 3rem, 3rem);
  text-align: center;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 10px 0 var(--green);
}

.order-panel h2 {
  max-width: none;
  color: var(--ink);
}

.order-panel p {
  max-width: 34rem;
  margin: 1rem auto 0;
}

.order-actions {
  justify-content: center;
}

.section-order .button-secondary {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 2rem, 2rem);
  color: var(--white);
  background: #080808;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links {
    gap: 0.2rem;
    font-size: 0.86rem;
  }

  .nav-links a {
    padding-inline: 0.5rem;
  }

  .animation-stage {
    min-height: 100vh;
  }

  .bg-frame {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    filter: blur(16px) saturate(1.22) brightness(0.62);
  }

  .hero-frame {
    left: 50%;
    width: min(100vw, 720px);
    height: auto;
    min-height: 100vh;
    object-fit: cover;
    filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.28));
  }

  .stage-shade {
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.62)),
      radial-gradient(circle at 22% 78%, rgba(0, 0, 0, 0.32), transparent 38%);
  }

  .scroll-meter {
    display: none;
  }

  .truck-pill {
    right: 1rem;
    bottom: 1rem;
  }

  .story-copy {
    justify-content: end;
    min-height: 94vh;
    padding-bottom: 6rem;
    margin-left: 1rem;
  }

  h1 {
    max-width: 7ch;
    font-size: 3.75rem;
  }

  h2 {
    max-width: 10ch;
    font-size: 2.55rem;
  }

  .story-copy p:not(.eyebrow) {
    max-width: 22rem;
    font-size: 1rem;
  }

  .section-heading,
  .split {
    display: block;
  }

  .section-kicker {
    margin-top: 1rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-item,
  .menu-item:nth-child(n) {
    grid-template-columns: 38% 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 210px;
    transform: none;
  }

  .menu-item img {
    grid-row: 1 / span 3;
  }

  .menu-item h3 {
    margin-top: 1rem;
  }

  .stop-list {
    margin-top: 2rem;
  }

  .order-panel {
    padding: 1.35rem;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 0.35rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .menu-item {
    grid-template-columns: 34% 1fr;
  }

  .menu-item h3,
  .menu-item p,
  .menu-item strong {
    padding-inline: 0.85rem;
  }

  .shop-main {
    width: min(100% - 1rem, 1160px);
  }

  .shop-grid {
    gap: 0.55rem;
  }

  .shop-card-body {
    padding: 0.7rem;
  }

  .shop-card-body h2 {
    font-size: 1.08rem;
  }

  .shop-card-body p {
    font-size: 0.82rem;
  }

  .shop-card-footer .button {
    min-height: 2.4rem;
    padding: 0.62rem 0.68rem;
    font-size: 0.82rem;
  }
}

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

  .pulse,
  .marquee-track {
    animation: none;
  }
}

.menu-link {
  display: inline-flex;
  width: fit-content;
  margin: 0 1rem 1rem;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.shop-page {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 212, 71, 0.28), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(238, 63, 121, 0.26), transparent 26%),
    linear-gradient(135deg, #191919, #101010);
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  background: rgba(10, 10, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.shop-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.shop-nav a {
  padding: 0.65rem 0.8rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.shop-main {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.shop-hero {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.shop-hero h1,
.product-copy h1,
.empty-cart h1 {
  max-width: 10ch;
  color: var(--white);
  font-size: clamp(3.3rem, 7vw, 6rem);
  line-height: 0.9;
}

.shop-hero p:not(.eyebrow),
.product-copy p,
.empty-cart p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.65;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.shop-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.shop-card-image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--accent);
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.04);
}

.shop-card-body {
  display: grid;
  min-height: 210px;
  padding: 0.9rem;
}

.shop-card-body .eyebrow {
  color: var(--pink);
}

.shop-card-body h2 {
  max-width: none;
  font-size: 1.35rem;
  line-height: 1;
}

.shop-card-body p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.shop-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.65rem;
}

.shop-card-footer .button {
  margin: 0;
}

.product-page {
  width: min(1080px, calc(100% - 2rem));
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-bottom: 2rem;
}

.product-art {
  width: min(100%, 340px);
  justify-self: center;
  overflow: hidden;
  background: var(--accent);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.product-art img {
  width: 100%;
  height: auto;
}

.ingredient-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.ingredient-list li {
  padding: 0.55rem 0.7rem;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 850;
}

.customizer {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.customizer-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.customizer-heading h2 {
  color: var(--ink);
}

.customizer-heading strong {
  font-size: 2rem;
}

fieldset {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

legend {
  padding-inline: 0.4rem;
  font-weight: 950;
}

.option-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem;
  background: rgba(18, 22, 17, 0.04);
  border-radius: 8px;
  font-weight: 750;
}

.field-label {
  display: grid;
  gap: 0.45rem;
  font-weight: 900;
}

.field-label input,
.field-label textarea,
.cart-controls input {
  width: 100%;
  padding: 0.85rem;
  color: var(--ink);
  background: rgba(18, 22, 17, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.customizer > .button {
  margin-top: 0;
}

.cart-message {
  min-height: 1.5rem;
  margin: 0;
  color: var(--leaf);
  font-weight: 900;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1rem;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 1rem;
}

.cart-item,
.cart-summary,
.empty-cart {
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem;
}

.cart-item img {
  width: 110px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item h2,
.cart-summary h2 {
  max-width: none;
  color: var(--ink);
  font-size: 1.7rem;
}

.cart-item p,
.cart-summary p,
.empty-cart p {
  color: var(--muted);
  line-height: 1.5;
}

.cart-controls {
  display: flex;
  align-items: end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cart-controls label {
  max-width: 90px;
  font-weight: 900;
}

.cart-controls button,
.cart-summary button {
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
}

.cart-summary,
.empty-cart {
  padding: 1.25rem;
}

.cart-summary .button,
.empty-cart .button {
  margin-right: 0.5rem;
}

.empty-cart {
  width: min(680px, 100%);
}

@media (max-width: 920px) {
  .product-hero,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .product-art {
    width: min(68vw, 280px);
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-header {
    align-items: flex-start;
  }

  .shop-card-body {
    min-height: auto;
  }

  .shop-card-footer {
    display: grid;
    align-items: start;
  }

  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .cart-item img {
    width: 82px;
    height: 112px;
  }

  .cart-item > strong {
    grid-column: 2;
  }
}
