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

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #f6f6f4;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  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;
}

.pdp-v2 {
  position: relative;
  width: 1450px;
  height: 2615px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #eaeaea;
  background: #fff;
  transform: scale(var(--desktop-scale));
  transform-origin: top center;
}

.top-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 1450px;
  height: 70px;
  border: 1px solid #fff;
  background: var(--soft-green);
  animation: header-drop 540ms var(--ease-out) both;
}

.brand-mark {
  position: absolute;
  left: 660px;
  top: 13px;
  width: 130px;
  height: 38px;
  animation: logo-settle 650ms 120ms var(--ease-snap) both;
}

.brand-mark img {
  position: absolute;
  left: 0;
  top: 6px;
  width: 116.5px;
  height: 31.9px;
}

.brand-mark span {
  position: absolute;
  left: 119px;
  top: 0;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 29px;
}

.new-flavor-bar {
  position: absolute;
  left: 0;
  top: 70px;
  width: 1450px;
  height: 70px;
  background: linear-gradient(90deg, #e34040 0%, #cdec89 100%);
  animation: bar-reveal 620ms 80ms var(--ease-out) both;
}

.new-flavor-bar > strong {
  position: absolute;
  left: 149px;
  top: 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 22px;
}

.flavor-lockup {
  position: absolute;
  left: 593px;
  top: 17px;
  display: flex;
  align-items: center;
  gap: 17px;
  height: 36px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  white-space: nowrap;
}

.fruit-lockup {
  position: relative;
  display: block;
  width: 54px;
  height: 36px;
}

.fruit-kiwi {
  position: absolute;
  left: 17.7px;
  top: 0;
  width: 36.3px;
  height: 33.8px;
}

.fruit-strawberry {
  position: absolute;
  left: 2.9px;
  top: 4.3px;
  width: 28.9px;
  height: 31.7px;
}

.fruit-leaf {
  position: absolute;
  left: 0;
  top: 1.1px;
  width: 23.3px;
  height: 15.7px;
}

.available-cta {
  position: absolute;
  left: 1094px;
  top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 188px;
  height: 42px;
  border-radius: 9px;
  background: #fff;
  color: var(--green-2);
  font-size: 16px;
  font-weight: 800;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.available-cta img {
  width: 19px;
  height: 19px;
  transition: transform 220ms var(--ease-out);
}

.available-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgb(32 82 46 / 18%);
}

.available-cta:hover img {
  transform: translateX(4px);
}

.hero-card {
  position: absolute;
  left: 182px;
  top: 191px;
  width: 500px;
  height: 380px;
  overflow: visible;
  border-radius: 46px;
  background: var(--green);
  animation: card-rise 700ms 180ms var(--ease-out) both;
}

.hero-slider {
  isolation: isolate;
}

.hero-slider-window {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: var(--green);
  cursor: grab;
  touch-action: pan-y;
}

.hero-slider-window.is-dragging {
  cursor: grabbing;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.hero-slide {
  display: block;
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.slider-btn {
  position: absolute;
  z-index: 5;
  top: 14px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgb(255 255 255 / 76%);
  border-radius: 999px;
  background: rgb(255 255 255 / 84%);
  color: var(--green-2);
  opacity: 0.94;
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out),
    background-color 180ms ease,
    box-shadow 220ms var(--ease-out);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px rgb(0 0 0 / 10%);
}

.slider-btn svg {
  width: 18px;
  height: 18px;
}

.slider-btn path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-btn-prev {
  left: 16px;
}

.slider-btn-next {
  left: 150px;
}

.hero-slider:hover .slider-btn,
.slider-btn:focus-visible {
  opacity: 1;
  background: #fff;
  box-shadow: 0 8px 22px rgb(0 0 0 / 14%);
}

.slider-btn:hover {
  transform: scale(1.07);
}

.slider-btn:active {
  transform: scale(0.96);
}

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 60px;
  top: 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 18px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgb(255 255 255 / 52%);
  backdrop-filter: blur(8px);
}

.hero-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 999px;
  background: rgb(32 82 46 / 35%);
  transition:
    width 220ms var(--ease-out),
    background-color 220ms ease,
    transform 220ms var(--ease-out);
}

.hero-dots button.active {
  width: 20px;
  background: var(--green-2);
}

.hero-dots button:hover {
  transform: scale(1.18);
}

.hero-slider.is-changing .hero-slide {
  animation: slider-image-settle 520ms var(--ease-out) both;
}

.nutrition-link {
  position: absolute;
  left: 346px;
  top: 593px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.intro-copy {
  position: absolute;
  left: 775px;
  top: 195px;
  width: 468px;
  animation: copy-rise 650ms 250ms var(--ease-out) both;
}

.authority-line {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 14px;
}

.authority-line img {
  width: 76px;
  height: 12px;
}

.authority-line span {
  color: #477247;
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}

.authority-line b {
  font-weight: 700;
}

.intro-copy h1 {
  width: 463px;
  margin: 19px 0 0;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
}

.intro-copy sup {
  font-size: 13px;
}

.intro-copy p {
  width: 445px;
  margin: 19px 0 0;
  color: #525252;
  font-size: 16px;
  line-height: 21.8px;
}

.quantity-block {
  position: absolute;
  left: 799px;
  top: 410px;
  width: 467px;
  height: 161px;
}

.quantity-block h2 {
  position: absolute;
  left: 136px;
  top: 0;
  margin: 0;
  color: var(--green-2);
  font-size: 16px;
  font-weight: 650;
  line-height: 22px;
}

.quantity-progress {
  position: absolute;
  left: 0;
  top: 43px;
  width: 467px;
  height: 118px;
}

.quantity-progress::before {
  content: "";
  position: absolute;
  left: 0;
  top: 44px;
  width: 467px;
  height: 74px;
  border: 1px solid #d8e1d6;
  border-radius: 207px;
  background: #fff;
}

.progress-track,
.progress-fill {
  position: absolute;
  top: 41px;
  height: 5px;
  border-radius: 8px;
}

.progress-track {
  left: 108px;
  width: 239px;
  background: #d8e1d6;
}

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

.quantity-progress[data-qty="1"] .progress-fill {
  width: 0;
}

.quantity-progress[data-qty="2"] .progress-fill {
  width: 164px;
}

.quantity-progress[data-qty="3"] .progress-fill {
  width: 239px;
}

.qty-node {
  position: absolute;
  z-index: 2;
  top: 25px;
  width: 90px;
  height: 90px;
  padding: 0;
  background: transparent;
  color: #bbcbb8;
  text-align: center;
}

.qty-node[data-qty="1"] {
  left: 45px;
}

.qty-node[data-qty="2"] {
  left: 181px;
}

.qty-node[data-qty="3"] {
  left: 318px;
}

.qty-node b {
  position: absolute;
  left: 26px;
  top: 0;
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 999px;
  background: #d8e1d6;
  color: #bbcbb8;
  font-size: 16px;
  font-weight: 800;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms var(--ease-snap);
}

.qty-node.active b,
.quantity-progress[data-qty="3"] .qty-node b,
.quantity-progress[data-qty="2"] .qty-node[data-qty="1"] b {
  background: var(--orange);
  color: #fff;
}

.qty-node.active b {
  transform: scale(1.06);
}

.ship-tag {
  position: absolute;
  left: 8px;
  top: -25px;
  display: grid;
  place-items: center;
  min-width: 72px;
  height: 18px;
  padding: 0 3px;
  border-radius: 5px;
  background: #d8e1d6;
  color: #fff;
  font-size: 10px;
  font-weight: 650;
  line-height: 14px;
  text-transform: uppercase;
}

.qty-node[data-qty="1"] .ship-tag {
  display: none;
}

.qty-node.active .ship-tag,
.quantity-progress[data-qty="3"] .qty-node .ship-tag {
  background: var(--orange);
}

.qty-node strong {
  position: absolute;
  left: 0;
  top: 44px;
  width: 90px;
  color: #000;
  font-size: 12px;
  font-weight: 650;
  line-height: 16px;
  white-space: nowrap;
}

.qty-node strong span {
  font-weight: 400;
}

.qty-node em {
  position: absolute;
  left: 20px;
  top: 62px;
  color: var(--orange);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 14px;
  text-transform: uppercase;
}

.qty-node[data-qty="1"] em {
  display: none;
}

.discount-callout {
  position: absolute;
  left: 843px;
  top: 593px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 362px;
  height: 37px;
  border: 1px dashed var(--green-2);
  border-radius: 58px;
  background: #e4fcc0;
  color: var(--green-2);
  font-size: 12px;
  line-height: 16px;
}

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

.flavor-title {
  position: absolute;
  left: 941px;
  top: 652px;
  width: 165px;
  margin: 0;
  color: var(--green-2);
  font-size: 16px;
  font-weight: 650;
  line-height: 22px;
  text-align: center;
}

.flavor-list {
  position: absolute;
  left: 774px;
  top: 703px;
  width: 492px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flavor-card {
  position: relative;
  width: 492px;
  height: 99px;
}

.flavor-accent {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

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

.accent-melancia {
  left: 2px;
  top: 25px;
  width: 77px;
  height: 48px;
}

.accent-limao {
  left: 6px;
  top: 16px;
  width: 67px;
  height: 67px;
}

.accent-manga {
  left: 2px;
  top: 16px;
  width: 78px;
  height: 66px;
}

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

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

.flavor-card.is-maxed {
  opacity: 0.45;
}

.flavor-card.is-maxed .flavor-surface {
  background: #fff;
}

.flavor-card:hover .flavor-surface {
  box-shadow: 0 12px 24px rgb(36 88 53 / 8%);
}

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

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

.flavor-copy {
  position: absolute;
  left: 107px;
  top: 17px;
  display: flex;
  flex-direction: column;
  width: 180px;
}

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

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

.flavor-copy a {
  width: max-content;
  margin-top: 8px;
  color: var(--green);
  font-size: 12px;
  text-decoration: underline;
}

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

.flavor-card.selected .flavor-actions {
  right: 36px;
  top: 41px;
  width: 90px;
  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 {
  cursor: not-allowed;
  opacity: 0.52;
  filter: saturate(0.45);
}

.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: 119px;
  height: 36px;
  border-radius: 112px;
  font-size: 12px;
  font-weight: 800;
  line-height: 14px;
  white-space: nowrap;
}

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

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

.flavor-badge {
  position: absolute;
  right: 30px;
  top: -1px;
  z-index: 4;
  display: grid;
  place-items: center;
  height: 22px;
  min-width: 105px;
  padding: 0 10px;
  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);
}

.order-summary {
  position: absolute;
  left: 814px;
  top: 1144px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 443px;
  height: 29px;
}

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

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

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

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

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

.order-price del {
  color: #7f7f7f;
  font-size: 14px;
}

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

.buy-btn {
  position: absolute;
  left: 809px;
  top: 1187px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  width: 457px;
  height: 80px;
  border-radius: 78px;
  background: var(--cta-green);
  color: #fff;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), opacity 180ms ease;
}

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

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

.buy-loader {
  display: none;
  width: 38px;
  height: 38px;
  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);
  box-shadow: 0 18px 30px rgb(51 102 51 / 22%);
}

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

.buy-btn.is-incomplete {
  opacity: 0.72;
  cursor: not-allowed;
  filter: saturate(0.52);
  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 {
  position: absolute;
  left: 807px;
  top: 1289px;
  display: flex;
  align-items: center;
  width: 459px;
  height: 125px;
  padding: 17px 18px;
  border: 2px dashed #c2d9c8;
  border-radius: 20px;
  background: #fff;
}

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

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

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

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

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

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

.faq {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-left {
  left: 182px;
  top: 645px;
  width: 500px;
}

.faq-right {
  left: 805px;
  top: 1452px;
  width: 461px;
}

.faq-main,
.faq-row {
  border: 1px solid #e4e4e4;
  border-radius: 15px;
  background: #fbfbfb;
}

.faq-main {
  overflow: hidden;
}

.faq-title,
.faq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  padding: 0 21px 0 30px;
  color: var(--green-2);
  background: transparent;
  font-size: 16px;
}

.faq-title {
  border-bottom: 1px solid #e4e4e4;
}

.faq-title img,
.faq-row img {
  width: 20px;
  height: 20px;
}

.faq-title img {
  transform: rotate(180deg);
}

.faq-copy {
  padding: 20px 26px 26px;
  color: #616161;
  font-size: 14px;
  line-height: 17.5px;
}

.faq-copy p {
  margin: 0 0 17px;
}

.faq-copy p:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

@keyframes slider-image-settle {
  from {
    filter: saturate(0.96);
    transform: scale(1.01);
  }
  to {
    filter: saturate(1);
    transform: scale(1);
  }
}

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

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

@media (min-width: 1080px) and (max-width: 1449px) {
  .pdp-v2 {
    --right-w: 492px;
    --right-inner-w: 467px;
    --gap-w: clamp(48px, 6vw, 92px);
    --available-w: calc(100vw - 64px);
    --left-w: min(500px, calc(var(--available-w) - var(--gap-w) - var(--right-w)));
    --page-w: calc(var(--left-w) + var(--gap-w) + var(--right-w));
    --left-x: calc((100vw - var(--page-w)) / 2);
    --right-x: calc(var(--left-x) + var(--left-w) + var(--gap-w));

    width: 100%;
    max-width: none;
    margin: 0;
    transform: none;
  }

  .top-header,
  .new-flavor-bar {
    width: 100%;
  }

  .brand-mark {
    left: calc(50% - 65px);
  }

  .new-flavor-bar > strong {
    left: var(--left-x);
  }

  .flavor-lockup {
    left: 50%;
    transform: translateX(-50%);
  }

  .available-cta {
    left: auto;
    right: var(--left-x);
  }

  .hero-card {
    left: var(--left-x);
    width: var(--left-w);
    height: calc(var(--left-w) * 380 / 500);
  }

  .nutrition-link {
    left: calc(var(--left-x) + (var(--left-w) - 138px) / 2);
  }

  .intro-copy {
    left: var(--right-x);
    width: var(--right-inner-w);
  }

  .intro-copy h1,
  .intro-copy p {
    width: 100%;
  }

  .quantity-block {
    left: calc(var(--right-x) + (var(--right-w) - var(--right-inner-w)) / 2);
    width: var(--right-inner-w);
  }

  .discount-callout {
    left: calc(var(--right-x) + (var(--right-w) - 362px) / 2);
  }

  .flavor-title {
    left: calc(var(--right-x) + (var(--right-w) - 165px) / 2);
  }

  .flavor-list {
    left: var(--right-x);
    width: var(--right-w);
  }

  .flavor-card {
    width: var(--right-w);
  }

  .order-summary {
    left: calc(var(--right-x) + (var(--right-w) - 443px) / 2);
  }

  .buy-btn {
    left: calc(var(--right-x) + (var(--right-w) - 457px) / 2);
  }

  .guarantee-box {
    left: calc(var(--right-x) + (var(--right-w) - 459px) / 2);
  }

  .faq-left {
    left: var(--left-x);
    width: var(--left-w);
  }

  .faq-right {
    left: calc(var(--right-x) + (var(--right-w) - 461px) / 2);
  }
}

@media (min-width: 1450px) {
  html,
  body {
    background: #fff;
  }

  .pdp-v2 {
    overflow: visible;
    border: 0;
  }

  .top-header,
  .new-flavor-bar {
    left: calc((1450px - 100vw) / 2);
    width: 100vw;
  }

  .brand-mark {
    left: calc(50% - 65px);
  }

  .new-flavor-bar > strong {
    left: calc((100vw - 1450px) / 2 + 149px);
  }

  .flavor-lockup {
    left: calc((100vw - 1450px) / 2 + 593px);
  }

  .available-cta {
    left: calc((100vw - 1450px) / 2 + 1094px);
  }
}

@media (min-width: 768px) and (max-width: 1079px) {
  html,
  body {
    background: #fff;
  }

  .pdp-v2 {
    --content-w: min(720px, calc(100vw - 64px));

    display: flex;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 100vh;
    margin: 0;
    padding: 0 0 88px;
    overflow: visible;
    flex-direction: column;
    align-items: center;
    border: 0;
    background: #fff;
    transform: none;
  }

  .top-header,
  .new-flavor-bar,
  .hero-card,
  .nutrition-link,
  .intro-copy,
  .quantity-block,
  .discount-callout,
  .flavor-title,
  .flavor-list,
  .order-summary,
  .buy-btn,
  .guarantee-box,
  .faq {
    position: relative;
    left: auto;
    top: auto;
    flex: 0 0 auto;
  }

  .top-header {
    order: 1;
    width: 100%;
    height: 70px;
  }

  .brand-mark {
    left: calc(50% - 65px);
  }

  .new-flavor-bar {
    order: 2;
    width: 100%;
    height: 70px;
  }

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

  .flavor-lockup {
    left: 50%;
    transform: translateX(-50%);
  }

  .available-cta {
    left: auto;
    right: 32px;
  }

  .hero-card {
    order: 3;
    width: min(500px, var(--content-w));
    height: auto;
    margin-top: 46px;
    aspect-ratio: 500 / 380;
  }

  .nutrition-link {
    order: 4;
    margin-top: 18px;
  }

  .intro-copy {
    order: 5;
    width: min(560px, var(--content-w));
    margin-top: 42px;
  }

  .intro-copy h1,
  .intro-copy p {
    width: 100%;
  }

  .quantity-block {
    order: 6;
    width: min(467px, var(--content-w));
    height: 161px;
    margin-top: 28px;
  }

  .discount-callout {
    order: 7;
    width: min(362px, var(--content-w));
    margin-top: 22px;
  }

  .flavor-title {
    order: 8;
    width: 165px;
    margin-top: 28px;
  }

  .flavor-list {
    order: 9;
    width: min(492px, var(--content-w));
    margin-top: 24px;
  }

  .flavor-card {
    width: 100%;
  }

  .order-summary {
    order: 10;
    width: min(443px, var(--content-w));
    margin-top: 20px;
  }

  .buy-btn {
    order: 11;
    width: min(457px, var(--content-w));
    margin-top: 18px;
  }

  .guarantee-box {
    order: 12;
    width: min(459px, var(--content-w));
    margin-top: 32px;
  }

  .faq-left {
    display: none;
  }

  .faq-right {
    order: 13;
    display: flex;
    width: min(461px, var(--content-w));
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  :root {
    --content-w: min(calc(100vw - 40px), 640px);
    --hero-w: min(calc(100vw - 32px), 700px);
  }

  html,
  body {
    background: #f6f6f4;
  }

  .pdp-v2 {
    width: 100%;
    max-width: none;
    min-height: 1840px;
    height: auto;
    border: 0;
    transform: none;
  }

  .top-header {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 50px;
  }

  .brand-mark {
    left: calc(50% - 53px);
    top: 7px;
    width: 106px;
    height: 31px;
  }

  .brand-mark img {
    left: 0;
    top: 5px;
    width: 95px;
    height: 26px;
  }

  .brand-mark span {
    left: 97px;
    top: 0;
    font-size: 20px;
    line-height: 24px;
  }

  .new-flavor-bar {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 45px;
    background: linear-gradient(90deg, #dd9669 0%, #e34040 100%);
  }

  .new-flavor-bar > strong {
    left: 22px;
    top: 13px;
    font-size: 12px;
    line-height: 16px;
  }

  .flavor-lockup {
    left: auto;
    right: 16px;
    top: 12px;
    gap: 3px;
    height: 18px;
    font-size: 12px;
    line-height: 16px;
  }

  .fruit-lockup {
    width: 20.6px;
    height: 14px;
  }

  .fruit-kiwi {
    left: 7px;
    width: 13.8px;
    height: 13px;
  }

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

  .fruit-leaf {
    width: 9px;
    height: 6px;
  }

  .available-cta {
    display: none;
  }

  .hero-card {
    position: relative;
    left: auto;
    top: auto;
    width: var(--hero-w);
    height: calc(var(--hero-w) * 190 / 368);
    margin: 13px auto 0;
    border-radius: 15px;
  }

  .hero-slider-window {
    background: transparent;
  }

  .hero-slide img {
    transform: scale(1.006);
  }

  .slider-btn {
    display: none;
  }

  .hero-dots {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    display: flex;
    align-items: center;
    gap: 5px;
    width: auto;
    height: 3px;
    margin: 0;
    padding: 0;
    background: transparent;
    transform: translateX(-50%);
    backdrop-filter: none;
  }

  .hero-dots button,
  .hero-dots button.active {
    width: 32px;
    height: 3px;
    padding: 0;
    border-radius: 0;
  }

  .hero-dots button {
    background: #d9d9d9;
  }

  .hero-dots button.active {
    background: var(--green-2);
  }

  .nutrition-link {
    display: none;
  }

  .intro-copy {
    position: relative;
    left: auto;
    top: auto;
    width: var(--content-w);
    margin: 26px auto 0;
  }

  .authority-line {
    gap: 16px;
    height: 12px;
  }

  .authority-line img {
    width: 56px;
    height: 8px;
  }

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

  .intro-copy h1 {
    width: var(--content-w);
    margin-top: 9px;
    font-size: 18px;
    line-height: 25.6px;
  }

  .intro-copy sup {
    font-size: 10px;
  }

  .intro-copy p {
    width: var(--content-w);
    margin-top: 9px;
    font-size: 14px;
    line-height: 18.9px;
  }

  .quantity-block {
    position: relative;
    left: auto;
    top: auto;
    width: var(--content-w);
    height: 84px;
    margin: 12px auto 0;
  }

  .quantity-block h2 {
    display: none;
  }

  .quantity-progress {
    --qty-node-w: 86px;
    --qty-node-half: 43px;
    --qty-side-pad: clamp(10px, 4vw, 28px);

    inset: 0;
    width: var(--content-w);
    height: 84px;
  }

  .quantity-progress::before {
    top: 9px;
    width: var(--content-w);
    height: 75px;
    border-color: var(--orange);
    border-radius: 18px;
    background: var(--cream);
  }

  .progress-track,
  .progress-fill {
    top: 37.5px;
    height: 7px;
  }

  .progress-track {
    left: calc(var(--qty-side-pad) + var(--qty-node-half));
    width: calc(100% - var(--qty-side-pad) - var(--qty-side-pad) - var(--qty-node-w));
    background: transparent;
  }

  .progress-fill {
    left: calc(var(--qty-side-pad) + var(--qty-node-half));
    width: calc(50% - var(--qty-side-pad) - var(--qty-node-half));
    background: var(--yellow);
  }

  .quantity-progress[data-qty="1"] .progress-fill {
    width: 0;
  }

  .quantity-progress[data-qty="2"] .progress-fill {
    width: calc(50% - var(--qty-side-pad) - var(--qty-node-half));
  }

  .quantity-progress[data-qty="3"] .progress-fill {
    width: calc(100% - var(--qty-side-pad) - var(--qty-side-pad) - var(--qty-node-w));
  }

  .qty-node {
    top: 0;
    width: var(--qty-node-w);
    height: 84px;
  }

  .qty-node[data-qty="1"] {
    left: var(--qty-side-pad);
  }

  .qty-node[data-qty="2"] {
    left: calc(50% - var(--qty-node-half));
  }

  .qty-node[data-qty="3"] {
    left: auto;
    right: var(--qty-side-pad);
  }

  .qty-node b {
    display: none;
  }

  .qty-node strong {
    top: 28px;
    left: 0;
    display: grid;
    place-items: center;
    width: var(--qty-node-w);
    height: 26px;
    border-radius: 58px;
    background: #fff;
    border: 1px solid #efefef;
    color: #959996;
    font-size: 12px;
  }

  .qty-node.active strong,
  .quantity-progress[data-qty="2"] .qty-node[data-qty="1"] strong,
  .quantity-progress[data-qty="3"] .qty-node strong {
    border-color: transparent;
    background: var(--yellow);
    color: var(--green-2);
  }

  .qty-node em {
    top: 0;
    left: 17px;
    display: grid;
    place-items: center;
    min-width: 53px;
    height: 17px;
    padding: 0 8px;
    border-radius: 39px;
    background: #e7e7e7;
    color: #828282;
    font-size: 10px;
  }

  .qty-node.active em,
  .quantity-progress[data-qty="3"] .qty-node em {
    background: var(--lime);
    color: var(--green-2);
  }

  .ship-tag {
    top: 62px;
    left: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    min-width: 0;
    height: 11px;
    padding: 0;
    background: transparent;
    color: #959996;
    font-size: 10px;
    line-height: 11px;
    text-transform: none;
  }

  .qty-node[data-qty="1"] .ship-tag {
    display: none;
  }

  .qty-node.active .ship-tag,
  .quantity-progress[data-qty="3"] .qty-node .ship-tag {
    background: transparent;
    color: var(--green-2);
  }

  .discount-callout {
    position: relative;
    left: auto;
    top: auto;
    width: var(--content-w);
    height: 37px;
    margin: 13px auto 0;
    font-size: 12px;
  }

  .flavor-title {
    position: relative;
    left: auto;
    top: auto;
    width: 145px;
    margin: 17px auto 0;
    font-size: 14px;
    line-height: 19px;
  }

  .flavor-list {
    position: relative;
    left: auto;
    top: auto;
    width: var(--content-w);
    margin: 19px auto 0;
    gap: 10px;
  }

  .flavor-card {
    width: var(--content-w);
    height: 80px;
  }

  .flavor-surface {
    left: 26px;
    border-radius: 15px;
  }

  .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-thumb {
    left: 4px;
    top: 4px;
    width: 68.6px;
    height: 72px;
  }

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

  .flavor-copy {
    left: 83px;
    top: 14px;
    width: 140px;
  }

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

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

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

  .flavor-actions {
    right: 15px;
    top: 28px;
  }

  .flavor-card.selected .flavor-actions {
    right: 15px;
    top: 32px;
    width: 86px;
  }

  .add-btn,
  .soldout-btn {
    width: 91.5px;
    height: 29px;
    font-size: 12px;
  }

  .flavor-badge {
    right: 20px;
    height: 18px;
    min-width: 0;
    font-size: 10px;
  }

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

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

  .order-summary {
    position: relative;
    left: auto;
    top: auto;
    width: var(--content-w);
    height: 29px;
    margin: 13px auto 0;
  }

  .order-summary {
    gap: 0;
  }

  .order-chips {
    gap: 6px;
  }

  .buy-btn {
    position: relative;
    left: auto;
    top: auto;
    width: var(--content-w);
    height: 73px;
    margin: 24px auto 0;
  }

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

  .guarantee-box {
    position: relative;
    left: auto;
    top: auto;
    width: var(--content-w);
    height: 112px;
    margin: 24px auto 0;
    padding: 17px 18px;
    border-color: #f9e18e;
    border-radius: 15px;
  }

  .guarantee-box > img {
    width: 72px;
  }

  .guarantee-box p {
    font-size: 12px;
  }

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

  .guarantee-box span {
    font-size: 12px;
    line-height: 15px;
  }

  .faq {
    display: none;
  }
}

@media (max-width: 374px) {
  :root {
    --content-w: min(calc(100vw - 24px), 360px);
    --hero-w: min(calc(100vw - 20px), 368px);
  }

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

  .flavor-lockup {
    right: 12px;
  }

  .authority-line {
    gap: 10px;
  }

  .authority-line span {
    font-size: 9px;
  }

  .quantity-progress {
    --qty-node-w: 82px;
    --qty-node-half: 41px;
    --qty-side-pad: 8px;
  }

  .qty-node[data-qty="1"] {
    left: var(--qty-side-pad);
  }

  .qty-node[data-qty="2"] {
    left: calc(50% - var(--qty-node-half));
  }

  .qty-node[data-qty="3"] {
    right: var(--qty-side-pad);
  }

  .qty-node strong {
    font-size: 11px;
  }

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

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

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

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

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

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

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

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

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

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