/** Shopify CDN: Minification failed

Line 384:11 Expected ":"

**/
/* WRAPPER */
.product-hero {
  background: #fff;
  padding: 40px 0px 60px;
}

.product-hero__inner {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 70px;
}

/* LEFT – GALLERY */

.product-hero__left {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* main swiper */
.product-gallery__main {
  border-radius: 15px;
  overflow: hidden;
  background: #dfe5e0;
}

.product-gallery__main-img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1; 
  object-fit: cover;
}

/* thumbs */
.product-gallery__thumbs {
  margin-top: 14px;
}

.product-gallery__thumbs .swiper-wrapper {
  justify-content: center;
  align-items: center;
}

.product-gallery__thumbs .swiper-slide {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
}

.product-gallery__thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.product-gallery__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* highlights */

.product-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.product-highlight__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.product-highlight__label {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  color: #222;
}

/* RIGHT – STICKY COLUMN */

.product-hero__right {
  position: relative;
}

.product-hero__right-inner {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  /*gap: 24px;*/
}

/* HEADER */

.product-header__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.product-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.03;
  color: #222;
  margin: 0;
}

.product-pill {
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border-radius: 100px;
  border: 0.6px solid #222;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 1.2;
  color: #222;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.product-rating__stars {
  display: inline-flex;
  gap: 1px;
}

.product-rating__stars .star {
  display: inline-block;
  width: 17px;
  height: 17px;
  background-image: url('/cdn/shop/files/star.svg?v=1763494284'); /* replace with your file */
  background-size: contain;
  background-repeat: no-repeat;
}



.product-rating__text {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  color: #222;
}

.product-right-bottom {
  display: flex;
  flex-direction: column;
}

.product-divider.hide{
  display: none;
}

/* TABS */

.product-tabs {
  display: flex;
  gap: 5px;
  margin-top: 20px;
  flex-wrap: nowrap;
}

.product-tab {
  flex: 1;
  border-radius: 4px;
  border: 0.6px solid #cecece;
  background: #fff;
  padding: 13px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  position: relative;
}

.product-tab.is-active {
  background: #d8ede1;
  border-color: #d8ede1;
}


/* Panels */

.product-tab-panels {
  margin-top: 25px;
}

.product-tab-panel {
  display: none;
}

.product-tab-panel {
  min-height: auto !important;
  height: auto !important;
}


.product-tab-panel.is-active {
  display: block;
}

.product-tab-panel__body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #222;
  line-height: 1.5;
}

[data-product-tab-panel="about"] p {
  margin-bottom: 12px;
}

[data-product-tab-panel="about"] p:last-child {
  margin-bottom: 0;
}


/* make richtext behave like bullet list visually */
.product-tab-panel__list ul {
  padding-left: 1.4rem !important;
  margin: 0 0 1rem;
  list-style: disc !important;
}

.product-tab-panel__list ul li {
  margin-bottom: 10px;
  line-height: 1.4;
}


/* Divider */

.product-divider {
  margin: 25px 0px ;
  border: none;
  border-top: 1px solid #cecece;
}

/* PACKS */

.product-packs__label {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  color: #454545;
  margin-bottom: 6px;
}

.product-packs__box {
  border-radius: 6px;
  border: 1px solid #2e4635;
  padding: 18px 20px 20px;
}

.product-packs__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.product-packs__title {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.product-packs__price {
  display: flex;
  gap: 6px;
  align-items: center;
}

.price {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.price--compare {
  color: #d4d4d4;
  text-decoration: line-through;
}

.price--main {
  color: #222;
}

/* options row */

.product-packs__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.pack-card {
  position: relative;
  border-radius: 6px;
  border: 0.6px solid #cecece;
  background: #fff;
  padding: 30px 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 15px;
  cursor: pointer;
  min-height: 125px;
}

.pack-card.is-selected {
  border-color: #d8ede1;
  background: #d8ede1;
}

.pack-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  height: 23px;
  padding: 0px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #533a82;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

.pack-card__icon {
  margin-top: 6px;
}

.pack-card__bag {
  display: inline-block;
  width: 18px;
  height: 22px;
  position: relative;
  background-image: url('/cdn/shop/files/pack_icon_e790ab67-bc7e-4f55-90d1-02eed1262eb0.svg?v=1763496236'); /* replace with your file */
  background-size: contain;
  background-repeat: no-repeat;
  no-repeat 
}

.pack-card__bag::before,
.pack-card__bag::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.pack-card__bag::before {
  top: 3px;
  width: 9px;
  height: 5px;
}

.pack-card__bag::after {
  top: 8px;
  width: 9px;
  height: 1px;
  background: #222;
}

.pack-card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pack-card__title {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.pack-card__subtitle {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #454545;
}

/* BUNDLE */

.product-bundle__label {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  color: #454545;
  margin-top: 18px;
  margin-bottom: 6px;
}

.product-bundle__card {
  border-radius: 6px;
  border: 0.6px solid #cecece;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.product-bundle__left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.product-bundle__image {
  width: 26px;
  height: 76px;
  object-fit: cover;
}

.product-bundle__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-bundle__title {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.product-bundle__subtitle {
  font-family: "Lato", sans-serif;
  font-size: 13.5px;
  color: #222;
}

.product-bundle__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.product-bundle__prices {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* toggle */

.bundle-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-flex;
  align-items: center;
}

.bundle-toggle__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bundle-toggle__slider {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #e4e7ea;
  position: relative;
  transition: background 0.2s ease;
}

.bundle-toggle__slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.bundle-toggle__input:checked + .bundle-toggle__slider {
  background: #2e4635;
}

.bundle-toggle__input:checked + .bundle-toggle__slider::before {
  transform: translateX(18px);
}

/* PRIMARY BUTTON */

.product-primary-btn {
  width: 100%;
  margin-top: 22px;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1px solid #2e4635;
  background: #2e4635;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* TRUST BADGES */

.product-trust {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.product-trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Lato", sans-serif;
  font-size: 13.5px;
  color: #222;
}

.product-trust__item p {
    max-width: 70px;
    line-height: 1.3;
}

.product-trust__icon--shipping {
  display: inline-block;
  width: 23px;
  height: 21px;
  background-image: url('/cdn/shop/files/free_shipping.svg?v=1763503941'); /* replace with your file */
  background-size: contain;
  background-repeat: no-repeat;

}

.product-trust__icon--guarantee {
  display: inline-block;
  width: 23px;
  height: 21px;
  background-image: url('/cdn/shop/files/calendar.svg?v=1763503941'); /* replace with your file */
  background-size: contain;
  background-repeat: no-repeat;  
}

.product-trust__icon--warranty {
  display: inline-block;
  width: 20px;
  height: 21px;
  background-image: url('/cdn/shop/files/warranty.svg?v=1763503941'); /* replace with your file */
  background-size: contain;
  background-repeat: no-repeat;      
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .product-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .product-hero__left {
    position: relative;
    top: auto;
  }

  .product-gallery__thumbs .swiper-wrapper {
    justify-content: start;
  }

  .product-highlights {
    display: none;
  }

  .product-hero__right-inner {
    position: static;
  }

  .product-right-bottom {
    flex-direction: column-reverse;
  }
  
  .product-divider {
    display: none;
  }

  .product-divider.hide{
    display: block;
  }

  .product-tabs {
    flex-direction: column;
    margin-top: 50px;
  }

  .product-tab {
    justify-content: space-between;
  }

  .product-packs__options {
    grid-template-columns: 1fr;
  }

  .product-bundle__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-bundle__right {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .product-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-title {
    font-size: 34px;
  }

  .product-gallery__main-img {
    max-height: 500px;
  }
}

