/** Shopify CDN: Minification failed

Line 1171:0 Unexpected "<"
Line 1365:0 Unexpected "}"
Line 1727:0 Unexpected "<"
Line 1731:0 Expected "}" to go with "{"

**/


/* Hide the native checkbox tick and reserve its space to prevent layout shift */
.popup_main input[type="checkbox"].swatch-input__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  position: absolute !important;   /* Removes it from flow without collapsing space */
}

/* Add black border on selected without shifting layout */
.popup_main input[type="checkbox"].swatch-input__input:checked + .swatch-input__label,
.popup_main .swatch-input__label.active {
  border: 1.5px solid #000 !important;
  box-sizing: border-box !important;   /* Border added inside, no size increase */
  position: relative;
}

/* Optional: subtle outline offset to make border look consistent */
.popup_main input[type="checkbox"].swatch-input__input:checked + .swatch-input__label::before {
  content: '';
  position: absolute;
  inset: -3px;                       /* Extends slightly outside to match original checkbox "feel" */
  border: 3px solid #000;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}





.done_btn {
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.done_btn.disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
  pointer-events: none;
}

.done_btn:not(.disabled):hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.hidden-variant {
    display: none !important;
}

.box-container{padding-left:15px;padding-right:15px;margin-bottom: 25px;}
.box-tabs {
  display: flex;
  border: 1px solid #f2768b;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.box-tabs > div {
  color: #F26A8D;
  font-weight: 600;
  font-size: 9px;
  padding: 8px 30px;
  cursor: pointer;
}
.bulid-box.active, .pick-for.active, .variety_pack.active {
  color: #fff;
  background: #F26A8D;
  padding: 8px 30px;
  border-radius: 20px;
}
.box-title {
  margin-top: 20px;
  text-align: center;
}

.box-title h1 {
  font-size: 43px;
}

.box-cart-card {
  background: #f9f5e4;
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  .box-cart-card {
    box-shadow: 0px 1px 16px 1px #eadfe2;
  }
}


.box-cart-card-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.box-cart-subtotal-price {
  color: #F26A8D;
  font-weight: 600;
}
.box-cart-cart-button {
  all: unset;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 3rem;
  padding: 1rem 2rem;
  text-transform: uppercase;
  color: var(--button-tertiary-text, #540419);
  background: var(--button-tertiary-bg, #F26A8D);
  border: 2px solid var(--button-tertiary-bg);
  border-radius: var(--button-radius, 4px);
  box-shadow: 4px 4px rgba(168,232,226,1);
  cursor: pointer;
  transition: opacity .5s;
}

.box-cart-cart-button.disabled{opacity:0.6;}
ul.box-cart-items {
  list-style: none;
  padding: 20px 0 0 10px;
  margin-bottom: 0;
  display: grid;
  row-gap:20px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  list-style-type: none;
}
ul.box-cart-items li {
  width: 70px;
  height: 70px;
  border: 1.5px dashed #F26A8D;   /* dashed frame */
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}


ul.box-cart-items li:before {
  content: '';
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F26A8D' stroke-width='1'>\
<path d='M12 21s-6.5-4.35-9-7.5C-0.5 9 2 4 6.5 4 9 4 12 7 12 7s3-3 5.5-3C22 4 24.5 9 21 13.5 18.5 16.65 12 21 12 21z'/>\
</svg>") no-repeat center / contain;
}

.box-cart-items-main {
  background: #f9f5e4 !important;
  margin: 0 15px;
  border-radius: 13px;
  padding-bottom: 15px;
}
-main span {
  padding-left: 15px;
  color: #F26A8D;
}
.box-cart-optios-list > label {
  display: inline-block;
  border: 1px solid #000;
  padding: 7px 24px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.35s ease;
}
.box-cart-options>label {
  float: left;
  margin-right: 17px;
  position: relative;
  top: 10px;
}
.box-cart-optios-list > label:not(:last-child) {
  margin-right: 8px;
}
.box-cart-options{
  padding: 0 15px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.box-cart-optios-list input[name="jar-type"]:checked + label {
  border-color: #f14562;
  color: #fff;
  background-color: #f14562;
}
.cart-price-list{margin:15px 0;padding:0 15px;}
.cart-price-list,
.cart-price-list-inner{display:flex;align-items:center; flex-wrap:wrap}
.cart-price-list label{margin:0 15px 0 0;}
.box-option-price{display:flex;align-items:center;gap:6px;font-weight:500;}
.box-option-price:not(:last-child) {
  margin-right: 10px;
}
.box-option-price span {
  display:flex;
  flex-direction:column;
  color: #F26A8D;
}
.br-separator {
  border-top: 0.5px solid #ccccccb5;
  margin: 25px 0px;
  clear: both;
}
.box-subscription .input-box{display:flex;align-items:center;gap:10px;}
.box-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin:0;
}
.box-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.box-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.box-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .box-slider {
  background-color: #F26A8D;
}
input:focus + .box-slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .box-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.box-slider.box-round {
  border-radius: 34px;
}
.box-slider.box-round:before {
  border-radius: 50%;
}
.box-subscription {
  padding: 0 15px;
}
.box-subscription > span {
  margin-left: 16px;
  position: relative;
  top: 5px;
}

.box-product img {
  width: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.box-cart-products {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.box-product {
  background: #f7eedd;
  display: flex;
  align-items:center;
  justify-content: flex-start;
  box-shadow: 0 0 17px 1px #f1eaea;
  padding: 0px 0px 30px;
  border-radius: 4px;
}
.box-product-callout{font-style:italic;color:#898585;margin:10px 0;line-height: normal;}
.box-product .box-product-img {
  width: 16%;
  cursor: pointer;
  position: relative;
}
.box-product .add-to-box {
  display: inline-block;
  background: #F26A8D;
  color: #fff;
  padding: 10px 14px;
  border-radius: 26px;
  text-decoration:none;
  font-weight: 400 !important;
}
.box-product .add-to-box.disabled{opacity:0.6;}
.box-product-title {
  color: #540419;
  font-size: 13px;
  font-weight: 500;
  width: 100%;
  text-transform: uppercase;
  margin: 5px 0 0 0 !important;
}
.color_popup{
  margin:10px 0;
}
.box-product-img {
  display: flex;
}
h1#signature_packs {
  text-align: center;
  font-size: 43px;
  margin-top: 20px;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif !important; /* use same as body */
  font-weight: 400 !important; /* match body weight */
}
.box-bundle-products ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 12px;
}
.box-bundle {
  background: #fff;
  border: 1px solid #F26A8D;
  border-radius: 13px;
  padding: 30px 25px;
  text-align: center;
  margin-bottom: 22px;
}
.box-bundle-title {
  font-size: 18px;
  font-weight: 500;
}
.box-bundle-price {
  margin: 18px 0;
  font-size: 18px;
  color: #F26A8D;
  font-weight: 500;
}
input.box-bundle-btn {
  background: #F26A8D;
  border: unset;
  width: 150px;
  color: #fff;
  padding: 15px 0;
  border-radius: 32px;
  font-weight: 500;
}
ul.box-cart-items li.has_product:before {
  display:none;
}
ul.box-cart-items li.has_product {
  position: relative;
}
ul.box-cart-items li.has_product span {
  position: absolute;
  background-color: #000;
  top: -4px;
  right: 0px;
  text-align: center;
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  cursor: pointer;
}
ul.box-cart-items li.has_product span:before {
  content: 'x';
  color: #fff;
  text-align: center;
}
.box-product-gallery,.pick-product-gallery{display:none;}
.box-product-gallery.active {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000000b8;
  display: block;
  top: 0;
  z-index: 9;
  left:0;
}
.box-pop,.pick-pop {
  background: #fff;
  width: 85%;
  margin: auto;
  position: relative;
  top: 15%;
  border-radius: 6px;
  padding: 10px;
}
.box-pop-header,.pick-pop-header {
  padding-top: 15px;
}
h1.box-pop-title, p.box-pop-des,h1.pick-pop-title ,p.pick-pop-des {
  text-align: center;
}
span.box-pop-close,span.pick-pop-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  cursor: pointer;
}
.box-gallery {
  /* display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  list-style-type: none;
  margin-bottom:25px; */
  display: flex;
  flex-direction: column-reverse;
}
.box-gallery .image-wrapper{
      display: grid;
    list-style-type: none;
    margin-bottom: 25px;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
}

.pick-gallery {
  display: flex;
  justify-content: center;
  width: 55%;
  max-width: 33%;
  align-items: center;
  margin: auto auto 25px;
}
.box-gallery img ,.pick-gallery img{
  width: 100%;
}
.box-quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  display:none;
}
.box-quantity input {
  width: 37px;
  border: unset;
  margin: 0;
  padding: 0;
  text-align: center;
}
span.box-quantity-minus, span.box-quantity-plus {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #b1b1b1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
span.box-quantity-plus {
  background: #F26A8D;
}
ul.box-cart-items li.has_product img {
  width: 100%;
  height: 100%;
  border-radius: 0;  
  object-fit: cover;
  object-position: top; /* ← anchors image to top */
 
}
.box-bundle-head-dektop, .box-bundle-title-mobile,  .box-bundle-info-btn{display:none;}
.box-bundle-products ul img {
  width: 50px;
}
span.dairy-free {
  width: 24px;
  height: 24px;
  background: #2EBFB1;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  position: absolute;
  right: -10px;
  font-size: 9px;
  text-align: center;
}
.box-cart-optios-list {
  display: flex;
}
/* .more-options {
  display: none;
} */
.show-more-details {
  text-align: center;
  margin-top: 22px;
  font-weight: 500;
  cursor: pointer;
}

.box-product{flex-direction: column;}
.box-product-title{width: 100%; text-align: center;font-size: 14px;line-height: 16px;margin: 20px 0 0; padding:0 10px;}
.box-product .box-product-img {
  width: 100%;
  margin: 0;
}
.box-main .box-cart-products .box-product {
  text-align: center;
}
.box-pop,.pick-pop{width: 95%;}
.box-gallery,.pick-gallery{grid-gap: 20px;}
.box-bundle {
  margin-bottom: 50px;
}
@media only screen and (min-width:768px){
  .box-main .box-cart-products .box-product {
    display: flex;
 }
  .show-more-details{display:none;}
  .more-options {display: block;}
  .box-product:not(:last-child) {
    margin-bottom: unset;
  }
  span.dairy-free{right: -25px;} 
  .box-tabs>div{ font-size: 13px; }

  .box-tabs {
    width: fit-content;
    margin: 25px auto 50px;
    text-align:center;
  }
  .box-cart-main {
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: flex-start;
    gap:50px;
  }
  .box-cart-products {
    margin-top: 0;
    width: 65%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    list-style-type: none;
    grid-gap: 20px;
  }
  .box-cart-card
  {
    border-radius: 10px;
    position: sticky;top: 10px;
    width:40%;
    
  }
  
  .box-cart-card-header h2 {
    font-size: 20px;
  }
  .box-cart-card-header{padding-top: 10px;}
  .box-bundles, .box-bundle-title-mobile,  .box-bundle-info-btn {
    display: block;
  }
  .box-bundle-head-dektop {
    display: flex;
    justify-content: space-between;
    margin: 8px 50px 40px;
  }
  .box-bundle-head-dektop h1 {
    line-height: unset;
    text-align: unset;
    margin: 0;
  }
  .box-bundle-title-mobile {
    font-size: 22px;
    font-weight: 500;
    margin: 10px 0;
  }
  .box-bundle-products ul {
    display: grid;
    /*     grid-template-columns: 1fr 1fr 1fr 1fr; */
    grid-template-columns: unset;
    list-style-type: none;
    grid-gap: 40px;
    margin: 0;
  }

  .box-bundle-info-btn {
    background: #ebe9e9;
    margin: 20px 44px;
    padding: 5px 0px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
  }
  .box-bundle-products ul img {
    width: auto;
  }
  .box-bundles {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 0;
  }
  div#shopify-section-box-bundle {
    padding: 0 80px;
  }
  .box-bundle-price{font-size: 18px;}

}
/* for selection */
span.box-quantity-plus::selection {
  background: #f14562;
  color: white;
}
span.box-quantity-minus::selection{
  background: #b1b1b1;
  color: #fff;
}
.week_month_inner {
  display: flex;
  justify-content: space-around;
  padding-top: 22px;
}
.week_month_inner>label {
  display: inline-block;
  border: 1px solid #000;
  padding: 7px 40px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.35s ease;
}
.week_month_inner input[name="subscription-select"]:checked+label{
  color:#fff;
  border-color:#f14562;
  background:#f14562;
}
.show-week-month {
  display: none;
}
.show-week-month.Show {
  display: block;
}
/* variety box */
/* .variety_pack-section h1,.variety_pack-section h4,.variety_pack-section div
{font-family: "Harmonia Sans", sans-serif!important;} */
.variety_pack-section h1,.variety_pack-section h3{margin-bottom:0;}
h1.variety_heading{  
  letter-spacing: 0;
  color: #f14562;
} 
h1.variety_heading2,.variety_heading span.black {
  letter-spacing: 0;
  color: black;
}
.variety_heading span {color: #808080d1;}
.pack_price { color: #f14562;line-height: 40px;}
.variety_pack-section { text-align: center;margin-top: 22px;}
.jar_options img
{ 
  width: 100px;
  padding: 3px;
  border: 1px solid #A0A0A0;
  cursor: pointer;
  border-radius: 50%;
}
.sub_box_inner {font-size: 27px;}
.Subscription-Box .sub_box_inner {
  font-size: 19px;
  margin-bottom: 1.4em;
  font-weight: bold;
}
.Subscription-Box
{
  max-width: 1000px;
  margin: 3.6rem auto 0;
}
.jar_options {  margin-top: 16px;}
.comp_pack {
  width: 100%;
  background: #f14562;
  padding: 20px;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  font-size: 20px;
}
.sub_detail {
  font-size: 20px;
  cursor:pointer;
}
.subscription_link {margin-top: 3.4em;}
.variety_pack-section h1 { font-size: 50px;}
.variety-pack {margin-bottom: 2rem;}
div#shopify-section-create-own-variety-box{ display:none;}
.jar_options img.active-sub {
  border-color: black;
  border-width: 3px;
}
.pick-product-gallery.active {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000000b8;
  display: block;
  top: 0;
  z-index: 9;
  left: 0;
}
.product_description {
  display:none;
}
.product_description.Show {
  display:block;
  margin-top:2rem;
}
.box-main .box-tabs>div{width:100%;text-transform:uppercase;}
@media only screen and (max-width:767px){
  .ps-wrapper,.portrait-slider{
    height: auto !important;    
    max-height: 600px;

  }
  .popu_media_with_data{
        grid-template-columns: 100% !important;
        overflow-y:scroll;
        height:650px !important;
  }
  .ps-slide img{
    height:100
  }
  .variety_pack-section h1 {
    font-size: 30px;
  }
  .jar_options img {
    width: 70px;
    margin: 3px 0px;
  }
  .Subscription-Box .sub_box_inner {
    font-size: 16px;
    margin-bottom: 1.2em;
  }
  .comp_pack{font-size: 17px; }
  .sub_detail {font-size: 17px;}
  .pack_price{font-size: 24px;}
  h1.variety_heading2 {margin-top: 0.6em;}
  .box-main .box-tabs>div{
    font-size: 9px;
    padding: 8px 8px;
    line-height: 12px;
  }
  .subscription_link {
    margin-top: 3em;
  }
  .box-bundle-products ul img {
    width: 100px;
  }
}

@media only screen and (min-width:768px) and (max-width:1024px){
  .box-product:not(:last-child) {
    margin-bottom:20px;
  }
  .box-cart-products {
    width: 45%;
    display: unset;
  }
  div#shopify-section-box-bundle .box-bundles {
    display:unset;
  }
  .box-container.box-bundle-products ul {
    display: flex;
    justify-content: center;
  }  
  .box-container .box-main .box-tabs {
    width: 78%;
  }
}
/* new changes */

.box-bundle-products li img {
  border-radius: 12px;
}
.product_description.Show {
  text-align: left;
}
p.subs-left {
  text-align: center;
}
.box-bundle .box-bundle-title {
  cursor: pointer;
}
.pick-gallery img {
  margin-left: 5px;
  margin-right: 5px;
}
.pick-pop{
  height:75%;
  overflow-x: scroll;
}
.pick-product-gallery .pick-pop::-webkit-scrollbar{
  width: 0!important;
}
.Subscription-Box span.product-name {
    text-transform: uppercase;
}

.main-product-desc{
  text-align: center;
  padding: 0 15px;
}
.product-desc{
  text-align: center;
  margin-top: 40px;
}
.product-desc p{
  font-size: 18px;
  font-weight: 500; 
}
#PBarNextFrameWrapper{display:none;}
@media screen and (min-width: 768px){
  .hidden-desktop{display:none !important;}
}
@media screen and (max-width:767px){
  .hidden-mobile{display:none !important;}
  .box-cart-items-main{display: flex ; align-items: center; justify-content: space-between;gap:10px;position: fixed; bottom: 0; left: 0; width: 100%; background: #fFF; z-index: 21; margin: 0; padding: 15px 10px;border-radius:0;box-shadow:0 0 6px rgba(0,0,0,0.2);}
  .box-cart-items-main-details{width:78%;}
  .box-cart-items-main .actions-summary{width:22%;text-align:center;}
  .box-cart-items-main .box-cart-subtotal-price{font-size:18px;margin-bottom:7px;}
  .box-cart-items-main .box-cart-items{overflow-x: scroll; width: 100%; display: flex ; gap: 7px; flex-wrap: nowrap; justify-content: start;padding:5px 0 0;margin:0;}
  .box-cart-items-main span{padding:0;}
  .box-cart-items-main ul.box-cart-items li{width: 16%; height: 16%; border-radius: 5%; flex-shrink: 0; aspect-ratio: 1 / 1;}
  .box-cart-items-main ul.box-cart-items li.has_product{border:0;}
  .box-cart-options{margin-top:10px;margin-bottom:5px;}
  .box-cart-card{padding-bottom: 10px;}
  .box-cart-main{display: flex ; flex-direction: column;}
  .br-separator{margin:10px 0;}
  .box-main .box-cart-products .box-product{padding-bottom:15px;}
  .box-product-title{font-size:12px;}
  .box-container{padding-left:10px;padding-right:10px;}
  .cart-price-list{margin-top:5px;flex-direction:column;align-items:flex-start;}
  .box-switch{width:50px;height:25px;margin-bottom:0;}
  .box-slider:before{width:20px;height:20px;left:2px;bottom:3px;}
  .box-subscription>span{top:auto;}
}

.box-product{position: relative;}
.box-product .box-product-tag{position: absolute; left: 0%; top: 0%; background: #413636; color: #fff; padding: 2px 7px;}
.box-product .box-product-tag p{margin: 0;}
.page-build-your-box .needsclick.kl-private-reset-css-Xuajs1{display: none;}


.show_color{
  cursor:pointer;
}

.popup_main {
    position: fixed;
    top: 0;
    bottom: 0;
    padding:20px;
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100%;
    z-index: 9998;
    left: 0;
    right: 0;
    margin: 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.5s all ease-in-out
}

.popup_main .product-form__inputs{
  max-width:500px;
  margin:0 auto;
  background:#F7EEDD;
  padding:0px 0px;
  border-radius:10px;
}

.done_btn {
  all: unset;
  display: flex !important;
  justify-content: center;
  align-items: center;

  width: 40%;
  min-width: 220px;        /* prevents it from getting too tiny */
  margin: 0 auto;          /* centers horizontally */
  margin-top:15px;

  min-height: 3rem;
  padding: 1rem 2rem;
  font-weight: 400 ;
  text-transform: uppercase;

  color: var(--button-tertiary-text, #540419);
  background: var(--button-tertiary-bg, #f0f600);

  border: 2px solid var(--button-tertiary-bg);
  border-radius: var(--button-radius, 4px);
  box-shadow: 4px 4px rgba(168,232,226,1);

  cursor: pointer;
  transition: opacity .5s, transform .15s;
}

/* Hover / tap feedback */
.done_btn:hover {
  opacity: 0.9;
}

.done_btn:active {
  transform: translateY(1px);
}

/* Mobile: make it a bit wider */
@media (max-width: 767px) {
  .done_btn {
    width: 80%;
  }
}


.popup_main.active{
  opacity:1;
  visibility:visible;
}

.popup_main .product-form__input input[type=radio] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 0.1rem;
  width: 0.1rem;
}

.popup_main  .product-form__input .swatch-input__input+.swatch-input__label {
    padding: 0;
    min-width: auto;
    min-height: auto;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-inline-end: .5rem;
    margin: 0;
    width: fit-content;
}
.popup_main .product-form__input input[type=radio]+label {
    box-shadow: inset 0 0 0 .1rem rgb(var(--color-border));
    color: rgb(var(--color-foreground));
    margin-top: .6rem;
    margin-bottom: .4rem;
    margin-inline-end: 1rem;
    padding: .6rem 1.6rem;
    min-width: 4rem;
    min-height: 4rem;
    font-size: 1.4rem;
    letter-spacing: .1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition-property: color, box-shadow;
    transition-timing-function: 
ease;
    transition-duration: var(--duration-default);
    border-radius: min(var(--button-radius), .3rem);
}
.popup_main fieldset.product-form__input--swatch .swatch-input__label {
    flex: 0 0 auto;
    margin: 0;
}

.popup_main .product-form__input--swatch .swatch-input__label--circle span{
border-radius:50px;
}
.popup_main .custom-dropdown ,.popup_main .custom-dropdown__input{
    margin-bottom: 20px;
    max-width: 100%;
}

.popup_main .product-form__input .swatch-input__input:checked +.swatch-input__label{
    border: 2px solid #000 !important;
    border-radius: 0 !important;
}

.popup_main fieldset.product-form__input--swatch .swatch-input__label.active {
    border: 2px solid #000;
}

.popup_main .product-form__input .swatch-input__input:checked +.swatch-input__label span{
    border: 1px solid #fff !important;
}

.popup_main .product-form__input .swatch-input__input:checked +.swatch-input__label--circle{
     border-radius: 50px !important;
}
.popup_main .product-form__input .swatch-input__input:checked +.swatch-input__label--circle span{
    border: 1px solid #fff !important;
}
.popup_main .product-form__input .swatch{
  display:flex;
  align-items:center;
}

.box-cart-main .quick-view__summary{
  display:none;
}

.box-product-button{
  margin-top:20px;
}

.box-container .product__accordion,.box-container .product-form {
  display:none;
}
  .portrait-slider {
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
  }

  .ps-wrapper {
    position: relative;
    overflow: hidden;
    height: auto !important;
    max-height: 600px;
  }
  

  .ps-slide {
    display: none;
    transition: opacity .4s ease;
  }

  .ps-slide.active {
    display: block;
  }

  .ps-slide img {
    width: 100%;
    height: 600px !important;
    object-fit: contain !important;
  }

  .ps-dots {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .ps-dot {
    width: 10px;
    height: 10px;
    background: #d1b7c8;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s ease;
  }
video {
    width: 100%;
}
.popup_right{
  height:600px;
  overflow-y:scroll;
  padding:20px;
}
  .ps-dot.active {
    background: #a14b6b;
    transform: scale(1.3);
  }

  .popu_media_with_data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #F7EEDD;
    max-width: 843px;
    height: 600px;
    margin: auto;
    position:relative;
}
.popu_media_with_data .slick-dots{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:center;
  list-style:none;
      bottom: 20px;
    left: 0;
    right: 0;
        position: absolute;
    padding: 0;
}
.popu_media_with_data .slick-dots .slick-active button{
      background: #540419;
}
.portrait-slider{
  height:550px;
}
.popu_media_with_data .slick-dots li button {
    width: 10px;
    height: 10px !important;
    border-radius: 50%;
    background: #000;
    background: #CCACB6;
    border: none;
    font-size: 0;
    padding: 7px;
}
button.popup-close {
    position: absolute;
    right: 0;
    top: 0;
    height: 35px;
    border: none;
    background: #540419;
    font-size: 20px;
    color: #fff;
    border-radius: 0px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor:pointer;
    z-index:9;
}

<style>
  /* Make the X button visible and pretty */
.popup-close {
  position: absolute !important;
  top: 15px !important;
  left: 15px !important;        /* ← left because we are in RTL */
  z-index: 100 !important;
  width: 44px !important;
  height: 44px !important;
  background: rgba(0,0,0,0.6) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  font-size: 24px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.3s !important;
}

.popup-close:hover {
  background: rgba(0,0,0,0.9) !important;
}
  /* RTL for the entire Build-a-Box section */
  .box-container,
  .box-main,
  .box-cart-main,
  .box-cart-products,
  .box-product,
  .title-wrap,
  .box-product-button,
  .box-quantity {
    direction: rtl !important;
    text-align: right !important;
  }
  
.title-wrap {
  margin-bottom: -15px !important;
}


  /* Card = flex column, button always at bottom */
  .box-product {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;;
    height: 100%;
  }

  .box-product-button {
    margin-top: auto;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  /* Quantity controls – reverse order for RTL */
  .box-quantity {
    display: flex;
    flex-direction: row-reverse; /* + becomes left, − becomes right */
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
  }

  /* Perfect yellow button – RTL ready */
  .box-product .add-to-box {
    all: unset;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 3rem;
    padding: 1rem 2rem;
    text-transform: uppercase;
    color: var(--button-tertiary-text, #540419);
    background: var(--button-tertiary-bg, #f0f600);
    border: 2px solid var(--button-tertiary-bg);
    border-radius: var(--button-radius, 4px);
    box-shadow: 4px 4px rgba(168,232,226,1);
    cursor: pointer;
    transition: opacity .5s;
  }

  .box-product .add-to-box:hover { opacity: .9; }
  .box-product .add-to-box.disabled {
    background:#ccc !important;
    color:#666 !important;
    box-shadow:none;
    cursor:not-allowed;
  }

  @media (max-width:749px) {
    .box-product .add-to-box { padding: 1rem 1.5rem; }
  }

  /* Hide the annoying black corner ribbon */
  .box-product::before,
  .box-product::after,
  .box-product-tag {
    display: none !important;
  }

  /* Clean image corners */
  .box-product-img {
    overflow: hidden;
    border-radius: 4px;
  }
  /* ←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←← */
/* FIX: Keep Slick slider in LTR so it works in RTL popup */
/* ←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←←← */
.ps-wrapper,
.ps-wrapper * {
  direction: ltr !important;
}

.popup_main .custom-dropdown__input {
    background-color: #F7EEDD !important;
}
.popup_main .custom-dropdown__option {
    background-color: #F7EEDD !important;
}
@media only screen and (max-width: 767px) {
  /* Keep overlay full-screen — no gaps */
  .popup_main {
    padding: 0 !important;
  }

  /* Inner content stays full width/height, no outer margins */
  .popu_media_with_data {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 100vh !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  /* Add inner horizontal padding (20px left + 20px right) 
     by padding the two grid columns */
  .popu_media_with_data > div:first-child,   /* Left column: media/slider */
  .popup_right {                             /* Right column: text/options */
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Optional: a bit of top padding to avoid notch/content overlap */
  .popu_media_with_data > div:first-child,
  .popup_right {
    padding-top: max(20px, env(safe-area-inset-top));
  }

  /* Make close button easy to tap and safe from edges */
  button.popup-close {
    top: max(15px, env(safe-area-inset-top)) !important;
    right: max(15px, env(safe-area-inset-right)) !important;  /* Use left if RTL */
    width: 50px !important;
    height: 50px !important;
    font-size: 28px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 50% !important;
  }
}



  .box-banner-image img.banner-img-responsive {
    width: 100%;
    height: 180px;
    overflow: hidden
    border-radius: 8px;   /* Optional: slight rounding on mobile */
    object-fit: cover;
    padding-bottom: 0px;
  }
@media screen and (min-width: 1024px) { /* desktop only */
  .box-banner-image {
    height: 500px;            /* fixed height for cropping */
    overflow: hidden;         /* crop overflow */
    border-radius: 8px;       /* optional rounding */
    margin-bottom: 20px;      /* space below container instead of padding */
  }

  .box-banner-image img.banner-img-responsive {
    width: 100%;
    height: 100%;             /* fill container */
    object-fit: cover;
    object-position: center;  /* focus on center */
    display: block;
  }
}
}

}


.box-product-button {
  margin-top: 0 !important;
  padding-top: 0px !important;
}
/* Video Guide Button – vertical, flush to left edge */
.popup-video-guide {
  position: absolute !important;
  left: 0 !important; /* flush to left */
  top: 80% !important; /* center vertically */
  transform: translateY(-50%) rotate(-90deg) !important; /* rotate text sideways */
  transform-origin: left center !important;
  z-index: 100 !important;
  background: #F26A8D !important;
  color: #000 !important; /* black text */
  border: 2px solid #F26A8D !important;
  border-radius: 4px !important;
  padding: 14px 12px !important;
  font-family: 'Fredoka', var(--font-heading-family) !important;
  font-size: 18px !important;
  font-weight: normal !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  -webkit-font-smoothing: antialiased !important;
  user-select: none !important;
}

/* Mobile: top 20% of screen height, smaller text, slightly pushed in from left */
@media (max-width: 767px) {
  .popup-video-guide {
    top: 65% !important;
    left: 15px !important; /* push inside a bit */
    transform: rotate(-90deg) !important;
    padding: 12px 10px !important;
    font-size: 16px !important;
  }
}

@media only screen and (max-width: 767px) {
  /* Make checkout button full width */
  .box-cart-items-main .box-cart-cart-button {
    width: 100% !important;
    padding: 15px;
    font-size: 16px;
    border-radius: 8px;
    display: block;
    text-align: center;
  }

  /* Flex column for items + button */
  .box-cart-items-main {
    flex-direction: column !important;
    align-items: flex-start; /* or center if you prefer */
  }

  /* Ensure images stay horizontal scroll if needed */
  .box-cart-items-main ul.box-cart-items {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 10px;
    gap: 8px;
  }
}

.box-cart-items-main .box-cart-items { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ } .box-cart-items-main .box-cart-items::-webkit-scrollbar { display: none; /* Chrome, Safari, Opera */ }
@media only screen and (max-width: 767px) {
    .box-cart-items-main-details,
    .actions-summary {
        width: 100% !important;
    }

    .box-cart-items-main .box-cart-cart-button {
        width: 100% !important;
        max-width: 100% !important;
        display: block;
    }

    /* Optional: stack items vertically */
    .box-cart-items-main {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding: 10px;
    }
}
/* Price inside button — visible and styled on BOTH mobile and desktop */
.box-cart-cart-button .box-cart-subtotal-price {
  color: #fff !important;
  font-weight: bold;
  font-size: 18px;
  margin-right: 8px;           /* changed to margin-right because of RTL */
  display: inline-block;
}



/* Slight size increase on desktop only */
@media screen and (min-width: 768px) {
  .box-cart-cart-button .box-cart-subtotal-price,
  .box-cart-cart-button .box-cart-subtotal-price::before {
    font-size: 20px;
  }
  .box-cart-cart-button .box-cart-subtotal-price {
    margin-right: 12px;
  }
}

.popup_right .popup-video-guide {
  margin-top: 12px;
  padding: 10px;
  background-color: #F26A8D;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}
/* Remove the grey border/outline from the swatch fieldset */
.js.product-form__input.product-form__input--swatch {
    border: none !important;
    box-shadow: none !important;
}


/* Choice swatch – default */
.popup_main .product-form__input--swatch .swatch-input__input + .swatch-input__label span.swatch--choice {
    background: transparent !important;
    border: 0.5px solid #000;  /* tiny border */
    padding: 4px 8px;
    transition: all 0.3s ease;
    color: #000;
    display: inline-block;
}

/* Selected choice swatch – dark background, no border */
.popup_main .product-form__input--swatch .swatch-input__input:checked + .swatch-input__label span.swatch--choice {
    background: #540419 !important;
    color: #fff !important;
    border: none !important;  /* remove border when selected */
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: #f0f600;
  color: #F26A8D;
  font-size: 28px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  pointer-events: none;
}

/* Positioning arrows */
.carousel-arrow.left  { right: 12px; }  /* Left arrow now on the right side */
.carousel-arrow.right { left: 12px; }   /* Right arrow stays on the left side */

/* Optional: fine-tune vertical position */
.carousel-arrow.left  { top: calc(35% + 50px); }  
.carousel-arrow.right { top: calc(35% + 50px); }  

/* Hover effect */
.carousel-arrow:hover {
  background: #F26A8D;
  color: white;
  transform: translateY(-50%) scale(1.15);
}

/* Show arrows when needed */
.box-cart-items-wrapper.show-left  .carousel-arrow.left,
.box-cart-items-wrapper.show-right .carousel-arrow.right {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Initially, left arrow hidden */
.carousel-arrow.left {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Show left arrow when wrapper has "show-left" class */
.box-cart-items-wrapper.show-left .carousel-arrow.left {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Right arrow logic stays the same */
.box-cart-items-wrapper.show-right .carousel-arrow.right {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
/* Hide arrows on desktop (above 749px) */
@media screen and (min-width: 750px) {
  .carousel-arrow {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .ps-slide img,
  .ps-slide video {
    padding: 20px;           /* top + bottom + horizontal padding */
    box-sizing: border-box;   /* ensures padding doesn’t break width */
  }
}
/* Swatch overlay for non-circle swatches only */
.popup_main .product-form__input .swatch-input__label.active:not(.swatch-input__label--circle)::after {
  content: '';
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background-color: #540419;
  pointer-events: none;
}


/* Keep text on top of overlay */
.popup_main .product-form__input .swatch-input__label.active span {
  position: relative;
  z-index: 2;
  color: #fff;      /* Make text visible */
}
/* Force text inside the selected swatch to be white */
.popup_main .product-form__input .swatch-input__label.active.selected,
.popup_main .product-form__input .swatch-input__input:checked + .swatch-input__label {
    color: #fff !important;
}

.popup_main .product-form__input .swatch-input__label.active.selected span,
.popup_main .product-form__input .swatch-input__input:checked + .swatch-input__label span {
    color: #fff !important;
}

h2 {
  margin-top: -20px;   /* space above the h2 */
  margin-bottom: 10px; /* space below the h2 */
  padding: 0;          /* remove any padding if applied */
  text-align: right;
font-family: Fredoka !important;
}
  /* Reduce spacing under the heading */
  .box-title h1 {
    margin-bottom: 0;
    margin-top: 0;  /* remove bottom margin of the title */
    color: rgb(84, 4, 25);
  }
.box-subheading-wrapper {
  text-align: center; /* Centers the "box-subheading" element */
}

.box-subheading {
  margin-top:0px;
  display: inline-block; /* Allows text-align inside */
  text-align: center;     /* Second line aligns right */
  color: rgba(84, 4, 25, 0.55);
  font-size: 23px;
}


.cart-price-list {
  display: none !important;
}

/* MOBILE: let text+links breathe edge-to-edge */
@media (max-width: 768px) {
.box-subheading {
  font-size: 14px;
}


  .box-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .box-title {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .box-text-links {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .box-text-link {
    margin: 0 5px !important;
    white-space: nowrap;
  }
}
.swatch--choice {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 100%; /* ensures it fills parent container */
  line-height: normal; /* reset if inherited */
}

/* 1. Remove border/frame from ONLY the last empty slot that has the + */
.box-cart-items li:has(> .empty-plus) {
  border: none !important;
  background: transparent !important;
}

/* 2. Hide the heart icon on the + slot */
.box-cart-items li:has(> .empty-plus):before {
  display: none !important;
}

/* 3. Make the + big, centered, and nicely colored */
.box-cart-items li:has(> .empty-plus) .empty-plus {
  font-size: 52px;
  font-weight: 300;
  color: #540419;
  line-height: 70px;           /* matches your li height */
  text-align: center;
  width: 100%;
  display: block;
  margin-right: -20px ;
}

.current-collection-title h2 {
  font-weight: 400 !important;
  font-size: 32px !important;
  color: #F26A8D !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  margin: 30px 0 30px 0 !important;  /* space above and below */

}
@media (max-width: 769px) {
.current-collection-title h2 {
  margin: 30px 0 0 0 !important;  /* space above and below */
}

</style>



