/** Shopify CDN: Minification failed

Line 427:1 Unexpected ";"

**/
/* PDP layering upsell — extends theme accordion + collection card grid */

.layering-upsell {
  display: block;
  margin: var(--product-section-gap, 2rem) 0;
}

.layering-upsell__accordion.accordion {
  margin-top: 0;
}

.layering-upsell__accordion summary {
  padding:1.8rem 2rem 2rem 2rem !important;
  cursor: pointer;
  list-style: none;
}

.layering-upsell__accordion summary .icon-caret {
  right: 2rem !important;
}

.layering-upsell__accordion .accordion__title {
  max-width: calc(100% - 3.2rem);
  font-size: 1.5rem;
}

.layering-upsell__accordion .layering-upsell__body {
  padding: 2rem 0;
  border-top: 1px #CED2DA solid;
}

.layering-upsell__accordion summary::-webkit-details-marker {
  display: none;
}

.layering-upsell__accordion .accordion__title[hidden] {
  display: none !important;
}

.layering-upsell__body {
  padding-top: 0;
}

.layering-upsell .accordion .svg-wrapper{
  margin:0 auto;
}
.layering-upsell__grid {
  display: flex;
  gap: 2rem;
  padding: 0 2rem  2rem;
  width: 100%;
  flex-wrap:wrap;
  justify-content: center;
}

.layering-upsell__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  width:calc(33.33% - 15px);
  min-height: 100%;
  padding: 0;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  transition: background-color 0.15s ease;
}

.layering-upsell__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  align-self: center;
  padding: 0 0 1rem;
  width: 100%;
  align-content: center;
  align-items: center;
  align-self: center;
}

.layering-upsell__card:hover {
  border-color: #d4c8cc;
}

.layering-upsell__card.is-selected .layering-upsell__card-header {
  
}

.layering-upsell__card-radio {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1rem;
  border: 1px solid #ced2da;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.layering-upsell__card.is-selected .layering-upsell__card-radio {
  border-color: var(--accent-color);
  box-shadow: inset 0 0 0 4px var(--accent-color);
}

.layering-upsell__card-heading {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.4rem;
  line-height: 1.3;
  color: rgb(var(--color-foreground));
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height:58px;
  align-content: center;
}

.layering-upsell__card--mobile-only {
  display: none;
}

.layering-upsell__card-media {
  position: relative;
  display: block;
  flex-shrink: 0;
  margin-bottom: 0.35rem;
  overflow: hidden;
}

.layering-upsell__card-slider {
  width: 100%;
}

.layering-upsell__card-slider .layering-upsell__card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.layering-upsell__card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.layering-upsell__badge {
  display: none;
  position: static;
  z-index: 1;
  margin: 1rem auto 0.5rem;
  padding: 5px 15px 6px;
  font-size: 1rem;
  line-height: 1.15;
  color: #fff;
  background: var(--accent-color, #9a7b82);
  border-radius: 999px;
  white-space: nowrap;
  text-align: center;
  max-width: calc(100% - 1rem);
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
  vertical-align: top;
}

.layering-upsell__badge.is-visible {
  display: inline-block;
}

.layering-upsell__card-content.card__content {
  padding: 0 0.25rem 0.35rem;
}

.layering-upsell__card .card__information {
  text-align: center;
}

.layering-upsell__card-size {
  margin: 0;
  font-size: 1.20rem;
  line-height: 1.25;
  color: rgb(var(--color-foreground));
}

.layering-upsell__size-label {
  font-weight: 700;
  margin-right: 0.3rem;
}

.layering-upsell__price-table {
  display: flex;
  width: 100%;
  margin-top: 0;
}

.layering-upsell__price-table--single .layering-upsell__price-cell {
  flex: 1;
}

.layering-upsell__price-cell {
  flex: 1;
  display: block;
  text-align: center;
  padding: 0;
  min-width: 0;
}

.layering-upsell__price-cell--single {
  background: transparent;
}

.layering-upsell__price-cell--pair {
  background: transparent;
}

.layering-upsell__price-label {
  display: inline;
  font-size: 1.10rem;
  line-height: 1.2;
  margin-bottom: 0;
  margin-right: 0.25rem;
  font-weight: 700;
  white-space: nowrap;
}

.layering-upsell__price-values {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.15rem;
  line-height: 1.2;
  white-space: nowrap;
}

.layering-upsell__price-cell .price-item--sale {
  font-size: 1.25rem;
}

.layering-upsell__price-cell .price-item--regular {
  font-size: 1.25rem;
  color: #8a7a75;
}

.layering-upsell__price-cell .sale-percentage {
  display: block;
  margin-top: 0.05rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-green, #1b5e20);
}

.layering-upsell__no-sheers {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 0;
  cursor: pointer;
  border-top: 1px solid #ced2da;
  color: rgb(var(--color-foreground));
}

.layering-upsell__no-sheers-radio {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #ced2da;
  border-radius: 50%;
  flex-shrink: 0;
  background: #fff;
}

.layering-upsell__no-sheers:has(input:checked) .layering-upsell__no-sheers-radio {
  border-color: var(--accent-color);
  box-shadow: inset 0 0 0 4px var(--accent-color);
}

.layering-upsell__no-sheers::before {
  content: none;
}

.layering-upsell__no-sheers:has(input:checked)::before {
  content: none;
}

.layering-upsell__no-sheers-text {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  max-width: none;
  min-height: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35;
}

.layering-upsell__no-sheers-label {
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
}

.layering-upsell__no-sheers-suffix {
  color: #8a7a75;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}

.layering-upsell--empty {
  margin: var(--product-section-gap, 2rem) 0;
  padding: 1rem;
  border: 1px dashed #ced2da;
  border-radius: 4px;
}

/* Bundle price breakdown near ATC */
.layering-bundle-price {
  margin-bottom: 1rem;
  margin-right: 1rem;

}

.layering-bundle-price__headline {
  font-size: var(--font-body-font-size);
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: rgb(var(--color-foreground));
}
.layering-bundle-price__headline span{
  font-weight:normal;
}

.layering-bundle-price__headline s {
  color: #8a7a75;
  font-weight: 400;
  margin-left: 0.4rem;
}

.layering-bundle-price__discount {
  color: var(--dark-green);
  font-weight: 700;
  margin-left: 0.4rem;
}
.layering-bundle-price__price{
  font-weight:bold;
}
.layering-bundle-price__includes {
  font-size: 1.6rem;
  color: #8a7a75;
  margin-bottom: 0.3rem;
}
.sticky-addtocart__product-price .layering-bundle-price__includes {
  position:absolute;
  bottom:6px;
  font-size: 1.05rem;
}
.sticky-addtocart__product-price .layering-bundle-price__line{
 display:none;
}

.layering-bundle-price__line {
  font-size: var(--font-body-font-size);
  line-height: 1.4;
  color: rgb(var(--color-foreground));
}

@media screen and (max-width: 768px) {
  .layering-upsell__accordion .accordion__title,
  .layering-upsell__no-sheers-text {
    font-size: 1.3rem;
  }

  .layering-upsell__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layering-upsell__card--mobile-only {
    display: flex;
  }

  .layering-upsell__price-label {
    font-size: 1.25rem;
  }

  .layering-upsell__price-cell .price-item--sale {
    font-size: 1rem;
  }

  .layering-upsell__price-cell .price-item--regular,
  .layering-upsell__price-cell .sale-percentage {
    font-size: 1.25rem;
  }
  .sticky-addtocart__product-price .layering-bundle-price__includes{
    margin-bottom:0;
    bottom:0px;
    position:relative
  }
  
  .sticky-addtocart__price-clone .layering-bundle-price{
    margin-bottom:0;
  }
  
  .sticky-addtocart__price-clone.layering-bundle-price-active{
    flex-shrink:unset !important;
  }
};
@media screen and (max-width: 1024px) {
  .layering-upsell__card { width:calc(100% - 15px);}
}
@media screen and (max-width: 768px) {
  .layering-upsell__grid { 
    width: calc(100vw - 40px);
  }
  .layering-upsell__card { 
    width:calc(50% - 10px);
  }
}
@media screen and (min-width: 768px) {
  .layering-upsell__card--mobile-only {
    display: none !important;
  }
}
