:root {
    --ink: #163638;
    --muted: #607477;
    --line: #d9e7e7;
    --surface: #ffffff;
    --surface-soft: #f4f9f8;
    --surface-blue: #edf6fa;
    --teal: #0f5c5d;
    --teal-dark: #0b4145;
    --coral: #e96d5c;
    --coral-soft: #fff1ee;
    --shadow: 0 18px 50px rgba(18, 63, 66, .08);
    --radius: 22px;
    --radius-small: 12px;
    --container: 1180px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 14px; background: var(--teal-dark); color: white; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(217,231,231,.9); backdrop-filter: blur(14px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.05rem; font-weight: 780; letter-spacing: -.02em; }
.brand-mark { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: white; background: var(--teal); font-size: 1rem; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { padding: 9px 12px; border-radius: 999px; color: var(--muted); font-size: .94rem; font-weight: 650; transition: color .2s ease, background .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.is-active { color: var(--teal-dark); background: var(--surface-soft); }
.site-nav .cart-link { display: inline-flex; align-items: center; gap: 7px; margin-left: 8px; color: var(--teal-dark); background: var(--surface-blue); }
.cart-count { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding-inline: 5px; border-radius: 999px; color: white; background: var(--coral); font-size: .78rem; line-height: 1; }
.menu-toggle { display: none; border: 0; padding: 8px; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); }

.eyebrow { margin: 0 0 12px; color: var(--teal); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.55rem, 5vw, 5.2rem); max-width: 760px; }
h2 { font-size: clamp(2rem, 3.2vw, 3.35rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.06rem; }
p { margin: 0 0 1rem; }
.lead { max-width: 660px; color: var(--muted); font-size: clamp(1.04rem, 1.5vw, 1.22rem); line-height: 1.7; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.text-link { color: var(--teal); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.text-link:hover { color: var(--teal-dark); }
.section { padding: 96px 0; }
.section-tight { padding: 60px 0; }
.section-soft { background: var(--surface-soft); }
.section-blue { background: var(--surface-blue); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 36px; }
.section-head > div:first-child { max-width: 700px; }
.section-head p { color: var(--muted); }

.hero { padding: 76px 0 86px; background: linear-gradient(135deg, #f3fbfa 0%, #fff 58%, #fff4f1 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: center; gap: clamp(40px, 8vw, 120px); }
.hero-copy h1 { margin-bottom: 24px; }
.hero-copy .lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 20px; color: var(--muted); font-size: .9rem; }
.hero-note::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--coral); }
.hero-visual { position: relative; min-height: 430px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; inset: 12% 4% 7%; border-radius: 48% 52% 45% 55%; background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.98), rgba(215,239,239,.74) 55%, rgba(233,109,92,.14)); }
.hero-product { position: relative; z-index: 1; width: min(100%, 520px); filter: drop-shadow(0 28px 30px rgba(19,55,59,.18)); transform: rotate(-3deg); }
.hero-pill { position: absolute; z-index: 2; right: 4%; bottom: 12%; display: grid; gap: 3px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); }
.hero-pill strong { font-size: 1.25rem; }
.hero-pill span { color: var(--muted); font-size: .82rem; }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 11px 19px; border: 1px solid var(--teal); border-radius: 999px; color: white; background: var(--teal); font-weight: 800; text-align: center; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover, .button:focus-visible { color: white; background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); }
.button-secondary { color: var(--teal-dark); background: white; border-color: var(--line); }
.button-secondary:hover, .button-secondary:focus-visible { color: var(--teal-dark); background: var(--surface-soft); border-color: var(--teal); }
.button-quiet { color: var(--teal-dark); background: transparent; border-color: var(--line); }
.button-quiet:hover, .button-quiet:focus-visible { color: var(--teal-dark); background: var(--surface-soft); border-color: var(--teal); }
.button-small { min-height: 38px; padding: 7px 13px; font-size: .88rem; }
.button-full { width: 100%; }
.button[disabled] { cursor: not-allowed; opacity: .5; transform: none; }

.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.intro-copy h2 { margin-bottom: 20px; }
.intro-copy p { color: var(--muted); }
.ingredient-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.ingredient-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-small); background: white; }
.ingredient-visual { display: block; width: 100%; height: 170px; object-fit: cover; object-position: center; background: #eaf4f4; }
.ingredient-card-body { padding: 16px; }
.ingredient-card h3 { font-size: 1rem; margin-bottom: 7px; }
.ingredient-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }

.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.philosophy-card { min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 10px 35px rgba(18,63,66,.04); }
.philosophy-card span { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 22px; border-radius: 50%; color: var(--teal); background: var(--surface-blue); font-weight: 850; }
.philosophy-card h3 { margin-bottom: 10px; }
.philosophy-card p { color: var(--muted); }

.routine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.routine-media { overflow: hidden; min-height: 460px; border-radius: 30px; background: #e8f4f7 url('../images/lifestyle-routine.png') center / cover no-repeat; }
.routine-copy h2 { margin-bottom: 16px; }
.steps { display: grid; gap: 18px; margin-top: 30px; }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.step-number { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--teal); border-radius: 50%; color: var(--teal); font-weight: 800; }
.step h3 { margin-bottom: 4px; font-size: 1.05rem; }
.step p { color: var(--muted); }

.form-card, .summary-card, .content-card, .product-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 10px 35px rgba(18,63,66,.04); }

.three-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.link-card { display: flex; flex-direction: column; min-height: 255px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .2s ease, box-shadow .2s ease; }
.link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.link-card .card-kicker { color: var(--coral); font-size: .75rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.link-card h3 { margin: 22px 0 10px; }
.link-card p { color: var(--muted); }
.link-card .arrow { margin-top: auto; color: var(--teal); font-weight: 800; }
.science-teaser { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 36px; border-radius: var(--radius); background: var(--teal-dark); color: white; }
.science-teaser h2, .science-teaser p { color: white; }
.science-teaser p { max-width: 720px; opacity: .82; }
.science-teaser .button { color: var(--teal-dark); background: white; border-color: white; }

.newsletter { display: grid; grid-template-columns: 1fr .9fr; gap: 48px; align-items: center; padding: clamp(30px, 5vw, 54px); border-radius: var(--radius); background: linear-gradient(135deg, #f0f8f7, #eef7fb); }
.newsletter-copy { max-width: 570px; }
.newsletter-copy h2 { margin-bottom: 12px; }
.newsletter-copy p { color: var(--muted); }
.newsletter-form { padding: 24px; border: 1px solid rgba(15,92,93,.14); border-radius: 18px; background: rgba(255,255,255,.86); box-shadow: 0 18px 45px rgba(18,63,66,.08); }
.newsletter-form-title { margin-bottom: 14px; color: var(--teal-dark); font-weight: 800; }
.newsletter-form .inline-form { display: flex; gap: 10px; align-items: stretch; flex-wrap: nowrap; }
.newsletter-form .inline-form input { flex: 1 1 auto; min-width: 0; min-height: 48px; padding: 11px 18px; border: 1px solid var(--teal); border-radius: 999px; color: var(--ink); background: white; outline: none; }
.newsletter-form .inline-form input::placeholder { color: var(--muted); opacity: 1; }
.newsletter-form .inline-form input:focus { border-color: var(--teal-dark); box-shadow: 0 0 0 3px rgba(15,92,93,.12); }
.newsletter-form .inline-form .button { flex: 0 0 auto; min-height: 48px; white-space: nowrap; }
.consent-line { display: flex; gap: 8px; align-items: flex-start; margin-top: 10px; color: var(--muted); font-size: .84rem; line-height: 1.45; }
.consent-line input { margin-top: 4px; accent-color: var(--teal); }

.order-cta { display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: 32px; border: 1px solid #f3c4bb; border-radius: var(--radius); background: var(--coral-soft); }
.order-cta h2 { font-size: 1.8rem; }
.price { color: var(--teal-dark); font-size: clamp(1.65rem, 3vw, 2.3rem); font-weight: 850; letter-spacing: -.04em; }

.page-hero { padding: 76px 0 56px; background: var(--surface-soft); }
.page-hero h1 { max-width: 850px; font-size: clamp(2.7rem, 5vw, 4.7rem); }
.page-hero .lead { margin-top: 18px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: var(--muted); font-size: .9rem; }
.breadcrumbs a { color: var(--teal); font-weight: 700; }

.product-layout { display: grid; grid-template-columns: minmax(320px, .95fr) minmax(360px, 1.05fr); gap: clamp(36px, 7vw, 94px); align-items: start; }
.gallery { position: sticky; top: 112px; }
.gallery-main { position: relative; display: grid; place-items: center; min-height: 540px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, #f3fbfa, #fff5f2); }
.gallery-main img { width: min(100%, 520px); filter: drop-shadow(0 22px 26px rgba(19,55,59,.13)); }
.gallery-expand { position: absolute; top: 18px; right: 18px; }
.gallery-arrow { position: absolute; top: 50%; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--teal); background: rgba(255,255,255,.9); font-size: 1.55rem; transform: translateY(-50%); }
.gallery-arrow-left { left: 16px; }
.gallery-arrow-right { right: 16px; }
.gallery-arrow[disabled] { cursor: not-allowed; opacity: .42; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gallery-thumb { width: 80px; height: 80px; padding: 5px; border: 1px solid var(--teal); border-radius: 12px; background: white; }
.product-copy h1 { margin-bottom: 14px; }
.product-copy .lead { margin-bottom: 22px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip { display: inline-flex; align-items: center; min-height: 30px; padding: 4px 10px; border-radius: 999px; color: var(--teal-dark); background: var(--surface-blue); font-size: .84rem; font-weight: 750; }
.product-price { margin: 10px 0 20px; }
.package-option { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px; border: 1px solid var(--teal); border-radius: var(--radius-small); background: #fbfefe; }
.package-option label { display: flex; align-items: flex-start; gap: 10px; font-weight: 750; }
.package-option input { margin-top: 5px; accent-color: var(--teal); }
.package-option small { display: block; color: var(--muted); font-weight: 500; }
.buy-row { display: flex; gap: 12px; align-items: center; margin-top: 18px; }
.info-accordions { display: grid; gap: 12px; margin-top: 28px; }
.accordion { border: 1px solid var(--line); border-radius: var(--radius-small); background: white; }
.accordion summary { display: flex; justify-content: space-between; gap: 20px; padding: 18px 20px; cursor: pointer; font-weight: 800; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; color: var(--teal); font-size: 1.4rem; line-height: 1; }
.accordion[open] summary::after { content: "−"; }
.accordion-content { padding: 0 20px 20px; color: var(--muted); }
.ingredient-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 0; list-style: none; }
.ingredient-list li { padding: 13px 14px; border-radius: 10px; background: var(--surface-soft); }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 52px; align-items: start; }
.article-content { max-width: 780px; }
.article-image { margin: 0 0 30px; overflow: hidden; border-radius: var(--radius); background: var(--surface-blue); }
.article-image img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.article-image figcaption { padding: 10px 14px; color: var(--muted); font-size: .84rem; }
.article-content h2 { margin: 42px 0 16px; font-size: clamp(1.6rem, 2.4vw, 2.25rem); }
.article-content h3 { margin: 30px 0 10px; }
.article-content p, .article-content li { color: #3f585a; }
.article-content ul, .article-content ol { padding-left: 24px; }
.article-content li + li { margin-top: 8px; }
.article-lead { margin-bottom: 30px; padding: 24px; border-left: 4px solid var(--coral); border-radius: 0 14px 14px 0; background: var(--coral-soft); color: var(--teal-dark); font-size: 1.16rem; }
.sticky-product { position: sticky; top: 110px; }
.sticky-product img { width: 100%; max-height: 280px; object-fit: contain; margin-bottom: 18px; }
.sticky-product h2 { font-size: 1.55rem; margin-bottom: 10px; }
.sticky-product p { color: var(--muted); }
.source-list { display: grid; gap: 10px; padding: 0; list-style: none; }
.source-list a { display: block; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; color: var(--teal); font-weight: 700; background: var(--surface-soft); }
.advertorial-label { display: inline-flex; margin-bottom: 18px; padding: 7px 12px; border-radius: 999px; color: var(--teal-dark); background: #e3f0ee; font-size: .85rem; font-weight: 800; }

.science-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.science-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.science-card h3 { margin-bottom: 10px; }
.science-card p { color: var(--muted); }
.science-card .ingredient-visual { width: calc(100% + 52px); height: 210px; margin: -26px -26px 22px; border-radius: var(--radius) var(--radius) 0 0; }
.notice { padding: 18px 20px; border: 1px solid #f3c4bb; border-radius: var(--radius-small); background: var(--coral-soft); color: #6c4039; }

.form-layout { display: grid; grid-template-columns: 1fr .7fr; gap: 32px; align-items: start; }
.form-card h2, .summary-card h2 { margin-bottom: 10px; font-size: 1.7rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #bdd2d2; border-radius: 10px; padding: 12px 13px; color: var(--ink); background: white; outline: none; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15,92,93,.12); }
.field-error { min-height: 1.3em; color: #a7483d; font-size: .84rem; }
.form-status { min-height: 1.5em; margin-top: 14px; color: var(--teal); font-weight: 700; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-details { display: grid; gap: 14px; }
.detail-row { padding: 15px 16px; border-radius: 12px; background: var(--surface-soft); }
.detail-row strong { display: block; margin-bottom: 2px; }
.detail-row span { color: var(--muted); }

.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.cart-line { display: grid; grid-template-columns: 92px 1fr auto; gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-line:first-child { padding-top: 0; }
.cart-line img { width: 92px; height: 92px; object-fit: contain; border-radius: 12px; background: var(--surface-soft); }
.cart-line h3 { font-size: 1.1rem; margin-bottom: 5px; }
.cart-line p { margin: 0; color: var(--muted); font-size: .9rem; }
.quantity-control { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.quantity-control button { width: 32px; height: 32px; border: 0; color: var(--teal); background: white; }
.quantity-control input { width: 38px; padding: 0; border: 0; color: var(--ink); background: white; text-align: center; }
.line-total { color: var(--teal-dark); font-weight: 800; white-space: nowrap; }
.remove-link { display: inline-block; margin-top: 7px; color: #9d4d42; font-size: .86rem; text-decoration: underline; }
.summary-card { position: sticky; top: 110px; }
.summary-list { display: grid; gap: 10px; margin: 22px 0; padding: 0; list-style: none; }
.summary-row { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); }
.summary-row.total { padding-top: 14px; border-top: 1px solid var(--line); color: var(--ink); font-size: 1.2rem; font-weight: 850; }
.cart-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.empty-cart { padding: 42px 20px; border: 1px dashed #aacaca; border-radius: var(--radius); color: var(--muted); text-align: center; }
.empty-state { color: var(--muted); }

.checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.checkout-disclaimer { margin-top: 18px; color: var(--muted); font-size: .88rem; }
.order-summary-lines { display: grid; gap: 13px; margin: 22px 0; }
.order-summary-line { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); }
.order-summary-line strong { color: var(--ink); }
.success-panel { max-width: 760px; margin: 40px auto 100px; padding: 50px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-soft); text-align: center; }
.success-icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; color: white; background: var(--teal); font-size: 1.8rem; }
.success-panel h1 { margin-bottom: 16px; font-size: clamp(2.2rem, 4vw, 3.7rem); }
.success-panel p { color: var(--muted); }
.order-receipt { display: grid; gap: 10px; margin: 26px auto; padding: 20px; border-radius: var(--radius-small); background: white; text-align: left; }
.order-receipt-row { display: flex; justify-content: space-between; gap: 20px; }

.legal-content { max-width: 860px; }
.legal-content h2 { margin: 38px 0 14px; font-size: 1.8rem; }
.legal-content p, .legal-content li { color: #3f585a; }
.legal-content ul { padding-left: 22px; }
.legal-content .notice { margin: 24px 0; }
.settings-card { max-width: 720px; }
.preference-row { display: flex; align-items: start; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.preference-row input { margin-top: 5px; accent-color: var(--teal); }

.site-footer { padding: 66px 0 24px; border-top: 1px solid var(--line); background: #f4f8f7; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 42px; }
.footer-brand { margin-bottom: 14px; }
.footer-note { max-width: 310px; color: var(--muted); }
.footer-title { margin-bottom: 10px; color: var(--ink); font-weight: 850; }
.footer-grid a:not(.brand) { display: block; width: fit-content; margin: 7px 0; color: var(--muted); font-size: .92rem; }
.footer-grid a:not(.brand):hover { color: var(--teal); }
.disclaimer { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); }
.disclaimer p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 22px; color: var(--muted); font-size: .8rem; }

.cookie-banner { position: fixed; right: 20px; bottom: 20px; z-index: 70; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; width: min(760px, calc(100% - 40px)); padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.97); box-shadow: 0 24px 70px rgba(18,63,66,.18); }
.cookie-banner[hidden] { display: none; }
.cookie-title { margin-bottom: 4px; font-weight: 850; }
.cookie-banner p:not(.cookie-title) { margin: 0; color: var(--muted); font-size: .87rem; }
.cookie-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; align-items: center; }
.cookie-actions .text-link { font-size: .84rem; white-space: nowrap; }

.cart-drawer { position: fixed; top: 0; right: 0; z-index: 80; display: flex; flex-direction: column; width: min(430px, 100%); height: 100%; padding: 24px; background: white; box-shadow: -24px 0 70px rgba(18,63,66,.18); transform: translateX(110%); transition: transform .25s ease; }
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-head, .drawer-total { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.cart-drawer-head { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.cart-drawer-head h2 { font-size: 1.6rem; }
.icon-button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--teal); background: white; font-size: 1.35rem; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 22px 0; }
.drawer-line { display: grid; grid-template-columns: 72px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.drawer-line img { border-radius: 10px; background: var(--surface-soft); }
.drawer-line strong, .drawer-line span { display: block; }
.drawer-line span { color: var(--muted); font-size: .84rem; }
.drawer-total { padding-top: 18px; font-size: 1.1rem; }
.cart-drawer-foot { display: grid; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line); }
.drawer-scrim { position: fixed; inset: 0; z-index: 75; display: none; background: rgba(8,37,39,.35); }
.drawer-scrim.is-visible { display: block; }
.toast-region { position: fixed; right: 20px; bottom: 20px; z-index: 100; display: grid; gap: 8px; width: min(360px, calc(100% - 40px)); }
.toast { padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; color: var(--teal-dark); background: white; box-shadow: var(--shadow); font-size: .9rem; }
.toast.is-error { color: #8f4239; border-color: #efc7c0; background: #fff7f5; }
.image-modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 30px; background: rgba(8,37,39,.72); }
.image-modal[hidden] { display: none; }
.image-modal img { width: min(850px, 94vw); max-height: 90vh; object-fit: contain; border-radius: 16px; background: white; }
.image-modal .icon-button { position: absolute; top: 20px; right: 20px; }

@media (max-width: 980px) {
    .hero-grid, .intro-grid, .routine-grid, .form-layout, .article-layout, .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .hero { padding-top: 48px; }
    .hero-visual { min-height: 340px; order: -1; }
    .hero-product { width: min(86%, 440px); }
    .gallery { position: static; }
    .summary-card, .sticky-product { position: static; }
    .article-layout { gap: 28px; }
    .sticky-product { display: grid; grid-template-columns: 160px 1fr; gap: 20px; align-items: center; }
    .sticky-product img { grid-row: span 3; max-height: 220px; margin: 0; }
}

@media (max-width: 760px) {
    .container { width: min(var(--container), calc(100% - 28px)); }
    .nav-wrap { min-height: 68px; }
    .menu-toggle { display: block; }
    .site-nav { position: absolute; left: 14px; right: 14px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); }
    .site-nav.is-open { display: flex; }
    .site-nav a { border-radius: 10px; }
    .site-nav .cart-link { margin-left: 0; justify-content: space-between; }
    .section { padding: 68px 0; }
    .section-head { display: block; margin-bottom: 26px; }
    .section-head .button { margin-top: 12px; }
    .ingredient-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ingredient-card:last-child { grid-column: 1 / -1; }
    .philosophy-grid, .three-cards, .science-grid { grid-template-columns: 1fr; }
    .routine-media { min-height: 300px; }
    .newsletter, .science-teaser, .order-cta { grid-template-columns: 1fr; display: grid; padding: 26px; }
    .order-cta .button { width: 100%; }
    .newsletter-form .inline-form { display: grid; gap: 10px; }
    .newsletter-form .inline-form .button { width: 100%; }
    .page-hero { padding: 52px 0 38px; }
    .gallery-main { min-height: 360px; }
    .product-layout { grid-template-columns: 1fr; }
    .buy-row { display: grid; grid-template-columns: 1fr; }
    .ingredient-list { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .field-full { grid-column: auto; }
    .cart-line { grid-template-columns: 72px 1fr; }
    .cart-line img { width: 72px; height: 72px; }
    .cart-line > :last-child { grid-column: 2; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-grid > :first-child { grid-column: 1 / -1; }
    .footer-bottom { display: grid; gap: 6px; }
    .cookie-banner { right: 14px; bottom: 14px; grid-template-columns: 1fr; width: calc(100% - 28px); }
    .cookie-actions { justify-content: flex-start; }
    .sticky-product { grid-template-columns: 110px 1fr; }
    .sticky-product img { max-height: 150px; }
}

@media (max-width: 430px) {
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2rem; }
    .hero-visual { min-height: 260px; }
    .hero-pill { right: 0; bottom: 3%; padding: 10px 12px; }
    .hero-pill strong { font-size: 1rem; }
    .hero-pill span { font-size: .74rem; }
    .ingredient-card-body { padding: 13px; }
    .ingredient-visual { height: 138px; }
    .form-card, .summary-card, .content-card, .product-card { padding: 22px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > :first-child { grid-column: auto; }
    .sticky-product { grid-template-columns: 1fr; }
    .sticky-product img { max-height: 210px; }
    .success-panel { margin-top: 24px; padding: 28px 20px; }
}


/* Centar Ravnoteže — contemporary premium / quiet depth */
:root{--ink:#302d35;--muted:#706b75;--line:#ddd5df;--surface:#fcfafc;--surface-soft:#f3eef4;--surface-blue:#eeeaf2;--teal:#5b3a5c;--teal-dark:#3e263f;--coral:#b06a55;--coral-soft:#f6eae5;--shadow:0 26px 70px rgba(59,39,62,.13);--radius:18px;--radius-small:10px;--container:1260px;--font:"Lucida Sans Unicode","Lucida Grande",Arial,sans-serif}
body{background:#fcfafc;color:#302d35;font-family:"Lucida Sans Unicode","Lucida Grande",Arial,sans-serif}.container{width:min(var(--container),calc(100% - 60px))}h1,h2,h3,h4{font-family:Georgia,"Times New Roman",serif;font-weight:600;letter-spacing:-.035em}.eyebrow{color:#8b5d78;letter-spacing:.16em}.site-header{background:rgba(252,250,252,.94);border-bottom:0;box-shadow:0 8px 34px rgba(48,45,53,.06)}.nav-wrap{min-height:94px}.brand-logo{width:235px}.site-nav{gap:8px}.site-nav a{border-radius:10px;padding:10px 13px;color:#6f6871}.site-nav a:hover,.site-nav a:focus-visible,.site-nav a.is-active{background:#eee7f0;color:#3e263f}.site-nav .cart-link{background:#3e263f;color:#fff}.cart-count{background:#b98971}.hero{padding:78px 0 92px;background:linear-gradient(125deg,#f5eff5 0 48%,#ede5ef 48% 100%)}.hero-grid{grid-template-columns:minmax(390px,.92fr) minmax(0,1.08fr);align-items:stretch;gap:66px}.hero-copy{order:2;display:flex;flex-direction:column;justify-content:center;padding:36px 0}.hero-copy h1{font-size:clamp(3.15rem,5.4vw,5.8rem);line-height:1.01;max-width:820px}.hero-copy .lead{max-width:720px}.hero-visual{order:1;position:relative;align-self:stretch;min-height:0;height:auto;overflow:hidden;border-radius:18px;background:#fff;box-shadow:0 30px 80px rgba(67,43,69,.17)}.hero-visual::before{inset:0;border-radius:0;background:linear-gradient(155deg,#fff 0 42%,#e7dfe9 42% 100%)}.hero-product{position:absolute;inset:20px;width:calc(100% - 40px);height:calc(100% - 40px);object-fit:contain;transform:none;filter:drop-shadow(0 24px 28px rgba(67,43,69,.20))}.hero-pill{left:20px;right:auto;bottom:20px;border:0;border-radius:10px;background:#3e263f;color:#fff;box-shadow:0 14px 32px rgba(62,38,63,.22)}.hero-pill span{color:#e7dce8}.button{border-radius:10px;background:#4d304e;border-color:#4d304e;box-shadow:0 10px 24px rgba(77,48,78,.16)}.button:hover,.button:focus-visible{background:#302d35;border-color:#302d35;transform:translateY(-2px)}.button-secondary{background:#fff;color:#4d304e;border-color:#cfc4d1;box-shadow:none}.hero-note::before{background:#b06a55}
.section{padding:100px 0}.section-soft{background:#f3eef4}.section-blue{background:#f0edf2}.intro-grid{grid-template-columns:.72fr 1.28fr;gap:82px}.ingredient-grid{grid-template-columns:repeat(10,1fr);gap:18px}.ingredient-card{grid-column:span 2;border:0;border-radius:16px;box-shadow:0 16px 36px rgba(61,45,62,.09)}.ingredient-card:nth-child(1),.ingredient-card:nth-child(2){grid-column:span 5}.ingredient-card:nth-child(n+3){grid-column:span 3}.ingredient-card:nth-child(5){grid-column:4/span 4}.ingredient-visual{height:210px}.philosophy-grid{grid-template-columns:repeat(2,1fr);gap:24px}.philosophy-card{border:0;border-radius:18px;background:#fff;box-shadow:0 18px 42px rgba(61,45,62,.08)}.philosophy-card span{border-radius:10px;background:#eee7f0;color:#5b3a5c}.routine-grid{grid-template-columns:.82fr 1.18fr;gap:76px}.routine-media{border-radius:18px;min-height:570px;box-shadow:0 28px 65px rgba(61,45,62,.12)}.step-number{border-radius:10px;background:#f3eef4}.link-card,.form-card,.summary-card,.content-card,.product-card,.science-card,.newsletter,.accordion,.article-image,.notice,.detail-row,.success-panel,.gallery-main{border-radius:16px}.link-card{border:0;box-shadow:0 18px 45px rgba(61,45,62,.08)}.link-card:hover{transform:translateY(-5px);box-shadow:0 25px 58px rgba(61,45,62,.13)}.science-teaser{border-radius:18px;background:#3e263f;box-shadow:0 24px 58px rgba(62,38,63,.18)}.newsletter{border-radius:18px;background:#f3eef4;border:1px solid #ded4df}.newsletter-form{border:0;border-radius:14px;box-shadow:0 14px 34px rgba(61,45,62,.09)}.newsletter-form .inline-form input{border-radius:10px}.order-cta{border-radius:18px;border:0;background:#f6eae5;box-shadow:0 20px 45px rgba(86,51,55,.08)}.page-hero{background:#f3eef4}.gallery-main{background:linear-gradient(145deg,#fff,#eee7f0);box-shadow:0 22px 55px rgba(61,45,62,.11)}.gallery-arrow{border-radius:10px}.gallery-thumb{border-radius:10px}.chip,.advertorial-label{border-radius:8px;background:#eee7f0;color:#5b3a5c}.field input,.field textarea,.field select{border-radius:10px;border-color:#d1c6d2}.field input:focus,.field textarea:focus,.field select:focus{border-color:#5b3a5c;box-shadow:0 0 0 3px rgba(91,58,92,.11)}.site-footer{background:#302d35;color:#fff;border-top:0}.footer-logo{width:235px}.footer-note,.footer-grid a:not(.brand),.disclaimer p,.footer-bottom{color:#cfc8d0}.footer-bottom{border-top-color:#4b4750}
@media(max-width:1080px){.ingredient-grid{grid-template-columns:repeat(2,1fr)}.ingredient-card,.ingredient-card:nth-child(1),.ingredient-card:nth-child(2),.ingredient-card:nth-child(n+3),.ingredient-card:nth-child(5){grid-column:auto}.hero-grid{grid-template-columns:1fr 1fr;gap:38px}}
@media(max-width:760px){.container{width:min(var(--container),calc(100% - 28px))}.hero{padding:48px 0}.hero-grid{grid-template-columns:1fr}.hero-copy{order:1;padding:10px 0}.hero-visual{order:2;min-height:400px}.hero-product{position:absolute}.ingredient-grid{grid-template-columns:1fr}.routine-grid{grid-template-columns:1fr}.routine-media{min-height:360px}}


/* Shared implementation detail: first-screen image panel stretches to the exact desktop grid-row height set by the text. */
.brand-logo,.footer-logo{display:block;max-width:100%;height:auto}.product-name-heading{margin:0 0 14px;font-size:clamp(2rem,3vw,3rem)}
@media (prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important}}

@media(max-width:760px){.variant-04 .philosophy-grid{grid-template-columns:1fr}}

/* Header logo scale refinement */
.brand-logo{width:285px;max-height:54px;object-fit:contain;object-position:left center}
@media(max-width:430px){.brand-logo{width:225px;max-height:46px}}
