/** Shopify CDN: Minification failed

Line 265:21 Expected identifier but found whitespace
Line 265:22 Unexpected "url("
Line 395:0 Unexpected "100%"
Line 396:2 Unexpected "}"
Line 399:2 Unexpected "}"
Line 402:2 Unexpected "}"
Line 405:2 Unexpected "}"

**/

  /* ============================
     DESIGN TOKENS
     ============================ */
  :root {
    --cream: #F5F0E8;
    --cream-dark: #EDE7D9;
    --charcoal: #2A2925;
    --charcoal-mid: #4A4740;
    --charcoal-light: #7A7770;
    --sage: #8A9E8C;
    --sage-light: #C4D4C6;
    --sage-pale: #E8EEE8;
    --terracotta: #C4624A;
    --terracotta-hover: #B05540;
    --terracotta-light: #F0DDD8;
    --white: #FFFFFF;
    --border: rgba(42,41,37,0.12);
    --border-strong: rgba(42,41,37,0.22);

    --font: 'Inter', -apple-system, sans-serif;
    --max-w: 1200px;
    --section-v: 96px;
    --section-v-m: 64px;
    --radius: 4px;
    --radius-lg: 10px;
    --radius-xl: 18px;
    --transition: 0.22s ease;
  }

  /* ============================
     RESET & BASE
     ============================ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { cursor: pointer; font-family: var(--font); border: none; background: none; }
  p { color: var(--charcoal-mid); }

  /* ============================
     LAYOUT UTILITIES
     ============================ */
  .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
  }
  .section {
    padding: var(--section-v) 0;
  }
  .section--sage { background: var(--sage-pale); }
  .section--cream-dark { background: var(--cream-dark); }
  .section--charcoal { background: var(--charcoal); }

  /* ============================
     TYPOGRAPHY
     ============================ */
  .eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 16px;
  }
  h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--charcoal);
  }
  h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.14;
    color: var(--charcoal);
  }
  h3 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--charcoal);
    line-height: 1.3;
  }
  .lead {
    font-size: 1.12rem;
    line-height: 1.65;
    color: var(--charcoal-mid);
    font-weight: 400;
  }

  /* ============================
     BUTTONS
     ============================ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
  }
  .btn-primary {
    background: var(--terracotta);
    color: var(--white);
  }
  .btn-primary:hover {
    background: var(--terracotta-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(196,98,74,0.25);
  }
  .btn-primary:active { transform: translateY(0); }
  .btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--border-strong);
  }
  .btn-outline:hover {
    border-color: var(--charcoal);
    background: rgba(42,41,37,0.04);
  }
  .btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
  }
  .btn-outline-white:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.7);
  }
  .btn-lg { padding: 18px 42px; font-size: 0.92rem; }

  /* ============================
     NAV
     ============================ */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
  }
  .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }
  .nav-logo {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal-mid);
    transition: color var(--transition);
  }
  .nav-links a:hover { color: var(--charcoal); }
  .nav-cta {
    background: var(--terracotta);
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: background var(--transition);
  }
  .nav-cta:hover { background: var(--terracotta-hover); }

  /* ============================
     ANNOUNCEMENT BAR
     ============================ */
  .announcement-bar {
    background: var(--charcoal);
    color: rgba(255,255,255,0.9);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
  }
  .announcement-bar span { color: var(--sage-light); }

    /* ============================
     HERO
     ============================ */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--charcoal);
  }
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/cdn/shop/files/Photorealistic_editorial_product_photography__4K__202605152230.jpg?v=1778904391');
    background-size: cover;
    background-position: center center;
    opacity: 0.95;
    z-index: 0;
  }
  .hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.95;
    z-index: 0;
    display: block;
  }
    background-image: url('/cdn/shop/files/Photorealistic_editorial_product_photography__4K__202605152230.jpg?v=1778904391');
    background-size: cover;
    background-position: center 40%;
    opacity: 0.95;
    z-index: 0;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 15, 0.42);
    z-index: 1;
  }
  .hero .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hero-content {
    max-width: 440px;
  }
  .hero h1 {
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.04;
    color: var(--white);
    margin-bottom: 24px;
  }
  .hero .lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 440px;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .hero-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .hero-proof-stars { color: #D4A017; font-size: 0.9rem; letter-spacing: 1px; }
  .hero-proof-text { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
  .hero-proof-text strong { color: rgba(255,255,255,0.9); font-weight: 600; }
  .btn-outline-hero {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.3) !important;
  }
  .btn-outline-hero:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6) !important;
    color: var(--white);
  }
  @media (max-width: 768px) {
    .hero { min-height: 100svh; }
    .hero-bg {
      opacity: 0.85;
      background-image: url('/cdn/shop/files/Photorealistic_editorial_product_photography__4K__202605160023.jpg?v=1778905451');
      background-position: center center;
      background-attachment: scroll;
    }
    .hero-overlay {
      background: linear-gradient(
        to bottom,
        rgba(26,24,20,0.85) 0%,
        rgba(26,24,20,0.7) 60%,
        rgba(26,24,20,0.5) 100%
      );
    }
    .hero h1 { font-size: 2.6rem; }
  }

          /* ============================
     CERT BADGE BANNER
     ============================ */
  .cert-banner {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .cert-track-wrap { overflow: hidden; }
  .cert-track {
    display: flex;
    align-items: center;
    animation: certscroll 10s linear infinite;
  }
  .cert-track:hover { animation-play-state: paused; }
  .cert-badge-item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 13px 28px;
    white-space: nowrap;
  }
  .cert-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-mid);
    white-space: nowrap;
  }
  .cert-badge-item:hover .cert-label { color: var(--charcoal); }
  .cert-divider {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }
  .cert-divider-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--border-strong);
  }
  @keyframes certscroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

100% { transform: translateX(-50%); }
  }

100% { transform: translateX(-50%); }
  }

100% { transform: translateX(-50%); }
  }

100% { transform: translateX(-50%); }
  }

  /* ============================
     HOW IT WORKS
     ============================ */
  .hiw-header { text-align: center; margin-bottom: 72px; }
  .hiw-header h2 { margin-bottom: 16px; }
  .hiw-header p { max-width: 520px; margin: 0 auto; }
  .hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .hiw-cell {
    background: var(--cream);
    padding: 48px 40px;
    position: relative;
  }
  .hiw-number {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--sage);
    display: block;
    margin-bottom: 24px;
  }
  .hiw-cell h3 { margin-bottom: 12px; }
  .hiw-cell p { font-size: 0.92rem; line-height: 1.65; }

  /* ============================
     PRODUCTS SECTION
     ============================ */
  .products-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .products-header h2 { margin-bottom: 16px; }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
  .product-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    background: var(--white);
    display: flex;
    flex-direction: column;
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(42,41,37,0.1);
  }
  .product-card-body {
    background: var(--white);
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .product-card-body p {
    font-size: 0.87rem;
    margin-bottom: 24px;
    line-height: 1.6;
    flex: 1;
  }
  .product-card-img {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
  }
  .product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .product-card-img.exhale-bg { background: #FFFFFF; }
  .product-card-img.shutdown-bg { background: #FFFFFF; }
  .product-card-img.bundle-bg { background: #FFFFFF; }
  .strip-mockup {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .strip-item {
    width: 130px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
  }
  .strip-item.light {
    background: rgba(255,255,255,0.92);
    color: var(--sage);
    border: 1px solid var(--sage-light);
  }
  .strip-item.dark {
    background: rgba(42,41,37,0.85);
    color: rgba(196,212,198,0.9);
    border: 1px solid rgba(255,255,255,0.12);
  }
  .badge-best {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--terracotta);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
  }
  .product-card-body {
    background: var(--white);
    padding: 28px 32px;
  }
  .product-card-body .eyebrow { margin-bottom: 8px; }
  .product-card-body h3 { margin-bottom: 10px; font-size: 1.3rem; }
  .product-card-body p { font-size: 0.87rem; margin-bottom: 24px; line-height: 1.6; }
  .product-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
  }
  .price-main {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.02em;
  }
  .price-label {
    font-size: 0.8rem;
    color: var(--charcoal-light);
  }
  .price-sub {
    font-size: 0.78rem;
    color: var(--terracotta);
    font-weight: 500;
  }
  .product-card .btn { width: 100%; }

  /* ============================
     PRICING WIDGET
     ============================ */
  .pricing-widget {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
  }
  .pricing-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    transition: background var(--transition);
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .pricing-option:last-child { border-bottom: none; }
  .pricing-option:hover { background: var(--cream-dark); }
  .pricing-option.selected {
    background: var(--terracotta-light);
    border-color: rgba(196,98,74,0.2);
  }
  .pricing-option.selected .po-radio { background: var(--terracotta); border-color: var(--terracotta); }
  .pricing-option.selected .po-radio::after { opacity: 1; }
  .po-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--border-strong);
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition);
  }
  .po-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0;
    transition: opacity var(--transition);
  }
  .po-label {
    flex: 1;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal);
  }
  .po-sublabel {
    font-size: 0.75rem;
    color: var(--charcoal-light);
    font-weight: 400;
  }
  .po-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.01em;
  }
  .po-save {
    background: var(--sage-pale);
    color: var(--sage);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 100px;
  }

  /* ============================
     INGREDIENTS DEEP DIVE
     ============================ */
  .ingredients-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .ingredient-list { margin-top: 40px; }
  .ingredient-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
  }
  .ingredient-item:first-child { border-top: 1px solid var(--border); }
  .ingredient-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .ingredient-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
  }
  .ingredient-dose {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--sage);
    letter-spacing: 0.04em;
  }
  .ingredient-item p { font-size: 0.87rem; line-height: 1.65; }
  .ingredient-visual {
    position: sticky;
    top: 100px;
  }
  .formula-card {
    background: var(--charcoal);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    color: var(--white);
  }
  .formula-card .eyebrow { color: var(--sage-light); }
  .formula-card h3 { color: var(--white); margin-bottom: 8px; font-size: 1.5rem; }
  .formula-card .sub { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 36px; }
  .formula-bar-row {
    margin-bottom: 22px;
  }
  .formula-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .formula-bar-track {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
  }
  .formula-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--sage);
    transition: width 1s ease;
  }
  .formula-bar-fill.muted { background: rgba(196,212,198,0.4); }
  .certifications {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .cert-pill {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
  }

  /* ============================
     SOCIAL PROOF
     ============================ */
  .proof-header { text-align: center; margin-bottom: 56px; }
  .proof-header h2 { margin-bottom: 16px; }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform var(--transition);
  }
  .review-card:hover { transform: translateY(-2px); }
  .review-stars { color: #D4A017; font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
  .review-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--charcoal-mid);
    margin-bottom: 20px;
    font-style: italic;
  }
  .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
  }
  .review-avatar.green { background: var(--sage); }
  .review-avatar.terracotta { background: var(--terracotta); }
  .review-avatar.charcoal { background: var(--charcoal); }
  .review-name {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--charcoal);
  }
  .review-meta {
    font-size: 0.75rem;
    color: var(--charcoal-light);
  }
  .review-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--sage);
    font-weight: 600;
    margin-top: 3px;
  }

  /* ============================
     COMPARISON TABLE
     ============================ */
  .comparison-wrap {
    overflow-x: auto;
  }
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.87rem;
  }
  .comparison-table th {
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    color: var(--charcoal);
    border-bottom: 2px solid var(--border-strong);
    white-space: nowrap;
  }
  .comparison-table th.highlight {
    background: var(--sage-pale);
    color: var(--charcoal);
  }
  .comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    color: var(--charcoal-mid);
    vertical-align: middle;
  }
  .comparison-table td.highlight {
    background: var(--sage-pale);
    color: var(--charcoal);
    font-weight: 500;
  }
  .comparison-table tr:last-child td { border-bottom: none; }
  .check { color: var(--sage); font-weight: 700; font-size: 1rem; }
  .cross { color: rgba(42,41,37,0.25); font-weight: 700; }

  /* ============================
     FAQ
     ============================ */
  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color var(--transition);
    gap: 20px;
    user-select: none;
  }
  .faq-question:hover { color: var(--terracotta); }
  .faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
    color: var(--charcoal-light);
  }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .faq-item.open .faq-answer { max-height: 300px; }
  .faq-answer p {
    padding: 0 0 24px;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* ============================
     GUARANTEE + CTA
     ============================ */
  .guarantee-section {
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
    padding: var(--section-v) 0;
  }
  .guarantee-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(138,158,140,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 1.6rem;
  }
  .guarantee-section h2 { color: var(--white); margin-bottom: 16px; }
  .guarantee-section p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 40px; }
  .guarantee-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .g-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
  }
  .g-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage-light);
    flex-shrink: 0;
  }
  @media (max-width: 600px) {
    .guarantee-badges {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      padding: 0 32px;
    }
  }

  /* ============================
     FOOTER
     ============================ */
  .footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 64px 40px 40px;
  }
  .footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand .nav-logo { color: var(--white); display: block; margin-bottom: 16px; }
  .footer-brand p {
    font-size: 0.83rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.4);
    max-width: 280px;
  }
  .footer-brand .tagline {
    font-size: 0.75rem;
    color: var(--sage-light);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: 12px;
  }
  .footer-col h5 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
  }
  .footer-col a:hover { color: rgba(255,255,255,0.9); }
  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
  }
  .footer-disclaimer {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    margin-top: 24px;
    line-height: 1.6;
    max-width: 700px;
  }

  /* ============================
     RESPONSIVE
     ============================ */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { display: none; }
    .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .ingredients-layout { grid-template-columns: 1fr; gap: 48px; }
    .ingredient-visual { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  @media (max-width: 768px) {
    :root { --section-v: var(--section-v-m); }
    .container { padding: 0 24px; }
    .nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hero { padding: 72px 0 60px; }
    .hiw-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer { padding: 48px 24px 32px; }
    .guarantee-badges { gap: 20px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }

/* ============================
   PRODUCT DETAIL PAGES (PDP)
   ============================ */
.uw-pdp { font-family: 'Inter', sans-serif; background: #F5F0E8; }

/* Gallery */
.uw-pdp-gallery {
  position: sticky; top: 68px;
  height: calc(100vh - 68px);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.uw-pdp-gallery-main {
  flex: 1; display: flex; align-items: center;
  justify-content: center; padding: 40px;
  overflow: hidden;
}
.uw-pdp-gallery-main img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; cursor: zoom-in;
  transition: transform 0.3s ease;
}
.uw-pdp-gallery-thumbs {
  display: flex; gap: 8px; padding: 12px 20px;
  overflow-x: auto; background: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(42,41,37,0.08);
}
.uw-pdp-gallery-thumb {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  transition: border-color 0.2s;
}
.uw-pdp-gallery-thumb.active { border-color: #C4624A; }
.uw-pdp-gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Hero split */
.uw-pdp-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px); align-items: stretch;
}
.uw-pdp-hero-img-col { position: relative; }
.uw-pdp-hero-img {
  display: flex; align-items: center; justify-content: center;
  padding: 60px; height: calc(100vh - 68px);
  position: sticky; top: 68px;
}
.uw-pdp-hero-img img {
  max-width: 100%; max-height: 100%; object-fit: contain;
}
.uw-pdp-hero-img-placeholder {
  width: 260px; height: 260px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 700;
  color: rgba(255,255,255,0.8); letter-spacing: 0.04em;
}
.uw-pdp-hero-content {
  padding: 80px 60px; background: #F5F0E8;
  display: flex; flex-direction: column; justify-content: center;
}
.uw-pdp-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #8A9E8C; display: block; margin-bottom: 12px;
}
.uw-pdp-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700;
  letter-spacing: -0.035em; color: #2A2925;
  line-height: 1.05; margin-bottom: 8px;
}
.uw-pdp-subtitle { font-size: 1rem; color: #7A7770; margin-bottom: 28px; }
.uw-pdp-desc {
  font-size: 1rem; line-height: 1.7; color: #4A4740;
  margin-bottom: 36px; max-width: 440px;
}

/* Pricing widget */
.uw-pdp-pricing {
  background: #FFFFFF; border: 1.5px solid rgba(42,41,37,0.12);
  border-radius: 12px; overflow: hidden; margin-bottom: 20px;
}
.uw-pdp-pricing-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(42,41,37,0.08);
}
.uw-pdp-pricing-opt:last-child { border-bottom: none; }
.uw-pdp-pricing-opt:hover { background: #EDE7D9; }
.uw-pdp-pricing-opt.selected { background: #F0DDD8; }
.uw-pdp-pricing-opt.selected .uw-pdp-radio { background: #C4624A; border-color: #C4624A; }
.uw-pdp-pricing-opt.selected .uw-pdp-radio::after { opacity: 1; }
.uw-pdp-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid rgba(42,41,37,0.25); flex-shrink: 0;
  position: relative; transition: all 0.2s;
}
.uw-pdp-radio::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; opacity: 0; transition: opacity 0.2s;
}
.uw-pdp-opt-label { flex: 1; font-size: 0.9rem; font-weight: 500; color: #2A2925; }
.uw-pdp-opt-sub { font-size: 0.75rem; color: #7A7770; font-weight: 400; }
.uw-pdp-opt-price { font-size: 0.95rem; font-weight: 700; color: #2A2925; }
.uw-pdp-opt-save {
  background: #E8EEE8; color: #8A9E8C; font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 100px;
}
.uw-pdp-opt-price-wrap { display: flex; align-items: center; gap: 8px; }

.uw-pdp-atc {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 17px; background: #5C8A6B; color: #FFFFFF;
  font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; border: none;
  border-radius: 4px; cursor: pointer; margin-bottom: 12px;
  transition: background 0.2s, transform 0.15s;
}
.uw-pdp-atc:hover { background: #4A7359; transform: translateY(-1px); }
.uw-pdp-guarantee {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: #7A7770; font-weight: 500;
  justify-content: center; flex-wrap: wrap;
}
.uw-pdp-guarantee-dot { width: 5px; height: 5px; border-radius: 50%; background: #8A9E8C; flex-shrink: 0; }
.uw-pdp-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.uw-pdp-badge {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
  background: #E8EEE8; color: #8A9E8C;
}

/* Content sections */
.uw-pdp-section { padding: 80px 60px; max-width: 1200px; margin: 0 auto; }
.uw-pdp-section--dark { background: #2A2925; padding: 80px 60px; }
.uw-pdp-section--dark-inner { max-width: 1200px; margin: 0 auto; }
.uw-pdp-section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700;
  letter-spacing: -0.025em; color: #2A2925; margin-bottom: 48px; line-height: 1.15;
}
.uw-pdp-section-title--light {
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700;
  letter-spacing: -0.025em; color: #FFFFFF; margin-bottom: 48px; line-height: 1.15;
}
.uw-pdp-usecases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.uw-pdp-usecase {
  background: #FFFFFF; border: 1px solid rgba(42,41,37,0.1);
  border-radius: 12px; padding: 28px;
}
.uw-pdp-usecase-time {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #8A9E8C; margin-bottom: 12px; display: block;
}
.uw-pdp-usecase h4 { font-size: 1rem; font-weight: 600; color: #2A2925; margin-bottom: 8px; }
.uw-pdp-usecase p { font-size: 0.85rem; line-height: 1.65; color: #4A4740; }
.uw-pdp-ing-list { display: flex; flex-direction: column; }
.uw-pdp-ing-item {
  display: grid; grid-template-columns: 220px 1fr auto;
  gap: 24px; align-items: start;
  padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.uw-pdp-ing-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.uw-pdp-ing-name { font-size: 0.95rem; font-weight: 600; color: #FFFFFF; }
.uw-pdp-ing-role { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #C4D4C6; margin-top: 4px; }
.uw-pdp-ing-body { font-size: 0.87rem; line-height: 1.65; color: rgba(255,255,255,0.55); }
.uw-pdp-ing-dose { font-size: 0.88rem; font-weight: 700; color: #8A9E8C; white-space: nowrap; padding-top: 4px; }
.uw-pdp-supfacts {
  background: #FFFFFF; border: 1px solid rgba(42,41,37,0.1);
  border-radius: 12px; padding: 32px; max-width: 460px;
}
.uw-pdp-supfacts h4 {
  font-size: 1.1rem; font-weight: 700; color: #2A2925;
  border-bottom: 3px solid #2A2925; padding-bottom: 8px; margin-bottom: 16px;
}
.uw-pdp-supfacts-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid rgba(42,41,37,0.08);
  font-size: 0.85rem; color: #2A2925;
}
.uw-pdp-supfacts-row:last-child { border-bottom: none; }
.uw-pdp-supfacts-name { font-weight: 500; }
.uw-pdp-supfacts-amount { font-weight: 600; color: #8A9E8C; }
.uw-pdp-supfacts-serving { font-size: 0.78rem; color: #7A7770; margin-bottom: 16px; }
.uw-pdp-other-ing {
  font-size: 0.75rem; color: #7A7770; line-height: 1.6;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(42,41,37,0.08);
}
.uw-pdp-faq-list { max-width: 700px; }
.uw-pdp-faq-item { border-bottom: 1px solid rgba(42,41,37,0.1); }
.uw-pdp-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; font-size: 0.95rem;
  font-weight: 500; color: #2A2925; gap: 16px;
  background: none; border: none; width: 100%; text-align: left;
  font-family: 'Inter', sans-serif; transition: color 0.2s;
}
.uw-pdp-faq-q:hover { color: #C4624A; }
.uw-pdp-faq-item.open .uw-pdp-faq-chevron { transform: rotate(180deg); }
.uw-pdp-faq-chevron { flex-shrink: 0; width: 18px; height: 18px; transition: transform 0.25s; color: #7A7770; }
.uw-pdp-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.uw-pdp-faq-item.open .uw-pdp-faq-a { max-height: 300px; }
.uw-pdp-faq-a p { padding: 0 0 20px; font-size: 0.88rem; line-height: 1.7; color: #4A4740; }

/* Responsive PDP */
@media (max-width: 900px) {
  .uw-pdp-hero { grid-template-columns: 1fr; min-height: auto; }
  .uw-pdp-hero-img { position: relative; top: 0; height: 400px; }
  .uw-pdp-hero-content { padding: 48px 24px; }
  .uw-pdp-usecases { grid-template-columns: 1fr; }
  .uw-pdp-ing-item { grid-template-columns: 1fr; gap: 8px; }
  .uw-pdp-section { padding: 60px 24px; }
  .uw-pdp-section--dark { padding: 60px 24px; }
}

/* ============================
   POLICY PAGES
   ============================ */
.uw-policy-page { font-family: 'Inter', sans-serif; background: #F5F0E8; }
.uw-policy-hero { background: #2A2925; padding: 80px 40px 72px; text-align: center; }
.uw-policy-hero-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #C4D4C6; display: block; margin-bottom: 16px; }
.uw-policy-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.03em; color: #FFFFFF; margin-bottom: 16px; }
.uw-policy-hero p { color: rgba(255,255,255,0.5); font-size: 0.95rem; line-height: 1.65; }
.uw-policy-body { max-width: 860px; margin: 0 auto; padding: 72px 40px; }
.uw-policy-body h2 { font-size: 1.3rem; font-weight: 600; color: #2A2925; margin: 48px 0 16px; letter-spacing: -0.01em; }
.uw-policy-body h2:first-child { margin-top: 0; }
.uw-policy-body p { font-size: 0.92rem; line-height: 1.75; color: #4A4740; margin-bottom: 16px; }
.uw-policy-body ul { padding-left: 20px; margin-bottom: 16px; }
.uw-policy-body li { font-size: 0.92rem; line-height: 1.75; color: #4A4740; margin-bottom: 8px; }
.uw-policy-divider { height: 1px; background: rgba(42,41,37,0.1); margin: 40px 0; }
.uw-policy-shipping-img { width: 100%; border-radius: 12px; margin: 24px 0; border: 1px solid rgba(42,41,37,0.1); }
.uw-policy-highlight { background: #E8EEE8; border-radius: 10px; padding: 20px 24px; margin: 24px 0; font-size: 0.9rem; color: #2A2925; font-weight: 500; line-height: 1.6; }
@media(max-width:768px) { .uw-policy-body { padding: 48px 24px; } .uw-policy-hero { padding: 60px 24px; } }


/* ── APPSTLE — hide native widget, use custom pricing UI ── */
.appstle_root,
.appstle-widget,
[class*="appstle_sub_widget"] {
  display: none !important;
}


/* ── MANAGE SUBSCRIPTION FOOTER LINK ── */
.footer-manage-sub-link {
  color: #8A9E8C !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-manage-sub-link:hover {
  color: #C4D4C6 !important;
}
