    /* ============================================================
       responsive.css — Product Page Mobile (max-width: 768px)
       Desktop styles live in product.css — DO NOT touch desktop here
       ============================================================ */
    
    
    /* ── Product Page Header ────────────────────────────────────── */
    @media (max-width: 768px) {
      .product-header {
        padding: 14px 20px;
      }
    
      .product-header .menu-icon {
        top: 18px;
        left: 20px;
      }
    
      .product-header .logo {
        width: 80px;
        height: auto;
      }
    }
    
    
    /* ── Sticky Header ───────────────────────────────────────────── */
    @media (max-width: 768px) {
      .sticky-header {
        padding: 10px 16px;
        height: auto;
      }
    
      .sticky-logo {
        width: 70px;
        height: auto;
      }
    
      .sticky-button {
        padding: 7px 12px;
        font-size: 0.8rem;
      }
    
      .sticky-header-right {
        gap: 6px;
      }
    }
    
    
    /* ── Sub Menu ────────────────────────────────────────────────── */
    @media (max-width: 768px) {
      .submenu {
        width: 80%;
        left: -80%;
      }
    }
    
    
    /* ══════════════════════════════════════════════════════════════
       PRODUCT SECTION — Mobile 2-col layout
       ══════════════════════════════════════════════════════════════ */
    /* ══════════════════════════════════════════════════════════════
   PRODUCT SECTION — Mobile (FINAL FIX)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ===== LAYOUT ===== */
  .product-layout {
    display: grid;
    grid-template-columns: 42% 1fr;
    column-gap: 14px;
    padding: 16px;
    align-items: start;
  }

  /* ===== IMAGE (LEFT) ===== */

  .product-image-col {
    float: left;
    width: 42%;
    margin-right: 10px;
  }

  .product-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .product-note {
    clear: both;
  }

}

  /* ===== RIGHT SIDE ===== */
  .product-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 18px;
    line-height: 1.2;
        padding: 10px;
    margin-bottom: 4px;
  }

  .product-subtitle {
    grid-column: 2;
    grid-row: 2;
    font-size: 12px;
    margin-bottom: 8px;
    letter-spacing: 0.08em;
    padding: 5px;
  }

  .product-badges {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .product-badge {
    font-size: 10px;
    display: flex;
    gap: 6px;
  }


  /* ===== BELOW HERO ===== */
  .product-note {
    grid-column: 1 / -1;
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.55;
  }

  .product-options {
    grid-column: 1 / -1;
    margin-top: 14px;
  }

/* ===== RADIO INLINE LAYOUT ===== */

.option-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px; /* vertical + horizontal spacing */
}

.option-title {
  width: 100%;
  margin-bottom: 6px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;

  width: auto;          /* important */
  margin-bottom: 0;     /* kill stacking */
}

  .option-subtext {
    font-size: 11px;
    margin-top: 4px;
    padding-left: 22px;
  }

  /* ===== PRICE ===== */
  .product-price-dynamic {
    grid-column: 1 / -1;
    width: fit-content;
    margin: 16px auto 0;
    padding: 10px 18px;
    font-size: 16px;
    background-color: #D9D4D2;
    border-radius: 14px;
    color: #80130B;
  }

  /* ===== CTA ===== */
  .product-cta {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 16px;
    font-size: 12px;
    padding: 13px 24px;
  }
}
    /* ══════════════════════════════════════════════════════════════
       SCIENCE SECTION — Mobile Vertical Timeline
       ══════════════════════════════════════════════════════════════ */
    
    /* Hide mobile div on desktop */
    .science-mobile-vertical { display: none; }
    
    @media (max-width: 768px) {
    
      /* ── Kill GSAP pin-spacer on mobile ──
         GSAP injects a .pin-spacer wrapper with a huge inline height.
         Force it to collapse so it doesn't create blank space.      */
      .pin-spacer {
        position: static  !important;
        height:   auto    !important;
        overflow: visible !important;
        display:  block   !important;
      }
    
      #scienceStickyContent {
        position: static !important;
        transform: none  !important;
        width:     auto  !important;
        height:    auto  !important;
        top:       auto  !important;
      }
    
      /* Hide desktop horizontal timeline + 2-col layout */
      .science-timeline-wrapper,
      .science-columns,
      .science-cta-wrapper {
        display: none !important;
      }
    
      .science-section {
        padding: 40px 0 50px;
      }
    
      .science-container {
        padding: 0 20px;
      }
    
      .science-title {
        font-size: 18px;
        margin-bottom: 6px;
      }
    
      .science-subtitle {
        font-size: 12px;
        margin-bottom: 28px;
      }
    
      /* Show the mobile vertical wrapper */
      .science-mobile-vertical {
        display: flex;
        flex-direction: row;
        position: relative;
        padding-left: 36px;
        padding-bottom: 20px;
        margin: 0 20px;              /* matches section padding */
        background-color: #F5F4F3;
      }
    }
    
    
    /* ── Left timeline column ─────────────────────────────────── */
    .smob-timeline-left {
      position: absolute;
      left: 8px;
      top: 0;
      bottom: 0;
      width: 20px;
    }
    
    /* Grey dotted base line */
    .smob-vline-base {
      position: absolute;
      top: 0;
      left: 50%;
      width: 3px;
      transform: translateX(-50%);
      background-image: radial-gradient(circle, #BEBEBE 1px, transparent 1px);
      background-size: 3px 6px;
      background-repeat: repeat-y;
      background-position: center top;
      z-index: 0;
    }
    
    /* Red fill — height driven by JS scroll */
    .smob-vline-fill {
      position: absolute;
      top: 6px;
      left: 50%;
      width: 3px;
      height: 0%;
      transform: translateX(-50%);
      background-image: radial-gradient(circle, #80130B 1px, transparent 1px);
      background-size: 3px 6px;
      background-repeat: repeat-y;
      background-position: center top;
      z-index: 1;
    }
    
    /* Dots */
    .smob-dot {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background-color: #BEBEBE;
      border: 2px solid #F5F4F3;
      z-index: 3;
      cursor: pointer;
      transition: background-color 0.3s ease, width 0.3s ease, height 0.3s ease,
                  box-shadow 0.3s ease, filter 0.3s ease;
    }
    
    .smob-dot.visited {
      background-color: #80130B;
      box-shadow: none;
      filter: none;
      width: 18px;
      height: 18px;
      animation: none;
    }
    
    .smob-dot.active {
      background-color: #80130B;
      box-shadow: 0 0 10px rgba(128, 19, 11, 0.6);
      filter: blur(3px);
      width: 28px;
      height: 28px;
      animation: pulseDot 1.5s infinite;   /* keyframe already in product.css */
    }
    
    
    /* ── States container ──────────────────────────────────────── */
    .smob-states {
      flex: 1;
      min-width: 0;
    }
    
    .smob-state-block {
      padding-bottom: 44px;
    }
    .smob-state-block:last-child {
      padding-bottom: 0;
    }
    
    /* ── Accordion: content collapsed by default ── */
    .smob-state-content {
      display: grid;
      grid-template-rows: 0fr;
      overflow: hidden;
      transition: grid-template-rows 0.35s ease;
    }
    
    /* Inner div — min-height:0 required for grid trick */
    .smob-state-content-inner {
      min-height: 0;
      overflow: hidden;
    }
    
    .smob-state-block.smob-open .smob-state-content {
      grid-template-rows: 1fr;
    }
    
    /* State label */
    .smob-state-title {
      font-family: 'Work Sans', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #1C1B1B;
      margin-bottom: 14px;
      line-height: 1.3;
      transition: color 0.3s;
    }
    .smob-state-title.active {
      color: #80130B;
      font-size: 13px;
    }
    
    /* Image inside state */
    .smob-state-img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
      margin-bottom: 16px;
      border-radius: 2px;
    }
    
    /* Text — reuse existing science text styles, just resize */
    .smob-state-content .science-text-highlight {
      font-size: 12px;
      margin-bottom: 10px;
    }
    
    .smob-state-content .science-text-body {
      font-size: 12px;
      line-height: 1.55;
      margin-bottom: 8px;
    }
    
    
    
    /* ══════════════════════════════════════════════════════════════
       JOURNEY SECTION — Mobile
       ══════════════════════════════════════════════════════════════ */
    
    /* Hide mobile title — desktop layout used on all screen sizes */
    .journey-title-mobile { display: none; }
    .journey-title-desktop { display: flex; }
    
    
    /* ══════════════════════════════════════════════════════════════
       FEATURES — Hide grid on mobile, show rolling banner
       ══════════════════════════════════════════════════════════════ */
    
    /* Rolling section hidden on desktop */
    .features-rolling-section { display: none; }
    
    @media (max-width: 768px) {
      /* Hide the static grid */
      .product-features-section { display: none !important; }
    
      /* Show rolling banner section */
      .features-rolling-section {
        display: block;
        background-color: #f0ecea;
        padding: 40px 0;
        overflow: hidden;
      }
    
      .features-rolling-banner {
        overflow: hidden;
        width: 100%;
      }
    
      .science-text-highlight span{
      font-size: 12px;
      font-weight: 400;
      color: #1C1B1B;
    }
    
    
      .features-rolling-track {
        display: flex;
        flex-direction: row;
        gap: 0;
        width: max-content;
        animation: rollFeatures 28s linear infinite;
      }
    
      .features-rolling-track .feature-item {
        width: 160px;
        flex-shrink: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 12px;
      }
    
      .features-rolling-track .feature-icon {
        height: 56px;
        margin-bottom: 14px;
      }
    
      .features-rolling-track .feature-icon img {
        width: 50px;
        height: 50px;
        object-fit: contain;
      }
    
      .features-rolling-track .feature-title {
        font-size: 13px;
        letter-spacing: 1px;
        margin-bottom: 8px;
        line-height: 1.3;
      }
    
      .features-rolling-track .feature-description {
        display: none;
      }
    
      @keyframes rollFeatures {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); } /* -50% = one full set width */
      }
    }
    
    
    /* ══════════════════════════════════════════════════════════════
       FAQ SECTION — Mobile
       ══════════════════════════════════════════════════════════════ */
    
    .faq-title-mobile-text { display: none; }
    .faq-title-desktop     { display: inline; }
    
    @media (max-width: 768px) {
      .faq-title-desktop     { display: none !important; }
      .faq-title-mobile-text { display: inline !important; }
    
      .faq-section {
        padding: 50px 20px 60px;
      }
    
      .faq-container {
        display: flex;
        flex-direction: column;
        gap: 28px;
      }
    
      .faq-left {
        position: static;
        padding-top: 0;
      }
    
      .faq-title {
        font-size: 20px;
        padding-left: 0;
        letter-spacing: -0.5px;
      }
    
      .faq-question h3 {
        font-size: 16px;
        letter-spacing: 0.8px;
      }
    
      .faq-answer p {
        font-size: 18px;
      }
    }
    
    
    /* ══════════════════════════════════════════════════════════════
       FOOTER — Mobile
       ══════════════════════════════════════════════════════════════ */
    
    @media (max-width: 768px) {
      .footer-inner {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        height: auto !important;
        padding: 36px 20px !important;
        gap: 28px !important;
      }
    
      .footer-col-logo {
        grid-column: auto !important;
        flex-direction: column;
        align-items: flex-start;
      }
    
      .footer-logo {
        width: 140px;
        height: auto;
      }
    
      .footer-col-map {
        grid-column: auto !important;
        min-height: 200px;
        height: 200px;
      }
    
      .footer-label {
        font-size: 11px;
      }
    
      .footer-info,
      .footer-nav-link {
        font-size: 12px;
      }
    }
    
    
    /* ══════════════════════════════════════════════════════════════
       "A DIFFERENT STANDARD OF CARE" TABLE — Mobile overflow fix
       ══════════════════════════════════════════════════════════════ */
    
    @media (max-width: 768px) {
      .compare-section {
        padding: 40px 0 50px;
        overflow: hidden;
      }
    
      .compare-container {
        padding: 0 16px;
      }
    
      .compare-title {
        font-size: 18px;
        margin-bottom: 28px;
        letter-spacing: -0.5px;
      }
    
      /* Wrap table in scrollable container */
      .compare-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar visually but keep it functional */
        scrollbar-width: none;
      }
      .compare-table-wrap::-webkit-scrollbar {
        display: none;
      }
    
      .compare-table {
        min-width: 480px;  /* forces horizontal scroll before collapsing */
        width: 100%;
      }
    
      /* Vertical divider lines — keep them but position relative to table */
      .compare-vline {
        display: none; /* hide abs-positioned lines, table borders handle dividers */
      }
    
      .compare-th {
        font-size: 11px;
        padding: 10px 8px;
        letter-spacing: 0.05em;
      }
    
      .compare-td-label {
        font-size: 11px !important;
        padding-left: 8px !important;
        line-height: 1.35;
      }
    
      .compare-icon {
        width: 22px;
        height: 28px;
      }
    
      .compare-text-val {
        font-size: 12px;
      }
    
      .compare-row td {
        height: 52px;
      }
    }
    
    
    /* ═══════════════════════════════════════════════════════════
       JOURNEY SECTION — Mobile (same layout as desktop)
       ═══════════════════════════════════════════════════════════ */
    @media (max-width: 768px) {
      /* Prevent GSAP from keeping items invisible on mobile */
      .journey-item {
        opacity: 1 !important;
      }
    
      .journey-cta {
        font-size: 12px;
        width: 100%;
      }
    }
    
    /* ═══════════════════════════════════════════════════════════
       ROLLING BANNER — Mobile only (hidden on desktop)
       ═══════════════════════════════════════════════════════════ */
    .features-rolling-banner {
      display: none;
    }
    
    @media (max-width: 768px) {
      /* Hide the static grid on mobile */
      .product-features-grid {
        display: none !important;
      }
    
      .features-rolling-banner {
        display: block;
        overflow: hidden;
        width: 100%;
        padding: 40px 0;
        background-color: #F5F4F3;
        position: relative;
      }
    
      /* Fade edges */
      .features-rolling-banner::before,
      .features-rolling-banner::after {
        content: '';
        position: absolute;
        top: 0; bottom: 0;
        width: 60px;
        z-index: 2;
        pointer-events: none;
      }
      .features-rolling-banner::before {
        left: 0;
        background: linear-gradient(to right, #F5F4F3, transparent);
      }
      .features-rolling-banner::after {
        right: 0;
        background: linear-gradient(to left, #F5F4F3, transparent);
      }
    
      .features-rolling-track {
        display: flex;
        gap: 10px;
        width: max-content;
        animation: rollingScroll 22s linear infinite;
      }
    
      .features-rolling-track .feature-item {
        flex: 0 0 100px !important;
        width: 100px;
      }
    
      @keyframes rollingScroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }
    }
    
    /* ═══════════════════════════════════════════════════════════
       COMPARE TABLE — Mobile (A Different Standard of Care)
       ═══════════════════════════════════════════════════════════ */
    @media (max-width: 768px) {
      .compare-section {
        padding: 48px 0;
      }
    
      .compare-container {
        padding: 0 20px;
        overflow: visible;
      }
    
      .compare-title {
        font-size: 18px;
        margin-bottom: 28px;
        letter-spacing: -0.5px;
      }
    
      /* No scroll — full width fit */
      .compare-table-wrap {
        overflow: visible;
        position: relative;
      }
    
      /* Hide absolute vlines — use border instead on mobile */
      .compare-vline { display: none; }
    
      /* Full 100% width, percentage-based columns */
      .compare-table {
        width: 100%;
        min-width: unset;
        table-layout: fixed;
      }
    
      col.col-label    { width: 36%; }
      col.col-meshkati { width: 20%; }
      col.col-mid      { width: 22%; }
      col.col-last     { width: 22%; }
    
      /* Vertical dividers via border on cells */
      .compare-td-check,
      .compare-td-mid,
      .compare-th-meshkati {
        border-left: 1px solid #000;
      }
    
      .compare-th-meshkati,
      .compare-th-other {
        font-size: 11px;
        padding-left: 4px;
        padding-right: 4px;
        line-height: 1.3;
      }
    
      .compare-th-meshkati {
        font-size: 11px;
        color: #80130B;
        padding-bottom: 14px;
      }
    
      .compare-td-label {
        font-size: 11px;
        padding-left: 4px !important;
        padding-right: 4px;
        line-height: 1.4;
      }
    
      .compare-row td {
        height: auto;
        padding-top: 14px;
        padding-bottom: 14px;
      }
    
      .compare-icon {
        width: 20px;
        height: 24px;
      }
    
      .compare-text-val {
        font-size: 12px;
      }
    }
    
    /* ═══════════════════════════════════════════════════════════
       FAQ SECTION — Mobile
       ═══════════════════════════════════════════════════════════ */
    @media (max-width: 768px) {
      .faq-section {
        padding: 56px 24px;
      }
    
      .faq-container {
        display: block;
      }
    
      .faq-left {
        position: static;
        padding-top: 0;
        margin-bottom: 36px;
      }
    
      /* Show single-line mobile title, hide stacked desktop title */
      .faq-title-desktop      { display: none; }
      .faq-title-mobile-text  { display: block; }
    
      .faq-title {
        font-size: 18px;
        padding-left: 0;
        letter-spacing: -0.8px;
        line-height: 1.2;
      }
    
      .faq-question h3 {
        font-size: 13px;
        letter-spacing: 1px;
      }
    
      .faq-answer p {
        font-size: 12px;
      }
    }
    
    /* Desktop: hide mobile FAQ title text, show stacked */
    @media (min-width: 769px) {
      .faq-title-mobile-text { display: none; }
      .faq-title-desktop     { display: block; }
    }
    
    /* ═══════════════════════════════════════════════════════════
       FOOTER — Mobile
       ═══════════════════════════════════════════════════════════ */
    @media (max-width: 768px) {
      .site-footer {
        padding: 0;
      }
    
      .footer-inner {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 32px !important;
        padding: 40px 20px !important;
        height: auto !important;
        width: 100% !important;
      }
    
      .footer-col-logo {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: 12px;
      }
    
      .footer-col-map {
        grid-column: 1 / -1;
        min-height: 200px;
      }
    
      .footer-label {
        font-size: 11px;
      }
    
      .footer-info {
        font-size: 12px;
      }
    }
    
    @media (max-width: 420px) {
      .footer-inner {
        grid-template-columns: 1fr !important;
      }
      .footer-col-logo {
        flex-direction: column;
        align-items: flex-start;
      }
    }
    
    
    /* ═══════════════════════════════════════════════════════════
       EXPECT SECTION — Mobile Vertical Timeline (emob-)
       ═══════════════════════════════════════════════════════════ */
    .expect-mobile-vertical { display: none; }
    
    @media (max-width: 768px) {
      /* Hide desktop grid on mobile */
      .expect-grid { display: none !important; }
    
      .expect-section {
        padding: 56px 0 48px;
      }
    
      .expect-container {
        padding: 0;
      }
    
      .expect-title {
        font-size: 18px;
        padding: 0 24px;
        margin-bottom: 36px;
      }
    
      .expect-mobile-vertical {
        display: flex;
        flex-direction: row;
        padding-left: 36px;
        padding-right: 20px;
        padding-bottom: 48px;
        position: relative;
      }
    
      /* ── Left timeline column ── */
      .emob-timeline-left {
        position: relative;
        width: 18px;
        flex-shrink: 0;
        margin-right: 20px;
      }
    
      .emob-vline-base {
        position: absolute;
        left: 7px;
        top: 0;
        width: 3px;
        background-color: transparent;
        background-image: radial-gradient(circle, #BEBEBE 1px, transparent 1px);
        background-size: 3px 6px;
        background-repeat: repeat-y;
      }
    
      .emob-vline-fill {
        position: absolute;
        left: 7px;
        top: 0;
        width: 3px;
        height: 0;
        background-color: transparent;
        background-image: radial-gradient(circle, #80130B 1px, transparent 1px);
        background-size: 3px 6px;
        background-repeat: repeat-y;
        transition: height 0.15s linear;
      }
    
      .emob-dot {
        position: absolute;
        left: 0;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background-color: #ccc;
        transition: background-color 0.3s ease, filter 0.3s ease;
      }
    
      .emob-dot.visited {
        background-color: #602622;
        filter: none;
      }
    
      .emob-dot.active {
        background-color: #80130B;
        filter: blur(2px);
        animation: pulseDot 1.5s infinite;
      }
    
      /* ── States column ── */
      .emob-states {
        flex: 1;
        display: flex;
        flex-direction: column;
      }
    
      .emob-state-block {
        margin-bottom: 28px;
      }
    
      .emob-state-block:last-child { margin-bottom: 0; }
    
      /* Time label (e.g. DAY 1 – MONTH 2) */
      .emob-time-label {
        font-family: 'Work Sans', sans-serif;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 1.2px;
        color: #999;
        text-transform: uppercase;
        margin-bottom: 4px;
      }
    
      /* Phase title — clickable header */
      .emob-state-title {
        font-family: 'Work Sans', sans-serif;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: #aaa;
        margin-bottom: 0;
        transition: color 0.3s ease, font-size 0.2s ease;
        padding-bottom: 10px;
      }
    
      .emob-state-title.active {
        color: #602622;
        font-size: 12px;
        font-weight: 600;
      }
    
      .emob-phase-label {
        display: inline-block;
        background-color: #CCC4C4;
        padding: 5px 10px;
        margin-bottom: 12px;
        font-family: 'Work Sans', sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #602622;
      }
    
      /* Accordion content — grid trick */
      .emob-state-content {
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        transition: grid-template-rows 0.35s ease;
      }
    
      .emob-state-content-inner {
        min-height: 0;
        overflow: hidden;
      }
    
      .emob-state-block.emob-open .emob-state-content {
        grid-template-rows: 1fr;
      }
    
      .emob-state-img {
        width: 75%;
        height: 260px;
        border-radius: 4px;
        margin-bottom: 14px;
        display: block;
        object-fit: cover;
        object-position: center top;
      }
    
      .emob-slider {
        width: 75% !important;
        height: 260px !important;
        border-radius: 4px;
        overflow: hidden;
        display: block;
        margin-bottom: 14px;
        cursor: col-resize;
      }
    
      .emob-state-content .expect-card-body {
        font-family: 'Work Sans', sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.5;
        color: #1C1B1B;
        margin-bottom: 8px;
        letter-spacing: -0.3px;
      }
      .emob-state-content .expect-card-note {
        font-family: 'Work Sans', sans-serif;
        font-size: 12px;
        color: #666;
        line-height: 1.5;
        font-style: italic;
        margin-bottom: 8px;
      }
    
      .card-button{
        border: 1px solid black !important;
      }
    
       /* journey-line-container height set dynamically by JS */
       /* .journey-line-container {
        height: calc(100% - 55px);
      } */
    }

/* ── OPTIONS (mobile placement) ───────────────── */
.product-options {
  width: 100%;
  margin-top: 16px;
}

.option-divider {
  display: none;
}

.product-price-dynamic {
  font-size: 18px;
  margin-top: 12px;
}

/* spacing fix */
.option-group {
  margin-bottom: 16px;
}
/* Stack radios tighter */
.radio-option {
  font-size: 13px;
  margin-bottom: 6px;
}

.option-title {
  font-size: 14px;
  margin-bottom: 8px;
}

.option-subtext {
  font-size: 11px;
}

/* Price below options */
.product-price-dynamic {
  grid-column: 1 / -1;
  grid-row: 7;
  font-size: 18px;
  margin-top: 10px;
}
    
/* ── MOBILE FIX: hero alignment + flow ───────────────── */

@media (max-width: 768px) {
    
    .product-title {
  grid-column: 2;
  grid-row: 1;
}

.product-subtitle {
  grid-column: 2;
  grid-row: 2;
}

.product-badges {
  grid-column: 2;
  grid-row: 3;
}

.product-note {
  grid-column: 1 / -1;
  grid-row: 4;
}

.product-options {
  grid-column: 1 / -1;
  grid-row: 5;
}

.product-price-dynamic {
  grid-column: 1 / -1;
  grid-row: 6;
}

.product-cta {
  grid-column: 1 / -1;
  grid-row: 7;
}

  /* Keep image clean and proportional */
.product-img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
}

  /* Tighten right column spacing */
  .product-title {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .product-subtitle {
    margin-bottom: 6px;
  }

  .product-badges {
    gap: 4px;
    margin-bottom: 10px;
  }

  /* Description should sit clean below */
  .product-note {
    margin-top: 12px;
    margin-bottom: 14px;
    padding: 0;
  }

  /* OPTIONS — stack cleanly under description */
  .product-options {
    margin-top: 10px;
  }

  .option-group {
    margin-bottom: 6px;
  }

  /* Fix radio spacing */
  .radio-option {
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  /* Subtext tighter */
  .option-subtext {
    margin-top: 4px;
    padding-left: 22px;
  }

  /* ── PRICE (centered pill like design) ── */
  .product-price-dynamic {
    display: block;
    width: fit-content;
    margin: 16px auto 0;
    padding: 10px 18px;

    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;

    background-color: #D9D4D2;
    border-radius: 14px;
    color: #80130B;
    text-align: center;
  }

  /* CTA spacing */
  .product-cta {
    margin-top: 16px;
  }
  
  .product-title,
.product-subtitle,
.product-badges {
  grid-column: 2;
}

}
@media (max-width: 768px) {

  /* RESET ANY BROKEN GRID BEHAVIOUR */
  .product-layout {
    display: block !important;
  }

  /* ===== HERO (TOP SECTION) ===== */
  .product-image-col {
    float: left;
    width: 40%;
    margin-bottom: 30px;
    margin-right: 5px;
  }

  .product-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* RIGHT SIDE CONTENT WRAPS NEXT TO IMAGE */
  .product-title,
  .product-subtitle,
  .product-badges {
    display: block;
  }

  /* Ensure text flows beside image */
  .product-info-col {
    display: block !important;
  }

  /* CLEAR AFTER HERO */
  .product-note {
    clear: both;
    margin-top: 5px;
  }

  /* EVERYTHING BELOW FULL WIDTH */
  .product-options,
  .product-price-dynamic,
  .product-cta,
  .product-accordion {
    clear: both;
    width: 100%;
  }

}
@media (max-width: 768px) {

  .product-options {
    display: block !important;
  }

  .option-group {
    width: 100%;
    margin-bottom: 18px;
  }

  .option-title {
    display: block;
    margin-bottom: 8px;
  }

}
@media (max-width: 768px) {

  /* ===== FORCE IMAGE SIZE ===== */
  .product-image-col {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }

  .product-img {
    width: 100% !important;
    max-width: 210px !important;
    height: auto !important;
    object-fit: contain !important;
  }


  /* ===== FORCE RIGHT SIDE ALIGNMENT ===== */
    .product-title,
  .product-subtitle {
    margin-top: 0 !important;
  }
  

  /* ===== FIX FONT THICKNESS ===== */
  .product-title {
    font-weight: 500 !important;
  }

  .product-subtitle,
  .product-note {
    font-weight: 400 !important;
  }


}
@media (max-width: 768px) {

  .product-layout {
    margin-top: -70px !important;
  }

}
@media (max-width: 768px) {
/* ===== UNIVERSAL TICK FIX ===== */

.product-badge::before,
.product-badge1::before,
.accordion-list li::before {
  content: none !important;   /* kill ALL pseudo ticks */
}


/* ===== CONSISTENT LIST LAYOUT ===== */

.accordion-list li,
.product-info-col .accordion-list.clean li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
}


/* ===== SINGLE SOURCE OF TRUTH (REAL TICK) ===== */

.product-badge {
  width: 16px;
  height: 16px;
  flex-shrink: 0;

  background: url('prodimages/tick.svg') no-repeat center;
  background-size: contain;

  margin-top: 3px;   /* THIS aligns with first line of text */
}
}

@media (max-width: 768px) {

  .radio-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 1.5px solid #1C1B1B;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin-top: 2px;
  }

  .radio-option input[type="radio"]:checked {
    border-color: #80130B;
  }

  .radio-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: #80130B;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

}

/* ===== FIX: ACCORDION LIST TICKS ALIGNMENT ===== */

.accordion-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.accordion-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
}

/* Proper tick */
.accordion-list li::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;

  background: url('prodimages/tick.svg') no-repeat center;
  background-size: contain;

  margin-top: 4px; /* aligns with first line */
}
/* ===== FIX: SECOND ACCORDION (DUAL APPROACH) ===== */

.product-badges div {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.product-badges .product-badge {
  width: 14px;
  height: 14px;
  flex-shrink: 0;

  background: url('prodimages/tick.svg') no-repeat center;
  background-size: contain;

  margin-top: 4px; /* aligns with text */
}

/* ===== TIGHTEN HERO SPACING ===== */

.product-badges {
  margin-bottom: 6px; /* was too loose */
}

.product-info-col .accordion-list.clean {
  margin-bottom: 6px !important;
}

.product-note {
  margin-top: 6px !important;
}

/* ===== FORCE RADIO INLINE (OVERRIDE EVERYTHING) ===== */

@media (max-width: 768px) {

  .product-options .option-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px 20px !important;
  }

  .product-options .option-title {
    width: 100% !important;
    margin-bottom: 6px !important;
  }

  .product-options .radio-option {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;

    width: auto !important;
    margin-bottom: 0 !important;
  }

}

/* ===== TREATMENT SAME AS FREQUENCY ===== */
@media (max-width: 768px) {

  /* make both options sit on one row */
  .product-options .option-group:first-of-type {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  /* keep radio + label inline */
  .product-options .option-group:first-of-type .radio-option {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
  }

  /* force "(Capsules + Serum)" under Dual Approach */
  .product-options .option-group:first-of-type .radio-option em {
    display: inline;
    margin-left: 5px; /* aligns under text */
    margin-top:5px;
    font-size: 12px;
  }

}

@media (max-width: 768px) {

  #frequencyGroup {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
  }

  #frequencyGroup .radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }

  /* THIS fixes it */
  #frequencyGroup .option-subtext {
    flex-basis: 100%; /* forces new row */
    margin-top: 4px;
    padding-left: 135px; /* aligns under "Subscribe" text */
  }

}
@media (max-width: 768px) {

  .product-options .option-group:first-of-type {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 24px;
  }

  .product-options .option-group:first-of-type .radio-option {
    display: flex !important;
    align-items: center;
    gap: 8px;
    white-space: nowrap; /* KEY — prevents breaking */
  }

  /* Force the subtext under Dual Approach only */
  .product-options .option-group:first-of-type .radio-option em {
    display: block;
    white-space: normal;
    margin-left: -4px;
  }

}
/* ===== TREATMENT + FREQUENCY — EXACT 2-COLUMN LAYOUT ===== */
@media (max-width: 768px) {

  /* BOTH groups behave the same */
  .product-options .option-group {
    column-gap: 24px;
    row-gap: 6px;
    align-items: start;
  }

  /* Each radio = inline */
  .radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
  }

  .radio-option input[type="radio"] {
    margin: 0;
  }

}



