/** Shopify CDN: Minification failed

Line 598:0 Expected "}" to go with "{"

**/

/* =============================================================
   DE MOI — CUSTOM STYLES
   custom.css  —  loaded globally via theme.liquid line 173
   ============================================================= */

/* ── Global fixes ─────────────────────────────────────────── */
.blog__post-image img { object-fit: contain !important; }
.slide-indicators     { display: none !important; }
b, strong             { font-weight: 700; }

/* =============================================================
   BIO SERUM EYELASH — PRODUCT PAGE DESIGN
   Matches the annotated screenshot callouts ①–⑨
   ============================================================= */

/*
  ALL text blocks inside the product form area share:
    <div class="product__block">
      <div class="product__subheading">
        {{ richtext }}          ← h3 | p | p + anchors …
      </div>
    </div>

  We target .product__subheading with :has() to split by content.
*/

/* ── ① CLAIM BOX  — "Visibly Fuller-Looking Lashes & Brows..." ─
   Richtext contains an <h3>                                   */
.shopify-section--product .product__subheading:has(h3) {
  border: 1.5px solid #e8a09a;
  border-radius: 8px;
  padding: 14px 18px;
  background: #fff9f8;
}

.shopify-section--product .product__subheading h3 {
  font-size: 1em;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #1a1a1a;
}

/* ── ②④ DESCRIPTION + PROGRAMME NOTE boxes ──────────────────
   Richtexts that have <p> but NO <h3> and NO anchor link.
   Matches both OM24® description AND the 8-week programme note */
.shopify-section--product .product__subheading:has(p):not(:has(h3)):not(:has(a)) {
  border: 1.5px solid #e8a09a;
  border-radius: 8px;
  padding: 12px 18px;
  background: #fff9f8;
}

.shopify-section--product .product__subheading p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.9em;
  color: #444;
}

/* ── ⑧ CUSTOMER FAVOURITE testimonial box ───────────────────
   Contains multiple <p> AND an <a href="#judge-me-reviews">   */
.shopify-section--product .product__subheading:has(a[href*="judge-me"]) {
  border: 1.5px solid #e8a09a;
  border-radius: 8px;
  padding: 16px 20px;
  background: #fff9f8;
}

.shopify-section--product .product__subheading:has(a[href*="judge-me"]) p {
  margin-bottom: 5px;
  font-size: 0.88em;
  line-height: 1.5;
  color: #333;
}

.shopify-section--product .product__subheading:has(a[href*="judge-me"]) p:first-child {
  font-weight: 700;
  text-align: center;
  font-size: 0.95em;
  margin-bottom: 8px;
}

.shopify-section--product .product__subheading:has(a[href*="judge-me"]) em {
  font-style: italic;
  font-weight: 600;
}

.shopify-section--product .product__subheading:has(a[href*="judge-me"]) a {
  color: #1a1a1a;
  text-decoration: underline;
  font-size: 0.88em;
}

/* ── ⑤⑥ PRODUCT ICON ROWS — bordered grid boxes ─────────────
   Rendered as .product__icon__row--multiple  (icon_row blocks)
   Children: .icons-row-block__item → .icons-row-block__icon
                                     + .icons-row-block__text  */
.shopify-section--product .product__icon__row--multiple {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 6px !important;
  background: #fff;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 0;
}

.shopify-section--product .product__icon__row--multiple .icons-row-block__item {
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 8px 10px;
  border-right: 1px solid #ebebeb; */
  flex: 1;

}

.shopify-section--product .product__icon__row--multiple .icons-row-block__item:last-child {
  border-right: none;
}

.shopify-section--product .product__icon__row--multiple .icons-row-block__icon {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopify-section--product .product__icon__row--multiple .icons-row-block__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.shopify-section--product .product__icon__row--multiple .icons-row-block__text {
  font-size: 0.75em;
  line-height: 1.3;
  color: #333;
  text-align: center;
  font-weight: 400;
}

/* ── SINGLE ICON blocks (truck / award / shield trust strip) ─
   Rendered as .product__icon__row  (icon blocks, not icon_row) */
.shopify-section--product .product__block .product__icon__row:not(.product__icon__row--multiple) {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 6px;
}

.shopify-section--product .product__block .product__icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── ⑨ SECTION ICONS ROW — tab navigation bar ───────────────
   (8-WEEK LASH | HOW TO USE | OM24® | DESIGNED FOR | …)
   Section class: .icons-row   Items: .icons-row-item           */
.section-padding.icons-row .icons-row-item__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 10px;
  gap: 8px;
}

.section-padding.icons-row .icons-row-item__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.4;
}

.section-padding.icons-row .icons-row-item__title {
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #1a1a1a;
  text-align: center;
}

/* ── TRUST BAR — Complimentary | Secure | 30-day ────────────
   (second icons-row section, with top+bottom borders)         */
.icons-row--borders-top.icons-row--borders-bottom .icons-row-item__wrapper {
  padding: 22px 16px;
}

.icons-row--borders-top.icons-row--borders-bottom .icons-row-item__text {
  font-size: 0.85em;
  color: #333;
  line-height: 1.4;
  text-align: center;
}

.icons-row--borders-top.icons-row--borders-bottom .icons-row-item__icon svg {
  width: 26px;
  height: 26px;
}

/* ── PRODUCT PRICE — large bold CHF ─────────────────────────*/
/* .product__price--regular {
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1a1a;
} */

/* ── PRODUCT TITLE ───────────────────────────────────────── */
.product__title {
  font-size: 1.55em;
  line-height: 1.25;
  font-weight: 700;
  color: #1a1a1a;
}

/* =============================================================
   RESPONSIVE  — Mobile
   ============================================================= */
@media screen and (max-width: 767px) {

  /* Tighten padding on pink boxes */
  .shopify-section--product .product__subheading:has(h3),
  .shopify-section--product .product__subheading:has(p):not(:has(h3)):not(:has(a)),
  .shopify-section--product .product__subheading:has(a[href*="judge-me"]) {
    padding: 10px 14px;
    border-radius: 6px;
  }

  .shopify-section--product .product__subheading p,
  .shopify-section--product .product__subheading h3 {
    font-size: 0.88em;
  }

  /* Icon rows — stack with scrollable row */
  .shopify-section--product .product__icon__row--multiple {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
    padding: 10px 4px !important;
  }

  .shopify-section--product .product__icon__row--multiple::-webkit-scrollbar {
    display: none;
  }

  /* .shopify-section--product .product__icon__row--multiple .icons-row-block__item {
    flex: 0 0 33.333%;
    min-width: 90px;
    padding: 6px 6px;
    border-right: 1px solid #ebebeb;
  } */

  .shopify-section--product .product__icon__row--multiple .icons-row-block__text {
    font-size: 0.7em;
  }

  .shopify-section--product .product__icon__row--multiple .icons-row-block__icon svg {
    width: 20px;
    height: 20px;
  }

  /* Bottom nav icon row — carousel scroll on mobile */
  .section-padding.icons-row .icons-row__slider.carousel--mobile {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .section-padding.icons-row .icons-row__slider.carousel--mobile::-webkit-scrollbar {
    display: none;
  }

  .section-padding.icons-row .icons-row__slider.carousel--mobile .carousel__item {
    flex: 0 0 33.333%;
    min-width: 90px;
    scroll-snap-align: start;
  }

  .section-padding.icons-row .icons-row-item__wrapper {
    padding: 12px 6px;
    gap: 6px;
  }

  .section-padding.icons-row .icons-row-item__icon svg {
    width: 24px;
    height: 24px;
  }

  .section-padding.icons-row .icons-row-item__title {
    font-size: 0.65em;
  }

  /* Trust bar condensed */
  .icons-row--borders-top.icons-row--borders-bottom .icons-row-item__wrapper {
    padding: 14px 10px;
  }

  .icons-row--borders-top.icons-row--borders-bottom .icons-row-item__text {
    font-size: 0.78em;
  }

  /* Price */
  .product__price--regular { font-size: 1.4em; }
  .product__title          { font-size: 1.25em; }
}

/* =============================================================
   RESPONSIVE  — Desktop
   ============================================================= */
@media screen and (min-width: 768px) {

  .shopify-section--product .product__subheading:has(h3) {
    padding: 16px 20px;
  }

  .shopify-section--product .product__subheading:has(p):not(:has(h3)):not(:has(a)) {
    padding: 13px 20px;
  }

  .shopify-section--product .product__subheading:has(a[href*="judge-me"]) {
    padding: 18px 22px;
  }

  .section-padding.icons-row .icons-row-item__title {
    font-size: 0.72em;
  }
}

/* Sticky Add to Cart Bar */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(232, 160, 154, 0.3); /* Rose tint border */
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.05);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 12px 0;
}

.sticky-cart-bar.is-visible {
  transform: translateY(0);
}

.sticky-cart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-cart-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sticky-cart-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
}

.sticky-cart-text {
  display: flex;
  flex-direction: column;
}

.sticky-cart-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px 0;
  color: #000;
  line-height: 1.2;
}

.sticky-cart-price {
  font-size: 14px;
  font-weight: 700;
  color: #e74c3c;
}

.sticky-cart-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-cart-select {
  padding: 10px 32px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #d4d3d3;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  min-width: 160px;
  color: #000;
}

.sticky-cart-quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ebdcdb;
  border-radius: 6px;
  overflow: hidden;
  height: 42px;
  background: #fff;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cart-quantity-wrapper.is-focused {
  border-color: #000;
  box-shadow: 0 0 0 1px #000;
}

.sticky-qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 100%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, opacity 0.2s;
  color: #000;
}

.sticky-qty-btn:hover {
  background-color: #f7f7f7;
}

.sticky-qty-btn.is-disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

.sticky-qty-input {
  width: 40px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  background: #fff !important;
  color: #000 !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 42px !important;
  -moz-appearance: textfield;
}

.sticky-qty-input::-webkit-outer-spin-button,
.sticky-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sticky-cart-submit-btn {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 0 24px;
  height: 42px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
  white-space: nowrap;
}

.sticky-cart-submit-btn:hover {
  background: #c0392b;
}

.sticky-cart-submit-btn:disabled {
  background: #95a5a6;
  cursor: not-allowed;
}

/* Mobile responsive styles */
@media (max-width: 767px) {
  .sticky-cart-bar {
    padding: 10px 0;
  }
  .sticky-cart-info {
    display: none; /* Hide product details on mobile */
  }
  .sticky-cart-container {
    padding: 0 10px;
  }
  .sticky-cart-actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .sticky-cart-select {
    flex: 1;
    min-width: unset;
    font-size: 12px;
    padding: 8px 24px 8px 12px;
    height: 38px;
  }
  .sticky-cart-quantity-wrapper {
    height: 38px;
  }
  .sticky-qty-btn {
    width: 28px;
  }
  .sticky-qty-input {
    width: 32px;
    line-height: 38px !important;
  }


/* =============================================================
   AUTOMATIC FREE GIFT PROMOTION STYLES
   ============================================================= */

.free-gift-badge {
  display: inline-block;
  background-color: #27ae60;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 12px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.cart__item--free-gift {
  background-color: #f8fff9;
  border-left: 3px solid #27ae60;
  padding-left: 10px;
}

.free-gift-qty-badge {
  font-size: 0.85em;
  font-weight: 600;
  color: #27ae60;
  padding: 4px 8px;
  background: #e8f8f0;
  border-radius: 4px;
  display: inline-block;
}

.free-gift-price {
  color: #27ae60 !important;
  font-weight: 700 !important;
}



