/** Shopify CDN: Minification failed

Line 150:23 Expected ")" to end URL token

**/
/* mx-global.css */
.container {
    max-width: clamp(80vw, 1280px, 96vw);
}
/* Global Animation Utility Classes */
.mx-animate-up{
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

.mx-animate-right{
  opacity: 0;
  transform: translateX(-40px);
  will-change: opacity, transform;
}

.mx-animate-left {
  opacity: 0;
  transform: translateX(40px);
  will-change: opacity, transform;
}

.mx-unmask {
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}

.shake{animation: shake 6s ease-in-out infinite;}

/* --- Animated Staggered Text Styles --- */
a.mx-pill-btn,  span.mx-pill-btn, button.mx-pill-btn {
    padding: 1rem 2rem;
    background: #ec9447;
    font-size: 1.25rem;
    color: #fef9ef;
    border-radius: 100rem;
    font-weight: 500;
    display: inline-block;
}
.small.mx-pill-btn {
  max-width: fit-content;
  font-size: 1rem !important;
  padding: 0.75rem 1.25rem;
  border: 0;
}
.mx-btn-text-wrapper {
  display: inline-flex;
  overflow: hidden; /* Hides the rolling text */
  position: relative;
  z-index: 2; /* Keeps it above your mx-pill-bg */
}

.mx-char {
  position: relative;
  display: inline-block;
  white-space: pre; /* Keeps spaces between words intact */
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1); /* Smooth snap */
}

/* The duplicate letter that hides below the button */
.mx-char::after {
  content: attr(data-char);
  position: absolute;
  top: 100%;
  left: 0;
  color: currentColor; /* Matches whatever text color you use */
}

/* Move letters up when hovering the whole button */
.mx-pill-btn:hover .mx-char {
  transform: translateY(-100%);
}

/* Your drop shadow request */
.mx-pill-btn {
  transition: box-shadow 0.2s ease;
}

.mx-pill-btn:hover {
  box-shadow: 0 6px 16px rgba(236, 148, 71, 0.25);
}
.otTableOffer {
    display: none;
}
.product-single__info-wrapper .accordion p {
    font-size: 1rem;
}
h3.section-title-1+div.txt-body-70{max-width: 80%;}


  /* Global Resets for this page to block theme interference */
  .mx-page-wrapper {
    background-color: #fef9ef; 
    color: #2A2B2F;
    font-family: 'poppins';
  }
  .mx-page-wrapper section:not(.mx-hero){
    text-align: center;
    padding: 60px 20px;
    max-width: clamp(80vw,1280px,96vw);
    margin: 13vh auto;
  }
  .mx-page-wrapper h1, .mx-page-wrapper h2, .mx-page-wrapper h3, .mx-page-wrapper h4, .mx-page-wrapper h5, .mx-page-wrapper p {
    margin: 0;
    padding: 0;
    color: #2A2B2F;
  }
  .mx-page-wrapper h2, .mx-page-wrapper h2>p{
    font-size: clamp(40px, 3rem, 72px);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
  }
  .mx-page-wrapper p{
    font-size: 1.5rem;
    line-height: 1.5;
    color: #2A2B2F;
    margin-bottom: 20px;
  }
  .mx-btn {
    display: inline-block;
    background-color: var(--g-main); /* Orange from Figma */
    color: white;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
  }
  .site-header{background: #fef9ef;}
  main#MainContent {
        margin: 0;
  }

  /* 1. Hero Section */
  .mx-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0% 40px;
    max-width: 100%;
    margin: 0 auto;
    background: url({{ 'franziska-her.png' | file_url }});
    background-size: cover;
    height: calc(100vh - 56px);
  }
  .mx-hero-content {
    width: 50%;
    margin-left: 4.25vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .mx-hero-content h1 {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .mx-hero-content p:last-of-type {
    margin-bottom: 3rem;
  }
  .signatureImg {
    max-width: 350px;
    margin-top: 3vh;
  }

  /* 2. Intro / Quote Section */
  .mx-intro h2 {
    color: var(--g-main);
  }

/* ==========================================
   1. SHARED BASE (Shape & Images)
   ========================================== */
/* Both Affiliate cards AND the Image-box of Native cards share this exact shape */
.mx-card-affiliate,
.mx-native-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1;
}

/* Base image rules */
.mx-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}


/* ==========================================
   2. AFFILIATE CARD STYLES
   ========================================== */
.mx-card-affiliate {
  cursor: pointer;
}

/* Affiliate Overlay */
.mx-product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(236, 148, 71, 0.95); /* Clean Orange */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

/* Hovering the Affiliate card reveals the overlay */
.mx-card-affiliate:hover .mx-product-overlay {
  opacity: 1;
}

/* Overlay internal layout */
.mx-product-overlay div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Affiliate Typography */
.mx-overlay-vendor {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--g-main);
  background: white;
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
  text-transform: uppercase;
}

.mx-overlay-title {
  padding-left: 0.8rem;
  font-size: 1.333rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  color: white;
  text-transform: capitalize;
}

.mx-overlay-desc {
  padding-left: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: white;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mx-overlay-price {
  font-size: 1.2rem;
  font-weight: 400;
  padding-left: 0.8rem;
}
.mx-affiliate-section {
    margin-top: 13vh;
    padding-top: 120px;
    position: relative;
}
.affiliate-notice {
    color: var(--g-main);
    max-width: calc(33% - 30px);
    text-align: left;
    font-size: 0.55rem;
    margin-top: 1rem;
    display: inline-block;
    position: absolute;
    left: 1rem;
}

/* Affiliate Button */

.mx-affiliate-btn {
  display: inline-block;
  background-color: white;
  color: var(--g-main);
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
  font-weight: 600;
  margin-top: 10px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mx-card-affiliate:hover .mx-affiliate-btn:hover {
  background-color: var(--g-main);
  color: white;
}


/* ==========================================
   3. NATIVE MYON.CLINIC PATHWAY STYLES
   ========================================== */
.mx-card-native {
  display: flex;
  flex-direction: column;
}

.mx-card-native .imageCard {
  position: relative;
}

/* Native Image Box Gradient & Border adjustment */
.mx-native-image-link {
  background: linear-gradient(135deg, #f0ae75, #fae4d1, #f0ae75);
  border-radius: 1.25rem; 
}

/* Native Images Configuration */
.mx-native-image-link img:not(.second-image) {
  object-fit: contain;
  max-height: 95%;
  padding-top: 5%;
}

.mx-native-image-link img.second-image {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* HOVER RULE: ONLY triggers when hovering the image link */
.mx-native-image-link:hover img.second-image {
  opacity: 1;
}
  .mx-showcase-header h3 {
    font-weight: 400;
    font-size: 3rem;
  }

/* Native Badges & Buttons */
.mx-card-native .nonMedical {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: var(--g-main);
  z-index: 6;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.mx-card-native .product-card-cart.mt-2 {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 10;
}

.mx-card-native a.btn.btn-new.mxComingSoon {
  margin: 0 !important;
}

/* Native Content Typography */
.mx-native-content {
  padding-top: 1rem;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h3.mx-native-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2A2B2F;
}

.mx-native-content p {
  font-size: 1rem;
}

.mx-native-content p a:hover,
.mx-native-content a:hover {
  color: inherit; /* prevents text hover issues */
}
.mx-native-price {
    margin-top: 0.5rem;
}

/* Makes the checkout button look disabled */
  .checkout-btn-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
  }
  
  /* Error state for checkboxes */
  input[type="checkbox"].error-checkbox {
    border-color:#c00;
    box-shadow: 0 0 2px #c00;
  }
  
  /* Error state for text labels */
  label.error-label {
    color: #c00;
    transition: color 0.3s ease;
  }
  p#consent-error-message {
    font-size: 1rem;
}
a.inlineLink {
    color: #b96013;
}
a.inlineLink:hover {
    text-decoration: underline;
}


label.mx-checkbox {
  display: block;
  line-height: 1.75;
  font-size: 1rem;
  color: #2a2b2f;
}

.mx-checkbox-input {
    appearance: none;
    position: relative;
    top: 5px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 25px;
    width: 25px;
    transition: all 0.15s ease-out 0s;
    background: #fef9ef;
    border: 1px solid #ec9447;
    color: #fcedcf;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1;
}

.mx-checkbox-input span {
  margin-left: 0.5em;
}

.mx-checkbox-input:hover {
  background: #fcedcf;
}

.mx-checkbox-input:checked {
  background: #ec9447;
  border-color: #ec9447;
}

.mx-checkbox-input:checked::before {
  width: 22px;
  height: 25px;
  display: flex;
  content: "✓";
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  align-items: center;
  justify-content: center;
}

.mx-checkbox-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #ecceb4ff;
  content: "";
  display: block;
  position: relative;
  z-index: 100;
}



@keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 200px;
    width: 200px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
  }
}








    /* animations */
  @keyframes shake{
    0%{transform: translateY(0);}
    50%{transform: translateY(-20px);}
    100%{transform: translateY(0);}
  }
  @keyframes slideBackground {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @media(max-width: 992px){
    .mx-page-wrapper p{
      font-size: 1.33rem;
      line-height: 1.4;
    }
    .mx-page-wrapper section:not(.mx-hero) {
      margin: 10vh auto;
    }
    header .container {
      padding: 0;
    }
    
    h3.section-title-1+div.txt-body-70 {
        max-width: 100%;
    }
  }
  @media (max-width: 600px){
    .mx-page-wrapper p{
      font-size: 1.2rem;
    }
    .product-form__item.product-form__item--submit.flex-row.align-items-center.justify-content-between.btn-disablebuynow {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center !important;
    }
    h3.section-title-1+div.txt-body-70 p {
      text-align: left;
    }
    .mx-page-wrapper section:not(.mx-hero) .container {
      max-width: 100%;
      padding: 0;
    }
    div#mxTotalPrice {
        text-align: center;
    }

    .priceNote {
        text-align: center;
    }

    #quantityIncubator {
        width: calc(100% - 25px);
    }

    div#info {
        margin-left: 5px;
    }

    .mx-page-wrapper h2, .mx-page-wrapper h2>p,.mx-showcase-header h3  {
        font-size: clamp(32px, 2rem, 72px);
        font-weight: 500;
    }
  }