/* =========================================================
   PepPure — components.css
   Herbruikbare UI: buttons, badges, cards, forms, modals
   ========================================================= */

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 0.85rem 1.5rem;
    border-radius: var(--r-pill);
    font-size: var(--fs-base);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.18s var(--ease), background 0.18s var(--ease),
        box-shadow 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: scale(0.975);
}

.btn .icon {
    width: 18px;
    height: 18px;
    flex: none;
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(30, 156, 215, 0.22);
}

.btn--primary:hover {
    background: var(--accent-600);
    box-shadow: 0 12px 26px rgba(30, 156, 215, 0.28);
}

.btn--dark {
    background: var(--navy-800);
    color: var(--white);
}

.btn--dark:hover {
    background: var(--navy-600);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line-strong);
}

.btn--ghost:hover {
    border-color: var(--navy-700);
    background: var(--surface-2);
}

.btn--ghost-invert {
    background: var(--white);
    color: var(--text);
    border-color: var(--line-strong);
}

.btn--ghost-invert:hover {
    border-color: var(--accent);
    color: var(--accent-700);
}

.site-footer .btn--ghost-invert {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-color: var(--line-invert);
}

.btn--link {
    padding: 0;
    border-radius: 0;
    background: none;
    color: var(--accent-700);
    font-weight: 600;
}

.btn--link:hover {
    color: var(--navy-700);
    transform: none;
}

.btn--lg {
    padding: 1.05rem 1.9rem;
    font-size: var(--fs-md);
}

.btn--sm {
    padding: 0.6rem 1.05rem;
    font-size: var(--fs-sm);
}

.btn--block {
    width: 100%;
}

.btn--whatsapp {
    background: #25d366;
    color: #05340f;
}

.btn--whatsapp:hover {
    background: #1fbe5a;
}

/* ---------- Badges & chips ---------- */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--r-pill);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.4;
    background: var(--surface-3);
    color: var(--text-2);
    white-space: nowrap;
}

.badge--purity {
    background: var(--accent-soft);
    color: var(--accent-700);
}

.badge--ruo {
    background: var(--red-soft);
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.badge--stock {
    background: var(--amber-soft);
    color: var(--amber);
}

.badge--new {
    background: var(--blue-soft);
    color: var(--blue);
}

.badge--invert {
    background: var(--surface-2);
    color: var(--text-2);
    border: 1px solid var(--line);
}

.badge--dot::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* Trust chip — icoon + tekst, gebruikt in hero en productpagina */
.chip {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 0.5rem 0.9rem;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: var(--fs-sm);
    font-weight: 550;
    color: var(--text);
}

.chip .icon {
    width: 16px;
    height: 16px;
    color: var(--accent-700);
    flex: none;
}

.chip--invert {
    background: var(--white);
    border-color: var(--line);
    color: var(--text);
}

.chip--invert .icon {
    color: var(--accent);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
}

/* Filter pills */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
}

.filter-pills button {
    padding: 0.55rem 1rem;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: var(--fs-sm);
    font-weight: 550;
    color: var(--text-2);
    transition: all 0.18s var(--ease);
}

.filter-pills button:hover {
    border-color: var(--navy-700);
    color: var(--text);
}

.filter-pills button.is-active {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--white);
}

/* ---------- Icons ---------- */

.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--r);
    background: var(--accent-soft);
    color: var(--accent-700);
}

.icon-box .icon {
    width: 24px;
    height: 24px;
}

.icon-box--invert {
    background: var(--accent-soft);
    color: var(--accent-700);
    border: 1px solid var(--accent-line);
}

/* ---------- Cards ---------- */

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
        transform 0.2s var(--ease);
}

.card--flat {
    background: var(--surface-2);
    border-color: transparent;
}

.card--invert {
    background: var(--white);
    border-color: var(--line);
}

.card__title {
    margin-bottom: var(--sp-2);
    font-size: var(--fs-lg);
}

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

/* ---------- Product card ---------- */

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
        transform 0.2s var(--ease);
}

.product-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.product-card:active {
    transform: translateY(-1px) scale(0.995);
}

.product-card__media {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    padding: var(--sp-6);
    background:
        radial-gradient(120% 90% at 50% 0%, #ffffff 0%, var(--surface-2) 70%);
    border-bottom: 1px solid var(--line);
}

.product-card__media img {
    width: auto;
    max-height: 170px;
    filter: drop-shadow(0 12px 20px rgba(13, 27, 41, 0.12));
    transition: transform 0.35s var(--ease);
}

.product-card:hover .product-card__media img {
    transform: translateY(-4px) scale(1.02);
}

.product-card__flags {
    position: absolute;
    z-index: 2;
    top: var(--sp-4);
    left: var(--sp-4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-2);
}

.product-card__coa {
    position: absolute;
    z-index: 2;
    right: var(--sp-4);
    bottom: var(--sp-4);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: var(--white);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--text-2);
    box-shadow: var(--shadow-xs);
}

.product-card__coa .icon {
    width: 14px;
    height: 14px;
    color: var(--accent-700);
}

.product-card__coa:hover {
    color: var(--accent-700);
    border-color: var(--accent);
}

.product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--sp-5);
}

.product-card__cat {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
}

.product-card__title {
    margin: var(--sp-2) 0;
    font-size: var(--fs-lg);
    letter-spacing: -0.02em;
}

.product-card__title a:hover {
    color: var(--accent-700);
}

.product-card__doses {
    margin: 0 0 var(--sp-5);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.02em;
    color: var(--text-3);
}

.dose-tag {
    padding: 0.25rem 0.55rem;
    border-radius: var(--r-xs);
    border: 1px solid var(--line);
    background: var(--surface-2);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-2);
}

.product-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    margin-top: auto;
    padding-top: var(--sp-4);
    border-top: 1px solid var(--line);
}

.price {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.price__label {
    font-size: var(--fs-xs);
    color: var(--text-3);
}

.price__value {
    font-family: var(--font-mono);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}

.price__value--lg {
    font-size: var(--fs-2xl);
}

.price__old {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--text-3);
    text-decoration: line-through;
}

/* ---------- Rating ---------- */

.rating {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--fs-sm);
    color: var(--text-2);
}

.rating__stars {
    display: inline-flex;
    gap: 1px;
    color: #f1a53b;
}

.rating__stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    stroke: none;
}

/* ---------- Forms ---------- */

.field {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-bottom: var(--sp-4);
}

.field label,
.label {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text);
}

.field__hint {
    font-size: var(--fs-xs);
    color: var(--text-3);
}

.input,
.select,
.textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--r-sm);
    border: 1px solid var(--line-strong);
    background: var(--surface);
    font-size: var(--fs-base);
    transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.input:focus,
.select:focus,
.textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.textarea {
    min-height: 140px;
    resize: vertical;
}

.select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234f6274' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.4rem;
}

.input-group {
    display: flex;
    gap: var(--sp-2);
}

.input-group .input {
    flex: 1;
}

.input-affix {
    position: relative;
    display: flex;
    align-items: center;
}

.input-affix .input {
    padding-right: 3.5rem;
}

.input-affix__unit {
    position: absolute;
    right: 1rem;
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--text-3);
    pointer-events: none;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    color: var(--text-2);
    cursor: pointer;
}

.checkbox input {
    margin-top: 0.15rem;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-600);
    flex: none;
}

/* Zoekveld */
.search {
    position: relative;
    display: flex;
    align-items: center;
}

.search .icon {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    color: var(--text-3);
    pointer-events: none;
}

.search .input {
    padding-left: 2.85rem;
    border-radius: var(--r-pill);
    background: var(--surface-2);
    border-color: transparent;
}

.search .input:focus {
    background: var(--surface);
}

/* Quantity stepper */
.qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-pill);
    overflow: hidden;
    background: var(--surface);
}

.qty button {
    width: 42px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--text-2);
    transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.qty button:hover {
    background: var(--surface-2);
    color: var(--text);
}

.qty input {
    width: 42px;
    height: 46px;
    border: 0;
    text-align: center;
    font-family: var(--font-mono);
    font-weight: 600;
    background: transparent;
}

.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
}

/* ---------- Option selector (dosering) ---------- */

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--sp-3);
}

.option {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: var(--sp-4);
    border: 1px solid var(--line-strong);
    border-radius: var(--r);
    background: var(--surface);
    text-align: left;
    transition: all 0.18s var(--ease);
}

.option:hover {
    border-color: var(--navy-500);
}

.option:active {
    transform: scale(0.985);
}

.option.is-active {
    border-color: var(--accent);
    background: var(--accent-soft);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.option__size {
    font-family: var(--font-mono);
    font-size: var(--fs-md);
    font-weight: 600;
}

.option__price {
    font-size: var(--fs-sm);
    color: var(--text-2);
}

.option__tag {
    position: absolute;
    top: -9px;
    right: 10px;
    padding: 0.1rem 0.45rem;
    border-radius: var(--r-pill);
    background: var(--navy-800);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.option:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* ---------- Add-on rij (gratis accessoires + upsell) ---------- */

.addon {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--surface);
    transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}

.addon + .addon {
    margin-top: var(--sp-2);
}

.addon:hover {
    border-color: var(--line-strong);
}

.addon--included {
    background: var(--accent-soft);
    border-color: rgba(0, 194, 163, 0.3);
}

.addon input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-600);
    flex: none;
}

.addon__icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--accent-700);
    flex: none;
}

.addon__icon .icon {
    width: 18px;
    height: 18px;
}

.addon__body {
    flex: 1;
    min-width: 0;
}

.addon__name {
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 1.3;
}

.addon__meta {
    font-size: var(--fs-xs);
    color: var(--text-2);
}

.addon__price {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    font-weight: 600;
    white-space: nowrap;
}

.addon__price--free {
    color: var(--accent-700);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: var(--fs-xs);
}

/* ---------- Progress (gratis verzending) ---------- */

.progress {
    height: 8px;
    border-radius: var(--r-pill);
    background: var(--surface-3);
    overflow: hidden;
}

.progress__bar {
    height: 100%;
    width: 0;
    border-radius: var(--r-pill);
    background: linear-gradient(90deg, var(--accent-600), var(--accent));
    transition: width 0.6s var(--ease);
}

.progress--stock .progress__bar {
    background: linear-gradient(90deg, #e0952a, #f2b95c);
}

.progress--slim {
    height: 6px;
}

/* ---------- Steps (from order to delivery) ---------- */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--line-strong) 0 8px,
        transparent 8px 16px
    );
}

.step {
    position: relative;
    text-align: center;
}

.step__dot {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto var(--sp-5);
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--accent-line);
    color: var(--accent-700);
    box-shadow: 0 0 0 8px var(--tint);
}

.step__num {
    display: block;
    margin-bottom: var(--sp-2);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.16em;
    color: var(--accent-700);
}

.step h3 {
    font-size: var(--fs-md);
    margin-bottom: var(--sp-2);
    color: var(--text);
}

.step p {
    font-size: var(--fs-sm);
    color: var(--text-2);
    margin-bottom: 0;
}

/* Op witte ondergrond loopt de ring mee met het wit */
.steps--light .step__dot {
    box-shadow: 0 0 0 8px var(--white);
}

@media (max-width: 900px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-8) var(--sp-4);
    }

    .steps::before {
        display: none;
    }
}

/* ---------- Accordion ---------- */

.accordion {
    border-top: 1px solid var(--line);
}

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

.accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    width: 100%;
    padding: var(--sp-5) 0;
    text-align: left;
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--text);
    transition: color 0.15s var(--ease);
}

.accordion__trigger:hover {
    color: var(--accent-700);
}

.accordion__icon {
    position: relative;
    flex: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    transition: all 0.2s var(--ease);
}

.accordion__icon::before,
.accordion__icon::after {
    content: '';
    position: absolute;
    inset: 50% 7px auto 7px;
    height: 1.5px;
    background: currentColor;
    transform: translateY(-50%);
    transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.accordion__icon::after {
    transform: translateY(-50%) rotate(90deg);
}

.accordion__item.is-open .accordion__icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--navy-900);
}

.accordion__item.is-open .accordion__icon::after {
    opacity: 0;
}

.accordion__panel {
    display: none;
    padding-bottom: var(--sp-5);
    max-width: 760px;
    color: var(--text-2);
}

.accordion__item.is-open .accordion__panel {
    display: block;
}

/* ---------- Tabs ---------- */

.tabs {
    display: flex;
    gap: var(--sp-6);
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
}

.tabs button {
    position: relative;
    padding: var(--sp-4) 0;
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--text-3);
    white-space: nowrap;
    transition: color 0.18s var(--ease);
}

.tabs button::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.18s var(--ease);
}

.tabs button:hover {
    color: var(--text);
}

.tabs button.is-active {
    color: var(--text);
}

.tabs button.is-active::after {
    opacity: 1;
}

.tab-panel {
    display: none;
    padding-top: var(--sp-8);
}

.tab-panel.is-active {
    display: block;
}

/* ---------- Spec table ---------- */

.spec-table th,
.spec-table td {
    padding: var(--sp-3) var(--sp-2);
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: var(--fs-sm);
    vertical-align: top;
}

.spec-table th {
    width: 42%;
    font-weight: 550;
    color: var(--text-2);
}

.spec-table td {
    font-family: var(--font-mono);
    color: var(--text);
}

/* ---------- Modal ---------- */

.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--sp-5);
    background: rgba(17, 22, 28, 0.5);
    backdrop-filter: blur(6px);
}

.modal.is-open {
    display: flex;
    animation: fade-in 0.2s var(--ease);
}

.modal__dialog {
    width: 100%;
    max-width: 880px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: pop-in 0.24s var(--ease);
}

.modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--sp-4);
    padding: var(--sp-5) var(--sp-6);
    border-bottom: 1px solid var(--line);
}

.modal__head h3 {
    margin-bottom: 0.15rem;
    font-size: var(--fs-lg);
}

.modal__head p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--text-2);
}

.modal__close {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--text-2);
    flex: none;
}

.modal__close:hover {
    background: var(--surface-3);
    color: var(--text);
}

.modal__body {
    padding: var(--sp-6);
    overflow-y: auto;
}

.modal__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    padding: var(--sp-4) var(--sp-6);
    border-top: 1px solid var(--line);
    background: var(--surface-2);
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
}

@keyframes pop-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
}

/* ---------- COA viewer ---------- */

.coa-doc {
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
}

.coa-doc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    padding: var(--sp-4) var(--sp-5);
    background: var(--navy-800);
    color: var(--white);
}

.coa-doc__head strong {
    display: block;
    font-size: var(--fs-base);
}

.coa-doc__head span {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-invert-2);
}

.coa-doc__page {
    padding: var(--sp-6);
    background:
        linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
        repeating-linear-gradient(0deg, transparent 0 28px, var(--line) 28px 29px);
    min-height: 320px;
}

.coa-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
}

.coa-meta__item span {
    display: block;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
}

.coa-meta__item strong {
    font-family: var(--font-mono);
    font-size: var(--fs-base);
}

/* HPLC chromatogram visual */
.chromatogram {
    position: relative;
    height: 170px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        repeating-linear-gradient(90deg, transparent 0 39px, var(--line) 39px 40px),
        repeating-linear-gradient(0deg, transparent 0 33px, var(--line) 33px 34px);
    overflow: hidden;
}

.chromatogram svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.chromatogram__line {
    fill: none;
    stroke: var(--accent-600);
    stroke-width: 1.8;
}

.chromatogram__fill {
    fill: rgba(30, 156, 215, 0.12);
    stroke: none;
}

.chromatogram__label {
    position: absolute;
    top: var(--sp-3);
    right: var(--sp-3);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-3);
}

/* ---------- Notice ---------- */

.notice {
    display: flex;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--r);
    border: 1px solid var(--line);
    background: var(--surface-2);
    font-size: var(--fs-sm);
    color: var(--text-2);
}

.notice .icon {
    flex: none;
    color: var(--text-3);
}

.notice strong {
    color: var(--text);
}

.notice--ruo {
    background: var(--red-soft);
    border-color: rgba(216, 74, 74, 0.24);
    color: #8d2f2f;
}

.notice--ruo .icon {
    color: var(--red);
}

.notice--ruo strong {
    color: #8d2f2f;
}

.notice--accent {
    background: var(--accent-soft);
    border-color: rgba(0, 194, 163, 0.3);
    color: var(--accent-700);
}

.notice--accent .icon,
.notice--accent strong {
    color: var(--accent-700);
}

/* ---------- Checklist ---------- */

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

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-bottom: var(--sp-3);
    font-size: var(--fs-sm);
}

.checklist .icon {
    flex: none;
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    color: var(--accent-600);
}

.checklist--invert li {
    color: var(--text-2);
}

.checklist--invert .icon {
    color: var(--accent);
}

/* ---------- Payment icons ---------- */

.payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-2);
}

.pay {
    display: grid;
    place-items: center;
    height: 30px;
    min-width: 48px;
    padding: 0 0.5rem;
    border-radius: var(--r-xs);
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-2);
    text-transform: uppercase;
}

.payments--invert .pay {
    background: rgba(255, 255, 255, 0.9);
    border-color: transparent;
}

/* ---------- Stat ---------- */

.stat__value {
    font-family: var(--font-mono);
    font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text);
}

.stat__label {
    display: block;
    margin-top: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--text-2);
}

.stat--light .stat__value {
    color: var(--text);
}

.stat--light .stat__label {
    color: var(--text-2);
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: var(--fs-sm);
    color: var(--text-3);
}

.breadcrumb li {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.breadcrumb li + li::before {
    content: '/';
    color: var(--line-strong);
}

.breadcrumb a:hover {
    color: var(--accent-700);
}

.breadcrumb [aria-current] {
    color: var(--text);
}

/* ---------- Pagination ---------- */

.pagination {
    display: flex;
    justify-content: center;
    gap: var(--sp-2);
    margin-top: var(--sp-12);
}

.pagination a,
.pagination span {
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.65rem;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-2);
}

.pagination a:hover {
    border-color: var(--navy-700);
    color: var(--text);
}

.pagination .is-current {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--white);
}

/* ---------- Toast ---------- */

.toast {
    position: fixed;
    right: var(--sp-6);
    bottom: var(--sp-6);
    z-index: 300;
    display: none;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--r);
    background: var(--navy-800);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    font-size: var(--fs-sm);
}

.toast.is-visible {
    display: flex;
    animation: pop-in 0.24s var(--ease);
}

.toast .icon {
    color: var(--accent);
}


/* ---------- Formulier-statussen ---------- */

.field__error {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--fs-xs);
    font-weight: 550;
    color: var(--red);
}

.field__error .icon {
    width: 14px;
    height: 14px;
}

.field--error .input,
.field--error .select,
.field--error .textarea,
.input:user-invalid,
.textarea:user-invalid {
    border-color: var(--red);
}

.field--error .input:focus,
.field--error .select:focus,
.field--error .textarea:focus {
    box-shadow: 0 0 0 4px rgba(216, 74, 74, 0.16);
}

.field--success .input {
    border-color: var(--accent-600);
}

/* ---------- Skeleton (laadstatus) ---------- */

.skeleton {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-xs);
    background: var(--surface-3);
}

.skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.72),
        transparent
    );
    animation: shimmer 1.4s infinite;
}

.skeleton--media {
    aspect-ratio: 4 / 3;
    border-radius: 0;
}

.skeleton--line {
    height: 10px;
    margin-bottom: var(--sp-3);
}

.skeleton--line-sm {
    height: 8px;
    width: 45%;
}

.skeleton--line-lg {
    height: 16px;
    width: 70%;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* ---------- Featured review ---------- */

.review--featured {
    background: linear-gradient(150deg, var(--accent-soft), #ffffff 70%);
    border-color: var(--accent-line);
}

.review.review--featured p {
    color: var(--text);
    font-size: var(--fs-xl);
    line-height: 1.45;
    letter-spacing: -0.015em;
}

.review--featured .review__author {
    border-top-color: var(--accent-line);
}


/* ---------- Benodigdheden + upsell in één blok ---------- */

.addon-card {
    padding: var(--sp-5);
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--surface-2);
}

.addon-card .block__label {
    margin-bottom: var(--sp-3);
}

.addon-card__included {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2) var(--sp-5);
    margin: 0 0 var(--sp-2);
    padding: 0;
    list-style: none;
}

.addon-card__included li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    font-size: var(--fs-sm);
    font-weight: 550;
}

.addon-card__included .icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex: none;
}

.addon-card__note {
    margin: 0 0 var(--sp-5);
    font-size: var(--fs-xs);
    color: var(--text-3);
}

.addon-card__extras {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--sp-3);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--line);
}

.addon-card__extras .field {
    margin: 0;
    gap: var(--sp-2);
}

.addon-card__extras label {
    font-size: var(--fs-xs);
    font-weight: 550;
    color: var(--text-2);
}

.addon-card__extras .select {
    background-color: var(--white);
    font-size: var(--fs-sm);
    padding: 0.6rem 2.2rem 0.6rem 0.75rem;
}

@media (max-width: 640px) {
    .addon-card__extras {
        grid-template-columns: 1fr;
    }
}
