@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;
  --muted: #91a598;
  --soft-green: #edffea;
  --cream: #fff9f0;
  --yellow: #ffd38c;
  --lime: #cdec89;
  --orange: #ffb237;
  --red: #e34040;
  --red-soft: #ffc3c3;
  --line: #f2f2f2;
  --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: #f6f6f4;
}

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;
}

.cart-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: max(900px, 100vh);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.checkout-layout,
.cart-panel {
  display: contents;
}

.desktop-visual,
.footer-brand {
  display: none;
}

.flavor-toast {
  position: fixed;
  left: 50%;
  top: 66px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  padding: 10px;
  border-radius: 78px;
  color: #000;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.205;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 12px) scale(0.98);
  will-change: opacity, transform;
}

.flavor-toast[hidden] {
  display: none;
}

.flavor-toast.is-visible {
  animation: flavor-pill-rise 1320ms var(--ease-out) both;
}

.flavor-toast[data-flavor="melancia"] {
  background: #ffc5c5;
}

.flavor-toast[data-flavor="abacaxi"] {
  background: #d6f9a1;
}

.flavor-toast[data-flavor="limao"] {
  background: #fff4b7;
}

.flavor-toast-icon {
  flex: 0 0 auto;
  object-fit: contain;
}

.flavor-toast[data-flavor="melancia"] .flavor-toast-icon {
  width: 27px;
  height: 16px;
}

.flavor-toast[data-flavor="abacaxi"] .flavor-toast-icon {
  width: 29px;
  height: 21px;
}

.flavor-toast[data-flavor="limao"] .flavor-toast-icon {
  width: 21px;
  height: 21px;
}

.top-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 50px;
  padding: 0 20px 0 60px;
  background: var(--cream);
  animation: header-drop 540ms var(--ease-out) both;
}

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

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

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

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

.new-flavor-bar {
  position: relative;
  height: 40px;
  background: linear-gradient(90deg, #dd9669 0%, #e34040 100%);
  animation: bar-reveal 620ms 80ms var(--ease-out) both;
}

.new-flavor-bar strong {
  position: absolute;
  left: 22px;
  top: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  white-space: nowrap;
}

.flavor-lockup {
  position: absolute;
  right: 16px;
  top: 11px;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

.fruit-lockup {
  position: relative;
  display: block;
  width: 20.6px;
  height: 14px;
  transform-origin: center;
  animation: fruit-pop 620ms 260ms var(--ease-snap) both;
}

.fruit-kiwi {
  position: absolute;
  left: 7px;
  top: 0;
  width: 13.8px;
  height: 13px;
}

.fruit-strawberry {
  position: absolute;
  left: 1px;
  top: 1.7px;
  width: 11.1px;
  height: 12.3px;
}

.fruit-leaf {
  position: absolute;
  left: 0;
  top: 0.6px;
  width: 9px;
  height: 6px;
}

.cart-content {
  width: min(calc(100vw - 40px), 520px);
  margin: 24px auto 0;
}

.checkout-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(279px, calc(100vw - 80px));
  height: 17px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  animation: panel-rise 560ms 180ms var(--ease-out) both;
}

.step {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
  height: 17px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  line-height: 12px;
  white-space: nowrap;
}

.step b {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--green-2);
  font-size: 10px;
  font-weight: 650;
  line-height: 1;
}

.step.next {
  color: #b8c5bc;
}

.step.next b {
  background: #e4efe3;
  color: #fff;
  font-size: 9px;
}

.step-line {
  flex: 1 1 37px;
  max-width: 37px;
  min-width: 5px;
  height: 3px;
  margin: 0 3px 0 6px;
  background: #b8c5bc;
}

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

.authority-row {
  display: flex;
  align-items: center;
  width: 100%;
  height: 29px;
  margin-top: 0;
  animation: panel-rise 600ms 260ms var(--ease-out) both;
}

.authority-logo {
  width: 71px;
  height: 19px;
  margin-left: -3px;
}

.avatar-stack {
  position: relative;
  width: 56px;
  height: 24px;
  margin-left: 10px;
}

.avatar-stack img {
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--green);
  border-radius: 999px;
  object-fit: cover;
}

.avatar-stack img:nth-child(1) {
  left: 0;
  object-position: 50% 28%;
}

.avatar-stack img:nth-child(2) {
  left: 16px;
  object-position: 50% 34%;
}

.avatar-stack img:nth-child(3) {
  left: 32px;
  object-position: 50% 30%;
}

.authority-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  margin-left: 11px;
}

.authority-copy strong {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 13px;
  white-space: nowrap;
}

.authority-copy div {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.authority-copy span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-size: 7px;
  font-weight: 400;
  line-height: 16px;
  white-space: nowrap;
}

.authority-copy span img {
  width: 7px;
  height: 7px;
  object-fit: contain;
}

.flavor-title {
  display: block;
  width: 100%;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--green-2);
  font-size: 14px;
  font-weight: 650;
  line-height: 19px;
  animation: text-rise 520ms 340ms var(--ease-out) both;
}

.flavor-title li {
  padding-left: 0;
}

.flavor-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
  animation: stack-rise 680ms 410ms var(--ease-out) both;
}

.flavor-card {
  position: relative;
  width: 100%;
  height: 80px;
}

.flavor-card.unavailable,
.flavor-card.is-maxed {
  cursor: not-allowed;
}

.flavor-accent {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transition: transform 260ms var(--ease-out);
}

.accent-abacaxi {
  left: 0;
  top: 14px;
  width: 65.7px;
  height: 51px;
}

.accent-melancia {
  left: 1px;
  top: 20px;
  width: 59px;
  height: 39px;
}

.accent-limao {
  left: 0;
  top: 13px;
  width: 52px;
  height: 54px;
}

.accent-manga {
  left: 0;
  top: 13px;
  width: 60px;
  height: 54px;
}

.flavor-surface {
  position: absolute;
  z-index: 2;
  inset: 0 0 0 26px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.flavor-card.selected .flavor-surface {
  border-color: var(--yellow);
  background: var(--cream);
}

.flavor-card:hover .flavor-surface {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgb(36 88 53 / 7%);
}

.flavor-card:hover .flavor-accent {
  transform: translateX(-2px) rotate(-2deg);
}

.flavor-card.unavailable::after,
.flavor-card.is-maxed::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0 0 0 26px;
  border-radius: 15px;
  background: rgb(255 255 255 / 58%);
  pointer-events: none;
}

.flavor-card.unavailable::before,
.flavor-card.is-maxed::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 0 26px;
  border-radius: 15px;
  background: #fff;
  pointer-events: none;
}

.flavor-card.unavailable .flavor-accent,
.flavor-card.is-maxed .flavor-accent {
  opacity: 0.7;
}

.flavor-thumb {
  position: absolute;
  left: 4px;
  top: 4px;
  display: grid;
  place-items: center;
  width: 68.6px;
  height: 72px;
  overflow: hidden;
  border-radius: 15px;
  background: #f6f6f6;
}

.flavor-thumb img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.flavor-copy {
  position: absolute;
  left: 83px;
  top: 14px;
  display: flex;
  flex-direction: column;
  width: 140px;
}

.flavor-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
}

.flavor-copy strong {
  margin-top: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 17px;
}

.flavor-copy a {
  width: max-content;
  margin-top: 2px;
  color: var(--green);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  text-decoration: underline;
  text-underline-offset: 1px;
}

.flavor-actions {
  position: absolute;
  right: 15px;
  top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flavor-card.selected .flavor-actions {
  top: 32px;
  width: 86px;
  justify-content: space-between;
}

.round-btn {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 999px;
  background: var(--green-2);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms ease;
}

.round-btn:hover {
  transform: scale(1.06);
  background: #2f672f;
}

.round-btn:disabled,
.add-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.round-btn:disabled:hover,
.add-btn:disabled:hover {
  transform: none;
  background: var(--green-2);
}

.round-btn:active {
  transform: scale(0.94);
}

.flavor-actions output {
  color: var(--green-2);
  font-size: 16px;
  font-weight: 800;
  line-height: 22px;
}

.add-btn,
.soldout-btn {
  display: grid;
  place-items: center;
  width: 91.5px;
  height: 29px;
  border-radius: 112px;
  font-size: 12px;
  font-weight: 800;
  line-height: 14px;
  white-space: nowrap;
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms ease;
}

.add-btn {
  background: var(--green);
  color: #fff;
}

.add-btn:hover {
  transform: translateY(-1px);
  background: #2f672f;
}

.add-btn:disabled:hover {
  background: var(--green);
}

.soldout-btn {
  background: var(--red-soft);
  color: var(--red);
  cursor: not-allowed;
}

.flavor-badge {
  position: absolute;
  right: 20px;
  top: -1px;
  z-index: 4;
  display: grid;
  place-items: center;
  height: 18px;
  padding: 0 8px;
  border-radius: 0 0 5px 5px;
  font-size: 10px;
  font-weight: 650;
  line-height: 12px;
  white-space: nowrap;
}

.badge-yellow {
  background: var(--yellow);
  color: var(--green);
}

.badge-red {
  background: var(--red-soft);
  color: var(--red);
}

.flavor-card[data-flavor="melancia"] .flavor-badge {
  right: 11px;
}

.flavor-card[data-flavor="limao"] .flavor-badge {
  right: 8px;
}

.order-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 29px;
  margin-top: 20px;
  animation: text-rise 520ms 520ms var(--ease-out) both;
}

.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;
  transition: transform 220ms var(--ease-out);
}

.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 420ms var(--ease-snap) both;
}

.buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  width: 100%;
  height: 73px;
  margin-top: 20px;
  border-radius: 78px;
  background: var(--cta-green);
  color: #fff;
  animation: cta-rise 620ms 610ms var(--ease-out) both;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background-color 180ms ease,
    opacity 180ms ease;
}

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

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

.buy-loader {
  display: none;
  width: 34px;
  height: 34px;
  border: 4px solid rgb(255 255 255 / 34%);
  border-top-color: #fff;
  border-radius: 999px;
  animation: buy-loader-spin 980ms linear infinite;
}

.buy-btn:hover {
  transform: translateY(-3px);
  background: #2f672f;
  box-shadow: 0 18px 30px rgb(51 102 51 / 22%);
}

.buy-btn:hover img {
  transform: translateX(6px);
}

.buy-btn:active {
  transform: translateY(-1px) scale(0.992);
}

.buy-btn.is-incomplete {
  background: #91a598;
  opacity: 0.64;
  cursor: not-allowed;
  filter: saturate(0.42);
  box-shadow: none;
}

.buy-btn.is-loading {
  gap: 0;
  cursor: wait;
}

.buy-btn.is-loading .buy-label,
.buy-btn.is-loading img {
  display: none;
}

.buy-btn.is-loading .buy-loader {
  display: block;
}

.buy-btn:disabled {
  pointer-events: none;
}

.guarantee-box {
  display: flex;
  align-items: center;
  width: min(calc(100vw - 40px), 520px);
  height: 112px;
  margin: 21px auto 40px;
  padding: 17px 18px;
  border: 2px dashed #f9e18e;
  border-radius: 15px;
  background: #fff;
  animation: panel-rise 640ms 700ms var(--ease-out) both;
}

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

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

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

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

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

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

.cart-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-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 {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-footer p {
  margin: 5px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
}

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

@keyframes logo-settle {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes bar-reveal {
  from {
    opacity: 0;
    transform: scaleX(0.96);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes fruit-pop {
  from {
    opacity: 0;
    transform: scale(0.7) rotate(-12deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

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

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

@keyframes stack-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cta-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes price-pop {
  0% {
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(-2px) scale(1.04);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes flavor-pill-rise {
  0% {
    opacity: 0;
    transform: translate(-50%, 12px) scale(0.98);
  }
  18% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  72% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -7px) scale(0.99);
  }
}

@keyframes buy-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .buy-loader {
    animation-duration: 1200ms;
  }
}

@media (max-width: 374px) {
  .cart-content,
  .guarantee-box {
    width: min(calc(100vw - 40px), 360px);
  }

  .new-flavor-bar strong {
    left: 14px;
  }

  .flavor-lockup {
    right: 12px;
  }

  .checkout-stepper {
    width: min(279px, calc(100vw - 80px));
  }

  .step {
    font-size: 9px;
  }

  .step-line {
    min-width: 4px;
    margin-right: 2px;
    margin-left: 4px;
  }

  .authority-logo {
    width: 62px;
  }

  .avatar-stack {
    margin-left: 6px;
    transform: scale(0.9);
    transform-origin: left center;
  }

  .authority-copy {
    margin-left: 4px;
  }

  .authority-copy strong {
    font-size: 10px;
  }

  .authority-copy div {
    gap: 3px;
  }

  .authority-copy span {
    gap: 3px;
    font-size: 6px;
  }

  .flavor-surface {
    left: 21px;
  }

  .flavor-thumb {
    width: 61px;
  }

  .flavor-thumb img {
    width: 52px;
    height: 52px;
  }

  .flavor-copy {
    left: 72px;
    width: calc(100% - 178px);
  }

  .flavor-copy strong {
    font-size: 13px;
    line-height: 16px;
  }

  .flavor-actions {
    right: 10px;
  }

  .add-btn,
  .soldout-btn {
    width: 82px;
    font-size: 11px;
  }

  .flavor-card.selected .flavor-actions {
    width: 78px;
  }

  .round-btn {
    width: 25px;
    height: 25px;
  }

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

  .order-price del {
    font-size: 12px;
  }

  .order-price strong {
    font-size: 14px;
  }

  .buy-btn {
    gap: 12px;
  }

  .buy-btn span {
    font-size: 16px;
  }

  .guarantee-box {
    padding-right: 14px;
    padding-left: 14px;
  }

  .guarantee-box > img {
    width: 64px;
    height: auto;
  }

  .guarantee-box div {
    margin-left: 10px;
  }

  .guarantee-box h2 {
    font-size: 13px;
  }

  .guarantee-box span {
    font-size: 11px;
    line-height: 14px;
  }
}

@media (min-width: 401px) {
  .cart-content,
  .guarantee-box {
    width: min(calc(100vw - 40px), 520px);
  }
}

@media (min-width: 768px) and (max-width: 989px) {
  .top-header {
    justify-content: center;
    padding-right: 64px;
    padding-left: 64px;
  }

  .checkout-stepper {
    width: min(560px, calc(100vw - 150px));
    height: 20px;
    gap: 6px;
    margin: 0 auto;
  }

  .step {
    gap: 5px;
    height: 20px;
    font-size: 12px;
    line-height: 15px;
  }

  .step b {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .step.next b {
    font-size: 10px;
  }

  .step-line {
    flex: 1 1 clamp(76px, 13vw, 130px);
    min-width: 76px;
    max-width: 130px;
    margin: 0;
  }

  .cart-content,
  .guarantee-box {
    width: min(calc(100vw - 40px), 860px);
  }

  .authority-row {
    justify-content: center;
    width: min(100%, 760px);
    height: 38px;
    margin-right: auto;
    margin-left: auto;
  }

  .authority-logo {
    width: 110px;
    height: 30px;
    margin-left: 0;
    object-fit: contain;
  }

  .avatar-stack {
    width: 72px;
    height: 30px;
    margin-left: 14px;
  }

  .avatar-stack img {
    width: 30px;
    height: 30px;
  }

  .avatar-stack img:nth-child(2) {
    left: 21px;
  }

  .avatar-stack img:nth-child(3) {
    left: 42px;
  }

  .authority-copy {
    flex: 0 1 auto;
    margin-left: 14px;
  }

  .authority-copy strong {
    font-size: 15px;
    line-height: 18px;
  }

  .authority-copy div {
    justify-content: flex-start;
    gap: 12px;
  }

  .authority-copy span {
    gap: 5px;
    font-size: 9px;
    line-height: 14px;
  }

  .authority-copy span img {
    width: 8px;
    height: 8px;
  }

  .flavor-copy {
    width: calc(100% - 230px);
  }

  .add-btn,
  .soldout-btn {
    width: 112px;
  }
}

@media (min-width: 990px) {
  .cart-frame {
    min-height: 100vh;
  }

  .top-header {
    height: 60px;
    justify-content: center;
    padding: 0 23px;
  }

  .flavor-toast {
    top: 68px;
  }

  .header-back {
    left: 23px;
    top: 17px;
    width: 26px;
    height: 26px;
  }

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

  .checkout-stepper {
    width: auto;
    height: 20px;
    gap: 6px;
  }

  .step {
    gap: 5px;
    height: 20px;
    font-size: 14px;
    line-height: 17px;
  }

  .step b {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .step.next b {
    font-size: 10px;
  }

  .step-line {
    flex: 0 0 clamp(70px, 6.9vw, 100px);
    max-width: 100px;
    min-width: 70px;
    margin: 0;
  }

  .checkout-layout {
    --desktop-panel-width: 490px;
    --desktop-gap: clamp(24px, 4.1vw, 59px);
    --desktop-side-padding: clamp(20px, 3vw, 44px);
    display: flex;
    flex: 1 0 auto;
    align-items: stretch;
    gap: var(--desktop-gap);
    width: 100%;
    max-width: 1450px;
    min-height: calc(100vh - 120px);
    margin: 0 auto;
    padding-right: var(--desktop-side-padding);
  }

  .desktop-visual {
    display: block;
    flex: 0 0 min(725px, calc(100vw - var(--desktop-panel-width) - var(--desktop-gap) - var(--desktop-side-padding)));
    min-width: 360px;
    overflow: hidden;
    background: #d6dfa5;
  }

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

  .cart-panel {
    display: flex;
    flex: 0 0 var(--desktop-panel-width);
    flex-direction: column;
    align-self: flex-start;
    width: var(--desktop-panel-width);
    margin-top: 46px;
    margin-bottom: 46px;
  }

  .cart-content {
    width: 100%;
    margin: 0;
  }

  .authority-row {
    justify-content: center;
    height: 29px;
  }

  .authority-logo {
    width: 94px;
    height: 26px;
    margin-left: 0;
    object-fit: contain;
  }

  .avatar-stack {
    width: 56px;
    margin-left: 11px;
  }

  .authority-copy {
    flex: 0 1 auto;
    margin-left: 11px;
  }

  .authority-copy strong {
    font-size: 14px;
    line-height: 17px;
  }

  .authority-copy span {
    font-size: 10px;
    line-height: 16px;
  }

  .authority-copy span img {
    width: 8px;
    height: 8px;
  }

  .flavor-title {
    margin-top: 20px;
    padding-left: 20px;
  }

  .flavor-list {
    gap: 10px;
    margin-top: 20px;
  }

  .flavor-card {
    height: 99px;
  }

  .flavor-surface,
  .flavor-card.unavailable::before,
  .flavor-card.unavailable::after,
  .flavor-card.is-maxed::before,
  .flavor-card.is-maxed::after {
    inset: 0 0 0 35px;
  }

  .accent-abacaxi {
    left: 0;
    top: 17px;
    width: 85px;
    height: 63px;
  }

  .accent-melancia {
    left: 0;
    top: 25px;
    width: 72px;
    height: 48px;
  }

  .accent-limao {
    left: 0;
    top: 15px;
    width: 72px;
    height: 74px;
  }

  .accent-manga {
    left: 0;
    top: 17px;
    width: 78px;
    height: 70px;
  }

  .flavor-thumb {
    left: 5px;
    top: 5px;
    width: 89px;
    height: 89px;
  }

  .flavor-thumb img {
    width: 65px;
    height: 65px;
  }

  .flavor-copy {
    left: 124px;
    top: 27px;
    width: 180px;
  }

  .flavor-copy small {
    font-size: 12px;
    line-height: 14px;
  }

  .flavor-copy strong {
    font-size: 14px;
    line-height: 17px;
  }

  .flavor-copy a {
    font-size: 12px;
    line-height: 14px;
  }

  .flavor-actions {
    right: 20px;
    top: 31px;
  }

  .flavor-card.selected .flavor-actions {
    top: 36px;
  }

  .add-btn,
  .soldout-btn {
    width: 119px;
    height: 36px;
  }

  .flavor-badge {
    right: 20px;
    height: 18px;
  }

  .flavor-card[data-flavor="melancia"] .flavor-badge {
    right: 20px;
  }

  .flavor-card[data-flavor="limao"] .flavor-badge {
    right: 20px;
  }

  .order-summary {
    height: 29px;
    margin-top: 20px;
  }

  .buy-btn {
    height: 80px;
    margin-top: 20px;
  }

  .guarantee-box {
    justify-content: center;
    width: 100%;
    height: 125px;
    margin: 21px 0 0;
    padding: 17px 18px;
    border-color: var(--yellow);
    border-radius: 20px;
  }

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

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

  .guarantee-box p {
    font-size: 14px;
    line-height: 17px;
  }

  .guarantee-box h2 {
    font-size: 16px;
    line-height: 19px;
  }

  .guarantee-box span {
    font-size: 14px;
    line-height: 18px;
  }

  .cart-footer {
    flex-direction: row;
    justify-content: space-between;
    min-height: 60px;
    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;
  }

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

@media (min-width: 1450px) {
  .checkout-layout {
    --desktop-gap: 59px;
    max-width: none;
  }

  .desktop-visual {
    flex-basis: calc((100vw - 1450px) / 2 + 725px);
  }
}

.cart-frame *,
.cart-frame *::before,
.cart-frame *::after {
  animation-duration: 160ms !important;
  animation-delay: 0ms !important;
}

.cart-frame .flavor-toast.is-visible {
  animation-duration: 1320ms !important;
  animation-delay: 0ms !important;
}

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

  .cart-frame .flavor-toast.is-visible {
    animation-duration: 1ms !important;
  }
}
