
:root {
  --cream: #fff8e8;
  --paper: #fffdf6;
  --butter: #f6ce62;
  --butter-pale: #fde9a8;
  --tomato: #d94a35;
  --tomato-dark: #ad3022;
  --sage: #738653;
  --sage-pale: #dce5c7;
  --cocoa: #3a2c24;
  --cocoa-soft: #6c5b4e;
  --line: #dfcfaf;
  --white: #fff;
  --shadow: 0 16px 34px rgba(92, 65, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 12%, rgba(246, 206, 98, 0.16), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(217, 74, 53, 0.07), transparent 20%),
    var(--cream);
  color: var(--cocoa);
  font-family: "Nunito", "Trebuchet MS", sans-serif;
}

body::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  position: fixed;
  z-index: 100;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--tomato);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 246, 0.94);
  border-bottom: 1px solid rgba(140, 101, 63, 0.18);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 112px;
  padding: 0 clamp(24px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.site-header::after {
  background: linear-gradient(135deg, transparent 8px, var(--paper) 0) 0 0/16px 16px repeat-x;
  bottom: -13px;
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  width: 100%;
}

.brand {
  align-items: center;
  color: var(--cocoa);
  display: inline-flex;
  font-family: "Lilita One", Georgia, serif;
  font-size: clamp(30px, 3vw, 45px);
  justify-self: start;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
}

.brand-heart {
  color: var(--tomato);
  display: inline-block;
  font-family: sans-serif;
  font-size: 24px;
  margin: -26px 0 0 8px;
  transform: rotate(-12deg);
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: 46px;
}

.site-header nav a,
.nav-order {
  background: none;
  border: 0;
  color: var(--cocoa);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  padding: 13px 4px;
  position: relative;
  text-decoration: none;
}

.site-header nav a::after,
.nav-order::after {
  background: var(--tomato);
  bottom: 4px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform 180ms ease;
  width: 100%;
}

.site-header nav a:hover::after,
.nav-order:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.cart-button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  gap: 12px;
  justify-self: end;
  padding: 12px;
  position: relative;
}

.cart-button svg {
  fill: none;
  height: 29px;
  stroke: var(--cocoa);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease, stroke 180ms ease;
  width: 29px;
}

.cart-button svg:first-child {
  stroke: var(--tomato);
}

.cart-button:hover svg {
  transform: translateY(-2px) rotate(-3deg);
}

.cart-count {
  align-items: center;
  background: var(--tomato);
  border: 3px solid var(--paper);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  height: 25px;
  justify-content: center;
  min-width: 25px;
  padding: 0 5px;
  position: absolute;
  right: 0;
  top: 4px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  min-height: 720px;
  overflow: hidden;
  padding: 34px 0 0 clamp(32px, 7vw, 104px);
  position: relative;
}

.hero-copy {
  align-self: center;
  max-width: 650px;
  padding: 54px 52px 72px 0;
  position: relative;
  z-index: 2;
}

.tape-label {
  align-items: center;
  background: var(--tomato);
  box-shadow: 0 7px 0 rgba(123, 43, 29, 0.12);
  color: var(--white);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 34px;
  padding: 13px 24px;
  text-transform: uppercase;
  transform: rotate(-1.2deg);
}

.tape-label::before,
.tape-label::after {
  background: var(--cream);
  content: "";
  height: 12px;
  position: absolute;
  top: -5px;
  transform: rotate(45deg);
  width: 12px;
}

.tape-label::before {
  left: -6px;
}

.tape-label::after {
  right: -6px;
}

.hero h1,
.section-heading h2,
.how-it-works h2,
.order-drawer h2 {
  font-family: "Fraunces", Georgia, serif;
}

.hero h1 {
  font-size: clamp(62px, 6.1vw, 94px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 0;
  max-width: 720px;
}

.hero-copy > p:not(.tiny-promise) {
  color: var(--cocoa-soft);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.5;
  margin: 28px 0 34px;
  max-width: 560px;
}

.primary-button {
  align-items: center;
  background: var(--tomato);
  border: 0;
  border-bottom: 5px solid var(--tomato-dark);
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(173, 48, 34, 0.2);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  gap: 26px;
  justify-content: center;
  min-height: 68px;
  padding: 15px 30px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover {
  box-shadow: 0 14px 24px rgba(173, 48, 34, 0.25);
  transform: translateY(-3px);
}

.tiny-promise {
  color: var(--sage);
  font-size: 14px;
  font-weight: 800;
  margin: 20px 0 0;
}

.tiny-promise span {
  color: var(--tomato);
}

.hero-visual {
  align-self: stretch;
  min-height: 680px;
  position: relative;
}

.hero-visual::before {
  background: var(--butter);
  border-radius: 50%;
  content: "";
  height: 620px;
  left: 3%;
  opacity: 0.25;
  position: absolute;
  top: 35px;
  width: 620px;
}

.hero-photo-frame {
  border: 12px solid var(--paper);
  border-radius: 48% 22% 26% 44% / 42% 30% 38% 46%;
  box-shadow: var(--shadow);
  height: min(620px, 78vh);
  left: 4%;
  overflow: hidden;
  position: absolute;
  right: -8%;
  top: 42px;
  transform: rotate(1.5deg);
}

.hero-photo-frame img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.love-note {
  align-items: center;
  background:
    linear-gradient(rgba(107, 148, 180, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 148, 180, 0.13) 1px, transparent 1px),
    var(--paper);
  background-size: 18px 18px;
  bottom: 72px;
  box-shadow: 0 13px 25px rgba(67, 43, 25, 0.16);
  display: flex;
  flex-direction: column;
  font-family: "Comic Sans MS", cursive;
  font-size: 20px;
  height: 138px;
  justify-content: center;
  line-height: 1.05;
  padding: 16px;
  position: absolute;
  right: 6%;
  transform: rotate(5deg);
  width: 150px;
}

.love-note strong {
  color: var(--tomato);
  font-size: 30px;
}

.sun-doodle {
  color: var(--tomato);
  font-size: 62px;
  left: 0;
  position: absolute;
  top: 8px;
  transform: rotate(-10deg);
}

.menu-section {
  margin: 0 auto;
  max-width: 1500px;
  padding: 100px clamp(24px, 5vw, 72px) 120px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.eyebrow {
  color: var(--tomato);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.section-heading h2,
.how-it-works h2 {
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.section-heading > p {
  color: var(--cocoa-soft);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 5px;
  max-width: 390px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 42px 0 36px;
}

.filter-tabs button {
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 900;
  gap: 8px;
  min-height: 48px;
  padding: 10px 21px;
  transition: background 160ms ease, border 160ms ease, transform 160ms ease;
}

.filter-tabs button:hover,
.filter-tabs button.active {
  background: var(--butter);
  border-color: var(--cocoa);
  transform: translateY(-2px);
}

.menu-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-card {
  animation: card-in 460ms both;
  animation-delay: calc(var(--card-index) * 45ms);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 27px;
  box-shadow: 0 8px 0 rgba(131, 93, 51, 0.08);
  min-width: 0;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.menu-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px) rotate(-0.35deg);
}

.card-photo {
  aspect-ratio: 4 / 3;
  background: var(--butter-pale);
  overflow: hidden;
  position: relative;
}

.card-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
  width: 100%;
}

.menu-card:hover .card-photo img {
  transform: scale(1.035);
}

.category-tag,
.soon-sticker {
  background: var(--paper);
  border: 1px solid rgba(58, 44, 36, 0.14);
  border-radius: 999px;
  box-shadow: 0 5px 12px rgba(58, 44, 36, 0.12);
  font-size: 11px;
  font-weight: 900;
  left: 16px;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  position: absolute;
  text-transform: uppercase;
  top: 16px;
}

.category-tag.food {
  color: var(--sage);
}

.category-tag.dessert {
  color: var(--tomato);
}

.category-tag.drink {
  color: #6c7340;
}

.soon-sticker {
  background: var(--tomato);
  color: var(--white);
  left: auto;
  right: 14px;
  transform: rotate(3deg);
}

.coming-soon .card-photo img {
  filter: saturate(0.75);
}

.card-body {
  padding: 24px;
}

.card-title-row {
  align-items: start;
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

.card-title-row h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}

.love-price {
  color: var(--tomato);
  flex: 0 0 auto;
  font-family: "Comic Sans MS", cursive;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(3deg);
}

.card-body > p {
  color: var(--cocoa-soft);
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 21px;
  min-height: 45px;
}

.add-button,
.quantity-control {
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 14px;
  display: flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: space-between;
  min-height: 49px;
  padding: 10px 15px;
  width: 100%;
}

.add-button {
  cursor: pointer;
  transition: background 160ms ease, border 160ms ease;
}

.add-button:hover {
  background: var(--butter);
  border-color: var(--cocoa);
}

.add-button.disabled {
  color: var(--cocoa-soft);
  cursor: not-allowed;
  justify-content: center;
  opacity: 0.7;
}

.quantity-control {
  background: var(--sage-pale);
  border-color: var(--sage);
  padding: 6px;
}

.quantity-control button,
.mini-quantity button {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  font-size: 22px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.quantity-control span {
  font-size: 13px;
}

.how-it-works {
  background: var(--butter);
  overflow: hidden;
  padding: 100px clamp(24px, 7vw, 104px) 110px;
  position: relative;
  text-align: center;
}

.how-it-works::before,
.how-it-works::after {
  color: rgba(217, 74, 53, 0.32);
  content: "♥";
  font-size: 160px;
  position: absolute;
  transform: rotate(-14deg);
}

.how-it-works::before {
  left: -30px;
  top: 40px;
}

.how-it-works::after {
  bottom: 0;
  right: -20px;
  transform: rotate(12deg);
}

.how-it-works .eyebrow {
  color: var(--tomato-dark);
}

.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin: 55px auto 0;
  max-width: 1120px;
}

.steps article {
  background: var(--paper);
  border: 1px solid rgba(91, 65, 38, 0.18);
  border-radius: 25px;
  box-shadow: 0 9px 0 rgba(91, 65, 38, 0.1);
  padding: 34px 27px;
  position: relative;
}

.steps article > span {
  align-items: center;
  background: var(--tomato);
  border: 4px solid var(--butter);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  left: 18px;
  position: absolute;
  top: -16px;
  width: 38px;
}

.steps article > div {
  font-size: 44px;
}

.steps h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  margin: 12px 0 7px;
}

.steps p {
  color: var(--cocoa-soft);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

footer {
  align-items: center;
  background: var(--cocoa);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  min-height: 160px;
  padding: 35px clamp(24px, 6vw, 90px);
}

footer div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

footer strong {
  font-family: "Lilita One", Georgia, serif;
  font-size: 34px;
}

footer span {
  color: #dacdbd;
  font-size: 14px;
}

footer button {
  background: transparent;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  font-weight: 900;
}

.drawer-backdrop {
  background: rgba(58, 44, 36, 0.55);
  border: 0;
  inset: 0;
  position: fixed;
  z-index: 50;
}

.order-drawer {
  animation: drawer-in 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
  background:
    linear-gradient(rgba(117, 145, 84, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 145, 84, 0.09) 1px, transparent 1px),
    var(--paper);
  background-size: 24px 24px;
  box-shadow: -20px 0 50px rgba(42, 30, 21, 0.25);
  display: flex;
  flex-direction: column;
  height: 100dvh;
  max-width: 520px;
  overflow-y: auto;
  padding: 28px;
  position: fixed;
  right: 0;
  top: 0;
  width: min(100%, 520px);
  z-index: 51;
}

.drawer-header {
  align-items: start;
  border-bottom: 2px dashed var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.drawer-header h2 {
  font-size: 43px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.close-button {
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-size: 26px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.empty-cart {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 70px 15px;
  text-align: center;
}

.empty-cart > div {
  font-size: 78px;
}

.empty-cart h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 29px;
  margin: 24px 0 7px;
}

.empty-cart p {
  color: var(--cocoa-soft);
  margin: 0 0 28px;
}

.cart-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 0;
}

.cart-lines article {
  background: rgba(255, 248, 232, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: 105px 1fr;
  padding: 10px;
}

.cart-lines img {
  border-radius: 13px;
  height: 105px;
  object-fit: cover;
  width: 105px;
}

.cart-lines article > div {
  align-items: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-lines article span {
  color: var(--tomato);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-lines h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  line-height: 1.1;
  margin: 4px 0 10px;
}

.mini-quantity {
  align-items: center;
  display: flex;
  gap: 10px;
}

.mini-quantity button {
  height: 28px;
  width: 28px;
}

.drawer-footer {
  border-top: 2px dashed var(--line);
  margin-top: auto;
  padding-top: 22px;
}

.order-total {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.order-total span {
  color: var(--cocoa-soft);
  font-size: 13px;
}

.order-total strong {
  color: var(--tomato);
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
}

.drawer-footer .primary-button {
  width: 100%;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 0 4px;
}

.back-link,
.copy-button {
  align-self: flex-start;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 4px 0;
}

.checkout-sticker {
  background: var(--butter-pale);
  border: 2px dashed var(--tomato);
  border-radius: 14px;
  color: var(--tomato-dark);
  font-family: "Comic Sans MS", cursive;
  font-weight: 700;
  padding: 13px;
  text-align: center;
  transform: rotate(-1deg);
}

.field-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.checkout-form label > span {
  font-size: 13px;
  font-weight: 900;
}

.checkout-form input,
.checkout-form textarea {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 13px;
  color: var(--cocoa);
  min-height: 50px;
  padding: 12px;
  resize: vertical;
}

.whatsapp-button {
  align-items: center;
  background: var(--sage);
  border: 0;
  border-bottom: 5px solid #52633b;
  border-radius: 16px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 60px;
  padding: 13px;
}

.copy-button {
  align-self: center;
  border-bottom: 1px dashed var(--cocoa);
}

.allergy-note {
  color: var(--cocoa-soft);
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
  text-align: center;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawer-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding-left: 56px;
  }

  .hero h1 {
    font-size: 66px;
  }

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 86px;
    padding: 0 20px;
  }

  .brand {
    font-size: 29px;
  }

  .brand-heart {
    font-size: 17px;
    margin-top: -20px;
  }

  .site-header nav {
    display: none;
  }

  .cart-button {
    gap: 7px;
  }

  .cart-button svg {
    height: 25px;
    width: 25px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 55px 22px 0;
  }

  .hero-copy {
    padding: 32px 0 42px;
  }

  .tape-label {
    font-size: 10px;
    gap: 8px;
    margin-bottom: 26px;
    padding: 10px 15px;
  }

  .hero h1 {
    font-size: clamp(49px, 14vw, 68px);
  }

  .hero-copy > p:not(.tiny-promise) {
    font-size: 18px;
    margin: 22px 0 27px;
  }

  .primary-button {
    min-height: 60px;
  }

  .hero-visual {
    min-height: 460px;
    width: 100%;
  }

  .hero-visual::before {
    height: 390px;
    left: -20px;
    top: 10px;
    width: 390px;
  }

  .hero-photo-frame {
    bottom: 32px;
    height: auto;
    left: -5px;
    right: -38px;
    top: 15px;
  }

  .love-note {
    bottom: 8px;
    font-size: 15px;
    height: 100px;
    right: -2px;
    width: 108px;
  }

  .love-note strong {
    font-size: 23px;
  }

  .menu-section {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .section-heading h2,
  .how-it-works h2 {
    font-size: 45px;
  }

  .filter-tabs {
    flex-wrap: nowrap;
    margin-left: -24px;
    margin-right: -24px;
    overflow-x: auto;
    padding: 4px 24px 10px;
    scrollbar-width: none;
  }

  .filter-tabs button {
    flex: 0 0 auto;
  }

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

  .card-body {
    padding: 21px;
  }

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

  .how-it-works {
    padding-bottom: 90px;
    padding-top: 80px;
  }

  footer {
    align-items: start;
    flex-direction: column;
    gap: 26px;
  }
}

@media (max-width: 430px) {
  .hero-visual {
    min-height: 390px;
  }

  .hero-photo-frame {
    bottom: 28px;
  }

  .card-title-row {
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }

  .love-price {
    transform: rotate(-1deg);
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .order-drawer {
    padding: 22px 18px;
  }

  .cart-lines article {
    grid-template-columns: 88px 1fr;
  }

  .cart-lines img {
    height: 88px;
    width: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress theme-specific helpers */
[hidden] {
  display: none !important;
}

body.drawer-open {
  overflow: hidden;
}

.admin-bar .site-header {
  top: 32px;
}

.hero h1 {
  max-width: 690px;
}

.hero .primary-button,
footer a {
  text-decoration: none;
}

.cart-button > span:not(.cart-count) {
  color: var(--cocoa);
  font-size: 27px;
  line-height: 1;
  transition: transform 180ms ease;
}

.cart-button > span:first-child {
  color: var(--tomato);
  font-size: 35px;
}

.cart-button:hover > span:not(.cart-count) {
  transform: translateY(-2px) rotate(-3deg);
}

.add-button.selected {
  background: var(--sage-pale);
  border-color: var(--sage);
}

.js-cart-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.order-drawer .empty-cart {
  min-height: 70vh;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
