body.page-recette-v3 {
    background: var(--v3-bg, #fbfaf9);
    color: var(--v3-text, #262c2c);
}

.rv3-recipe-page {
    --rv3-font-text: var(--v3-font-text, 'Lora', Georgia, serif);
    --rv3-font-ui: var(--v3-font-ui, 'Montserrat', Arial, sans-serif);
    --rv3-brand: #ff6233;
    --rv3-brand-strong: #ff6233;
    --rv3-brand-soft: rgba(255, 98, 51, 0.1);
    --rv3-bg: var(--v3-bg, #fbfaf9);
    --rv3-surface: var(--v3-surface, #ffffff);
    --rv3-surface-soft: #f8f7f5;
    --rv3-text: var(--v3-text, #262c2c);
    --rv3-muted: var(--v3-text-mut, #66717b);
    --rv3-border: var(--v3-border, #ebe5df);
    --rv3-shadow: 0 14px 38px rgba(25, 30, 38, 0.08);
    --rv3-shadow-soft: 0 10px 26px rgba(25, 30, 38, 0.05);
    font-family: var(--rv3-font-ui);
    line-height: 1.65;
}

.rv3-recipe-page *,
.rv3-recipe-page *::before,
.rv3-recipe-page *::after { box-sizing: border-box; }
.rv3-recipe-page a { color: inherit; text-decoration: none; }
.rv3-recipe-page img { display: block; max-width: 100%; }
.rv3-recipe-page button, .rv3-recipe-page input, .rv3-recipe-page textarea { font: inherit; }

.rv3-shell {
    width: min(920px, calc(100% - 2rem));
    margin: 0 auto;
}
.rv3-shell--wide {
    width: min(1160px, calc(100% - 2rem));
}

.rv3-hero {
    position: relative;
    min-height: clamp(380px, 50vw, 560px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, #f2ebe5 0%, #efe8e1 100%);
}

.rv3-hero.has-image .rv3-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.rv3-hero__overlay {
    position: absolute;
    inset: 0;
    /* MISE À JOUR : VOILE BEAUCOUP PLUS SOMBRE ET OPALIN */
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.16) 0%,   /* Assombri en haut */
                                rgba(10, 10, 10, 0.45) 40%,  /* Assombri au milieu */
                                rgba(10, 10, 10, 0.82) 100%  /* Très sombre en bas */
    );
}

.rv3-hero__inner {
    position: relative;
    z-index: 2;
    padding: 7rem 0 4.5rem; /* Prévient tout chevauchement en bas */
}

.rv3-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    align-items: center;
    margin: 0 0 .95rem;
    font-family: var(--rv3-font-ui);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255,255,255,.84);
}

.rv3-breadcrumb a {
    color: rgba(255,255,255,.84);
    text-decoration: none;
}

.rv3-breadcrumb span {
    color: rgba(255,255,255,.92);
}

.rv3-breadcrumb__sep {
    opacity: .56;
}

.rv3-hero__kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: .24rem .58rem;
    border-radius: 4px;
    background: var(--rv3-brand);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rv3-hero__title {
    max-width: 760px;
    margin: .9rem 0 .55rem;
    color: #fff;
    font-family: var(--rv3-font-text);
    font-size: clamp(2.2rem, 4.2vw, 3.85rem);
    line-height: .96;
    letter-spacing: -.035em;
}

/* LA SIGNATURE ORANGE SOUS LE TITRE DU HERO */
.rv3-hero__title::after {
    content: '';
    display: block;
    width: 65px;
    height: 4px;
    background-color: var(--rv3-brand);
    margin-top: .8rem;
    border-radius: 2px;
}

.rv3-hero__subtitle {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: 1rem;
    line-height: 1.6;
}

.rv3-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1rem;
}

.rv3-hero__stat {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    min-height: 34px;
    padding: .5rem .82rem;
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    font-size: .76rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.rv3-utility-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    margin-top: -34px;
    position: relative;
    z-index: 5;
}
.rv3-toolbox {
    background: rgba(255,255,255,.98);
    border: 1px solid var(--rv3-border);
    border-radius: 16px;
    box-shadow: var(--rv3-shadow-soft);
    padding: 1rem 1rem 1.05rem;
}
.rv3-toolbox__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: .8rem;
    margin-bottom: .9rem;
}
.rv3-toolbox__head--static { margin-bottom: .8rem; }
.rv3-toolbox__eyebrow {
    margin: 0 0 .18rem;
    color: var(--rv3-muted);
    font-size: .66rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
}
.rv3-toolbox__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--rv3-text);
}
.rv3-print-panel { display: grid; gap: .88rem; }
.rv3-chipset { display: flex; flex-wrap: wrap; gap: .7rem; }
.rv3-chip,
.rv3-wakelock,
.rv3-share-btn,
.rv3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .46rem;
    border-radius: 11px;
    border: 1px solid var(--rv3-border);
    min-height: 44px;
    padding: .78rem 1rem;
    background: #fff;
    color: var(--rv3-text);
    cursor: pointer;
    transition: .18s ease;
}
.rv3-chip:hover, .rv3-wakelock:hover, .rv3-share-btn:hover, .rv3-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255,98,51,.32);
}
.rv3-chip.is-active,
.rv3-wakelock[aria-pressed="true"] {
    background: var(--rv3-brand-soft);
    border-color: rgba(255,98,51,.28);
    color: var(--rv3-brand-strong);
}
.rv3-btn--primary {
    width: 100%;
    background: linear-gradient(180deg, rgba(255,98,51,.11) 0%, rgba(255,98,51,.17) 100%);
    border-color: rgba(255,98,51,.24);
    color: var(--rv3-brand-strong);
    font-weight: 800;
}
.rv3-btn--ghost { background: transparent; }
.rv3-share-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: .72rem;
}
.rv3-share-btn.is-copied,
.rv3-share-btn.is-done { color: var(--rv3-brand-strong); border-color: rgba(255,98,51,.32); }

.rv3-flow { padding: 1.2rem 0 0; }
.rv3-section { margin: 0 0 1.6rem; }
.rv3-section--steps { margin-bottom: 1.8rem; }

.rv3-opener {
    margin-bottom: 1.15rem;
}

/* LARGEUR 100% POUR UN VRAI LOOK MAGAZINE LUXE */
.rv3-editorial {
    width: 100%;
    padding: 0 0 0 1.25rem;
    border-left: 3px solid rgba(255,98,51,.85);
    color: var(--rv3-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.rv3-editorial p {
    margin: 0 0 .9rem;
}

.rv3-editorial > *:first-child { margin-top: 0; }
.rv3-editorial > *:last-child { margin-bottom: 0; }

.rv3-editorial a {
    color: var(--rv3-brand-strong);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
    font-weight: 700;
}

.rv3-editorial strong {
    font-weight: 800;
    color: var(--rv3-text);
}

.rv3-section-heading {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    margin-bottom: 1rem;
}
.rv3-section-heading--center { justify-content: center; text-align: center; }
.rv3-section-heading__mark {
    flex: 0 0 auto;
    width: 18px; height: 18px;
    border-left: 3px solid var(--rv3-brand);
    border-radius: 999px 0 0 999px;
    transform: translateY(.36rem);
}
.rv3-section-heading__eyebrow {
    margin: 0 0 .2rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--rv3-brand-strong);
    text-transform: uppercase;
}
.rv3-section-heading__title {
    margin: 0;
    color: var(--rv3-text);
    font-family: var(--rv3-font-text);
    font-size: clamp(2rem, 2.4vw, 3rem);
    line-height: .98;
    letter-spacing: -.03em;
}

.rv3-ingredients-card {
    background: var(--rv3-surface);
    border: 1px solid var(--rv3-border);
    border-radius: 18px;
    box-shadow: var(--rv3-shadow-soft);
    padding: 1rem;
}
.rv3-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: .85rem;
}
.rv3-ingredients-col {
    min-width: 0;
    padding: .9rem .95rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
    border: 1px solid var(--rv3-border);
}
.rv3-ingredients-col__title {
    margin: 0 0 .7rem;
    color: var(--rv3-muted);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.rv3-ingredients-list,
.rv3-tools-list { margin: 0; padding: 0; list-style: none; }
.rv3-ingredients-list li,
.rv3-tools-list li {
    position: relative;
    padding-left: .8rem;
    margin-bottom: .34rem;
    color: var(--rv3-text);
    font-size: .92rem;
}
.rv3-ingredients-list li::before {
    content: '•'; position: absolute; left: 0; top: 0; color: var(--rv3-brand);
}
.rv3-tools-list li {
    padding-left: 1.15rem;
}
.rv3-tools-list i { position: absolute; left: 0; top: .22rem; font-size: .72rem; color: var(--rv3-brand); }

.rv3-step-group { margin-bottom: 1.25rem; }
.rv3-step-group__title {
    margin: 0 0 .65rem;
    color: var(--rv3-text);
    font-size: .95rem;
    font-weight: 800;
}
.rv3-steps-grid {
    display: grid;
    gap: .9rem;
}
.rv3-steps-grid--cols-1 { grid-template-columns: 1fr; }
.rv3-steps-grid--cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.rv3-steps-grid--cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }

.rv3-step-card {
    position: relative;
    overflow: visible;
    min-width: 0;
    border-radius: 14px;
    border: 1px solid var(--rv3-border);
    background: linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
    box-shadow: var(--rv3-shadow-soft);
}

.rv3-step-card__no {
    position: absolute;
    top: -12px;
    left: -8px;
    z-index: 4;
    /* MISE À JOUR : OPACITÉ AUGMENTÉE (50%) POUR MIEUX RESSORTIR SUR L'IMAGE */
    color: rgba(255, 98, 51, 0.50);
    font-family: var(--rv3-font-text);
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -.05em;
    pointer-events: none;
    text-shadow: none; /* AUCUNE OMBRE, TOTALEMENT CLEAN */
}

.rv3-step-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.rv3-step-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10.2;
    object-fit: cover;
    object-position: center;
}

.rv3-step-card__body {
    padding: .8rem .82rem .88rem;
}

/* EMPECHE LE TEXTE DE CHEVAUCHER LE NUMÉRO S'IL N'Y A PAS D'IMAGE */
.rv3-step-card.no-image .rv3-step-card__body {
    padding-top: 2.2rem;
}

.rv3-step-card__text {
    color: var(--rv3-text);
    font-size: .9rem;
    line-height: 1.55;
}

.rv3-step-card__text p {
    margin: 0 0 .72rem;
}

.rv3-step-card__text p:last-child {
    margin-bottom: 0;
}

.rv3-step-card__text a {
    color: var(--rv3-brand-strong);
    text-decoration: underline;
    text-decoration-thickness: 1.3px;
    text-underline-offset: 2px;
    font-weight: 700;
}

.rv3-step-card__tip {
    margin-top: .72rem;
    padding: .72rem .78rem;
    border-radius: 12px;
    border: 1px solid rgba(255,98,51,.18);
    background: rgba(255,98,51,.06);
    color: var(--rv3-text);
    display: grid;
    gap: .18rem;
    font-size: .84rem;
}

.rv3-step-card__tip strong {
    color: var(--rv3-brand-strong);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.rv3-ad-slot {
    margin: 1.1rem auto 1.6rem;
    text-align: center;
}
.rv3-ad-slot__label {
    margin-bottom: .55rem;
    color: var(--rv3-muted);
    font-size: .64rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 800;
}
.rv3-ad-slot iframe {
    display: block;
    width: 100%;
    min-height: 250px;
    border: 0;
    background: transparent;
}

.rv3-author,
.rv3-vote,
.rv3-comments {
    background: var(--rv3-surface);
    border: 1px solid var(--rv3-border);
    border-radius: 18px;
    box-shadow: var(--rv3-shadow-soft);
    padding: 1.2rem 1.25rem;
    margin-bottom: 1rem;
}
.rv3-author {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1.15rem 1.2rem;
    background:
    radial-gradient(circle at right 20%, rgba(255,98,51,.12), transparent 26%),
    linear-gradient(120deg, #141414 0%, #1b1d22 44%, #272c36 100%);
    color: #fff;
}
.rv3-author__avatar img {
    width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,.14);
}
.rv3-author__eyebrow {
    margin: 0 0 .2rem;
    color: rgba(255,255,255,.72);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
}
.rv3-author__title {
    margin: 0;
    font-family: var(--rv3-font-text);
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: .95;
}
.rv3-author__role { margin: .35rem 0 0; color: rgba(255,255,255,.86); font-size: 1rem; }
.rv3-author__actions { display:flex; flex-wrap:wrap; align-items:center; gap:.9rem; margin-top: .9rem; }
.rv3-author__socials { display:flex; gap:.6rem; }
.rv3-author__socials a,
.rv3-author__cta {
    color: #fff;
    border-color: rgba(255,255,255,.18);
}
.rv3-author__socials a {
    display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:999px; border:1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.04);
}
.rv3-author__socials a:hover,
.rv3-author__cta:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.rv3-author__cta { width:auto; padding-inline: 1.1rem; }

.rv3-vote,
.rv3-comments { padding-top: 1rem; }
.rv3-stars { display:flex; justify-content:center; gap:.45rem; font-size: 1.25rem; color:#efb84f; margin:.2rem 0 .3rem; }
.rv3-vote__stats,
.rv3-vote__message { text-align:center; color: var(--rv3-muted); font-size:.84rem; }

.rv3-comments__list { display: grid; gap: .85rem; margin: .4rem 0 1rem; }
.rv3-comment {
    border: 1px solid var(--rv3-border);
    border-radius: 14px;
    padding: .9rem .95rem;
    background: var(--rv3-surface);
}
.rv3-comment__meta,
.chronique-comments__meta { display:flex; flex-wrap:wrap; gap:.5rem; align-items:baseline; margin-bottom:.35rem; }
.chronique-comments__pseudo { color: var(--rv3-text); }
.chronique-comments__date { color: var(--rv3-muted); font-size: .8rem; }
.rv3-comment__message,
.chronique-comments__message { color: var(--rv3-text); line-height:1.6; }
.rv3-comment__reply,
.chronique-comments__reply {
    margin-top: .65rem;
    border: 0;
    background: transparent;
    color: var(--rv3-brand-strong);
    padding: 0;
    font-weight: 700;
}
.rv3-comment__replies,
.chronique-comments__replies { margin-top:.8rem; display:grid; gap:.55rem; padding-left:.9rem; border-left:2px solid rgba(255,98,51,.18); }
.rv3-comment__reply-item,
.chronique-comments__reply-item { padding:.7rem .8rem; border-radius:12px; background: var(--rv3-surface-soft); }
.rv3-comments__more { width: auto; }
.rv3-comment-form {
    border: 1px solid var(--rv3-border);
    border-radius: 16px;
    padding: 1rem;
    background: linear-gradient(180deg,#fff 0%,#fbfaf8 100%);
}
.rv3-comment-form__reply {
    border-radius: 12px;
    background: rgba(255,98,51,.1);
    border: 1px solid rgba(255,98,51,.16);
    color: var(--rv3-brand-strong);
    padding: .72rem .85rem;
}
.rv3-link-btn { background: transparent; border: 0; color: var(--rv3-muted); font-weight: 700; }
.rv3-comment-form__grid { display:grid; gap:.95rem; }
.rv3-comment-form__full { grid-column: 1 / -1; }
.rv3-label {
    display:block; margin:0 0 .4rem; color: var(--rv3-muted); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; font-weight: 800;
}
.rv3-input {
    width:100%; min-height:46px; padding:.82rem .92rem; border-radius:12px; border:1px solid var(--rv3-border); background: var(--rv3-surface); color: var(--rv3-text);
}
.rv3-input:focus { outline:none; border-color: rgba(255,98,51,.38); box-shadow: 0 0 0 4px rgba(255,98,51,.08); }
.rv3-input--textarea { min-height: 160px; resize: vertical; }
.rv3-comment-form__submit { margin-top: .9rem; }
.rv3-comment-form__note { margin: .65rem 0 0; color: var(--rv3-muted); font-size: .8rem; }

@media (max-width: 980px) {
    .rv3-utility-grid { grid-template-columns: 1fr; }
    .rv3-ingredients-grid,
    .rv3-steps-grid--cols-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
    .rv3-shell, .rv3-shell--wide {
        width: min(100% - 1rem, 1160px);
    }

    .rv3-hero {
        min-height: 340px;
        margin-top: 0;
    }

    .rv3-hero.has-image .rv3-hero__image {
        object-position: center 38%;
    }

    .rv3-hero__inner {
        padding-top: 4.9rem;
        padding-bottom: 3.5rem;
    }

    .rv3-breadcrumb {
        font-size: .64rem;
        letter-spacing: .11em;
        margin-bottom: .72rem;
    }

    .rv3-hero__title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .rv3-utility-grid {
        grid-template-columns: 1fr;
        gap: .85rem;
        margin-top: -18px;
    }

    .rv3-ingredients-grid,
    .rv3-steps-grid--cols-2,
    .rv3-steps-grid--cols-3,
    .rv3-share-grid {
        grid-template-columns: 1fr;
    }

    .rv3-author {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .rv3-author__avatar {
        width: 88px;
    }

    .rv3-editorial {
        padding-left: .8rem;
        font-size: .98rem;
        line-height: 1.68;
    }

    .rv3-section {
        margin-bottom: 1.35rem;
    }

    .rv3-step-card__no {
        top: -12px;
        left: 8px;
        font-size: 2.8rem;
    }

    .rv3-step-card.no-image .rv3-step-card__body {
        padding-top: 2.2rem;
    }

    .rv3-ad-slot {
        margin-inline: calc(50% - 50vw + .5rem);
    }

    .rv3-ad-slot iframe {
        width: auto;
        min-width: 300px;
        max-width: calc(100vw - 1rem);
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .rv3-hero {
        min-height: 320px;
    }

    .rv3-hero__inner {
        padding-top: 4.5rem;
        padding-bottom: 3.2rem;
    }

    .rv3-step-card__no {
        top: -10px;
        left: 8px;
        font-size: 2.4rem;
    }

    .rv3-step-card.no-image .rv3-step-card__body {
        padding-top: 2rem;
    }
}

/* =========================================
 *  DARK MODE : STRICTEMENT SAUVÉ
 = *======================================== */
html[data-theme="dark"] .rv3-recipe-page,
html.theme-dark .rv3-recipe-page,
html[data-pd-theme="dark"] .rv3-recipe-page {
    --rv3-bg: #121212;
    --rv3-surface: #1b1b1b;
    --rv3-surface-soft: #232323;
    --rv3-text: #f0f3f5;
    --rv3-muted: #b4bcc6;
    --rv3-border: #2e2e2e;
    --rv3-shadow: 0 14px 38px rgba(0,0,0,.3);
    --rv3-shadow-soft: 0 10px 26px rgba(0,0,0,.24);
}
html[data-theme="dark"] body.page-recette-v3,
html.theme-dark body.page-recette-v3,
html[data-pd-theme="dark"] body.page-recette-v3 { background: #121212; color: #f0f3f5; }

/* FIX : L'utilisation de "background" force l'écrasement des dégradés ! */
html[data-theme="dark"] .rv3-toolbox,
html[data-theme="dark"] .rv3-author,
html[data-theme="dark"] .rv3-vote,
html[data-theme="dark"] .rv3-comments,
html[data-theme="dark"] .rv3-comment,
html[data-theme="dark"] .rv3-comment-form,
html[data-theme="dark"] .rv3-ingredients-card,
html[data-theme="dark"] .rv3-ingredients-col,
html[data-theme="dark"] .rv3-step-card,
html.theme-dark .rv3-toolbox,
html.theme-dark .rv3-author,
html.theme-dark .rv3-vote,
html.theme-dark .rv3-comments,
html.theme-dark .rv3-comment,
html.theme-dark .rv3-comment-form,
html.theme-dark .rv3-ingredients-card,
html.theme-dark .rv3-ingredients-col,
html.theme-dark .rv3-step-card,
html[data-pd-theme="dark"] .rv3-toolbox,
html[data-pd-theme="dark"] .rv3-author,
html[data-pd-theme="dark"] .rv3-vote,
html[data-pd-theme="dark"] .rv3-comments,
html[data-pd-theme="dark"] .rv3-comment,
html[data-pd-theme="dark"] .rv3-comment-form,
html[data-pd-theme="dark"] .rv3-ingredients-card,
html[data-pd-theme="dark"] .rv3-ingredients-col,
html[data-pd-theme="dark"] .rv3-step-card {
    background: var(--rv3-surface);
    border-color: var(--rv3-border);
    color: var(--rv3-text);
}

html[data-theme="dark"] .rv3-editorial,
html[data-theme="dark"] .rv3-step-card__text,
html[data-theme="dark"] .rv3-ingredients-list li,
html[data-theme="dark"] .rv3-tools-list li,
html.theme-dark .rv3-editorial,
html.theme-dark .rv3-step-card__text,
html.theme-dark .rv3-ingredients-list li,
html.theme-dark .rv3-tools-list li,
html[data-pd-theme="dark"] .rv3-editorial,
html[data-pd-theme="dark"] .rv3-step-card__text,
html[data-pd-theme="dark"] .rv3-ingredients-list li,
html[data-pd-theme="dark"] .rv3-tools-list li { color: #f0f3f5; }

html[data-theme="dark"] .rv3-input,
html.theme-dark .rv3-input,
html[data-pd-theme="dark"] .rv3-input { background:#232323; border-color:#343434; color:#f0f3f5; }

html[data-theme="dark"] .rv3-share-btn,
html[data-theme="dark"] .rv3-chip,
html[data-theme="dark"] .rv3-wakelock,
html.theme-dark .rv3-share-btn,
html.theme-dark .rv3-chip,
html.theme-dark .rv3-wakelock,
html[data-pd-theme="dark"] .rv3-share-btn,
html[data-pd-theme="dark"] .rv3-chip,
html[data-pd-theme="dark"] .rv3-wakelock { background:#232323; border-color:#343434; color:#f0f3f5; }

html[data-theme="dark"] .rv3-editorial a,
html.theme-dark .rv3-editorial a,
html[data-pd-theme="dark"] .rv3-editorial a,
html[data-theme="dark"] .rv3-step-card__text a,
html.theme-dark .rv3-step-card__text a,
html[data-pd-theme="dark"] .rv3-step-card__text a {
    color: var(--rv3-brand-strong);
}
