/** Shopify CDN: Minification failed

Line 442:35 Unexpected "{"
Line 442:44 Expected ":"
Line 442:51 Unexpected "{"

**/
/* ═══════════════════════════════════════════════════
   PDP MAIN — Product Detail Page
   Design tokens: see KNOWLEDGE.md
   Fluid em base: 20px @ 1600px viewport (1.25vw)
═══════════════════════════════════════════════════ */

/* ─── SECTION WRAPPER ──────────────────────────── */
.pdp-main {
  padding-top: var(--PT, 3rem);
  padding-bottom: var(--PB, 3rem);
}

.pdp-main__container {
  max-width: calc(var(--container-max-width) + var(--container-padding) * 2);
  padding-inline: var(--container-padding);
  margin-inline: auto;
}

/* ─── BREADCRUMBS ──────────────────────────────── */
.pdp-main__breadcrumbs {
  margin-bottom: 1.2rem;
}

.pdp-main__breadcrumbs,
.pdp-main__breadcrumbs a,
.pdp-main__breadcrumbs span,
.pdp-main__breadcrumbs li {
  font-size: 0.7rem;
  line-height: 1.538;
  letter-spacing: 0.058em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-neutral-600);
  text-decoration: none;
}

.pdp-main__breadcrumbs a:hover {
  color: var(--color-black);
}

/* ─── MAIN TWO-COLUMN LAYOUT ───────────────────── */
.pdp-main__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

/* ─── GALLERY COLUMN (left col wrapper) ────────── */
.pdp-main__gallery-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
}

/* ══════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════ */
.pdp-gallery {
  /* Height is determined by the main image; thumbs are abs-positioned to match */
  position: relative;
  padding-left: calc(5.9rem + 0.8rem);
}

/* ─── THUMBNAIL STRIP ──────────────────────────── */
.pdp-gallery__thumbs {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden; /* clips any thumbs beyond the gallery height */
}

.pdp-gallery__thumbs-viewport {
  width: 100%;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

/* Flickity vertical thumbnail carousel */
.pdp-gallery__thumbs-track {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Flickity vertical override */
.pdp-gallery__thumbs-track.flickity-enabled {
  position: relative;
}

.pdp-gallery__thumbs-track .flickity-viewport {
  width: 5.9rem;
}

/* Thumb nav arrows */
.pdp-gallery__thumb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1.5px solid var(--color-neutral-100);
  background: var(--color-white);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pdp-gallery__thumb-btn:hover {
  background: var(--color-neutral-50);
}

.pdp-gallery__thumb-btn svg {
  width: 0.8rem;
  height: 0.8rem;
  display: block;
}

.pdp-gallery__thumb-btn--down svg {
  transform: rotate(180deg);
}

/* Individual thumbnail items */
.pdp-gallery__thumbs-track .product-single__media-thumb {
  width: 5.9rem;
  height: 5.9rem;
  flex-shrink: 0;
}

.pdp-gallery__thumbs-track .product-single__thumbnail {
  display: block;
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  position: relative;
}

.pdp-gallery__thumbs-track .product-single__thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}

/* Active thumbnail state */
.pdp-gallery__thumbs-track .product-single__media-thumb.is-nav-selected .product-single__thumbnail,
.pdp-gallery__thumbs-track .product-single__thumbnail.is-active {
  border: 3px solid var(--color-secondary-500) !important;
}

/* ─── MAIN IMAGE AREA ──────────────────────────── */
.pdp-gallery__main {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
}

.pdp-gallery__slider {
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
}

.pdp-gallery__slider--single {
  pointer-events: none;
}

/* Flickity viewport sizing */
.pdp-gallery__slider .flickity-viewport {
  border-radius: 1.2rem;
}

.pdp-gallery__slider .flickity-viewport::after {
  content: '';
  display: block;
  aspect-ratio: 970 / 740; /* set inline per product */
  width: 100%;
}

/* Media items within slider */
.pdp-gallery__slider .product-image {
  width: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
}

/* Cap the gallery image at 740px (Figma spec). Switch the
   image-wrapper from the padding-top hack to aspect-ratio so
   max-height can clamp it; adaptiveHeight then measures this
   capped height and keeps the thumb sidebar in sync. */
.pdp-gallery__slider .image-wrapper {
  height: auto;
  padding-top: 0;
  aspect-ratio: var(--aspect-ratio);
  max-height: 740px;
}

.pdp-gallery__slider .product-image img,
.pdp-gallery__slider .product-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 1.2rem;
  display: block;
}

/* Main image nav arrows */
.pdp-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1.5px solid var(--color-neutral-50);
  background: var(--color-white);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.pdp-gallery__arrow--prev {
  left: 0.8rem;
}

.pdp-gallery__arrow--next {
  right: 0.8rem;
  transform: translateY(-50%) scaleX(-1);
}

.pdp-gallery__arrow:hover {
  background: var(--color-neutral-50);
}

.pdp-gallery__arrow svg {
  width: 0.8rem;
  height: 0.8rem;
  display: block;
}

/* ══════════════════════════════════════════════════
   PRODUCT INFO COLUMN
══════════════════════════════════════════════════ */
.pdp-main__info {
  display: flex;
  flex-direction: column;
   align-items: flex-start; 
}
.pdp-main__gallery-col {
  position: sticky;
  top: 2rem; 
  align-self: flex-start;
}

.pdp-main__info {
  flex: 1;
  min-width: 0;
}
.pdp-main__info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ─── TITLE ────────────────────────────────────── */
.pdp-main__title {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-heading-family);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.285;
  letter-spacing: -0.036em;
}

/* ─── RATING ───────────────────────────────────── */
.pdp-main__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  text-decoration: none;
}

.pdp-main__stars {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.pdp-star {
  display: flex;
  align-items: center;
}

.pdp-star svg {
  width: 1rem;
  height: 1rem;
  fill: var(--color-neutral-200, #d0d3d5);
  color: var(--color-neutral-200, #d0d3d5);
}

.pdp-star--full svg {
  fill: var(--color-secondary-500);
  color: var(--color-secondary-500);
}

.pdp-main__rating-count {
  color: var(--color-black);
  font-size: 0.8rem;
  line-height: 1.5;
  letter-spacing: -0.016em;
}

/* ─── PRICE BLOCK ──────────────────────────────── */
.pdp-main__price-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pdp-main__price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pdp-main__save-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: var(--color-primary-200);
  color: var(--color-black);
  font-size: 0.55rem;
  line-height: 1.454;
  letter-spacing: 0.045em;
  font-weight: 600;
  text-transform: uppercase;
}

.pdp-main__price {
  color: var(--color-black);
  font-size: 0.9rem;
  line-height: 1.555;
  letter-spacing: -0.022em;
  font-weight: 600;
}

.pdp-main__price-compare {
  color: var(--color-neutral-600);
  font-size: 0.7rem;
  line-height: 1.538;
  text-decoration: line-through;
}

.pdp-main__tax-note {
  color: var(--color-neutral-600);
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.538;
}

.pdp-main__tax-note a {
  color: inherit;
  text-decoration: underline;
}

/* ─── SUPPRESS EXISTING BLOCK WRAPPERS ─────────── */
.pdp-main__info-wrap .product__block,
.pdp-main__info-wrap .block-padding {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.pdp-main__info-wrap .product__form {
  margin-bottom: 0;
}

/* ─── BUY ROW: QUANTITY + ADD TO BAG ───────────── */
.pdp-main__buy-row .product-form {
  width: 100%;
}

/* product-form custom element: quantity pill + form side by side */
.pdp-main__buy-row product-form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: flex-start;
}

/* form takes remaining width beside quantity */
.pdp-main__buy-row product-form > form {
  flex: 1;
width:100%;
}

/* errors span full width on wrap */
.pdp-main__buy-row .product-form__errors {
  flex: 0 0 100%;
  order: 10;
}

/* ATC + payment buttons stacked vertically */
.pdp-main__buy-row .product-form__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

/* Quantity wrapper */
.pdp-main__buy-row .product-form__input.product-form__quantity,
.pdp-main__buy-row #Quantity-Form-{{ section.id }} {
  margin: 0;
  flex-shrink: 0;
}

.pdp-main__buy-row .qty__adjust {
  display: inline-flex;
  align-items: center;
  height: 3rem;
  border: 1.5px solid var(--color-neutral-100);
  border-radius: 1000px;
  overflow: hidden;
  background: var(--color-white);
}

.pdp-main__buy-row .quantity__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-black);
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
}

.pdp-main__buy-row .quantity__button:hover {
  background: var(--color-neutral-50);
}

.pdp-main__buy-row .quantity__input,
.pdp-main__buy-row .qty__adjust-input {
  /* width: 2.2rem; */
  text-align: center;
  border: none;
  outline: none;
  font-family: var(--font-body-family);
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: -0.016em;
  color: var(--color-black) !important;
  background: transparent !important;
  opacity: 1 !important;
  -moz-appearance: textfield;
}

.pdp-main__buy-row .quantity__input::-webkit-outer-spin-button,
.pdp-main__buy-row .quantity__input::-webkit-inner-spin-button,
.pdp-main__buy-row .qty__adjust-input::-webkit-outer-spin-button,
.pdp-main__buy-row .qty__adjust-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Add to Bag — full width in its column */
.pdp-main__buy-row .product-form__submit {
  width: 100%;
  height: 3rem;
  border-radius: var(--button-border-radius);
  background: var(--color-black);
  color: var(--color-white);
  border: 2px solid var(--color-black);
  font-family: var(--font-body-family);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: -0.022em;
  padding: 0 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pdp-main__buy-row .product-form__submit:hover:not(:disabled) {
  background: var(--color-neutral-800);
  border-color: var(--color-neutral-800);
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.18);
}

.pdp-main__buy-row .product-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}






/* Dynamic checkout buttons — full width below ATC */
.pdp-main__buy-row .shopify-payment-button {
  width: 100%;
}

.pdp-main__buy-row .shopify-payment-button__button {
  width: 100% !important;
  border-radius: var(--button-border-radius) !important;
  min-height: 3rem;
}

.pdp-main__buy-row .shopify-payment-button__more-options {
  display: block;
  text-align: center;
  font-family: var(--font-body-family);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-neutral-600);
  text-decoration: underline;
  margin-top: 0.3rem;
  cursor: pointer;
}

/* ─── TRUST BADGES ─────────────────────────────── */
.pdp-main__trust {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pdp-main__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.8rem;
  border: 1.5px solid var(--color-neutral-100);
  border-radius: 1000px;
  background: var(--color-neutral-50);
}

.pdp-main__trust-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.pdp-main__trust-icon svg {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
}

.pdp-main__trust-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--color-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── REWARD PROMO CARD ────────────────────────── */
.pdp-main__reward-card {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--color-neutral-100);
  border-radius: 0.8rem;
  background: linear-gradient(90deg, #F8FDFF 0%, #FFFBF8 100%);
}

.pdp-main__reward-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.9rem;
  flex-shrink: 0;
}

.pdp-main__reward-icon-wrap svg {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
}

.pdp-main__reward-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pdp-main__reward-title {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-heading-family);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.555;
  letter-spacing: -0.022em;
}

.pdp-main__reward-text {
  color: var(--color-neutral-600);
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.538;
}

/* ─── COMPLEMENTARY PRODUCTS ───────────────────── */
.pdp-main__complementary {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pdp-main__complementary:empty {
  display: none;
}

.pdp-main__complementary .product-block--skin-5 {
  border: 1.5px solid var(--color-neutral-100);
  border-radius: var(--card-border-radius);
  overflow: hidden;
}

/* ─── PRODUCT CONTENT TABS ─────────────────────── */
.pdp-main__tabs {
  display: flex;
  flex-direction: column;
}

.pdp-main__tabs-nav {
  display: flex;

  overflow-x: auto;
  scrollbar-width: none;
  gap: 1.5rem;
}

.pdp-main__tabs-nav::-webkit-scrollbar {
  display: none;
}

.pdp-main__tab-btn {
  flex-shrink: 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
 border-radius:0;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body-family);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.555;
  letter-spacing: -0.022em;
  color: var(--color-neutral-600);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  padding-inline:0;
  margin: 0;
}

.pdp-main__tab-btn.is-active {
  color: var(--color-black);
  border-bottom-color: var(--color-primary-600);
 
}

.pdp-main__tab-btn:hover:not(.is-active) {
  color: var(--color-black);
}

.pdp-main__tabs-body {
  padding-top: 1rem;
}

.pdp-main__tab-panel {
  display: none;
}

.pdp-main__tab-panel.is-active {
  display: block;
}

/* Tab content typography */
.pdp-main__tab-panel p {
  font-size: 0.8rem;
  line-height: 1.5;
  letter-spacing: -0.016em;
  color: var(--color-black);
  margin: 0 0 0.6rem;
}

.pdp-main__tab-panel p:last-child {
  margin-bottom: 0;
}

/* Checkmark bullets */
.pdp-main__tab-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp-main__tab-panel ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.5;
  letter-spacing: -0.016em;
  color: var(--color-black);
  position: relative;
}

.pdp-main__tab-panel ul li::before {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 0.1em;
  /* URL set via inline style tag in liquid */
}

/* ─── ICONS ROW ────────────────────────────────── */
.pdp-main__icons-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
}

.pdp-main__icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.8rem .6rem;
  background: var(--color-neutral-50);
  border: 1.5px solid var(--color-neutral-100);
  border-radius: var(--card-border-radius);
  gap: 0;
}

.pdp-main__icon-box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--color-white);
  margin-bottom: 0.6rem;
  flex-shrink: 0;
}

.pdp-main__icon-box-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  display: block;
}

.pdp-main__icon-box-title {
  margin: 0 0 0.4rem;
  color: var(--color-black);
  font-family: var(--font-body-family);
  font-weight: 600;
  font-size: 0.7rem;
  line-height: 1.555;
  letter-spacing: -0.022em;
}

.pdp-main__icon-box-text {
  color: var(--color-black);
  margin: 0;
  font-size: 0.6rem;
  line-height: 1.538;
}

/* ─── INSTALLMENT / PAYMENT TERMS ──────────────── */
.pdp-main__installment .installment:empty {
  display: none;
}

/* ─── SOLD OUT / NOTIFICATION FORM ─────────────── */
.pdp-main__info-wrap .product-soldout-notification {
  display: none;
}

.pdp-main__info-wrap.variant--soldout .product-soldout-notification {
  display: block;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤1200px)
══════════════════════════════════════════════════ */
@media screen and (max-width: 1200px) {
  .pdp-main__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

.pdp-main__gallery-col {
    max-width: 48rem;
    margin-inline: auto;
    width: 100%;
    position: static !important;   /* sticky off */
    top: auto;
  }

  .pdp-gallery {
    max-width: 100%;
  }

  .pdp-main__icons-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤767px)
══════════════════════════════════════════════════ */
@media screen and (max-width: 767px) {
  .pdp-main__gallery-col {
    max-width: 100%;
    gap: 1.5rem;
  }

  /* Gallery: image on top, thumbs below as horizontal row */
  .pdp-gallery {
    padding-left: 0;
    padding-bottom: calc(5.9rem + 1rem);
  }

  .pdp-gallery__thumbs {
    /* Switch to horizontal strip at the bottom */
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 5.9rem;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .pdp-gallery__thumbs-viewport {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    height: 5.9rem;
  }

  .pdp-gallery__thumbs-track {
    flex-direction: row;
    height: 5.9rem;
    width: 100%;
  }

  /* Flickity is re-initialized horizontally on mobile (initSliderNavVertical);
     override the desktop vertical-rail viewport width (5.9rem) so the
     horizontal strip's viewport spans the full row. */
  .pdp-gallery__thumbs-track .flickity-viewport {
    width: 100%;
    height: 5.9rem;
  }

  /* Hide Flickity's native prev/next buttons on the mobile thumb strip —
     theme.css only hides them for .product__images__slider-nav, which this
     element isn't. Mobile thumb navigation is done via swipe/drag instead. */
  .pdp-gallery__thumbs-track .flickity-prev-next-button {
    display: none;
  }

  .pdp-gallery__thumb-btn {
    /* Hide up/down arrows on mobile – horizontal scroll replaces them */
    display: none;
  }

  .pdp-main__icons-row {
    grid-template-columns: 1fr;
  }

  .pdp-main__trust {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: .5rem;
  }

  .pdp-main__trust-item {
    flex: none;
    width: 100%;
  }

  .pdp-main__buy-row .qty__adjust {
    height: 2.8rem;
  }

  .pdp-main__buy-row .product-form__submit {
    height: 2.8rem;
  }
}

/* ══════════════════════════════════════════════════
   SEAL SUBSCRIPTIONS WIDGET
   Tokens pulled from pdp-main design patterns
══════════════════════════════════════════════════ */

/* Reset */
.sealsubs-target-element,
.sealsubs-target-element * {
  font-family: var(--font-body-family);
  box-sizing: border-box;
}

/* "Purchase options" heading — caption-tiny style */
.sls-purchase-options-label {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  line-height: 1.454;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--color-neutral-500);
  margin-bottom: 0.6rem;
}

/* Stack the two option cards */
.sls-purchase-options-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ── Option card (same as reward card style) ─────── */
.sls-option-container.seal-table {
  border: 1.5px solid var(--color-neutral-100);
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
  cursor: pointer;
  background: var(--color-white);
  transition: border-color 0.2s ease, background 0.2s ease;
}

/* Selected card — primary accent */
.sls-option-container.seal-table.sls-active {
  border-color: var(--color-primary-600);
  background: var(--color-primary-50);
}

/* Card inner row */
.seal-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.seal-col-radio {
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.sls-label-container {
  flex: 1;
  min-width: 0;
}

/* ── Custom radio button ─────────────────────────── */
.sls-option {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.sls-custom-radio {
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid var(--color-neutral-300);
  background: var(--color-white);
  transition: border-color 0.2s ease;
  cursor: pointer;
  position: relative;
}

.sls-active .sls-custom-radio {
  border-color: var(--color-primary-600);
  background: var(--color-primary-600);
  box-shadow: inset 0 0 0 3px var(--color-white);
}

/* ── First line: name + price ────────────────────── */
.sls-selling-plan-group-first-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Option name — UI Label Large */
.sls-selling-plan-group-name {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.555;
  letter-spacing: -0.022em;
  color: var(--color-black);
  margin: 0;
}

/* SAVE badge — matches .pdp-main__save-badge exactly */
.sls-savings-badge {
  display: inline-flex !important;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: var(--color-primary-200) !important;
  color: var(--color-black) !important;
  font-size: 0.55rem !important;
  line-height: 1.454;
  letter-spacing: 0.045em !important;
  font-weight: 600 !important;
  text-transform: uppercase;
}

/* Price — matches .pdp-main__price */
.sls-total-price .sls-price,
.sls-one-time-price .sls-price {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.555;
  letter-spacing: -0.022em;
  color: var(--color-black);
}

.sls-total-price .sls-price span,
.sls-one-time-price .sls-price span {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* ── "Deliver every" row ─────────────────────────── */
.sls-selling-plan-group-options {
  margin-top: 0.5rem;
}

.selling-plan-group-options-name-select {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.selling-plan-group-options-name-select > label {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.016em;
  color: var(--color-neutral-600);
  margin: 0;
}

/* Static text duplicate — hide it, keep only the select */
label.sls-selling-plan-group-first-option {
  display: none;
}

/* Dropdown — matches input border-radius token */
.sls-select {
  -webkit-appearance: none;
  appearance: none;
  border: 1.5px solid var(--color-neutral-100);
  border-radius: var(--input-border-radius);
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230D1012' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 0.5rem;
  padding: 0.25rem 1.4rem 0.25rem 0.6rem;
  font-family: var(--font-body-family);
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: -0.016em;
  color: var(--color-black);
  cursor: pointer;
}

/* ── Description — matches .pdp-main__reward-text ── */
.sls-selling-plan-description-content {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  line-height: 1.538;
  letter-spacing: 0;
  color: var(--color-neutral-600);
}

/* ── Branding footer ─────────────────────────────── */
.sls-widget-branding {
  margin-top: 0.3rem;
  text-align: right;
}

.sls-widget-branding a {
  font-size: 0.55rem;
  color: var(--color-neutral-400);
  text-decoration: none;
  line-height: 1.454;
}

.sls-widget-branding a:hover {
  color: var(--color-neutral-600);
}

/* ── "Subscription details" row ──────────────────── */
.sls-more-info-container {
  margin-top: 0.6rem;
}

.sls-more-info-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sls-sub-icon {
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
}

.sls-subscription-details-label,
.sls-subscription-details-label a {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.016em;
  color: var(--color-neutral-600);
  text-decoration: none;
}

.sls-subscription-details-label a:hover {
  color: var(--color-black);
  text-decoration: underline;
}

.sls-more-info-popup a:hover{
  color: var(--color-black);
}

/* ── Info / branding popups ──────────────────────── */
.sls-more-info-popup,
.sls-branding-popup {
  background: var(--color-white);
  border: 1.5px solid var(--color-neutral-100);
  border-radius: var(--card-border-radius);
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
  font-size: 0.8rem;
  line-height: 1.5;
  letter-spacing: -0.016em;
  color: var(--color-black);
}
.pdp-main__images-row {
  width: 100%;
  max-width: 100%;
  margin-top: 2rem;
  overflow: hidden;        /* safety net */
}

.pdp-main__image-item {
  width: 100%;
  max-width: 100%;
  margin: 1rem 0;
  border-radius: 32px;
  overflow: hidden;
}

.pdp-main__image-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 32px;
}
/* ═══════════════════════════════════════════════
   Thumbnail strip — fills available height (flex: 1
   from .pdp-gallery__thumbs-viewport above), scrolled
   via JS translateY when it overflows
   ═══════════════════════════════════════════════ */
.pdp-gallery__thumbs-track {
  display: flex;
  flex-direction: column;
  gap: 1rem;                  /* thumb gulor majher gap (16px) */
  transition: transform 0.3s ease;   /* smooth shift */
}

/* ═══════════════════════════════════════════════
   i=Change (ICA) widget overrides — !important so
   they win regardless of the app's own CSS load order
   ═══════════════════════════════════════════════ */
.ica-selection {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  height: auto !important;
  padding: 0.6rem 1rem !important;
}
.ica-selection:hover {
  background-color: var(--COLOR-BADGE-BG) !important;
  color: white !important;
}
.compact-ica-project-img a img {
  width: 5.8rem !important;
  margin-top: 0.2rem !important;
  height: auto !important;
}

/* ═══════════════════════════════════════════════
   Seal Subscription widget overrides — !important so
   they win regardless of the app's own CSS load order
   ═══════════════════════════════════════════════ */
   #seal-purchase-options-label {
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    font-size: .7rem;
    color: #535759;
   }
   .sls-option-container.seal-table {
    background: none !important;
    padding: 0 !important;
    border: none !important;
   }
   .sls-purchase-options-container {
    border: none !important;
   }
   .sls-widget-branding{
    margin-top: -1.1rem;
   }
   .sls-selling-plan-group-name {
    font-family: Plus Jakarta Sans;
    font-weight: 400 !important;
    font-size: .8rem !important;
    color: #0D1012 !important;
   }
   .sls-savings-badge {
    transform: none;
    border-radius: 100px;
    background-color: #8DCBE9 !important;
   }
   .sls-savings-badge:before {
    content: none;
   }
   .sls-selling-plan-group-first-line {
    padding-top: .5rem !important;
   }
   .selling-plan-group-options-name-select label {
    font-family: Plus Jakarta Sans;
    font-weight: 400;
    font-size: 0.8rem;
    color: #535759;
   }
   .sls-select {
    border-radius: .4rem !important;
    border: 1px solid #E4E6E7 !important;
    background-color: #F2F3F4 !important;
    padding: .3rem 0.8rem !important;
    font-size: .8rem !important;
    color: #0D1012 !important;
    font-weight: 600 !important;
   }

   .bndlr-bundle-title {
    font-weight: 700;
    font-size: .9rem;
   }

   .bndlr-bundle-description {
    font-size: .8rem;

   }

   .bndlr-product-title {
    font-size: .8rem;
    font-weight: 500;
    line-height: 1.4em;
    display: flex;
    padding: 0 .3rem !important;
   }
   
   .bndlr-money {
    font-size: .9rem;
   }

   .bndlr-product {
    margin: .5rem .2rem !important;
    padding: 0 !important;
    border-radius: .4rem;
    overflow: hidden;
    padding-bottom: .4rem !important;
   }

   .bndlr-inner-products-container .sls-widget-branding {
    margin-top: 0 !important;

   }

   .bndlr-add-to-cart {
    border-radius: 100px !important;
   }
   /*  */

   .bndlr-product {

    border: 0 !important;
    justify-content: start;
    align-items: start;
    /* max-width: auto !important; */
}

.bndlr-product {
  display: flex !important;
  flex-direction: column !important;
  max-width: none !important;
  width: calc(31% - 0.667rem) !important; /* 3-column base */
  box-sizing: border-box !important;
}

.bndlr-product-image{
  border-radius:8px !important;
}
.bndlr-inner-products-container > div:has(.bndlr-product:nth-child(2):last-child) .bndlr-product {
  width: calc(48% - 0.5rem) !important;
}
.bndlr-product-qn-container {
    text-align: left;
}
.bndlr-product-image-url {
    margin-top: 0;
    margin-bottom: .6rem !important;
}
.bndlr-products-container{
      border: 1px solid #E4E6E7;
    border-radius: .8rem !important;
    padding:1rem !important;
}

.bndlr-inner-products-container {
   
    display: block !important;
    width: 100%;
    margin-top:1.6rem;
}
.bndlr-inner-products-container > div:first-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between !important;
    align-items: start !important;
}


.bndlr-product {
  position: relative;   /* ::after er reference point thik korar jonno */
  overflow: visible;    /* parent theke clip howa bondho korbe */
}

.bndlr-inner-products-container,
.bndlr-inner-products-container > div {
  overflow: visible;    /* jodi ei wrapper gulotao overflow:hidden thake */
}

.bndlr-product:not(:last-of-type)::after {
  position: absolute;
  top: 30% !important;
  right: calc(-0.9rem - 0.5em) !important; 
  transform: translateY(-50%);   
  z-index: 2;
  content: "+";
  color: #5996B3 !important;
  background: transparent !important;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  line-height: 1.05em;
  text-align: center;
  font-size: 25px;
  font-family: arial;
}
  @media screen and (max-width: 749px) {
.pdp-main__reward-card {
    flex-direction: column;
    align-items: start;
    gap: 1rem;

  }
  .pdp-main__reward-icon-wrap {
    justify-content: start;
  }
    /* .bndlr-product {
      max-width: 100% !important;
      padding-bottom: 1rem !important;
    } */
       .bndlr-inner-products-container > div:first-child {
      justify-content: flex-start !important;
      gap: 0.6rem;
    }
    .bndlr-product {
      width: calc(47% - 0.3rem) !important;
      max-width: calc(48% - 0.3rem) !important;
      padding-bottom: 1rem !important;
    }
    .bndlr-product:not(:last-of-type)::after {

    right: calc(-0.5rem - 0.5em) !important;
 
}
    .bndlr-product-qn-container .bndlr-product-title {

        justify-content: start;
    font-size: .9rem;
    }
    .bndlr-inner-products-container .sls-widget-branding {
      display: none;
    }
    
  }
  #yotpo-main-widget-btn {
    padding: .6rem 1.2rem;
    width: 13rem;
  }
  @media screen and (max-width: 749px) {
  #yotpo-main-widget-btn {
    width: 15rem;
  }
  .pdp-main__images-row {
    margin-top: 0;
  }

  .yotpo-vertical-pagination .yotpo-reviews-pagination-item {
  width: 100% !important;
        height: 3rem !important;
        border-radius: var(--button-border-radius) !important;
     
        border: 2px solid var(--color-black) !important;
        background: transparent;
        color: var(--color-black) !important;

        font-family: var(--font-body-family);
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        line-height: 1;
        letter-spacing: -0.022em;
        padding: 0 1.5rem !important;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .yotpo-reviews-pagination-container {
    margin: 2rem 0 0 !important;
  }


  /* Mobile reorder: image → info → description */
/* Mobile reorder: image → info → description */
  .pdp-main__layout {
    grid-template-columns: minmax(0, 1fr);   /* 1fr blowout thekay */
    gap: 1.5rem;
  }

  .pdp-main__gallery-col {
    display: contents;
  }

  .pdp-gallery        { order: 1; }
  .pdp-main__info     { order: 2; }
  .pdp-main__tabs     { order: 3; }
  .pdp-main__images-row { order: 4; }

  /* grid item hoye jawar por min-width:auto er overflow thekay */
  .pdp-gallery,
  .pdp-main__info,
  .pdp-main__tabs,
  .pdp-main__images-row {
    min-width: 0;
    max-width: 100%;
  }
  }