/** Shopify CDN: Minification failed

Line 332:3 Cannot use type selector "a" directly after nesting selector "&"
Line 690:3 Cannot use type selector "span" directly after nesting selector "&"

**/
/* ============================================================
   CTR Main Product v2
   ============================================================ */

.ctr-main-product-v2 {
  color: var(--cmpv2-text, #202329);
  --font-body-family-override: 'Asta Sans', sans-serif;
}

.ctr-main-product-v2__container {
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;

  @media screen and (max-width: 767.98px) {
    padding: 0 20px;
  }
}

/* ---- TWO-COLUMN LAYOUT ---- */
.ctr-main-product-v2__layout {
  display: grid;
  grid-template-columns: minmax(0, 53%) minmax(0, 1fr);
  align-items: flex-start;
  gap: 50px;

  @media screen and (max-width: 767.98px) {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}

/* ============================================================
   GALLERY
   ============================================================ */

.ctr-main-product-v2__gallery {
  width: 100%;
  max-width: 100%;
  position: sticky;
  top: 20px;

  @media screen and (max-width: 767.98px) {
    width: 100%;
    position: static;
  }
}

/* ---- Main Image ---- */
.ctr-main-product-v2__gallery-main {
  position: relative;
}

.ctr-main-product-v2__main-track-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 0.5px solid var(--cmpv2-accent, #f28b6a);
  aspect-ratio: 1 / 1;

  @media screen and (max-width: 767.98px) {
    border-radius: 12px;
  }
}

.ctr-main-product-v2__main-track {
  height: 100%;
}

.ctr-main-product-v2__main-slide {
  height: 100%;
}

.ctr-main-product-v2__main-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ---- Grid mode (desktop) ---- */
@media screen and (min-width: 768px) {
  .ctr-main-product-v2__gallery--grid .ctr-main-product-v2__main-track {
    position: relative;
  }

  .ctr-main-product-v2__gallery--grid .ctr-main-product-v2__main-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .ctr-main-product-v2__gallery--grid .ctr-main-product-v2__main-slide.is-active {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ---- Slider mode (all sizes) ---- */
.ctr-main-product-v2__gallery--slider .ctr-main-product-v2__main-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.ctr-main-product-v2__gallery--slider .ctr-main-product-v2__main-slide {
  flex: 0 0 100%;
  min-width: 0;
}

/* ---- Grid mode on mobile — behaves like slider ---- */
@media screen and (max-width: 767.98px) {
  .ctr-main-product-v2__gallery--grid .ctr-main-product-v2__main-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
  }

  .ctr-main-product-v2__gallery--grid .ctr-main-product-v2__main-slide {
    flex: 0 0 100%;
    min-width: 0;
    opacity: 1;
    position: static;
    pointer-events: auto;
  }
}

/* ---- Main image nav arrows (float over image) ---- */
.ctr-main-product-v2__main-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: box-shadow 0.2s, transform 0.2s;

  @media screen and (max-width: 767.98px) {
    width: 32px;
    height: 32px;
  }

  svg {
    width: 100%;
    height: 100%;
  }
}

.ctr-main-product-v2__main-nav--prev {
  left: 34px;

  @media screen and (max-width: 767.98px) {
    left: 18px;
  }
}

.ctr-main-product-v2__main-nav--next {
  right: 34px;

  @media screen and (max-width: 767.98px) {
    right: 18px;
  }
}

/* ---- Thumbnails wrap ---- */
.ctr-main-product-v2__thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

/* ---- Grid mode thumbnails (desktop) — 2-column grid ---- */
@media screen and (min-width: 768px) {
  .ctr-main-product-v2__gallery--grid .ctr-main-product-v2__thumbs-wrap {
    display: block;
    margin-top: 16px;
  }

  .ctr-main-product-v2__gallery--grid .ctr-main-product-v2__thumb-arrow {
    display: none;
  }

  .ctr-main-product-v2__gallery--grid .ctr-main-product-v2__thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    overflow: visible;
  }

  .ctr-main-product-v2__gallery--grid .ctr-main-product-v2__thumb {
    border-radius: 20px!important;
    flex: none;
    width: 100%;
  }
}

/* ---- Slider mode thumbnails ---- */
.ctr-main-product-v2__thumb-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #202329;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #202329;
  transition: opacity 0.2s;
}

.ctr-main-product-v2__thumb-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.ctr-main-product-v2__thumbs {
  display: flex;
  gap: 8px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
  cursor: grab;

  &::-webkit-scrollbar {
    display: none;
  }
}

.ctr-main-product-v2__thumbs.is-dragging {
  cursor: grabbing;
}

.ctr-main-product-v2__thumb {
  flex: 0 0 calc((100% - 8px * (var(--cmpv2-thumbs-desk, 4) - 1)) / var(--cmpv2-thumbs-desk, 4));
  aspect-ratio: 1;
  border: 0.5px solid transparent;
  border-radius: 8px!important;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  background: none;
  padding: 0;

  @media screen and (max-width: 767.98px) {
    flex: 0 0 calc((100% - 8px * (var(--cmpv2-thumbs-mob, 4) - 1)) / var(--cmpv2-thumbs-mob, 4));
    border-radius: 4px!important;
  }
}

.ctr-main-product-v2__thumb.is-active {
  border-color: var(--cmpv2-accent, #f28b6a);
}

.ctr-main-product-v2__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   RIGHT COLUMN
   ============================================================ */

.ctr-main-product-v2__right {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---- Title ---- */
.ctr-main-product-v2 .ctr-main-product-v2__title {
  font-family: 'IvyPresto Headline', serif !important;
  font-size: 48px;
  font-weight: 400!important;
  line-height: 1;
  margin: 0;
  color: var(--cmpv2-text, #202329);

  @media screen and (max-width: 767.98px) {
    font-size: 40px;
  }
}

/* ---- Rating ---- */
.ctr-main-product-v2__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ctr-main-product-v2__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.ctr-main-product-v2__rating-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.4;
}

.ctr-main-product-v2__rating-label {
  color: rgba(32, 35, 41, 0.8);
  
  &a {
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}

a.ctr-main-product-v2__rating-label {
  color: rgba(32, 35, 41, 0.8);
}

.ctr-main-product-v2__rating-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(32, 35, 41, 0.5);
  flex-shrink: 0;
  display: inline-block;
}

.ctr-main-product-v2__rating-item {
  color: rgba(32, 35, 41, 0.8);
}

/* ---- Description ---- */
.ctr-main-product-v2__description {
  font-size: 16px;
  line-height: 1.3;
  color: var(--cmpv2-text, #202329);
  margin: 0;

  p {
    margin: 0;
  }
}

/* ---- Text Block ---- */
.ctr-main-product-v2__text-block {
  font-size: 16px;
  line-height: 1.3;
  color: var(--cmpv2-text, #202329);

  p {
    margin: 0;
  }
}

/* ---- Bullet Points ---- */
.ctr-main-product-v2__bullet {
  border-left: 3px solid var(--cmpv2-accent, #fe6e02);
  padding-left: 17px;
  margin: -12px 0 0;

  &:first-of-type {
    margin-top: 0;
  }
}

.ctr-main-product-v2__right > .ctr-main-product-v2__bullet + .ctr-main-product-v2__bullet {
  margin-top: -12px;
}

.ctr-main-product-v2__bullet-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--cmpv2-text, #202329);
  display: block;

  @media screen and (max-width: 767.98px) {
    font-size: 14px;
  }

  p {
    margin: 0;
  }
}

/* ---- Pricing ---- */
.ctr-main-product-v2__pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ctr-main-product-v2__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ctr-main-product-v2__price-current {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--cmpv2-accent, #ef6701);

  @media screen and (max-width: 767.98px) {
    font-size: 27px;
  }
}

.ctr-main-product-v2__price-compare {
  font-size: 24px;
  font-weight: 600;
  color: #c9c9c9;
  letter-spacing: -0.3px;
  text-decoration: line-through;
  text-decoration-skip-ink: none;

  @media screen and (max-width: 767.98px) {
    font-size: 23px;
  }
}

.ctr-main-product-v2__price-discount {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--cmpv2-accent, #fe6e02);
  font-family: 'Caveat Brush', cursive !important;
  text-decoration: underline;
  text-underline-offset: 2px;
  transform: rotate(-3.255deg) translateY(-4px);
}

.ctr-main-product-v2__shipping-text {
  font-size: 20px;
  font-weight: 700!important;
  line-height: 1.6;
  color: var(--cmpv2-accent, #fe6e02);
  text-transform: uppercase;
  letter-spacing: -0.3px;

  @media screen and (max-width: 767.98px) {
    font-size: 18px;
  }
}

/* ============================================================
   SUBSCRIBE BOX
   ============================================================ */

.ctr-main-product-v2__sub-box {
  border: 2px solid var(--cmpv2-box-border, #f47423);
  border-radius: 12px;
  padding: 20px;
  background: linear-gradient(90deg, var(--cmpv2-box-bg-from, #fff1ea) 0%, var(--cmpv2-box-bg-to, #fff8ed) 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ctr-main-product-v2__sub-box-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ctr-main-product-v2__sub-box-heading {
  font-family: 'IvyPresto Headline', serif !important;
  font-size: 24px;
  font-weight: 400;
  color: var(--cmpv2-text, #202329);
  line-height: 1;

  >p, >* {
    margin: 0;
    font-family: 'IvyPresto Headline', serif !important;
  }
}

.ctr-main-product-v2__sub-box-subtitle {
  font-size: 16px;
  line-height: 1.3;
  color: var(--cmpv2-text, #202329);

  p {
    margin: 0;
  }
}

/* ---- ATC Button ---- */
.ctr-main-product-v2 .ctr-main-product-v2__atc-btn {
  width: 100%;
  padding: 18px 24px;
  border-radius: 12px!important;
  background: var(--cmpv2-btn-bg, #282828);
  color: var(--cmpv2-btn-text, #ffffff);
  font-size: 24px!important;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s;
  min-height: 65px;
  line-height: 1.2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-transform: capitalize!important;

  &:hover, &:active {
    opacity: 0.9;
    font-weight: 700!important;
  }

  &:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  span {
    color: var(--cmpv2-btn-text, #ffffff);
  }
}

.ctr-main-product-v2__atc-spinner {
  display: flex;
  align-items: center;
  animation: cmpv2-spin 0.8s linear infinite;
}

.ctr-main-product-v2__atc-spinner.hidden {
  display: none;
}

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

/* ---- Checklist ---- */
.ctr-main-product-v2__checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;

  @media screen and (max-width: 480px) {
    grid-template-columns: 1fr;
  }
}

.ctr-main-product-v2__checklist-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cmpv2-text, #202329);
  line-height: 1.3;
  letter-spacing: -0.01em;

  @media screen and (max-width: 767.98px) {
    font-size: 12px;
  }

  svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;

    @media screen and (max-width: 767.98px) {
      width: 14px;
      height: 14px;
    }
  }
}

/* ---- Divider ---- */
.ctr-main-product-v2__sub-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0;
}

/* ---- Testimonial ---- */
.ctr-main-product-v2__sub-testimonial {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ctr-main-product-v2__sub-testimonial-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ctr-main-product-v2__sub-testimonial-text {
  font-size: 14px;
  line-height: 1.3;
  color: var(--cmpv2-text, #202329);
  margin: 0;

  @media screen and (max-width: 767.98px) {
    font-size: 12px;
  }
}

/* ---- Note ---- */
.ctr-main-product-v2__sub-note {
  font-size: 12px;
  line-height: 1.3;
  color: var(--cmpv2-text, #202329);

  p {
    margin: 0;
  }
}

/* ============================================================
   ACCORDIONS
   ============================================================ */

.ctr-main-product-v2__accordions {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}

.ctr-main-product-v2__accordion {
  padding: 0 16px;

  &:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
  }
}

.ctr-main-product-v2__accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;

  &:focus-visible {
    outline: 2px solid var(--cmpv2-accent, #f47423);
    outline-offset: 2px;
    border-radius: 2px;
  }
}

.ctr-main-product-v2__accordion-title {
  font-size: 16px;
  font-weight: 700!important;
  color: var(--cmpv2-text, #202329);
  line-height: 1.2;
  letter-spacing: -0.3px;
  &span {
    font-family: var(--font-body-family-override)!important;
  }
}

.ctr-main-product-v2__accordion-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--cmpv2-text, #202329);
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.ctr-main-product-v2__accordion.is-open .ctr-main-product-v2__accordion-icon {
  transform: rotate(45deg);
}

.ctr-main-product-v2__accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ctr-main-product-v2__accordion.is-open .ctr-main-product-v2__accordion-body {
  max-height: 600px;
}

.ctr-main-product-v2__accordion-content {
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cmpv2-text, #202329);

  p {
    margin: 0 0 8px;

    &:last-child {
      margin-bottom: 0;
    }
  }

  ul {
    margin: 0 0 8px;
    padding-left: 16px;
  }

  li {
    margin-bottom: 4px;
  }

  strong {
    font-weight: 700;
  }
}

/* ============================================================
   GUARANTEE BANNER
   ============================================================ */

.ctr-main-product-v2__guarantee {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
  padding: 20px;
}

.ctr-main-product-v2__guarantee-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ctr-main-product-v2__guarantee-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fbc399 42%, rgba(251, 195, 153, 0) 52%);
}

.ctr-main-product-v2__guarantee-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.ctr-main-product-v2__guarantee-heading {
  font-size: 16px;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;

  p {
    margin: 0;
    font-weight: 700!important;
  }
}

.ctr-main-product-v2__guarantee-body {
  font-size: 14px;
  line-height: 1.2;
  color: #000000;
  letter-spacing: -0.3px;
  margin-bottom: 12px;

  p {
    margin: 0;
  }
}

.ctr-main-product-v2__guarantee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: #282828;
  color: #ffffff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: fit-content;

  &:hover {
    opacity: 0.9;
    color: #ffffff;
  }
}

/* ============================================================
   VIDEO ROW
   ============================================================ */

.ctr-main-product-v2__video-row {
  position: relative;
  width: 100%;
}


.ctr-main-product-v2__video-track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;

  &::-webkit-scrollbar {
    display: none;
  }
}

.ctr-main-product-v2__video-card {
  position: relative;
  flex: 0 0 150px;
  width: 150px;
  height: 267px;
  border-radius: 6px;
  overflow: hidden;
  background: #f0f0f0;
  scroll-snap-align: start;
}

.ctr-main-product-v2__video-thumb,
.ctr-main-product-v2__video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ctr-main-product-v2__video-placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
}

.ctr-main-product-v2__video-play {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 2px;
  transition: background 0.2s;

  &:hover {
    background: rgba(0, 0, 0, 0.55);
  }
}

.ctr-main-product-v2__video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;

  &.is-open {
    opacity: 1;
    pointer-events: all;
  }
}

.ctr-main-product-v2__video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.ctr-main-product-v2__video-modal-inner {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 12px;
  overflow: hidden;

  @media screen and (min-width: 768px) {
    max-width: 720px;
    aspect-ratio: 16 / 9;
  }
}

.ctr-main-product-v2__video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;

  &:hover {
    background: rgba(0, 0, 0, 0.8);
  }
}

.ctr-main-product-v2__video-modal-media {
  width: 100%;
  height: 100%;

  iframe,
  video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
}

.ctr-main-product-v2 .kaching-bundles .kaching-bundles__block {
  margin: 0!important;

  .kaching-bundles__bar-title {
    font-family: var(--font-body-family-override)!important;
  }

  .kaching-bundles__block-title {
    font-weight: 700!important;
    letter-spacing: 0.4px!important;
    text-align: left!important;
    line-height: 1.2!important;

    &:before,
    &:after {
      display: none!important;
    }
  }
  .kaching-bundles__bar-container {
    --bar-border-color:#DEDDDD!important;
  }

  .kaching-bundles__bar-price {
    font-weight: 700!important;

    @media screen and (max-width: 767.98px) {
      font-size: 14px!important;
    }
  }

  .kaching-bundles__bar-full-price {
    @media screen and (max-width: 767.98px) {
      font-size: 12px!important;
    }
  }


  .kaching-bundles__bar-label {
    line-height: 1.2!important;
    letter-spacing: 0.4px!important;
    text-transform: uppercase;

    @media screen and (max-width: 767.98px) {
      font-size: 10px!important;
    }
  }

  .kaching-bundles__bar-selling-plan {
    display: none!important;
  }

  .kaching-bundles__bars {
    margin: calc(5px * var(--block-spacing, 1) * -1) 0;
  }


  @media screen and (max-width: 767.98px) {
    .kaching-bundles__bar-main {
      gap: 12px;
    }

    .kaching-bundles__bar-wrapper {
      padding: 12px;
    }

    .kaching-bundles__bar-image {
      width: 70px;
      height: 60px;
    }

    .kaching-bundles__bar-title {
      font-size: 14px!important;
    }

    .kaching-bundles__bar-subtitle {
      font-size: 12px!important;
    }
  }
}

.shopify-app-block:has(.kaching-bundles) + .ctr-main-product-v2__form .ctr-main-product-v2__atc-btn {
  @media screen and (max-width: 767.98px) {
    font-size: 20px!important;
    min-height: 52px;
  }
}

/* ============================================================
   SUBSCRIBE BOX — V2 STYLE
   ============================================================ */

.ctr-main-product-v2__sub-box--v2 {
  background: #fff;
  padding: 0;
  overflow: hidden;
  gap: 0;

  .ctr-main-product-v2__sub-v2-subtitle {
    margin-bottom: 5px;
  }
}

.ctr-main-product-v2__sub-box--v2 + .ctr-main-product-v2__form .ctr-main-product-v2__atc-btn {
  @media screen and (max-width: 767.98px) {
    font-size: 20px!important;
    min-height: 52px;
  }
}

.ctr-main-product-v2__sub-v2-top {
  padding: 12px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ctr-main-product-v2__sub-v2-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ctr-main-product-v2__sub-v2-radio {
  flex-shrink: 0;
}

.ctr-main-product-v2__sub-v2-supply-label {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--cmpv2-text, #202329);
  line-height: 1.2;

  @media screen and (max-width: 767.98px) {
    font-size: 14px;
  }
}

.ctr-main-product-v2__sub-v2-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 1000px;
  background: var(--cmpv2-accent, #f47423);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.ctr-main-product-v2__sub-v2-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ctr-main-product-v2__sub-v2-price {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--cmpv2-text, #202329);
  line-height: 1.2;

  @media screen and (max-width: 767.98px) {
    font-size: 24px;
  }
}

.ctr-main-product-v2__sub-v2-suffix {
  font-size: 16px;
  font-weight: 500;
  color: #6e6e6e;
  line-height: 1.2;
}

.ctr-main-product-v2__sub-v2-compare {
  font-size: 24px;
  font-weight: 500;
  color: #c9c9c9;
  line-height: 1.2;
  text-decoration: line-through;
  text-decoration-skip-ink: none;

  @media screen and (max-width: 767.98px) {
    font-size: 20px;
  }
}

.ctr-main-product-v2__sub-v2-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #6e6e6e;
  line-height: 1.2;

  p {
    margin: 0;
  }
}

.ctr-main-product-v2__sub-v2-body {
  padding: 15px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Single-column checklist override for V2 */
.ctr-main-product-v2__checklist--v2 {
  grid-template-columns: 1fr;
  gap: 8px;

  .ctr-main-product-v2__checklist-item {
    font-weight: 700!important;
    gap: 12px;

    svg {
      width: 14px;
      height: 14px;
    }
  }
}

/* ---- Welcome Kit ---- */
.ctr-main-product-v2__kit {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ctr-main-product-v2__kit-label {
  font-size: 12px;
  font-weight: 700!important;
  letter-spacing: 0.4px;
  color: var(--cmpv2-text, #202329);
  text-transform: uppercase;
  line-height: 1.2;
}

.ctr-main-product-v2__kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 -16px;
  padding: 0 16px;

  &::-webkit-scrollbar {
    display: none;
  }
}

.ctr-main-product-v2__kit-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  min-width: 90px;

  @media screen and (max-width: 767.98px) {
    min-width: 110px;
  }
}

.ctr-main-product-v2__kit-item-img-wrap {
  width: 100%;
  aspect-ratio: 110 / 87;
  border: 1.36px solid var(--cmpv2-accent, #f47423);
  border-radius: 11px;
  background: rgba(241, 116, 28, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

.ctr-main-product-v2__kit-item-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.ctr-main-product-v2__kit-item-name {
  font-size: 14px;
  font-weight: 700!important;
  color: var(--cmpv2-text, #202329);
  line-height: 1.2;
  text-transform: capitalize;
}

.ctr-main-product-v2__kit-item-price {
  font-size: 14px;
  font-weight: 400;
  color: #6e6e6e;
  line-height: 1.2;
  text-decoration: line-through;
  text-decoration-skip-ink: none;
}

/* ---- Buy Once Link ---- */
.ctr-main-product-v2__one-time {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctr-main-product-v2 .ctr-main-product-v2__one-time-link,
.ctr-main-product-v2 .kaching-bundles__subscriptions--link {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--cmpv2-text, #282828) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  text-transform: none !important;
  letter-spacing: normal !important;
  line-height: 1.2;
  white-space: nowrap;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-height: unset !important;
  width: 100% !important;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: -8px;

  &:hover {
    opacity: 0.7;
    color: var(--cmpv2-text, #282828) !important;
    background: none !important;
  }

  &:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  @media screen and (max-width: 767.98px) {
    font-size: 16px !important;
  }
}

/* Reset any Kaching wrapper styles that would conflict */
.ctr-main-product-v2 .kaching-bundles__subscriptions--link * {
  font-size: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
  text-decoration: inherit !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}
