@font-face {
  font-family: "Gazpacho";
  src: url("../../assets/gazpacho-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../../assets/bricolage-grotesque.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #245835;
  --green-2: #20522e;
  --cta-green: #336633;
  --cream: #fff9f0;
  --yellow: #ffd38c;
  --lime: #cdec89;
  --orange: #ffb237;
  --muted-track: #efead6;
  --muted-text: #a8ada9;
  --line: #dedede;
  --font-body: "Bricolage Grotesque", Arial, sans-serif;
  --font-display: "Gazpacho", Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.2, 1.35, 0.28, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #fff;
}

body {
  color: var(--green-2);
  font-family: var(--font-body);
}

img {
  display: block;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.quantity-frame {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.top-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 0 23px;
  background: var(--cream);
  animation: header-drop 180ms var(--ease-out) both;
}

.header-back {
  position: absolute;
  left: 23px;
  top: 17px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--green-2);
  border-radius: 999px;
  transition:
    background-color 160ms ease,
    transform 160ms var(--ease-out);
}

.header-back:hover {
  background: rgb(32 82 46 / 8%);
  transform: translateX(-1px);
}

.header-back svg {
  width: 19px;
  height: 19px;
}

.header-back path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.checkout-stepper {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 20px;
}

.step {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 20px;
  color: #b8c5bc;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  white-space: nowrap;
}

.step b {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #e5f0e7;
  color: #b8c5bc;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.step.active {
  color: var(--green-2);
  font-weight: 800;
}

.step.active b {
  background: var(--orange);
  color: var(--green-2);
}

.step-line {
  flex: 0 0 clamp(70px, 6.9vw, 100px);
  height: 3px;
  background: #b8c5bc;
}

.step-line.done {
  background: var(--orange);
}

.quantity-layout {
  position: relative;
  display: block;
  width: 100%;
}

.quantity-visual {
  display: none;
}

.quantity-panel {
  width: min(calc(100vw - 40px), 520px);
  margin: 34px auto 40px;
}

.mobile-bundle-progress {
  display: none;
}

.discount-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 29px;
  animation: panel-rise 190ms 20ms var(--ease-out) both;
}

.discount-callout strong {
  color: var(--green-2);
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  white-space: nowrap;
}

.discount-callout > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 25px;
  padding: 0 12px;
  border-radius: 58px;
  background: var(--yellow);
  color: var(--green-2);
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

.discount-callout b {
  font-weight: 800;
}

.progress-card {
  --fill-width: 280px;
  --ring-left: 212.8px;
  position: relative;
  width: 100%;
  height: 85px;
  margin-top: 20px;
  animation: panel-rise 190ms 40ms var(--ease-out) both;
}

.progress-shell {
  position: absolute;
  left: 0;
  top: 37px;
  width: 100%;
  height: 48px;
  border: 1px solid #ffd008;
  border-radius: 94px;
  background: var(--cream);
}

.progress-label {
  position: absolute;
  top: 0;
  display: grid;
  place-items: center;
  width: 61px;
  height: 19px;
  border-radius: 5px;
  background: var(--muted-track);
  color: var(--muted-text);
  font-size: 10px;
  font-weight: 800;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms var(--ease-out);
}

.label-1 {
  left: 29px;
}

.label-2 {
  left: 196px;
}

.label-3 {
  right: 31px;
}

.progress-card[data-qty="1"] .label-1,
.progress-card[data-qty="2"] .label-1,
.progress-card[data-qty="2"] .label-2,
.progress-card[data-qty="3"] .progress-label {
  background: var(--yellow);
  color: var(--green);
}

.progress-track,
.progress-fill {
  position: absolute;
  top: 33px;
  height: 7px;
  border-radius: 67px;
}

.progress-track {
  left: 28px;
  width: calc(100% - 64px);
  background: var(--muted-track);
}

.progress-fill {
  left: 27px;
  width: var(--fill-width);
  background: var(--orange);
  transition: width 260ms var(--ease-out);
}

.progress-card[data-qty="1"] {
  --fill-width: 35px;
  --ring-left: 22px;
}

.progress-card[data-qty="2"] {
  --fill-width: 280px;
  --ring-left: 212.8px;
}

.progress-card[data-qty="3"] {
  --fill-width: calc(100% - 64px);
  --ring-left: calc(100% - 58px);
}

.progress-dot {
  position: absolute;
  top: 28px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--muted-track);
  transition:
    background-color 180ms ease,
    transform 180ms var(--ease-out);
}

.progress-dot::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: inherit;
  background: var(--muted-text);
  transition: background-color 180ms ease;
}

.dot-1 {
  left: 27px;
}

.dot-2 {
  left: 217px;
}

.dot-3 {
  right: 34px;
}

.progress-card[data-qty="1"] .dot-1,
.progress-card[data-qty="2"] .dot-1,
.progress-card[data-qty="2"] .dot-2,
.progress-card[data-qty="3"] .progress-dot {
  background: var(--yellow);
}

.progress-card[data-qty="1"] .dot-1::after,
.progress-card[data-qty="2"] .dot-1::after,
.progress-card[data-qty="2"] .dot-2::after,
.progress-card[data-qty="3"] .progress-dot::after {
  background: #817323;
}

.progress-ring {
  position: absolute;
  left: var(--ring-left);
  top: 24px;
  width: 28px;
  height: 28px;
  border: 1px solid #ffd008;
  border-radius: 999px;
  transition: left 260ms var(--ease-out);
}

.shipping-label {
  position: absolute;
  top: 56px;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 16px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 650;
  line-height: 16px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.shipping-label img {
  width: 14px;
  height: 10px;
}

.shipping-2 {
  left: 184px;
}

.shipping-3 {
  right: 35px;
}

.progress-card[data-qty="2"] .shipping-2,
.progress-card[data-qty="3"] .shipping-label {
  color: var(--green-2);
}

.quantity-title {
  margin: 20px 0 0;
  padding-left: 24px;
  color: var(--green-2);
  font-size: 16px;
  font-weight: 650;
  line-height: 22px;
}

.quantity-selector {
  display: grid;
  gap: 11px;
  margin-top: 20px;
}

.qty-card {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 77px;
  padding: 0 134px 0 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fafafa;
  color: var(--green-2);
  text-align: left;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.qty-card:hover {
  transform: translateY(-1px);
  border-color: rgb(255 208 8 / 55%);
}

.qty-card.active {
  border-color: #ffd008;
  background: var(--cream);
  box-shadow: 0 10px 18px rgb(255 208 8 / 10%);
}

.qty-card.just-selected {
  animation: selected-pop 240ms var(--ease-snap) both;
}

.qty-state {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.qty-copy,
.qty-label {
  margin-left: 20px;
}

.qty-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 88px;
}

.qty-copy b,
.qty-label {
  color: var(--green-2);
  font-size: 16px;
  font-weight: 650;
  line-height: 22px;
  white-space: nowrap;
}

.qty-copy small {
  color: #868686;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  white-space: nowrap;
}

.free-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 83px;
  height: 23px;
  margin-left: 20px;
  border: 1px solid #b7b7b7;
  border-radius: 102px;
  background: #fff;
  color: #b7b7b7;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.free-pill img {
  width: 12px;
  height: 9px;
}

.free-pill.active {
  border-color: #ffd008;
  color: #ae9529;
  background: #fff;
}

.card-badge {
  position: absolute;
  top: 0;
  display: grid;
  place-items: center;
  height: 19px;
  padding: 0 10px;
  border-radius: 0 0 5px 5px;
  color: var(--green);
  font-size: 10px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.card-badge.discount {
  right: 103px;
  background: var(--lime);
}

.card-badge.best {
  right: 17px;
  min-width: 78px;
  background: var(--yellow);
}

.qty-price {
  position: absolute;
  right: 24px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  transform: translateY(-50%);
  white-space: nowrap;
}

.qty-price strong {
  color: #000;
  font-size: 14px;
  font-weight: 650;
  line-height: 19px;
}

.qty-price del {
  color: #909090;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.order-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 29px;
  margin-top: 20px;
}

.order-chips {
  display: flex;
  align-items: center;
  gap: 6px;
}

.order-chips span {
  display: grid;
  place-items: center;
  height: 29px;
  padding: 0 10px;
  border-radius: 10px;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  white-space: nowrap;
}

.order-chips span[hidden] {
  display: none;
}

.chip-per {
  background: var(--lime);
}

.chip-discount {
  background: var(--yellow);
}

.order-price {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #000;
  white-space: nowrap;
}

.order-price del {
  color: #7f7f7f;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.order-price strong {
  color: #000;
  font-size: 16px;
  font-weight: 800;
  line-height: 19px;
}

.order-summary.price-flash .order-chips span,
.order-summary.price-flash .order-price strong {
  animation: price-pop 240ms var(--ease-snap) both;
}

.main-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  width: 100%;
  height: 80px;
  margin-top: 20px;
  border-radius: 78px;
  background: var(--cta-green);
  color: #fff;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    background-color 180ms ease;
}

.main-cta span {
  font-size: 18px;
  font-weight: 650;
  line-height: 22px;
  white-space: nowrap;
}

.main-cta img {
  width: 18px;
  height: 15px;
  filter: brightness(0) invert(1);
  transition: transform 180ms var(--ease-out);
}

.main-cta:hover {
  transform: translateY(-2px);
  background: #2f672f;
  box-shadow: 0 16px 28px rgb(51 102 51 / 20%);
}

.main-cta:hover img {
  transform: translateX(5px);
}

.guarantee-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 125px;
  margin-top: 21px;
  padding: 17px 18px;
  border: 2px dashed var(--yellow);
  border-radius: 20px;
  background: #fff;
}

.guarantee-box > img {
  width: 78px;
  height: 77px;
  flex: 0 0 auto;
}

.guarantee-box div {
  width: 290px;
  min-width: 0;
  margin-left: 13px;
}

.guarantee-box p,
.guarantee-box h2 {
  margin: 0;
}

.guarantee-box p {
  color: #59774c;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}

.guarantee-box h2 {
  margin-top: 5px;
  color: #3e6858;
  font-size: 16px;
  font-weight: 650;
  line-height: 19px;
}

.guarantee-box span {
  display: block;
  margin-top: 5px;
  color: #758b6c;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}

.quantity-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 60px;
  margin-top: auto;
  padding: 11px 20px 10px;
  background: var(--green-2);
  color: #fff;
}

.footer-brand {
  display: none;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quantity-footer p {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 16px;
}

@media (min-width: 990px) {
  .quantity-frame {
    min-height: 0;
  }

  .quantity-layout {
    --panel-width: 490px;
    --visual-width: clamp(440px, 50vw, 724px);
    --gap: clamp(24px, 3.3vw, 48px);
    display: flex;
    align-items: stretch;
    gap: var(--gap);
    width: 100%;
    max-width: 1450px;
    height: 894px;
    margin: 0 auto;
  }

  .quantity-visual {
    display: block;
    flex: 0 0 var(--visual-width);
    height: 100%;
    min-width: 0;
    overflow: hidden;
    background: #c7d58c;
  }

  .quantity-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .quantity-panel {
    flex: 0 0 var(--panel-width);
    width: var(--panel-width);
    margin: 39px 0 46px;
  }

  .quantity-footer {
    flex-direction: row;
    justify-content: space-between;
    height: 60px;
    min-height: 60px;
    margin-top: 0;
    padding: 0 clamp(48px, 8.6vw, 125px);
  }

  .footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    height: 26px;
    color: #fff;
  }

  .footer-brand img {
    width: 92px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .footer-brand span {
    color: #fff;
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 20px;
  }

  .footer-links {
    width: auto;
    gap: 20px;
    font-size: 14px;
    line-height: 19px;
  }

  .quantity-footer p {
    display: none;
  }
}

@media (min-width: 1450px) {
  .quantity-layout {
    --visual-width: calc((100vw - 1450px) / 2 + 724px);
    --gap: 48px;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .top-header {
    height: 50px;
    padding: 0 24px 0 61px;
    justify-content: flex-start;
  }

  .header-back {
    left: 19px;
    top: 15px;
    width: 20px;
    height: 20px;
  }

  .header-back svg {
    width: 12px;
    height: 12px;
  }

  .checkout-stepper {
    gap: 3px;
    transform: none;
    transform-origin: left center;
  }

  .step {
    gap: 5px;
    height: 17px;
    font-size: 10px;
    line-height: 12px;
  }

  .step b {
    width: 17px;
    height: 17px;
    font-size: 10px;
  }

  .step-line {
    flex: 0 0 clamp(28px, 9.25vw, 37px);
  }

  .step-plural {
    display: none;
  }

  .quantity-panel {
    width: min(calc(100vw - 32px), 360px);
    margin-top: 165px;
    margin-bottom: 31px;
  }

  .discount-callout,
  .progress-card,
  .guarantee-box {
    display: none;
  }

  .mobile-bundle-progress {
    position: absolute;
    left: 50%;
    top: 18px;
    display: flex;
    width: min(calc(100vw - 32px), 360px);
    flex-direction: column;
    gap: 10px;
    transform: translateX(-50%);
    animation: panel-rise 190ms 30ms var(--ease-out) both;
  }

  .mobile-combo-bar {
    position: relative;
    width: 100%;
    height: 84px;
  }

  .mobile-combo-shell {
    position: absolute;
    inset: 9px 0 0;
    border: 1px solid var(--orange);
    border-radius: 18px;
    background: var(--cream);
  }

  .mobile-combo-track,
  .mobile-shipping-row {
    position: absolute;
    left: clamp(10px, 4.44vw, 16px);
    right: clamp(10px, 3.89vw, 14px);
    display: grid;
    grid-template-columns:
      minmax(70px, 1fr)
      minmax(14px, 41px)
      minmax(70px, 1fr)
      minmax(14px, 41px)
      minmax(70px, 1fr);
    align-items: center;
  }

  .mobile-combo-track {
    top: 28px;
  }

  .mobile-combo-stage {
    position: relative;
    display: flex;
    justify-content: center;
    min-width: 0;
  }

  .mobile-price {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 84px);
    height: 26px;
    padding: 0 8px;
    border: 1px solid #efefef;
    border-radius: 58px;
    background: #fff;
    color: #959996;
    font-size: clamp(9px, 2.95vw, 12px);
    font-weight: 400;
    line-height: 1.36;
    white-space: nowrap;
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease;
  }

  .mobile-price b {
    font-weight: 650;
  }

  .mobile-discount {
    position: absolute;
    left: 50%;
    top: -28px;
    display: grid;
    place-items: center;
    width: 53px;
    height: 17px;
    padding: 0 10px;
    border-radius: 39px;
    background: #e7e7e7;
    color: #828282;
    font-size: clamp(8px, 2.65vw, 10px);
    font-weight: 650;
    line-height: 1.36;
    text-transform: uppercase;
    white-space: nowrap;
    transform: translateX(-50%);
    transition:
      background-color 180ms ease,
      color 180ms ease;
  }

  .mobile-combo-stage[data-stage="1"] .mobile-discount {
    width: 49px;
  }

  .mobile-connector {
    height: 7px;
    background: #f3eee1;
    transition: background-color 180ms ease;
  }

  .mobile-shipping-row {
    top: 62px;
  }

  .mobile-shipping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #959996;
    font-size: clamp(8px, 2.65vw, 10px);
    font-weight: 650;
    line-height: 1.36;
    white-space: nowrap;
    transition: color 180ms ease;
  }

  .mobile-shipping img {
    width: 12px;
    height: 8px;
    object-fit: contain;
  }

  .mobile-shipping-stage-2 {
    grid-column: 3;
  }

  .mobile-shipping-stage-3 {
    grid-column: 5;
  }

  .mobile-bundle-progress[data-qty="1"] .mobile-combo-stage[data-stage="1"] .mobile-price,
  .mobile-bundle-progress[data-qty="2"] .mobile-combo-stage[data-stage="1"] .mobile-price,
  .mobile-bundle-progress[data-qty="2"] .mobile-combo-stage[data-stage="2"] .mobile-price,
  .mobile-bundle-progress[data-qty="3"] .mobile-combo-stage .mobile-price {
    border-color: transparent;
    background: var(--yellow);
    color: var(--green-2);
  }

  .mobile-bundle-progress[data-qty="1"] .mobile-combo-stage[data-stage="1"] .mobile-discount,
  .mobile-bundle-progress[data-qty="2"] .mobile-combo-stage[data-stage="1"] .mobile-discount,
  .mobile-bundle-progress[data-qty="2"] .mobile-combo-stage[data-stage="2"] .mobile-discount,
  .mobile-bundle-progress[data-qty="3"] .mobile-combo-stage .mobile-discount {
    background: var(--lime);
    color: var(--green-2);
  }

  .mobile-bundle-progress[data-qty="1"] .connector-one,
  .mobile-bundle-progress[data-qty="2"] .connector-one,
  .mobile-bundle-progress[data-qty="2"] .connector-two,
  .mobile-bundle-progress[data-qty="3"] .mobile-connector {
    background: var(--yellow);
  }

  .mobile-bundle-progress[data-qty="2"] .mobile-shipping-stage-2,
  .mobile-bundle-progress[data-qty="3"] .mobile-shipping {
    color: var(--green-2);
  }

  .mobile-upgrade-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 37px;
    padding: 0 10px;
    border: 1px dashed var(--green-2);
    border-radius: 58px;
    background: #e4fcc0;
    color: var(--green-2);
    font-size: clamp(9px, 2.78vw, 11px);
    font-weight: 400;
    line-height: 1.36;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-upgrade-pill b {
    font-weight: 800;
  }

  .quantity-title {
    margin: 0;
    padding-left: 21px;
    font-size: 14px;
    line-height: 19px;
  }

  .quantity-selector {
    gap: 11px;
    margin-top: 15px;
  }

  .qty-card {
    height: 77px;
    padding: 0 16px;
    border-radius: 15px;
  }

  .qty-card.active {
    border-color: var(--yellow);
  }

  .qty-state {
    width: 25px;
    height: 25px;
  }

  .qty-copy,
  .qty-label {
    margin-left: 10px;
  }

  .qty-copy {
    min-width: 62px;
  }

  .free-pill {
    display: inline-flex;
    width: 80px;
    height: 20px;
    margin-left: 10px;
  }

  .card-badge.discount {
    right: 92px;
    width: 49px;
    padding: 0;
  }

  .card-badge.best {
    right: 16px;
    min-width: 75px;
    padding: 0;
  }

  .qty-price {
    right: 16px;
    top: 50%;
    bottom: auto;
    gap: 2px;
    transform: translateY(-50%);
  }

  .order-summary {
    align-items: center;
    height: 29px;
    margin-top: 18px;
  }

  .order-price {
    flex-direction: row;
    align-items: center;
    gap: 3px;
  }

  .main-cta {
    height: 73px;
    margin-top: 18px;
  }

  .main-cta span {
    font-size: 18px;
  }

  .quantity-footer {
    min-height: 60px;
    padding: 11px 16px 10px;
  }
}

@media (max-width: 374px) {
  .mobile-bundle-progress {
    top: 8px;
    width: min(calc(100vw - 28px), 360px);
  }

  .quantity-panel {
    width: min(calc(100vw - 28px), 360px);
    margin-top: 145px;
  }

  .checkout-stepper {
    gap: 2px;
  }

  .step {
    gap: 3px;
    font-size: 9px;
  }

  .step-line {
    flex-basis: 24px;
  }

  .qty-card {
    padding: 0 13px;
  }

  .qty-copy {
    min-width: 58px;
  }

  .free-pill {
    width: 76px;
    margin-left: 7px;
  }

  .card-badge {
    font-size: 9px;
  }

  .card-badge.discount {
    right: 88px;
  }

  .card-badge.best {
    right: 13px;
  }

  .qty-price {
    right: 13px;
  }

  .order-chips span {
    padding: 0 8px;
    font-size: 11px;
  }
}

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

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes panel-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes selected-pop {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.012);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes price-pop {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.075);
  }

  100% {
    transform: scale(1);
  }
}
