:root {
  --bg: #F4F0DA;
  --panel: #FFFFFF;
  --ink: #24302F;
  --muted: #66736F;
  --vita-green: #42CF8B;
  --leaf-green: #0FA86A;
  --green-deep: #0A5E40;
  --green-soft: #E8FFF3;
  --line: rgba(36, 48, 47, 0.14);
  --accent: #FF8A2B;
  --accent-soft: #FFF1E7;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(36, 48, 47, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(66, 207, 139, 0.18), transparent 28rem),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg) 58%, #FFFFFF 100%);
  color: var(--ink);
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
}

button, select { font: inherit; }

.demo-toolbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 14px 20px;
}

.demo-brand {
  align-items: center;
  display: flex;
  gap: 14px;
}

.demo-brand img {
  height: 42px;
  object-fit: contain;
  width: auto;
}

.demo-toolbar span {
  color: var(--leaf-green);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-toolbar strong {
  color: var(--ink);
  display: block;
  font-size: 18px;
  margin-top: 3px;
}

.demo-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.demo-controls label {
  color: var(--muted);
  display: grid;
  font-size: 11px;
  font-weight: 800;
  gap: 4px;
  text-transform: uppercase;
}

.demo-controls select {
  background: #fff;
  border: 1px solid rgba(15, 168, 106, 0.28);
  border-radius: 999px;
  min-width: 220px;
  padding: 8px 10px;
}

.sales-page {
  margin: 0 auto;
  max-width: 1180px;
  padding: 14px 12px 36px;
}

.product-layout {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 0.98fr);
  min-height: 560px;
}

.product-media-card {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.95), transparent 15rem),
    radial-gradient(circle at 78% 24%, rgba(66, 207, 139, 0.22), transparent 18rem),
    linear-gradient(125deg, #FFFFFF 0%, #F4F0DA 52%, #EAF9F1 100%);
  border: 1px solid rgba(15, 168, 106, 0.2);
  border-radius: 24px;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;     /* square frame (matches the 1:1 collection card) */
  align-self: start;       /* don't stretch to the buybox column height */
  overflow: hidden;
  position: relative;
}

/* Desktop only: lock the left product image while the right column scrolls.
   Gated above the 920px breakpoint where the layout is two columns. */
@media (min-width: 921px) {
  .product-media-card {
    position: sticky;
    top: 20px;
  }
}

.spin-badge {
  align-items: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", system-ui, Inter, Arial, sans-serif;
  height: 119px;      /* 30% smaller (was 170px) */
  justify-content: center;
  bottom: 12px;       /* tucked further into the bottom-right corner */
  right: 12px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 119px;       /* 30% smaller (was 170px) */
  z-index: 2;
}

/* Only the starburst shape spins; the text above it stays static. */
.spin-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--leaf-green);
  animation: badgeSpin 12s linear infinite;
  clip-path: polygon(50% 0%, 58% 11%, 70% 5%, 75% 18%, 89% 15%, 88% 29%, 100% 36%, 91% 47%, 98% 59%, 84% 64%, 85% 78%, 71% 76%, 64% 89%, 53% 81%, 42% 100%, 35% 84%, 21% 89%, 18% 74%, 5% 72%, 13% 58%, 0% 50%, 12% 40%, 5% 27%, 20% 25%, 26% 12%, 39% 17%);
}

.spin-badge span {
  color: #FFFFFF;
  display: block;
  font-family: "Segoe UI", system-ui, Inter, Arial, sans-serif;
  position: relative;   /* sit above the spinning starburst */
  z-index: 1;
  font-size: 34px;      /* 30% smaller (was 48px) */
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.spin-badge strong {
  color: #FFFFFF;
  display: block;
  font-family: "Segoe UI", system-ui, Inter, Arial, sans-serif;
  position: relative;   /* sit above the spinning starburst */
  z-index: 1;
  font-size: 15px;      /* 30% smaller (was 22px) */
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

@keyframes badgeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.product-photo-stage {
  position: absolute;
  inset: 0;
  padding: 0;
  display: block;
}

.product-photo-stage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;          /* fill edge-to-edge, no letterbox buffer */
  object-position: top center; /* anchor to the top, not centered */
  border-radius: 24px;        /* match the card's curved corners */
}

/* ===== Left-column image carousel (Goda-style, arrows + dots) ===== */
.pdp-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 24px;
}

.pdp-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.pdp-carousel__slide {
  flex: 0 0 100%;
  height: 100%;
}

.pdp-carousel__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;        /* show the WHOLE image inside the square frame */
  object-position: center;
  background: #ffffff;         /* clean letterbox for non-square (3:2) images */
  border-radius: 0;           /* the card clips the corners; don't double-round */
}

.pdp-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-deep);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(36, 48, 47, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pdp-carousel__arrow:hover { background: #fff; }
.pdp-carousel__arrow--prev { left: 12px; }
.pdp-carousel__arrow--next { right: 12px; }

.pdp-carousel__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 6px;
}

.pdp-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.pdp-carousel__dot.is-active {
  background: var(--leaf-green);
  transform: scale(1.25);
}

/* Single image: no slider chrome. */
.pdp-carousel.is-single .pdp-carousel__arrow,
.pdp-carousel.is-single .pdp-carousel__dots { display: none; }

/* ===== Right-column stacked product images (7+) ===== */
.pdp-stacked {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.pdp-stacked.is-empty { margin-top: 0; }

.pdp-stacked__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(15, 168, 106, 0.12);
}

.expand-button {
  background: rgba(0, 0, 0, 0.52);
  border: 0;
  bottom: 10px;
  color: #fff;
  height: 38px;
  position: absolute;
  right: 10px;
  width: 38px;
}

.product-buybox {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 18px;
}

.rating-row {
  align-items: center;
  color: #1f2b2a;
  display: flex;
  font-size: 14px;
  gap: 8px;
  margin: 4px 0 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stars {
  color: var(--accent);
  font-size: 19px;
  letter-spacing: 1px;
}

.product-buybox > .product-buybox__headline {
  margin: 0 0 11px;
  color: #24302F;
}

.product-buybox .vt-nad-promo__copy {
  color: #66736F;
}

.product-buybox h1 {
  color: var(--ink);
  font-size: 31px;
  line-height: 1.08;
  margin: 0 0 11px;
}

.product-buybox > p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 18px;
}

.offer-summary {
  background: var(--green-soft);
  border: 1px solid rgba(15, 168, 106, 0.3);
  border-radius: 14px;
  margin-bottom: 16px;
  padding: 10px 12px;
}

.offer-summary > div:first-child {
  align-items: baseline;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.offer-summary span:first-child {
  color: var(--leaf-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-summary strong {
  color: #1f2b2a;
  font-size: 16px;
}

.summary-stats {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8px;
}

.summary-stats span {
  background: #fff;
  border: 1px solid rgba(15, 168, 106, 0.12);
  border-radius: 10px;
  color: #666;
  font-size: 11px;
  padding: 7px 8px;
}

.summary-stats b {
  color: var(--leaf-green);
  display: block;
  font-size: 13px;
}

.supply-picker {
  border-top: 1px solid var(--line);   /* single divider line in the middle */
  padding-top: 18px;
  margin-top: 4px;
}

.supply-picker h3 {
  font-size: 18px;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.supply-option {
  align-items: center;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #868686;
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: 22px 1fr auto;
  margin-bottom: 10px;
  min-height: 58px;
  padding: 12px 14px;
  position: relative;
  text-align: left;
  width: 100%;
}

.supply-option.active {
  background: var(--green-soft);
  border: 1px solid var(--vita-green);
  color: #111;
}

.supply-option:focus-visible {
  box-shadow: 0 0 0 3px rgba(66, 207, 139, 0.32);
  outline: none;
}

.radio-dot {
  border: 1px solid #777;
  border-radius: 999px;
  display: block;
  height: 20px;
  position: relative;
  width: 20px;
}

.active .radio-dot::after {
  background: var(--leaf-green);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 4px;
  position: absolute;
  top: 4px;
  width: 10px;
}

.supply-copy strong {
  display: block;
  font-size: 18px;
}

.unlock-line {
  color: var(--leaf-green);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-top: 3px;
  text-transform: uppercase;
}

.muted .unlock-line {
  color: #888;
}

.supply-copy small {
  color: #626a62;
  display: block;
  font-size: 10px;
  line-height: 1.35;
  margin-top: 9px;
}

.supply-price {
  min-width: 104px;
  text-align: right;
}

.supply-price em {
  color: #777;
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.active .supply-price em {
  background: var(--leaf-green);
  color: #fff;
  display: inline-block;
  padding: 4px 7px;
}

.supply-price b {
  color: #777;
  display: block;
  font-size: 27px;
  line-height: 1;
}

.active .supply-price b { color: #1f2b2a; }

.supply-price small {
  color: #666;
  display: block;
  font-size: 10px;
}

.popular-ribbon {
  background: var(--accent);
  color: #111;
  font-size: 8px;
  font-weight: 900;
  padding: 2px 5px;
  position: absolute;
  right: 8px;
  text-transform: uppercase;
  top: -7px;
}

.package-card-details {
  display: none;
  grid-column: 1 / 4;
  margin-top: 2px;
}

.supply-option.active .package-card-details {
  display: block;
}

.subscription-kit {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F0DA 100%);
  border: 1px solid rgba(36, 48, 47, 0.14);
  border-radius: 16px;
  margin: 12px 0 0;
  overflow: hidden;
}

.subscription-billing {
  align-items: center;
  background: rgba(66, 207, 139, 0.13);
  border-bottom: 1px solid rgba(15, 168, 106, 0.22);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 4px -2px 0;
  padding: 10px 12px;
}

.subscription-billing span,
.subscription-billing strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.subscription-billing strong {
  color: var(--leaf-green);
}

.kit-benefits {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 12px 4px 10px;
}

.kit-benefits li {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  padding-left: 20px;
  position: relative;
}

.kit-benefits li::before {
  color: var(--leaf-green);
  content: "✓";
  font-size: 14px;
  font-weight: 950;
  left: 0;
  position: absolute;
  top: -1px;
}

.first-order-kit {
  padding: 0 0 12px;
}

.first-order-kit > strong {
  color: var(--green-deep);
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.first-order-items,
.future-gifts-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
}

.first-order-items article,
.future-gifts-grid article {
  min-width: 0;
  text-align: center;
}

.first-order-items img,
.future-gifts-grid img {
  background: linear-gradient(180deg, #FFFFFF, #E8FFF3);
  border: 1px solid rgba(15, 168, 106, 0.14);
  border-radius: 9px;
  height: 58px;
  object-fit: contain;
  padding: 5px;
  width: 100%;
}

.first-order-items span,
.future-gifts-grid span {
  color: var(--leaf-green);
  display: block;
  font-size: 9px;
  font-weight: 900;
  margin-top: 5px;
  text-decoration: none;
  text-transform: uppercase;
}

.first-order-items strong,
.future-gifts-grid strong {
  color: var(--ink);
  display: block;
  font-size: 10px;
  line-height: 1.05;
}

.future-gifts-grid small {
  color: var(--muted);
  display: block;
  font-size: 9px;
  line-height: 1.1;
  margin-top: 3px;
}

.future-gifts {
  border-top: 1px solid rgba(15, 168, 106, 0.16);
  padding: 10px 0 4px;
}

.future-gifts summary {
  background: transparent;
  border: 1px solid rgba(15, 168, 106, 0.34);
  border-radius: 999px;
  color: var(--green-deep);
  cursor: pointer;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.07em;
  list-style: none;
  padding: 10px 12px;
  text-align: center;
  text-transform: uppercase;
}

.future-gifts summary::-webkit-details-marker {
  display: none;
}

.future-gifts summary::after {
  content: "⌄";
  margin-left: 8px;
}

.future-gifts[open] summary {
  background: var(--green-soft);
  margin-bottom: 12px;
}

.future-gifts[open] summary::after {
  content: "⌃";
}

.future-gifts[open] .future-gifts-grid {
  padding: 0 2px 6px;
}

.bundle-drawer {
  background: var(--ink);
  color: #fff;
  margin: 14px 0 0;
  padding: 13px 14px;
}

.bundle-drawer > div {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.bundle-drawer span {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.bundle-drawer strong {
  color: var(--vita-green);
  font-size: 14px;
}

.bundle-drawer p {
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  margin: 5px 0 0 !important;
}

.welcome-widget {
  background: #fffdf5;
  border: 1px solid rgba(15, 168, 106, 0.28);
  border-radius: 0 0 14px 14px;
  margin: 0 0 14px;
}

.gift-title {
  background: linear-gradient(90deg, var(--green-deep), var(--leaf-green));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.gift-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(94px, 1fr));
  padding: 9px;
}

.gift-card {
  background: #fff;
  border: 1px solid rgba(15, 168, 106, 0.16);
  border-radius: 12px;
  min-width: 0;
  padding: 7px;
  text-align: center;
}

.gift-label {
  background: var(--leaf-green);
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-size: 9px;
  font-weight: 900;
  padding: 3px 6px;
}

.gift-image {
  align-items: center;
  display: flex;
  height: 76px;
  justify-content: center;
  margin: 4px 0;
}

.gift-image img {
  max-height: 76px;
  max-width: 100%;
  object-fit: contain;
}

.gift-card-digital_plan .gift-image {
  height: 102px;
}

.gift-card-digital_plan .gift-image img {
  max-height: 102px;
}

.gift-card-digital_plan h3 {
  font-size: 12px;
}

.gift-card h3 {
  color: var(--green-deep);
  font-size: 11px;
  line-height: 1.05;
  margin: 0;
}

.pay-note {
  color: var(--muted) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  margin: 14px 0 16px !important;
  line-height: 1.5;
  text-align: center;
}

.pay-note #vtPayNoteAmount {
  color: var(--ink);
  font-weight: 700;
}

.pay-note__logo {
  height: 16px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin: 0 3px;
}

.pay-note mark {
  background: var(--leaf-green);
  border-radius: 2px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 1px 4px;
}

.cta-row {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 36px;
}

.cart-button {
  background: var(--leaf-green);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 17px 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
}

.cart-button__sub {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.heart-button {
  background: transparent;
  border: 0;
  color: var(--leaf-green);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.payment-row img {
  height: 22px;
  width: auto;
  max-width: 58px;       /* keep wide wordmarks compact, like the wowmd row */
  object-fit: contain;
  display: block;
}

.metadata-details {
  color: #555;
  font-size: 12px;
  margin-top: 14px;
}

.metadata-details pre {
  background: #161b18;
  color: #dff7e9;
  font-size: 11px;
  overflow: auto;
  padding: 12px;
  white-space: pre-wrap;
}

#heroDiscount,
#heroScope,
#productName,
#productPrice,
#productImage,
#heroMiniGifts { display: none; }

.vt-supplement-facts {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: 2px auto 0;
  border-radius: 8px;
}

/* ===== Top countdown bar (brand dark hero variant) ===== */
.vt-countdown {
  width: 100%;
  background: #10b56f;
  color: #FFFFFF;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
  box-shadow: none;
}

.vt-countdown *,
.vt-countdown *::before,
.vt-countdown *::after {
  box-sizing: border-box;
}

.vt-countdown__inner {
  max-width: 980px;
  margin: 0 auto;
  min-height: 51px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
  text-shadow: none;
  white-space: nowrap;
}

.vt-countdown__offer {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.vt-countdown__tag {
  background: #FFFFFF;
  color: #004b34;
  font-weight: 900;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px 4px;
  border-radius: 999px;
  margin-right: 0;
  text-shadow: none;
}

.vt-countdown__voucher {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}

.vt-countdown__label {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.vt-countdown__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  text-align: center;
}

.vt-countdown__seg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 0;
  background: transparent;
  text-align: center;
}

.vt-countdown__seg b {
  display: block;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.vt-countdown__seg i {
  display: block;
  font-style: normal;
  margin-top: 1px;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.vt-countdown__colon {
  color: #FFFFFF;
  font-weight: 900;
  font-size: 23px;
  line-height: 1;
  transform: translateY(-5px);
}

.vt-countdown__urgency {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
  white-space: nowrap;
}

.page-content .vt-countdown p,
.page-content .vt-countdown b,
.page-content .vt-countdown i,
.page-content .vt-countdown span {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  text-transform: inherit;
}

/* ===== Claim Offer popup bar (Vitatherx brand colors) =====
   Fixed at the top; slides in/out in sync with the bottom buy-now bar. */
.vt-claimbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  width: 100%;
  background: var(--bg);                 /* Soft Cream #F4F0DA */
  border-bottom: 1px solid rgba(15, 168, 106, 0.2);
  box-shadow: 0 4px 16px rgba(36, 48, 47, 0.16);
  font-family: "Segoe UI", system-ui, Inter, Arial, sans-serif;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.vt-claimbar.show { transform: translateY(0); }

.vt-claimbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vt-claimbar__copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
}

.vt-claimbar__event { color: var(--green-deep); font-weight: 800; }
.vt-claimbar__sep { color: var(--leaf-green); font-weight: 800; }
.vt-claimbar__offer { color: var(--ink); font-weight: 600; }

.vt-claimbar__cta {
  background: var(--leaf-green);         /* Leaf Green #0FA86A */
  color: #FFFFFF;
  border: 0;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vt-claimbar__cta:hover { background: var(--green-deep); transform: translateY(-1px); }

@media (max-width: 920px) {
  .demo-toolbar,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .demo-toolbar { align-items: flex-start; flex-direction: column; }
  .product-media-card { aspect-ratio: 1 / 1; min-height: 0; }
}

@media (max-width: 620px) {
  .product-layout { gap: 20px; }
  /* Spin badge inherits the desktop placement (bottom-right) + size on mobile. */
  .product-photo-stage { padding: 0; }
  .vt-countdown__inner { min-height: auto; gap: 8px 10px; padding: 8px 12px; flex-wrap: wrap; white-space: normal; }
  .vt-countdown__offer { font-size: 13px; }
  .vt-countdown__tag { font-size: 10px; padding: 5px 10px 4px; }
  .vt-countdown__voucher { font-size: 13px; }
  .vt-countdown__label { font-size: 10px; }
  .vt-countdown__urgency { display: none; }
  .vt-countdown__seg { min-width: 32px; }
  .vt-countdown__seg b { font-size: 19px; }
  .vt-countdown__colon { font-size: 19px; transform: translateY(-5px); }
  .vt-claimbar__inner { gap: 8px 12px; padding: 7px 12px; }
  .vt-claimbar__copy { font-size: 12px; gap: 7px; }
  .vt-claimbar__sep, .vt-claimbar__offer { display: none; }   /* keep just the save + CTA on small screens */
  .vt-claimbar__cta { padding: 7px 14px; font-size: 12px; }
  .summary-stats, .gift-grid { grid-template-columns: repeat(2, 1fr); }
  .supply-option { grid-template-columns: 22px 1fr; }
  .supply-price { grid-column: 2; text-align: left; }
}

/* Embedded PDP countdown override.
   The standalone demo at localhost:8000 has no Shopify product-page CSS competing
   with it. Product stubs do, so this scoped block intentionally wins the cascade
   for the top countdown bar only. No app.js changes are required for this section. */
.page-content .vt-countdown {
  display: block !important;
  width: 100% !important;
  min-height: 51px !important;
  background: #10b56f !important;
  color: #fff !important;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
  line-height: 1 !important;
  text-align: center !important;
  box-shadow: none !important;
}

.page-content .vt-countdown__inner {
  width: 100% !important;
  max-width: 980px !important;
  min-height: 51px !important;
  margin: 0 auto !important;
  padding: 6px 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  text-align: center !important;
  text-shadow: none !important;
}

.page-content .vt-countdown__offer,
.page-content .vt-countdown__label,
.page-content .vt-countdown__timer,
.page-content .vt-countdown__urgency {
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  text-align: center !important;
}

.page-content .vt-countdown__offer {
  gap: 9px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.page-content .vt-countdown__tag {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 21px !important;
  padding: 0 12px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #004b34 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
}

.page-content .vt-countdown__voucher {
  display: inline-block !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  line-height: 1 !important;
  text-align: center !important;
}

.page-content .vt-countdown__label {
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.page-content .vt-countdown__timer {
  gap: 6px !important;
}

.page-content .vt-countdown__seg {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  min-width: 30px !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
}

.page-content .vt-countdown__seg b {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: 23px !important;
  font-weight: 900 !important;
  line-height: 0.9 !important;
  letter-spacing: -0.02em !important;
  text-align: center !important;
  font-variant-numeric: tabular-nums !important;
}

.page-content .vt-countdown__seg i {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: 9px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.page-content .vt-countdown__colon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: 23px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: center !important;
  transform: translateY(-5px) !important;
}

.page-content .vt-countdown__urgency {
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

@media (max-width: 720px) {
  .page-content .vt-countdown__inner {
    min-height: auto !important;
    gap: 8px 10px !important;
    flex-wrap: wrap !important;
    white-space: normal !important;
  }

  .page-content .vt-countdown__urgency {
    display: none !important;
  }
}

/* Redesigned isolated gift countdown bar.
   Uses new class names so legacy .vt-countdown and Shopify product CSS cannot
   affect the visual layout. app.js still updates #vtCountdownVoucher/#vtcHH/#vtcMM/#vtcSS. */
.vtx-giftbar,
.vtx-giftbar * {
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, Inter, Arial, sans-serif;
}

.vtx-giftbar {
  display: block;
  width: 100%;
  min-height: 51px;
  margin: 0;
  padding: 0;
  background: #10b56f;
  color: #fff;
  font-family: "Segoe UI", system-ui, Inter, Arial, sans-serif;
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px 2px rgba(8, 46, 33, 0.35);
}

.vtx-giftbar__inner {
  width: 100%;
  max-width: 980px;
  min-height: 51px;
  margin: 0 auto;
  padding: 6px 38px;
  display: grid;
  grid-template-columns: max-content max-content max-content max-content;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
  white-space: nowrap;
}

.vtx-giftbar__offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.vtx-giftbar__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 21px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  color: #004b34;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.vtx-giftbar__voucher {
  display: inline-block;
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
}

.vtx-giftbar__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.vtx-giftbar__timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  line-height: 1;
  text-align: center;
}

.vtx-giftbar__unit {
  display: inline-grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-items: center;
  row-gap: 2px;
  width: 31px;
  min-width: 31px;
  color: #fff;
  text-align: center;
}

.vtx-giftbar__unit b {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.vtx-giftbar__unit i {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.vtx-giftbar__colon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7px;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: translateY(-5px);
}

.vtx-giftbar__urgency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  text-shadow: 0 1px 2px rgba(8, 46, 33, 0.42);
}

@media (max-width: 900px) {
  .vtx-giftbar__inner {
    padding: 8px 14px;
    grid-template-columns: 1fr;
    row-gap: 8px;
    min-height: auto;
    white-space: normal;
  }

  .vtx-giftbar__offer,
  .vtx-giftbar__label,
  .vtx-giftbar__timer,
  .vtx-giftbar__urgency {
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .vtx-giftbar__urgency { display: none; }
  .vtx-giftbar__voucher { font-size: 13px; }
  .vtx-giftbar__label { font-size: 10px; }
  .vtx-giftbar__unit b { font-size: 20px; }
  .vtx-giftbar__colon { font-size: 20px; }
}

/* Fix mega menu vertical positioning on sales pages.
   The theme CSS uses a hardcoded top:79px. Anchor the dropdown to the
   header/nav area while preserving its full-width layout. */
.hdr-nav .menu-list > li.drp-btn {
  position: static;
}
.hdr-nav .menu-list > li.drp-btn > .product-tab-menu {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  margin-top: 0 !important;
}

/* ===== Sales-page: non-sticky top chrome =====
   Announcement bar / marquee / header / menu / gift countdown scroll away naturally.
   This file is only loaded on sales pages, so homepage is unaffected. */
.hdr-wrap,
body.has-hdr_sticky .hdr-wrap {
  position: relative !important;
  top: auto !important;
  transform: none !important;
  transition: none !important;
}
#shopify-section-custom-top-marquee,
.hdr-promoline,
.marque-head {
  position: static !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  transition: none !important;
}

/* ── Collection card: View product button ─────────────────────────────── */
.prd-action {
  display: flex;
  justify-content: center;
  padding: 12px 0 4px;
}

a.vtx-view-btn {
  display: inline-block;
  width: 82%;
  padding: 11px 20px;
  background: var(--vita-green, #42CF8B);
  color: #0A5E40;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

a.vtx-view-btn:hover,
a.vtx-view-btn:focus {
  background: var(--leaf-green, #0FA86A);
  color: #ffffff;
  text-decoration: none;
}

a.vtx-view-btn .btn-hover-txt {
  display: none;
}

/* ── Banner Section (replaces reviews reel) ── */
.testimonial-banner {
  margin: 20px 0;
}

.testimonial-banner img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .testimonial-banner {
    margin: 20px 0;
  }

  .testimonial-banner img {
    width: 100%;
    height: auto;
  }
}
