/** Shopify CDN: Minification failed

Line 242:0 Unexpected "}"

**/
/* =============================================
   EAST COL + PRODUCTS — CSS v3
   ============================================= */

/* -----------------------------------------------
   CSS CUSTOM PROPERTIES
----------------------------------------------- */
.east-col-prod-section {
  --east-prod-gap: 16px;
  overflow:hidden;
}


.east-col-prod-price form.east-col-atc-form.js-prod-form-submit {
    width: 100%;
    max-width: 54px;
    height: 54px;
}
.east-col-prod-circle {
    width: 100%;
    max-width: 226.6px;
}
.east-col-prod-circle-image{
    width:100%;
    max-width:154.52px;
    height:154.52px;
}

.east-col-prod-viewport {
  overflow: hidden;        /* 🔥 hides cloned items */
  width: 100%;
}

#eastTrack {
  display: flex;
  width: 100%;      /* 🔥 prevents shrink */
}
/* -----------------------------------------------
   SECTION SHELL
----------------------------------------------- */
.east-col-prod-section {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* =============================================
   CIRCLE ROW
   ============================================= */
.east-col-prod-top {
  box-sizing: border-box;
  width: 100%;
}

.east-col-prod-circles-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.east-col-prod-circles {
  display: flex;
 
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  gap:20px;
}

.east-col-prod-circles::-webkit-scrollbar {
  display: none;
}

/* ---- Circle item ---- */
.east-col-prod-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  flex-shrink: 0;
  
  transition: opacity 0.25s;
  user-select: none;
  position: relative;
}



/* Image / placeholder */
.east-col-prod-circle img,
.east-col-prod-circle-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.east-col-prod-circle-placeholder {
  background: rgba(255,255,255,0.2);
}

.east-col-prod-circle.active img {
  border: none !important;
}

/* Label */
.east-col-prod-circle p {
    font-family: Barlow;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.east-col-prod-underline {
    width: 100%;
    height: 7px;
    background: #9D69BA;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
        transform: scaleX(0);
    opacity: 0;
}

/* ACTIVE STATE */
.east-col-prod-circle.active .east-col-prod-underline {
  transform: scaleX(1);
  opacity: 1;
}

/* ---- Circle arrows ---- */
.east-circle-arrow {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.east-circle-arrow:hover {
  background: rgba(255,255,255,0.35);
}

.east-circle-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* =============================================
   PRODUCT AREA — DESKTOP
   ============================================= */
.east-col-prod-products {
  box-sizing: border-box;
  width: 100%;
}

.east-col-prod-slider-wrapper {
    width: 100%;
    max-width: 1488px;
    margin: auto;
    padding: 0 22px;
    position: relative;
    display: flex;
    align-items: center;
}

/* 4-column grid on desktop */
.east-col-prod-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--east-prod-gap, 16px);

}

/* ---- Product arrows ----
   ALWAYS hidden on desktop (hard rule).
   On mobile, JS sets inline style="display:flex" when enabled. */
.east-prod-arrow {
  display: none !important; /* desktop: never show */
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: background 0.2s;
  z-index: 3;
}

.east-prod-arrow:hover {
  background: #f5f5f5;
}

.east-prod-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* =============================================
   PRODUCT CARD
   ============================================= */
.east-col-prod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  
}

/* Image container */
.east-col-prod-img {
    width: 100%;
    max-width: 371px;
    height: 580px;
}
}

.east-col-prod-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.east-col-prod-img img,
.east-col-prod-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.east-col-prod-img-placeholder {
  background: #e8e8e8;
}



/* Badge */
.east-col-prod-badge {
position: absolute;
    top: 12px;
    left: 12px;
    background: #34A853;
    color: #fff;
    font-family: Plus Jakarta Sans;
    font-size: 14px;
    line-height: 19.6px;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: uppercase;
    padding: 0 8px;
    border-radius: 4px;
    z-index: 1;
    height: 28px;
    display: flex;
    align-items: center;
}

/* Cart button */
.east-col-prod-cart {
 
    width: 100%;
    max-width: 54px;
    height: 54px;
    background: #9D69BA;
    border: none;
    border-radius: 9.45px !important;
    padding: 0;
    margin: 0;
}

.east-col-prod-cart:hover {
  background: #4b2d6e;
  border-color: #4b2d6e;
}

.east-col-prod-cart:hover svg,
.east-col-prod-cart:hover img {
  filter: brightness(0) invert(1);
}
.east-col-prod-price-tag{
        display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap:wrap;
}
.east-col-prod-cart svg,
.east-col-prod-cart img {
    width: 100%;
    max-width: 27px;
    height: 27px;
}

/* Reviews */
.east-col-prod-reviews {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 18px;
}
.Vtl-pr-review-stars-snippet.Vtl-pr-review-stars-snippet--shape-pointed.vtl-pr-review-stars-snippet {
    padding-bottom: 9px;
}
/* Title */
.east-col-prod-title {
    font-family: Barlow;
    font-weight: 700;
    font-size: 24px;
    line-height: 33.4px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #000;
    margin: 0;
    padding:9px 0;
}

/* Price row */
.east-col-prod-price {
  display: flex;
  align-items: center;
 
      justify-content: space-between;
}

.east-col-prod-save-badge {
    background: #3F2A4A;
    width: max-content;
    height: 27px;
    border-radius: 4px;
    padding: 0 10px;
    color: #fff;
display:flex;
align-items:center;
        font-family: Barlow;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.east-col-prod-price-current {
    font-family: Barlow;
    font-weight: 700;
    font-size: 24px;
    line-height: 33.4px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #000;
}
.east-prod-sec-container {
    width: 100%;
    max-width: 331px;
    margin: 0 auto;
    padding:0 8px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
}
.east-col-prod-compare {
font-family: Plus Jakarta Sans;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    text-decoration: line-through;
    color: #A1A1AA;
}

/* =============================================
   MOBILE PROGRESS BAR
   ============================================= */
.east-col-prod-progress {
  display: none;
  margin-top: 14px;
  padding: 0 4px;
}

.east-col-prod-progress-track {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content:center;
  margin: 28px 0;
}

.east-col-prod-progress-bar {
    width: 100%;
    max-width: 35px;
    background: #3C3C3C;
    opacity: 40%;
    height: 6px;
    border-radius: 22px;
}

.east-col-prod-progress-bar.active {
      background: #9D69BA;
    width: 100%;
    max-width: 150px;
    height: 6px;
    border-radius: 22px;
    opacity:1;
}

/* =============================================
   CTA
   ============================================= */
.east-col-prod-cta {
  text-align: center;

}

.east-col-prod-cta a {
     color: #9D69BA;
    border: 2.5px solid #9D69BA;
    border-radius: 90px;
    height: 58px;
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Barlow;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: uppercase;
    background: #F0E6F5;
margin: auto;
}

.east-col-prod-cta a:hover {
  background: #9D69BA;
  color: #fff;
}
.east-col-prod-slider-wrapper{
margin-bottom:48px;
}
/* =============================================
   RATING ROW
   ============================================= */
.east-col-prod-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 0 0;
  flex-wrap: wrap;
}

.east-col-prod-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.east-star {
  width: 16px;
  height: 16px;
  display: block;
}

.east-col-prod-rating-text p {
font-family: Plus Jakarta Sans;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000;
    margin:0;
}

/* =============================================
   EAST COL + PRODUCTS — CSS PATCH v2
   Paste these rules into east-col-prod.css,
   replacing the existing .east-col-prod-cta block
   ============================================= */

/* CTA — controlled by class not inline style */
.east-col-prod-cta {
  text-align: center;
  margin-top: 28px;
}
.east-col-prod-cta--hidden {
  display: none;
}

.east-best-col-subtitle{
    font-family: Plus Jakarta Sans;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
    vertical-align: middle;
    margin: 0;
    text-align: center;
        margin-bottom: 48px;
}

.east-best-col-title{
        font-family: Barlow;
    font-weight: 700;
    font-size: 42px;
    line-height: 54px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #000;
}
#eastCircles,
.eastTrack {
  overflow: visible ; /* transform handles movement, not scroll */
 
}
#eastCircle{
 white-space: nowrap;
}

.Vtl-pr-review-stars-snippet.Vtl-pr-review-stars-snippet--inner-el.vtl-pr-ss__inner-el {
    font-family: Plus Jakarta Sans;
    font-weight: 700;
    font-size: 16px;
    line-height: 22.4px;
    letter-spacing: 0;
    color: #71717A;
}
/* Smooth scroll-loop reset fade
   JS applies opacity transition on .east-col-prod-slider-wrapper
   when resetting scrollLeft — this makes the reset seamless */
.east-col-prod-slider-wrapper {
  will-change: opacity; /* promotes to own layer, avoids jank */
}

  .Vtl-pr-stars-snippet.vtl-pr-stars-snippet.vtl-pr-review-stars-snippet__stars {
    width: 100% !important;
    max-width: 108px !important;
    min-width: 108px !important;
}

.Vtl-pr-stars-snippet--layer svg {
    width: 21px !important;
    height: 21px !important;
    min-width: 21px !important;
    max-width: 21px !important;
	}
	
	.Vtl-pr-stars-snippet {
    height: 21px !important;
}
@media (max-width: 1024px) {
.east-col-prod-title{
   font-size: 20px;
}
.east-col-prod-save-badge{
      font-size: 15px;
}
.east-col-prod-price-current{
  font-size: 20px;
}
.east-col-prod-compare{
  font-size: 15px;
}
}
/* =============================================
   MOBILE — max-width: 768px
   ============================================= */
@media (max-width: 768px) {

.Vtl-pr-stars-snippet.vtl-pr-stars-snippet.vtl-pr-review-stars-snippet__stars {
       width: 100% !important;
    max-width: 84.9px !important;
    min-width: 84.9px !important;
}

.Vtl-pr-stars-snippet--layer svg {
    width: 16px !important;
    height: 16px;
}
.Vtl-pr-stars-snippet.Vtl-pr-stars-snippet--front--inner.vtl-pr-stars-snippet__front-inner, 
.Vtl-pr-stars-snippet.Vtl-pr-stars-snippet--layer.Vtl-pr-stars-snippet--front.vtl-pr-stars-snippet__layer.vtl-pr-stars-snippet__front,
.Vtl-pr-stars-snippet.Vtl-pr-stars-snippet--layer.Vtl-pr-stars-snippet--back.vtl-pr-stars-snippet__layer.vtl-pr-stars-snippet__back,
.Vtl-pr-stars-snippet.vtl-pr-stars-snippet.vtl-pr-review-stars-snippet__stars{
  height: 16px;
}
  .east-col-prod-title{
        font-size: 20px;
    line-height: 26.27px;
  }
  .east-col-prod-cta a{
    max-width:100%;
  }

  .east-col-prod-cta {
   
    padding-right: 22px;
}
  .east-col-prod-circles {

  gap:20px;
}
.east-col-prod-circle{
  gap:12px;
}

  .east-col-prod-slider-wrapper {
    margin-bottom: 28px;
}
.east-best-col-subtitle{
  margin-bottom: 28px;
      font-size: 16px;
   text-align:left;
    line-height: 26px;
}
.east-best-col-title{
      font-size: 40px;
   text-align:left;
    line-height: 50px;
}
.east-col-prod-price-tag{
  gap:6.29px;
}
.east-col-prod-price-current{
  font-size: 18px;
    line-height: 26.27px;
}
.east-col-prod-compare{
      font-size: 14px;
    line-height: 22.02px;
}
.east-col-prod-price form.east-col-atc-form.js-prod-form-submit {
    width: 100%;
    max-width: 42.4px;
    height: 42.4px;
}
.east-col-prod-cart {
  
    max-width: 42.4px;
    height: 42.4px;
  
    border-radius: 7.4px !important;
}
.east-col-prod-cart svg, .east-col-prod-cart img {
    width: 100%;
    max-width: 21px;
    height: 21px;
}

.east-col-prod-save-badge {
  font-size:14px;
    height: 22px;
  
    padding: 0 7.8px;
    
}

  .east-prod-sec-container {
   
    max-width: 278px;
  }
    .east-col-prod-circle{
            width: 100%;
    max-width: 101px;
    }

    .east-col-prod-track {
    display: flex;              /* 🔥 switch from grid → flex */
    overflow-x: auto;
    gap: var(--east-prod-gap, 12px);
  }

  .east-col-prod-card {
    flex: 0 0 86%;             /* 👈 controls card width */
    max-width: 291.8px;        /* optional cap */
  }

    .east-col-prod-circle-image {
    width: 100%;
    max-width: 93.8px;
    height: 93.8px;
}
  /* Section padding */
.east-col-prod-section {
  padding-top:    var(--east-section-pt-mob, 32px) !important;
  padding-bottom: var(--east-section-pb-mob, 32px) !important;
}
.east-col-prod-header {
    padding: 0 22px;
}
  /* Circle row padding */
  .east-col-prod-top {
    padding-top:    var(--east-circle-pt-mob, 14px) !important;
    padding-bottom: var(--east-circle-pb-mob, 14px) !important;
    padding-left:   var(--east-circle-pl-mob, 16px) !important;
    padding-right:  var(--east-circle-pr-mob, 16px) !important;
  }


  .east-circle-arrow {
    width: 26px;
    height: 26px;
  }

  /* Product area padding */
  .east-col-prod-products {
    padding-left:  var(--east-prod-pl-mob, 22px) !important;
    padding-right: var(--east-prod-pr-mob, 0) !important;
     padding-top: 0;
      padding-bottom: 0;
  }
  .east-col-prod-slider-wrapper{
    max-width:100%;
    padding:0;
  }

  /* Product track: horizontal scroll on mobile */
  .east-col-prod-track {
    
    overflow-x: auto;
        
    -webkit-overflow-scrolling: touch;
    
    gap: var(--east-prod-gap, 12px);
    padding-bottom: 4px;
  }

  .east-col-prod-track::-webkit-scrollbar {
    display: none;
  }

  /* Each card ~86% width */

.east-col-prod-card {
    width: 100%;
    max-width: 291.8px;
    
}
.east-col-prod-img {
    width: 100%;
    max-width: 291.8px;
    height: 456.2px;
}
  /* Product arrows on mobile:
     !important is removed here so JS inline style can override */
  .east-prod-arrow {
    display: none; /* JS sets to flex when enabled + mobile */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .east-prod-arrow--prev { left: 4px; }
  .east-prod-arrow--next { right: 4px; }

  .east-prod-arrow:disabled {
    opacity: 0.3;
    cursor: default;
  }

  /* Progress bar */
  .east-col-prod-progress {
    display: block;
  }

  /* Rating */
  .east-col-prod-rating {
    padding: 16px 0 0 0;
  }

.Vtl-pr-review-stars-snippet.Vtl-pr-review-stars-snippet--inner-el.vtl-pr-ss__inner-el{
      font-size: 12px;
    line-height: 17.62px;
}

}
