/** Shopify CDN: Minification failed

Line 610:2 Unexpected "/"
Line 679:27 Expected identifier but found whitespace

**/
/* =========================
   PRODUCT GRID LAYOUT
========================= */

.product-grid-wrapper .product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: start;
  overflow: visible;
}

/* IMPORTANT */
.product-grid-wrapper .grid__item {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

/* =========================
   LEFT IMAGE COLUMN
========================= */

.custom-product-left {
  position: sticky;
  top: 100px;
  align-self: start;

  min-width: 0;
  height: fit-content;

  z-index: 1;

  overflow: visible;
}

/* =========================
   RIGHT COLUMN
========================= */

.custom-product-right {
  min-width: 0;
}

/* =========================
   MEDIA WRAPPER FIX
========================= */

.custom-product-left media-gallery {
  position: relative;
  display: block;
  width: 100%;
}

.custom-product-left .product-media-container,
.custom-product-left .product__media,
.custom-product-left .media {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;

  border-radius: 12px;
  overflow: hidden;
}

/* IMPORTANT FIX */
.custom-product-left .product-media-container.constrain-height.media-fit-contain {
  width: 100% !important;
  max-width: 100% !important;
}

/* IMAGE */

.custom-product-left img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   OVERLAY
========================= */

.custom-product-left .product__media::after,
.custom-product-left .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.28) 45%,
    rgba(0,0,0,0) 78%
  );
  z-index: 2;
  pointer-events: none;
  border-radius: 12px;
}

/* =========================
   CONTENT WRAPPER
========================= */

.custom-image-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  pointer-events: none;
}

/* =========================
   BADGE
========================= */

.pop-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  /*background: #c4973a;*/
  background: #95785E;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  z-index: 30;
  white-space: nowrap;
}

/* =========================
   BOTTOM TEXT
========================= */

.image-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 30;
  width: calc(100% - 48px);
  max-width: 100%;
}

.image-label h2 {
  margin: 0 0 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

.image-label p {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}


.product__modal-opener .product__media-icon {
  margin-left: 13rem !important;
}


.product__column-sticky {
  top: 0.1rem !important;
}

.supplier {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #999;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 6px;     
}

.plan-title h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}

/* =========================
   MOBILE
========================= */

@media screen and (max-width: 989px) {

  .product-grid-wrapper .product {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .custom-product-left {
    position: relative;
    top: 0;
  }

  .image-label {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .image-label h2 {
    font-size: 24px;
  }

  .image-label p {
    font-size: 13px;
  }
}

/* ======================
   product layout width setting 
======================== */
@media screen and (min-width: 990px) {
    .product--large:not(.product--no-media) .product__media-wrapper {
        max-width: 58% !important;
        width: calc(58% - var(--grid-desktop-horizontal-spacing) / 2) !important;
    }

    .product--large:not(.product--no-media) .product__info-wrapper {
        padding: 0 0 0 4rem;
        max-width: 42% !important;
        width: calc(42% - var(--grid-desktop-horizontal-spacing) / 2) !important;
    }

  }
/* =========================
   PRICE BOX
========================= */

.custom-price-box {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}

/* =========================
   MAIN PRICE
========================= */

.custom-main-price {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  color: #202945;
  margin-bottom: 10px;
}

/* =========================
   SUBTEXT
========================= */

.custom-price-subtext {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
}

/* =========================
   BOTTOM GRID
========================= */

.custom-price-grid {
  display: flex;
  align-items: flex-start;

  margin-top: 22px;
  padding-top: 18px;

  border-top: 1px solid #d9d9d9;
}

/* =========================
   LEFT ITEM
========================= */

.custom-price-item:first-child {
  flex: 1;

  padding-right: 24px;
}

/* =========================
   CENTER SEPARATOR
========================= */

.custom-price-divider {
  width: 1px;
  min-height: 54px;
  background: #d9d9d9;
  display: block !important;
}

/* =========================
   RIGHT ITEM
========================= */

.custom-price-item:last-child {
  flex: 1;

  padding-left: 24px;
}

/* =========================
   PRICE TEXT
========================= */

.custom-price-item span {
  display: block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

/* =========================
   SMALL TEXT
========================= */

.custom-price-item p {
  margin: 5px 0 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #666;
}

/* =========================
   MOBILE
========================= */

@media screen and (max-width: 749px) {

  .custom-price-box {
    padding: 20px;
  }

  .custom-main-price {
    font-size: 22px;
  }

  .custom-price-grid {
    flex-direction: row;
    gap: 12px;
  }

  .custom-price-item span {
    display: block;
    font-size: 14px;
  }

  .custom-price-item p {
    margin: 5px 0 0;
    font-size: 11px;
  }
  .custom-price-divider {
    display: none;
  }

  .custom-price-item:first-child {
    padding-right: 0;
  }

  .custom-price-item:last-child {
    padding-left: 0;
  }

}

/* =========================
   BUTTON WRAPPER
========================= */

.custom-plan-buttons {
  margin-top: 18px;
}

/* =========================
   BUTTON BASE
========================= */

.custom-plan-btn {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  transition: all 0.25s ease;
  padding: 0 20px;
  box-sizing: border-box;
}

/* =========================
   PRIMARY BUTTON
========================= */

.primary-plan-btn {
  /*background: #c89b3c !important;*/
  background: #95785E !important;
  color: #ffffff !important;
  border: none !important;
  margin-bottom: 14px;
  cursor: pointer;
}

.primary-plan-btn:hover {
  /*background: #c89b3c !important;*/
  background: #95785E !important;
  color: #ffffff !important;
}

/* SOLD OUT */

.soldout-btn {
  background: #bfbfbf !important;
  color: #ffffff !important;
  cursor: not-allowed;
  opacity: 1;
}

/* =========================
   SECONDARY BUTTON
========================= */

.secondary-plan-btn {
  background: transparent !important;
  border: 2px solid #202945 !important;
  color: #202945 !important;
  cursor: default;
  text-align: center;
  -webkit-text-fill-color: #202945 !important;
  cursor: pointer;
}

/* FORCE TEXT SHOW */

.secondary-plan-btn,
.secondary-plan-btn *,
.secondary-plan-btn span,
.secondary-plan-btn p {
  color: #202945 !important;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-text-fill-color: #202945 !important;
}

/* HOVER */

a.secondary-plan-btn:hover {
  background: #202945 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  cursor: pointer;
}

a.secondary-plan-btn:hover *,
a.secondary-plan-btn:hover span,
a.secondary-plan-btn:hover p {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* =========================
   NOTE TEXT
========================= */

.custom-plan-note {
  margin-top: 14px;
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11.5px;
  line-height: 1.6;
  color: #8b8b8b;
}

/* =========================
   MOBILE
========================= */

@media screen and (max-width: 749px) {
  .custom-plan-btn {
    min-height: 52px;
    font-size: 15px;
  }

}

/* =========================
 Custom Product Description Card 
========================= */

.custom-product-card {
  margin-top: 16px;
  border: 1px solid;
  border-radius: 12px;
  padding: 22px;
}

.custom-card-heading {
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.2;
}

.custom-product-description {
  line-height: 1.7;
}

.custom-product-description p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0 0 14px;
}

.custom-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.custom-tag {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  border: 1px solid;
  border-radius: 999px;
  padding: 6px 14px;
  line-height: 1.2;
}

/* ================================
   MEMBERSHIP DETAILS
================================ */

.membership-details {
  margin-top: 2rem;
  border-top: 1px solid #ececec;
  padding-top: 1.8rem;
}

.membership-heading {
  margin: 0 0 1.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: #666;
}

.membership-table {
  width: 100%;
}

.membership-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;

  padding: 1.2rem 0;
  border-bottom: 1px solid #f1f1f1;
}

.membership-label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.35rem;
  line-height: 1.4;
  color: #666;
}

.membership-value {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.35rem;
  line-height: 1.4;
  color: #111;
  font-weight: 600;
  text-align: right;
}

.membership-value .tick {
  color: #1a6b3a;
  margin-right: 0.4rem;
}*/

/* mobile */

@media screen and (max-width: 749px) {

  .membership-row {
    gap: 1.5rem;
  }

  .membership-label,
  .membership-value {
    font-size: 1.3rem;
  }

}

.membership-includes {
  border-top: 1px solid #ececec;
  padding-top: 5px;
  margin-top: 5px;
}

.membership-includes-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #666;
    margin-bottom: 10px;
}

.membership-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.membership-includes-list li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13.5px;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
     margin-bottom: 10px;
}

.membership-includes-list .tick {
  color: #1f6b42;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}


.product-custom_full_freedom .custom_newsletter,.product-custom_midweek_freedom .custom_newsletter,.product-custom_freedom_mates .custom_newsletter,
.product-custom_freedom_mates .custom_newsletter,.product-custom_freedom_corporate .custom_newsletter {
    display: none !important;
}

@media screen and (max-width: 749px) {
.product__title {display: none !important;}
.product__text {display: none !important;}
}


./* Share Button Wrapper */
.share-button {
  display: flex !important;
  width: 100% !important;
  flex: 1 1 100% !important;
}



/* Actual Button */
 .share-button__button {
  flex: 1 1 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  min-height: 48px !important;

  background: #fff !important;
  border: 1.5px solid #d9d9d9 !important;
  border-radius: 999px !important;

  font-size: 15px !important;
  font-weight: 500 !important;

  box-sizing: border-box !important;
  cursor: pointer;
  width: 100%;
}

/* Hidden summary */
share-button details summary.share-button__button {
  width: 100% !important;
}

/* Icon */
share-button .icon {
  width: 16px;
  height: 16px;
}