/* ==========================================================================
   Memocept official store - Orchid Bloom
   Archetype: pastel modern wellness. BEM-lite blocks, 4 space indent.
   Property order: layout, box, typography, colour, effects.
   ========================================================================== */

:root {
    --paper: #fdf6f4;
    --paper-tint: #f7edf6;
    --peach: #ffeade;
    --card: #ffffff;
    --ink: #2e1b3b;
    --ink-soft: #5f4a6c;
    --line: #ecdcea;
    --orchid: #9a63c4;
    --orchid-deep: #6f3a97;
    --orchid-wash: #f3e9fa;
    --coral: #ef6240;
    --coral-deep: #d84c2a;
    --mint: #0f9a84;
    --star: #f2a93b;
    --shadow-soft: 0 10px 30px rgba(80, 40, 100, .08);
    --shadow-lift: 0 16px 44px rgba(80, 40, 100, .14);
    --r-card: 22px;
    --r-pill: 999px;
    --wrap: 1140px;
}

/* ---------- reset and base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Signika", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

h1, h2, h3 {
    margin: 0 0 .6em;
    font-family: "Yeseva One", Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.005em;
}

h1 { font-size: clamp(1.9rem, 4.4vw, 2.85rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.05rem); }
h3 { font-size: 1.16rem; }

p { margin: 0 0 1.05em; }

a { color: var(--orchid-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--coral-deep); }

table { border-collapse: collapse; width: 100%; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }

sup { font-size: .5em; top: -.8em; }

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 2px;
}

.skip {
    position: absolute;
    left: -9999px;
    padding: .7em 1.2em;
    background: var(--ink);
    color: #fff;
    border-radius: 0 0 12px 0;
}

.skip:focus { left: 0; top: 0; z-index: 99; }

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 22px;
}

.narrow { max-width: 800px; }

.lede { font-size: 1.1rem; color: var(--ink-soft); }

.fine { font-size: .85rem; line-height: 1.65; color: var(--ink-soft); }

.more { font-weight: 600; }

/* ---------- announcement and header ---------- */

.bar {
    padding: .55em 22px;
    background: linear-gradient(90deg, var(--orchid-deep), var(--orchid));
    color: #fff;
    font-size: .88rem;
    text-align: center;
}

.top {
    position: relative;
    background: rgba(253, 246, 244, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.top__in {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 74px;
}

.mark {
    display: inline-flex;
    align-items: center;
    gap: .45em;
    font-family: "Yeseva One", Georgia, serif;
    font-size: 1.4rem;
    color: var(--ink);
    text-decoration: none;
}

.mark__dot {
    width: 15px;
    height: 15px;
    border-radius: 50% 50% 50% 2px;
    background: linear-gradient(135deg, var(--orchid), var(--coral));
}

.nav { margin-left: auto; }

.nav ul {
    display: flex;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav a {
    color: var(--ink);
    font-size: .95rem;
    font-weight: 500;
    text-decoration: none;
}

.nav a:hover, .nav a.is-here { color: var(--orchid-deep); text-decoration: underline; }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    padding: 10px;
    background: none;
    border: 0;
    cursor: pointer;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

/* ---------- buttons ---------- */

.btn {
    display: inline-block;
    padding: .85em 1.9em;
    border: 0;
    border-radius: var(--r-pill);
    background: var(--coral);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(239, 98, 64, .3);
    transition: background .18s ease, transform .18s ease;
}

.btn:hover {
    background: var(--coral-deep);
    color: #fff;
    transform: translateY(-1px);
}

.btn--small { padding: .55em 1.25em; font-size: .9rem; }

.btn--buy {
    display: block;
    width: 100%;
    margin: 2px 0 11px;
    padding: .85em 1.2em;
    font-size: 1.06rem;
}

.btn--big { padding: 1em 2.4em; font-size: 1.08rem; }

.btn--dock { padding: .7em 1.5em; font-size: .95rem; box-shadow: none; }

/* ---------- buy box ---------- */

.shop {
    padding: 18px 0 46px;
    background: radial-gradient(1100px 520px at 12% -10%, var(--orchid-wash), transparent 62%),
                radial-gradient(900px 500px at 96% 4%, var(--peach), transparent 60%);
}

.shop__grid {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 26px 44px;
    align-items: start;
}

.shop__media { grid-column: 1; grid-row: 1; }

.shop__info { grid-column: 1; grid-row: 2; }

.shop__buy { grid-column: 2; grid-row: 1 / span 2; }

.shot {
    margin: 0;
    padding: 18px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-soft);
}

.shot img { margin: 0 auto; }

.shot figcaption {
    margin-top: 8px;
    color: var(--ink-soft);
    font-size: .88rem;
    text-align: center;
}

.shot__def {
    margin: 0 0 18px;
    padding: 15px 18px;
    background: var(--orchid-wash);
    border-radius: 16px;
    font-size: 1rem;
}

.shot__pts {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shot__pts li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 30px;
    font-size: .96rem;
}

.shot__pts li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: -1px;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--mint);
    color: #fff;
    font-size: .72rem;
}

.shop__buy { position: sticky; top: 16px; }

.buy {
    padding: 16px 20px 18px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-lift);
}

.buy h1 { margin-bottom: .45em; font-size: clamp(1.28rem, 2.1vw, 1.52rem); line-height: 1.18; }

.buy__rate { margin-bottom: .35em; font-size: .9rem; color: var(--ink-soft); }

.stars { color: var(--star); letter-spacing: 1px; }

.buy__micro {
    margin: 0 0 13px;
    padding: 0;
    list-style: none;
    font-size: .83rem;
    color: var(--ink-soft);
}

.buy__micro li { margin-bottom: 6px; padding-left: 18px; text-indent: -18px; }

.buy__micro li::before { content: "\2022  "; color: var(--orchid); font-weight: 700; }

.seals {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 12px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.seals li {
    padding: .3em .8em;
    background: var(--paper-tint);
    border-radius: var(--r-pill);
    font-size: .78rem;
    font-weight: 600;
    color: var(--orchid-deep);
}

/* ---------- kit picker ---------- */

.picker { margin: 14px 0 4px; padding: 0; border: 0; }

.picker legend {
    padding: 0 0 6px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.tag { position: relative; margin-bottom: 9px; }

.tag__radio {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.tag__face {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 9px 13px;
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 18px;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.tag__face:hover { border-color: var(--orchid); }

.tag__radio:checked + .tag__face {
    background: #fffaf8;
    border-color: var(--coral);
    box-shadow: 0 10px 26px rgba(239, 98, 64, .18);
}

.tag__radio:focus-visible + .tag__face { outline: 3px solid var(--coral); outline-offset: 2px; }

.tag__pick {
    flex: 0 0 auto;
    width: 21px;
    height: 21px;
    border: 2px solid var(--line);
    border-radius: 50%;
    background: #fff;
}

.tag__radio:checked + .tag__face .tag__pick {
    border-color: var(--coral);
    box-shadow: inset 0 0 0 4px var(--coral);
}

.tag__body { flex: 1 1 auto; line-height: 1.24; }

.tag__count {
    display: block;
    font-family: "Yeseva One", Georgia, serif;
    font-size: 1.05rem;
}

.tag__supply { display: block; font-size: .83rem; color: var(--ink-soft); }

.tag__bonus { display: block; font-size: .78rem; color: var(--mint); font-weight: 600; }

.tag__cost { flex: 0 0 auto; text-align: right; line-height: 1.2; }

.tag__per {
    display: block;
    font-family: "Yeseva One", Georgia, serif;
    font-size: 1.24rem;
    line-height: 1.15;
    color: var(--orchid-deep);
}

.tag__unit { display: block; font-size: .74rem; color: var(--ink-soft); }

.tag__was { display: block; font-size: .78rem; color: var(--ink-soft); }

.tag__save {
    position: absolute;
    right: 12px;
    bottom: -9px;
    padding: .12em .7em;
    background: var(--mint);
    border-radius: var(--r-pill);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
}

.tag__flag {
    position: absolute;
    left: 14px;
    top: -10px;
    padding: .12em .75em;
    background: var(--orchid-deep);
    border-radius: var(--r-pill);
    color: #fff;
    font-size: .71rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ---------- price block ---------- */

.price {
    margin: 13px 0 11px;
    padding: 11px 14px 9px;
    background: var(--paper-tint);
    border-radius: 16px;
}

.price__now {
    margin: 0 0 .2em;
    font-family: "Yeseva One", Georgia, serif;
    font-size: 1.85rem;
    line-height: 1;
}

.price__was { font-size: 1rem; color: var(--ink-soft); }

.price__per { margin: 0 0 .2em; font-size: .89rem; line-height: 1.45; }

.price__ship { margin: 0; font-size: .84rem; font-weight: 600; color: var(--mint); }

/* ---------- trust strip ---------- */

.strip { padding: 16px 0; background: var(--ink); color: #fff; }

.strip__in {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 34px;
}

.strip p { margin: 0; font-size: .88rem; font-weight: 500; }

.strip span { margin-right: .4em; color: var(--coral); }

/* ---------- sections ---------- */

.sec { padding: 58px 0; }

.sec--tint { background: var(--paper-tint); }

.sec--refs { padding-bottom: 34px; }

.hero--sub { padding: 40px 0 6px; }

.crumb { margin-bottom: .5em; font-size: .85rem; color: var(--ink-soft); }

.byline { font-size: .93rem; color: var(--ink-soft); }

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    padding: 24px 22px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-soft);
}

.card p:last-child { margin-bottom: 0; }

.card--rev { background: #fff; }

/* ---------- tables ---------- */

.spec {
    margin: 0 0 1.4em;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.spec caption {
    padding: 12px 16px;
    background: var(--orchid-wash);
    font-size: .84rem;
    font-weight: 600;
    text-align: left;
    color: var(--orchid-deep);
}

.spec th, .spec td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    font-size: .95rem;
    text-align: left;
    vertical-align: top;
}

.spec thead th { background: var(--paper-tint); font-weight: 700; }

.spec tbody th { width: 38%; font-weight: 600; }

.spec tr:last-child th, .spec tr:last-child td { border-bottom: 0; }

/* ---------- supplement facts panel ---------- */

.label {
    margin: 0 0 1.6em;
    padding: 18px 20px;
    background: #fff;
    border: 3px solid var(--ink);
    border-radius: 6px;
}

.label__title {
    margin: 0 0 .2em;
    padding-bottom: 6px;
    border-bottom: 8px solid var(--ink);
    font-family: "Yeseva One", Georgia, serif;
    font-size: 1.9rem;
    line-height: 1;
}

.label__serv { margin: .5em 0; padding-bottom: .5em; border-bottom: 5px solid var(--ink); font-size: .92rem; }

.facts { margin: 0 0 .6em; font-size: .93rem; }

.facts thead th {
    padding: 4px 0;
    border-bottom: 1px solid var(--ink);
    font-size: .8rem;
    text-align: right;
}

.facts thead th:first-child { text-align: left; }

.facts th, .facts td { padding: 5px 0; border-bottom: 1px solid var(--line); }

.facts tbody th { font-weight: 600; text-align: left; }

.facts td { text-align: right; white-space: nowrap; }

.facts--mini {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.facts--mini th, .facts--mini td { padding: 11px 16px; }

.facts--mini thead th { background: var(--paper-tint); border-bottom: 1px solid var(--line); }

.label__note { margin: 0 0 .6em; padding-top: .4em; border-top: 4px solid var(--ink); font-size: .82rem; }

.label__other, .label__use, .label__warn, .label__made { font-size: .84rem; line-height: 1.6; }

.label__warn { color: var(--ink-soft); }

.label__made { margin-bottom: 0; color: var(--ink-soft); }

/* ---------- misc blocks ---------- */

.tldr {
    padding: 24px 26px;
    background: linear-gradient(135deg, var(--orchid-wash), var(--peach));
    border-radius: var(--r-card);
}

.tldr h2 { margin-bottom: .4em; font-size: 1.3rem; }

.tldr p:last-child { margin-bottom: 0; }

.qa { margin-bottom: 26px; }

.qa h3 { margin-bottom: .35em; color: var(--orchid-deep); }

.qa p { margin-bottom: 0; }

.steps { counter-reset: s; margin: 0 0 1.3em; padding: 0; list-style: none; }

.steps li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 46px;
}

.steps li::before {
    counter-increment: s;
    content: counter(s);
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--orchid);
    color: #fff;
    font-weight: 700;
}

.take { margin: 0 0 1.2em; padding: 0; list-style: none; }

.take li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 28px;
}

.take li::before {
    content: "\25CF";
    position: absolute;
    left: 4px;
    top: -2px;
    color: var(--coral);
}

.bonus { margin: 0 0 1em; padding: 0; list-style: none; }

.bonus li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--line);
    font-size: .96rem;
}

.bonus span { color: var(--mint); font-weight: 600; white-space: nowrap; }

.gloss { margin: 0 0 1.4em; }

.gloss dt { margin-top: 14px; font-weight: 700; color: var(--orchid-deep); }

.gloss dd { margin: 4px 0 0; font-size: .96rem; }

.refs { margin: 0 0 1.2em; padding-left: 1.3em; font-size: .92rem; }

.refs li { margin-bottom: 9px; }

.note {
    margin: 1.6em 0;
    padding: 20px 22px;
    background: var(--peach);
    border-left: 5px solid var(--coral);
    border-radius: 0 16px 16px 0;
}

.note h2 { font-size: 1.15rem; }

.note p:last-child { margin-bottom: 0; }

/* ---------- reviews page ---------- */

.dist { margin: 0 0 1.4em; }

.dist__row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 9px;
}

.dist__lab { flex: 0 0 62px; font-size: .88rem; }

.dist__track {
    flex: 1 1 auto;
    height: 13px;
    background: var(--line);
    border-radius: var(--r-pill);
    overflow: hidden;
}

.dist__fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--orchid), var(--coral));
}

.dist__pct { flex: 0 0 44px; font-size: .88rem; font-weight: 600; text-align: right; }

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin: 26px 0 0;
}

.stat {
    padding: 16px 14px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    text-align: center;
}

.stat p { margin: 0; font-size: .84rem; line-height: 1.4; color: var(--ink-soft); }

.stat__n {
    font-family: "Yeseva One", Georgia, serif;
    font-size: 1.55rem !important;
    color: var(--orchid-deep) !important;
}

.wall {
    columns: 3 300px;
    column-gap: 20px;
}

.rev {
    break-inside: avoid;
    margin: 0 0 20px;
    padding: 20px 20px 16px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-soft);
}

.rev__stars { margin: 0 0 .4em; color: var(--star); letter-spacing: 2px; }

.rev__body { font-size: .95rem; }

.rev__by { margin: 0; font-size: .84rem; font-weight: 600; color: var(--ink-soft); }

.rev__vb {
    display: inline-block;
    margin-left: 6px;
    padding: .1em .6em;
    background: var(--orchid-wash);
    border-radius: var(--r-pill);
    color: var(--orchid-deep);
    font-size: .72rem;
}

/* ---------- accordion ---------- */

.acc { margin-bottom: 34px; }

.acc__item { border-bottom: 1px solid var(--line); }

.acc__item h3 { margin: 0; font-family: inherit; font-size: 1rem; }

.acc__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 16px 2px;
    background: none;
    border: 0;
    color: var(--ink);
    font-family: inherit;
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.acc__q::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--coral);
    font-size: 1.4rem;
    line-height: 1;
}

.acc__q[aria-expanded="true"]::after { content: "\2013"; }

.acc__a { padding: 0 2px 16px; }

.acc__a p { margin: 0; font-size: .96rem; color: var(--ink-soft); }

.acc__a[hidden] { display: none; }

/* ---------- pledge and cta band ---------- */

.pledge {
    padding: 46px 0;
    background: linear-gradient(120deg, var(--orchid-deep), var(--orchid));
    color: #fff;
}

.pledge__in {
    display: flex;
    align-items: center;
    gap: 30px;
}

.pledge__num {
    flex: 0 0 auto;
    margin: 0;
    font-family: "Yeseva One", Georgia, serif;
    font-size: clamp(4rem, 11vw, 7rem);
    line-height: .85;
}

.pledge h2 { color: #fff; }

.pledge p:last-child { margin-bottom: 0; }

.pledge a { color: #fff; }

.band { padding: 52px 0; background: var(--peach); }

.band__in { text-align: center; }

.band p { max-width: 620px; margin-left: auto; margin-right: auto; }

.band__note { margin-top: 1.1em; font-size: .84rem; color: var(--ink-soft); }

/* ---------- sticky dock ---------- */

.dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 10px 0;
    background: rgba(46, 27, 59, .97);
    box-shadow: 0 -6px 24px rgba(46, 27, 59, .22);
}

.dock[hidden] { display: none; }

.dock__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dock__txt { margin: 0; color: #fff; font-size: .95rem; }

.dock__price { margin-left: 8px; color: var(--star); font-weight: 700; }

/* ---------- footer ---------- */

.foot {
    padding: 48px 0 32px;
    background: var(--ink);
    color: #d9cfe1;
    font-size: .92rem;
}

.foot__grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.foot h2 {
    margin-bottom: .7em;
    font-family: inherit;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
}

.foot ul { margin: 0; padding: 0; list-style: none; }

.foot li { margin-bottom: 8px; }

.foot a { color: #d9cfe1; text-decoration: none; }

.foot a:hover { color: #fff; text-decoration: underline; }

.mark--foot { margin-bottom: .6em; color: #fff; }

.foot__co { font-size: .86rem; line-height: 1.7; }

.foot__pay { margin: 20px 0 6px; font-size: .84rem; }

.foot__fine { margin: 0 0 10px; font-size: .78rem; line-height: 1.65; color: #a596b0; }

.foot__legal { margin: 16px 0 0; font-size: .8rem; color: #a596b0; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
    .shop__grid { grid-template-columns: 1fr; gap: 24px; }
    .shop__media, .shop__info, .shop__buy { grid-column: 1; grid-row: auto; }
    .shop__buy { position: static; }
    .foot__grid { grid-template-columns: 1fr 1fr; }
    .wall { columns: 2 280px; }
}

@media (max-width: 760px) {
    body { font-size: 16px; }

    .burger { display: flex; }

    .top__in > .btn--small { display: none; }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 50;
        padding: 10px 22px 18px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
    }

    .nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity .2s ease, transform .2s ease, visibility 0s;
    }

    .nav ul { flex-direction: column; gap: 0; }

    .nav li { border-bottom: 1px solid var(--line); }

    .nav a { display: block; padding: 13px 0; }

    .pledge__in { flex-direction: column; align-items: flex-start; gap: 8px; }

    .foot__grid { grid-template-columns: 1fr; }

    .wall { columns: 1; }

    .dock__txt { font-size: .85rem; }

    .btn--dock { padding: .65em 1.1em; font-size: .88rem; }

    .sec { padding: 42px 0; }
}
