/** Shopify CDN: Minification failed

Line 1023:4 Expected ":"
Line 1023:5 Expected identifier but found "7px"

**/
/*
 * vpv-simple.css
 * ─────────────────────────────────────────────────────────────────────────────
 * All selectors are scoped under .vpv-simple or the custom element tags.
 * CSS custom properties are prefixed --vpv- to avoid collisions.
 * Override the properties in your theme's base CSS to match your brand.
 * ─────────────────────────────────────────────────────────────────────────────
 */

/* ── Design tokens ──────────────────────────────────────────────────────────── */
.vpv-simple {
  --vpv-gap:             2.4rem;
  --vpv-gap-sm:          1.2rem;
  --vpv-radius:          40px;
  --vpv-btn-radius:       200px;
  --vpv-radius-sm:8px;
  --vpv-radius-lg:       0.8rem;
  --vpv-thumb-size:      7.2rem;
  --vpv-thumb-gap:       0.6rem;
  --vpv-swatch-size:     40px;
  --vpv-swatch-gap:      8px;

  /* Colour palette — override these to match your theme */
  --vpv-color-text:          #000;
  --vpv-color-text-muted:    #767676;
  --vpv-color-bg:            #fff;
  --vpv-color-border:        #000;
  --vpv-color-border-focus:  #111;
  --vpv-color-selected:      #71a7f4;
  --vpv-color-selected-bg:   #71a7f4;
  --vpv-color-sold-out:      #999;
  --vpv-color-sale:          #71a7f4;
  --vpv-color-btn-bg:        #71a7f4;
  --vpv-color-btn-text:      #000;
  --vpv-color-btn-disabled:  #ccc;
  --vpv-dot: #fff;

  font-family: inherit;
  color: var(--vpv-color-text);
}

/* ── Layout ─────────────────────────────────────────────────────────────────── */

.vpv-simple{
  color: var(--vpv-color-text);
    margin: 0 auto;
    max-width: 100%;
    width: 1200px;
}
.vpv-simple__layout {
  display:block;
}

@media (min-width: 740px) {
   .vpv-simple {
      padding-bottom: 40px;  
    padding-top: 40px;
    }
  .vpv-simple__layout {
    display: grid;
  gap: var(--vpv-gap);
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: start;
  }
  .pdp-sticky-wrap {
align-items: flex-start; 
margin: 0 auto;     }
}

@media (min-width: 1200px) {
  .vpv-simple__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: calc(var(--vpv-gap) * 2);
  }
}
.vpv-simple__buybox{
    display: flex;
    flex-direction: column;
  overflow:hidden;
  padding:18px 18px 0;
position:relative;
row-gap: 18px;}

.vpv-simple-subs .vpv-simple__buybox{padding:0;}
.vpv-simple-subs .vpv-simple__buybox .shopify-product-form{
    display: flex;
    flex-direction: column;
  overflow:hidden;
  padding:18px 18px 0;
position:relative;
row-gap: 18px;}
.vpv-simple-subs .shopify-app-block.recharge-subscription-widget {
        padding: 0;
    }

@media (min-width: 740px) {
.vpv-simple__buybox {padding-top:0;}

}

@media (max-width: 740px) {
  .vpv-simple__buybox .tolstoy-carousel{display:none;}
}

.vpv-simple__buybox > .shopify-app-block div.okeReviews{
  display:block;
  margin-bottom:-18px;
  margin-top:-9px;
}

/* ── Gallery ─────────────────────────────────────────────────────────────────── */
vpv-simple-gallery,
.vpv-simple__gallery-wrap {
  display: block;
    max-width:100%;
  overflow:hidden;
  position: relative;
}

.vpv-simple__gallery {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: var(--vpv-gap-sm);
    position: relative;
 
}
@media (min-width: 740px) {
.vpv-simple__gallery-wrap {
   position: sticky;
top: var(--pdp-sticky-offset, 96px); /* distance from top (nav height) */
}
}

/* Main viewport */
.vpv-simple__gallery-main {
  aspect-ratio: 1 / 1;
  border-radius:0;
  max-width:100%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 740px) {
  .vpv-simple__gallery-main { border-radius: var(--vpv-radius-sm);}
}

.vpv-simple__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.vpv-simple__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.vpv-simple__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Media inside slides */
.vpv-simple__media--image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vpv-subs__media--video,
.vpv-simple__media--video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vpv-simple__media--iframe {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}

.vpv-simple__media--iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Arrows */
.vpv-simple__arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
   color: var(--vpv-color-text);
  cursor: pointer;
  display: flex;
  height: 25px;
 justify-content: center;
  line-height: 1;
  position: absolute;
   top: 50%;
  transform: translateY(-50%);
  transition: background 0.15s, opacity 0.15s;
  width: 25px;
  z-index: 2;
}

.vpv-subs__arrow--prev,
.vpv-simple__arrow--prev { left: 1rem; }
.vpv-subs__arrow--next,
.vpv-simple__arrow--next { right: 1rem; }
.vpv-simple__arrow svg{

    height: 11px;
      width: 6px;}

.vpv-simple__arrow:hover {
  background: #fff;
}

.vpv-simple__arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.vpv-simple__gallery-main.is-single-slide .vpv-simple__arrow { display: none; }

/* Dots */

.vpv-simple__dots {
  bottom:20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  left:50%;
  min-height: 1.6rem;
  padding:0 18px;
  position:absolute;
 transform: translate(-50%);
}
.vpv-subs__dot,
.vpv-simple__dot {
 background: transparent;
  border: 1px solid var(--vpv-dot); 
  border-radius: 50%;
   cursor: pointer;
   flex-shrink: 0;
  height:10px;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
  width: 10px;
 
}
.vpv-subs__dot:hover,
.vpv-simple__dot:hover {
  background: var(--vpv-color-text-muted);
}
.vpv-subs__dot.is-active,
.vpv-simple__dot.is-active {
  background: var(--vpv-dot); 
  transform: scale(1.3);
}

.vpv-subs__dot:focus-visible,
.vpv-simple__dot:focus-visible {
  outline: 2px solid var(--vpv-color-border-focus);
  outline-offset: 2px;
}

/* Video play indicator on thumbnail */
.vpv-simple__thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 1.4rem;
}

.vpv-simple__thumb-play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}

/* ── Info panel ──────────────────────────────────────────────────────────────── */
vpv-simple-form,
.vpv-simple__info-wrap {
  
  display: block;
}


.vpv-simple__info {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: var(--vpv-gap);
}

.vpv-simple__title {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  
}
.vpv-pdp-product-subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
    margin: 0;
}

.vpv-simple__info-grid{display:none;}
@media (min-width: 740px) {
  .vpv-simple__info-grid{
    display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 20px;
grid-row-gap: 20px;}

.vpv-simple__info-grid.meta_images .meta_img {
    width: 100%;
}

.vpv-pdp-product-subtitle {
        font-size: 24px;
    }
}

/* ── Price ───────────────────────────────────────────────────────────────────── */
.vpv-simple__price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.vpv-simple__price {
  font-size: 2rem;
  font-weight: 600;
}

.vpv-simple__compare-price {
  color: var(--vpv-color-text-muted);
  text-decoration: line-through;
}

.vpv-simple__badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vpv-simple__badge--sale {
  background: var(--vpv-color-sale);
  color: #fff;
}

/* ── Variant options ─────────────────────────────────────────────────────────── */
.vpv-simple__options {
  display: flex;
  flex-direction: column;
  gap: var(--vpv-gap-sm);
}

.vpv-simple__option-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.vpv-simple__option-header {
  align-items: baseline;
  display: flex;
  gap: 0.5em;
}

.vpv-simple__option-name {
  color: var(--vpv-color-text);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.vpv-simple__option-selected {
  color: var(--vpv-color-text-muted);
  font-size: 14px;
 }

/* Text buttons */
.vpv-simple__option-values--buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.vpv-simple__opt-btn {
  background: transparent;
  border: 1.5px solid var(--vpv-color-text);
  border-radius:40px;
  border-radius: var(--vpv-radius);
  color: var(--vpv-color-text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
padding: 15px 20px;
text-align:center;
transition: border-color 0.15s, background 0.15s;
}

.vpv-simple__opt-btn:hover {
  border-color: var(--vpv-color-text);
}

.vpv-simple__opt-btn.is-selected {
  background: var(--vpv-color-selected-bg);
  border-color: var(--vpv-color-selected);
  font-weight: 600;
}

.vpv-simple__opt-btn:focus-visible {
  outline: 2px solid var(--vpv-color-border-focus);
  outline-offset: 2px;
}

.vpv-simple__option-group #help-me-choose-trigger{
  font-size:14px!important;
  justify-content: left!important;}

/* Colour swatches */
.vpv-simple__option-values--swatches {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vpv-swatch-gap);
}

.vpv-simple__swatch {
  background-color: transparent;
  background-size: auto;
  background-position: center;
  border: 1px solid var(--vpv-color-text);
  border-radius: 50%;
  cursor: pointer;
  height: var(--vpv-swatch-size);
  outline-offset: 3px;
  padding: 0;
   position: relative;
  transition: transform 0.15s, border-color 0.15s;
   width: var(--vpv-swatch-size);
}

.vpv-simple__swatch-wrap{
  align-items:center;
  display:flex;
  flex-direction:column;

}
.vpv-simple__swatch-wrap .variant-group-promo{
  
    color: #346ab7;
    font-weight: 400;
    font-size: 14px;
     letter-spacing: .05em;
    line-height: 10px;
    margin-top:4px;
    text-align: center;
}

.vpv-simple__swatch::after {
  /* Inner ring for selected state */
  content: '';
  position: absolute;
  border-radius: 50%;
  transition: border-color 0.15s;
}

.vpv-simple__swatch.is-selected {
  border-color: var(--vpv-color-selected);
}

.vpv-simple__swatch:hover {
  transform: scale(1.1);
}

.vpv-simple__swatch:focus-visible {
  outline: 2px solid var(--vpv-color-border-focus);
}

/* ── Quantity ─────────────────────────────────────────────────────────────────── */
.vpv-simple__qty-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vpv-simple__qty-label {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vpv-simple__qty-control {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid var(--vpv-color-border);
  border-radius: var(--vpv-radius);
  overflow: hidden;
  width: fit-content;
}

.vpv-simple__qty-btn {
  padding: 0 1.4rem;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--vpv-color-text);
  min-width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s;
}

.vpv-simple__qty-btn:hover {
  background: var(--vpv-color-selected-bg);
}

.vpv-simple__qty-input {
  width: 5rem;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--vpv-color-border);
  border-right: 1.5px solid var(--vpv-color-border);
  font-size: 1.4rem;
  padding: 0.8rem 0;
  -moz-appearance: textfield;
  color: var(--vpv-color-text);
  background: transparent;
}

.vpv-simple__qty-input::-webkit-outer-spin-button,
.vpv-simple__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* ── Add to Cart button ───────────────────────────────────────────────────────── */
.vpv-simple__atc-btn {
background: var(--vpv-color-btn-bg);
border:none;
border-radius: var(--vpv-btn-radius);
  color: var(--vpv-color-btn-text);
   cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 700;
      gap: 0.8rem;
    justify-content: space-between;
    letter-spacing: .15em;
    line-height: 10px;
    max-height: 40px;
    max-width: 340px;
    min-height: 40px;
    padding: 14px 30px;
    position: relative;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
  width: 100%;
}

.vpv-simple__atc-btn:hover:not(:disabled) {
  opacity: 0.85;
}

.vpv-simple__atc-btn:disabled,
.vpv-simple__atc-btn.is-sold-out {
  background: var(--vpv-color-btn-disabled);
  border-color: var(--vpv-color-btn-disabled);
  cursor: not-allowed;
  opacity: 1;
}

.vpv-simple__atc-btn:focus-visible {
  outline: 2px solid var(--vpv-color-border-focus);
  outline-offset: 3px;
}

.vpv-simple__atc-btn .vpv-simple__price {
    color: var(--vpv-color-text);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 10px;
}

.vpv-simple__atc-btn .vpv-simple__compare-price {
  color: #3a3a3a;
  text-decoration: line-through;
}

.dealbreakers-wrapper {
    display: flex;
    justify-content: left;
    width: 100%;
    margin: 0;
}
.dealbreakers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
    font-family: sofia-pro, sans-serif;
    font-size: 12px;
    color: #111;
    line-height: 1.4;
}

.dealbreakers .point {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}
.dealbreakers .icon {
   background: none;
  color: #7da5ed;
  display:block;
    flex: none;
    font-size: 15px;
    line-height: 1;
    overflow: visible;
    pointer-events: none;
    vertical-align: middle;    
}
.dealbreakers span:last-child {
    font-size: clamp(10px, 2vw, 12px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 740px) {
    .dealbreakers-wrapper {
        justify-content: start;
    }
}

/* Loading state */
.vpv-simple__atc-btn.is-loading [data-vpv-atc-text] {
  opacity: 0;
}

.vpv-simple__atc-spinner {
  display: none;
  position: absolute;
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: vpv-spin 0.7s linear infinite;
}

.vpv-simple__atc-btn.is-loading .vpv-simple__atc-spinner {
  display: block;
}

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

/* ── Description ─────────────────────────────────────────────────────────────── */
.vpv-simple__description {
  color: var(--vpv-color-text);
  padding-bottom: var(--vpv-gap-sm);
  padding-top: var(--vpv-gap-sm);
}

.vpv-simple__description p:first-child { margin-top: 0; }
.vpv-simple__description p:last-child  { margin-bottom: 0; }

/* Accordions */
.pdp-accordion {border-bottom: 1px solid #ccc;}

.accordion-header {
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
    display: flex;
   font-size: 12px;
     font-weight: 400;
  justify-content: space-between;
  letter-spacing: .15em;
   line-height: 125%;
    min-height: 48px;
  padding: 10px 0;
  text-transform: uppercase;
   width: 100%;}


.animated-plus {
    position: relative;
    width: 10px;
    height: 10px;
	margin-left:-5px;
}

.animated-plus:before,
.animated-plus:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-90deg);
    background-color: currentColor;
    transition: transform .4s ease-in-out,opacity .4s ease-in-out
}

.animated-plus:before {
    width: 10px;
    height: 2px;
    opacity: 1
}

.animated-plus:after {
    width: 2px;
    height: 10px
}

.accordion-header.active .animated-plus:before {
    opacity: 0
}

.accordion-header.active .animated-plus:before,
.accordion-header.active .animated-plus:after {
    transform: translate(-50%,-50%) rotate(90deg)
}

/* Panel defaults */
.accordion-content {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
 	 max-height: 0;
  	overflow: hidden;
     padding-right: 20px;
  transition: max-height 0.35s ease;
}
.accordion-content .metafield-rich_text_field *{text-wrap:wrap;}
.content-inner{padding-bottom:18px;}

.vpv-pdp-whats-included,
.vpv-pdp-complementary,
.vpv-pdp-compare-bidets,
.vpv-pdp-ingredients,
.vpv-pdp-specifications,
.vpv-pdp-how-to-use{margin-top:-18px;}

.vpv-simple-subs .vpv-pdp-complementary {
    padding: 0 18px;
}

.vpv-pdp-specifications a{
  display:block;
  margin-bottom:20px;}


 .vpv-pdp-whats-included .whats-included-content-wrap ul:before,
.vpv-pdp-whats-included .whats-included-content-wrap ul:after{display:none;}


.whats-included__title{
  color: var(--black);
font-family: 'sofia-pro', sans-serif;
font-size: 12px;
font-weight: 400;
line-height: 125%; 
letter-spacing: 1.8px;
margin-bottom:10px;
text-transform: uppercase;}

.whats-included__subtitle{
  color: var(--black);
font-family: 'sofia-pro', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 150%; 
margin: 0 0 20px 0;
}
.whats-included{margin-top:30px;}
.whats-included .whats-included__items{
  display:grid;
  column-gap: 20px;
  list-style-type:none;
  margin:0;
  padding:0;
  row-gap:20px;
}
.whats-included--2-columns .whats-included__items{
  grid-template-columns: repeat(2, 1fr);
  row-gap:10px;
}
.whats-included--2-columns .whats-included__item {
  align-items:center;
  display:flex;
gap:10px;
margin-bottom:0;}
.whats-included--2-columns .whats-included__item img{ width:48px;}
.whats-included--2-columns .whats-included__item .whats-included__item-title{     
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .7px;
    line-height: 150%;
    margin:0;
    width: calc(100% - 48px);}

.whats-included-content-wrap .whats-included--3-columns{
  border-top:0.5px solid var(--black);
  padding-top:30px;
}
.whats-included-content-wrap .whats-included--3-columns:first-of-type{border-top:none;}

.whats-included--3-columns .whats-included__items{
  grid-template-columns: repeat(3, 1fr);
}

.whats-included .whats-included--3-columns .whats-included__item{text-align:center;}
.whats-included .whats-included--3-columns .whats-included__item img{
  display:block;
  margin:0 auto;
  width:63px;
}
.whats-included .whats-included--3-columns .whats-included__item-title{margin-bottom:5px;}
.whats-included .whats-included--3-columns .whats-included__item-subtitle{
  font-size:12px;
  margin-bottom:10px;
  margin-top: 0;}

/* Icons */

.vpv-pdp-feature-icons{margin: 0;}

	  .vpv-pdp-icons {
	    display: flex;
	    flex-wrap: nowrap;
	    gap: clamp(4px, 2vw, 30px);
	    justify-content: flex-start;
	    list-style-type: none;
	    padding: 0;
	    width: 100%;
	  }

	  .vpv-pdp-icon {
	    align-items: center;
	    display: flex;
	    flex-direction: column;
	    gap: 2px;
	    max-width: 90px;
	    min-width: 50px;
	    text-align: center;
	  }
    .vpv-pdp-icon-image {    
      display: block;
      height: 34px;
	  margin-bottom: 13px;
	   object-fit: contain;
      width: 45px;
     
    }
	
	.vpv-pdp-icon-name{
font-size: 10px;
font-weight: 400;
letter-spacing: 0.15em;
line-height: 125%;
text-align: center;
 text-transform: uppercase;
}
	@media (min-width: 990px) {
.vpv-pdp-icon-name{font-size: 12px;}
	}
/* Compare Chart */

.vpv-compare-products{
	  display: grid;
	  gap:4px;
	  grid-template-columns: 43% repeat(2, 1fr);}
 .vpv-compare-products .vpv-compare-product{
	 padding-bottom:10px;
	 text-align:center;}
	 
	 .vpv-compare-products .vpv-compare-product:nth-child(1) {grid-column: 2;}
	 .vpv-compare-products .vpv-compare-product:nth-child(2) {grid-column: 3;}
  

.vpv-compare-row {
	border-top: .5px solid #000;
	display: grid;
	  gap:4px;
	grid-template-columns: 43% repeat(2, 1fr);}
.products-in-chart-3 .vpv-compare-row{grid-template-columns: 43% repeat(3, 1fr);}

		
.vpv-compare-row .vpv-compare-title {
    align-items: center;
	color: #000;
	 display: flex;
    gap: 11.36px;
    font-size: 12px;
    font-weight: 300;
    line-height: 125%;
    padding: 10px 20px 10px 0;}
	
.vpv-compare-row .vpv-compare-icon{    
    align-items: center;
    display: flex;
	justify-content: center;}
	
.vpv-compare-title img{
height: auto;
margin: unset;
width: 30px;}	

.vpv-compare-product-name{
font-size:10px;
font-weight: 700;
letter-spacing: 2px;
line-height: 150%;
margin-bottom:10px;
text-transform: uppercase;}
.vpv-compare-text{
    font-weight: 700;
    line-height: 1.2;
}	

@media (min-width: 550px) {
.vpv-compare-row,
.vpv-compare-products{grid-template-columns: 46% repeat(2, 1fr);}
.products-in-chart-3 .vpv-compare-row,
.products-in-chart-3 .vpv-compare-products{grid-template-columns: 40% repeat(3, 1fr);}
}

/* ── Accessibility ───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .vpv-simple__atc-spinner { animation-duration: 1.5s; }
  .vpv-simple__swatch      { transition: none; }
}

/* ── Bowl Shape & Fit ───────────────────────────────────────────────────────────── */

.vpv-simple .vpv-pdp-fits-shape{
	margin-bottom:30px;
	text-align:left;}
	
.shape-disclaimer{
		font-size: 16px;
		font-weight: 500;
		letter-spacing: 2.4px;
		line-height: 125%;
		margin-bottom:0;
		text-transform: uppercase;}
		.shape-disclaimer-text{margin-top:0;}

.fits-title{
	align-items:center;
	display:flex;
	gap:7px;
	justify-content:center;
	margin-bottom:14px;
}		
.fits-title-text{
	font-weight: 500;
	font-size: 14px;
	line-height: 125%;}
	
.vpv-simple  .bowl-shapes{
	display:grid;
	 grid-template-columns: repeat(2, minmax(0, 1fr)); 
	 column-gap: 12px; 
	 padding-top:20px;
}
.vpv-simple  .single-bowl{
	border-radius:5px;
	padding:12px 10px;
	text-align:center;
}
.vpv-simple  .single-bowl .headline{
	align-items:center;
	display:flex;
	gap;7px;
}
.vpv-simple .fits{
	border:1px solid #71A7F4;
	color:#000;
}
.vpv-simple .doesnotfit{
	border:1px solid #595959;
	color:#595959;

}
.fits-check,
.fits-cross{
	height:15px;
	line-height:1;}
	

  /* ── Shape / bowl-type card picker ─────────────────────────────────── */

.vpv-simple__option-header--shape {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vpv-simple__bowl-help-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #346ab7;
  text-decoration: none;
}

.vpv-simple__bowl-help-link:hover {
  text-decoration: underline;
}

.vpv-simple__option-values--shapes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vpv-simple__shape-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  min-width: 130px;
  border: 1px solid #000;
  border-radius: 15px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s, border-width 0.15s;
}

.vpv-simple__shape-card.is-selected {
  border: 2px solid var(--blue, #5b9cf6);
}

.vpv-simple__shape-card-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.vpv-simple__shape-card-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}


.vpv-pdp-icons.vpv-pdp-icons--wrap,
.eau-smart-toilet-with-bidet .vpv-pdp-icons,
.eau-by-tushy .vpv-pdp-icons{
  flex-wrap:wrap;
  justify-content:space-evenly;}

  @media screen and (max-width:750px){
    .vpv-pdp-icons.vpv-pdp-icons--wrap{
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-column-gap: 9px;
grid-row-gap: 18px;
    }
  }

.vpv-pdp-feature-cards.eau-by-tushy,
.vpv-pdp-feature-cards.eau-smart-toilet-with-bidet {background: linear-gradient(185deg, rgba(253, 247, 241, 0.50) 3.92%, rgba(231, 213, 198, 0.50) 96.08%);}

.vpv-callout{
  background: #EBF3FE;
  border-radius: 15px;
  max-width:100%;
  padding:20px;
  width:328px;

}
/* Temporary 2026.05.27*/
.eau-smart-toilet-with-bidet .vpv-simple__compare-price,
.eau-by-tushy  .vpv-simple__compare-price{display:none;}

.vpv-callout-title{
  color: #000;
font-family: sofia-pro, sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 125%;
letter-spacing: 2.4px;
margin-bottom:15px;
text-transform: uppercase;}

.vpv-callout-text{
color: v#000;
font-family: sofia-pro, sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 150%; }

.vpv-callout .svg-icon{width:14px;}


/* Sale Banner */
.vpv-sale-banner{
  align-items:center;
  background-color:var( --vpv-color-sale);
  border-top-left-radius:5px;
  border-bottom-left-radius:5px;
  color:var(--vpv-color-btn-text);
  display:flex;
  padding:18px 36px 18px 18px;
  justify-content:flex-start;
  width: fit-content;
  /* scalloped right edge */
  --r: 9px; /* notch radius */
  -webkit-mask:
    radial-gradient(var(--r) at right, #0000 98%, #000)
    right / 100% calc(2 * var(--r)) repeat-y;
  mask:
    radial-gradient(var(--r) at right, #0000 98%, #000)
    right / 100% calc(2 * var(--r)) repeat-y;
}

.vpv-sale-banner strong {display:block;}
.vpv-sale-banner p {
  font-size: 12px;
  margin:0;}

