/* ═══════════════════════════════════════════════════════════════
   FLAVOR STARTER — Theme CSS
   Les couleurs sont injectées en inline via PHP (voir enqueue.php)
   comme :root { --color-primary: #xxx; ... }
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 17px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--color-neutral-900);
    background: #fff;
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.container--narrow { max-width: 800px; }

.section {
    padding: 3.5rem 0;
}
.section--alt {
    background: var(--color-neutral-50);
}
.section__title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}
.section__subtitle {
    text-align: center;
    color: var(--color-neutral-700);
    margin-bottom: 2rem;
}
.section__more {
    text-align: center;
    margin-top: 2rem;
}

.layout-blog {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    padding: 2rem 0;
}
.layout-blog--full {
    grid-template-columns: 1fr;
    max-width: 100%;
}
@media (max-width: 768px) {
    .layout-blog { grid-template-columns: 1fr; }
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    line-height: 1.4;
}
.btn--lg { padding: 0.875rem 1.75rem; font-size: 1.0625rem; }
.btn--sm { padding: 0.375rem 0.875rem; font-size: 0.8125rem; }

.btn--primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}
.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn--outline:hover {
    background: var(--color-primary);
    color: #fff;
}
.btn--affiliate {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}
.btn--affiliate:hover {
    filter: brightness(1.1);
    color: #fff;
}

.link--subtle {
    color: var(--color-neutral-700);
    text-decoration: underline;
    font-size: 0.875rem;
}

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
    background: var(--color-secondary);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.75rem;
}
.site-header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
}

.site-header__logo img.flavor-logo-img{max-width:32px;}
.site-header__logo:hover { color: var(--color-primary-light); }
.site-header__emoji { font-size: 1.5rem; }

/* Burger */
.site-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.site-header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.2s;
}

/* Nav */
.site-nav__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}
.site-nav__list a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}
.site-nav__list a:hover { color: #fff; }
.site-nav__cta {
    background: var(--color-primary) !important;
    color: #fff !important;
    padding: 0.375rem 1rem;
    border-radius: 0.375rem;
}

/* Sous-menus desktop */
.site-nav__list .menu-item-has-children {
    position: relative;
}
.site-nav__list .menu-item-has-children > a::after {
    content: '▾';
    margin-left: 4px;
    font-size: 0.75rem;
    opacity: 0.6;
}
.site-nav__list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    min-width: 220px;
    list-style: none;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    z-index: 200;
}
.site-nav__list .menu-item-has-children:hover > .sub-menu {
    display: block;
}
.site-nav__list .sub-menu li { width: 100%; }
.site-nav__list .sub-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}
.site-nav__list .sub-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .site-header__burger { display: flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 3.75rem;
        left: 0;
        right: 0;
        background: var(--color-secondary);
        padding: 1rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 200;
        max-height: 80vh;
        overflow-y: auto;
    }
    .site-nav.is-open { display: block; }
    .site-nav__list { flex-direction: column; gap: 0; }
    .site-nav__list li { width: 100%; }
    .site-nav__list a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    /* Sous-menus mobile */
    .site-nav__list .sub-menu {
        display: none;
        position: static;
        transform: none;
        background: rgba(0,0,0,0.15);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        min-width: 0;
    }
    .site-nav__list .menu-item-has-children.is-open > .sub-menu {
        display: block;
    }
    .site-nav__list .sub-menu a {
        padding: 0.625rem 1.5rem;
        font-size: 0.8125rem;
    }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../images/hero-home.jpg') center/cover no-repeat;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}
.hero__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.hero__subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero__actions .btn--outline {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.hero__actions .btn--outline:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Archive hero */
.archive-hero {
    background: var(--color-neutral-50);
    padding: 2.5rem 0;
    text-align: center;
    margin-bottom: 1.5rem;
}
.archive-hero__title { font-size: 2rem; font-weight: 800; }
.archive-hero__subtitle { color: var(--color-neutral-700); margin-top: 0.5rem; }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.8125rem;
    color: var(--color-neutral-700);
}
.breadcrumb a { color: var(--color-neutral-700); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb__sep { margin: 0 0.375rem; opacity: 0.5; }

/* ─── PRODUCT GRID ───────────────────────────────────────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* ─── PRODUCT CARD ───────────────────────────────────────── */
.product-card {
    background: #fff;
    border: 1px solid var(--color-neutral-200);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.product-card__link {
    display: block;
    color: inherit;
    flex: 1;
}
.product-card__image {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--color-neutral-50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-card__img { width: 100%; height: 100%; object-fit: cover; }
.product-card__placeholder { font-size: 3rem; opacity: 0.3; }
.product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
}
.product-card__body { padding: 1rem; }
.product-card__brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-neutral-700);
    font-weight: 600;
}
.product-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0.25rem 0 0.5rem;
    line-height: 1.3;
}
.product-card__rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--color-neutral-700);
}
.product-card__price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-top: 0.5rem;
}
.product-card__footer {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem 1rem;
}
.product-card__footer .btn { flex: 1; font-size: 0.8125rem; }

/* ─── STARS ──────────────────────────────────────────────── */
.stars { white-space: nowrap; }
.star { color: #fbbf24; }
.star--empty { color: var(--color-neutral-200); }
.star--half {
    background: linear-gradient(to right, #fbbf24 50%, var(--color-neutral-200) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── SPECS TABLE ────────────────────────────────────────── */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table__row:nth-child(even) { background: var(--color-neutral-50); }
.specs-table__label,
.specs-table__value {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
}
.specs-table__label {
    font-weight: 600;
    color: var(--color-neutral-700);
    width: 40%;
}
.spec-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
}
.spec-badge--yes { background: #dcfce7; color: #166534; }
.spec-badge--no  { background: #fee2e2; color: #991b1b; }

/* ─── PRODUCT SINGLE ─────────────────────────────────────── */
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    padding: 2rem 0;
}
@media (max-width: 768px) {
    .product-hero { grid-template-columns: 1fr; }
}
.product-hero__image {
    aspect-ratio: 4/3;
    background: var(--color-neutral-50);
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-hero__img { width: 100%; height: 100%; object-fit: cover; }
.product-hero__placeholder { font-size: 5rem; opacity: 0.2; }
.product-hero__brand {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    font-weight: 700;
}
.product-hero__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0.25rem 0 0.75rem;
}
.product-hero__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.product-hero__rating-value { font-weight: 700; }
.product-hero__price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0.75rem 0;
}
.product-hero__cta { margin-top: 1.5rem; }

/* Pros / Cons */
.product-proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
}
@media (max-width: 600px) { .product-proscons { grid-template-columns: 1fr; } }

.product-proscons__col {
    padding: 1.5rem;
    border-radius: 0.75rem;
}
.product-proscons__col--pros { background: #f0fdf4; }
.product-proscons__col--cons { background: #fef2f2; }
.product-proscons__heading { font-size: 1.125rem; margin-bottom: 0.75rem; }
.product-proscons__col ul { list-style: none; padding: 0; }
.product-proscons__col li {
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9375rem;
}
.product-proscons__col--pros li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.product-proscons__col--cons li::before { content: '✗'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

.product-specs { padding: 2rem 0; }
.product-specs__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }

.product-content { padding: 2rem 0; }
.product-cta { padding: 2rem 0; text-align: center; }

/* ─── CTA BLOCK ──────────────────────────────────────────── */
.section--cta { background: var(--color-neutral-50); }
.cta-block {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border: 2px solid var(--color-neutral-200);
    border-radius: 1rem;
    max-width: 600px;
    margin: 0 auto;
}
.cta-block__title { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.cta-block__text { color: var(--color-neutral-700); margin-bottom: 1.5rem; }

/* ─── COMPARISON ─────────────────────────────────────────── */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Comparison card */
.comparison-card {
    background: #fff;
    border: 1px solid var(--color-neutral-200);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.comparison-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.comparison-card__link { display: block; padding: 1.25rem; color: inherit; }
.comparison-card__versus {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}
.comparison-card__product { text-align: center; flex: 1; }
.comparison-card__img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin: 0 auto 0.5rem;
}
.comparison-card__placeholder { font-size: 2rem; opacity: 0.3; margin-bottom: 0.5rem; }
.comparison-card__name { font-size: 0.8125rem; font-weight: 600; display: block; }
.comparison-card__vs {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-primary);
}
.comparison-card__title { font-size: 1rem; font-weight: 700; text-align: center; }
.comparison-card__excerpt { font-size: 0.875rem; color: var(--color-neutral-700); text-align: center; margin-top: 0.5rem; }

/* Comparison single */
.comparison-single { padding: 2rem 0; }
.comparison-single__title { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 2rem; }

.comparison-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.comparison-header__product {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--color-neutral-50);
    transition: 0.2s;
}
.comparison-header__product--overall-winner {
    background: #f0fdf4;
    border: 2px solid var(--color-accent);
}
.comparison-header__img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin: 0 auto 0.75rem;
}
.comparison-header__name { font-size: 1.125rem; font-weight: 700; }
.comparison-header__name a { color: inherit; }
.comparison-header__score { font-size: 0.875rem; color: var(--color-neutral-700); margin: 0.5rem 0; }
.comparison-header__vs {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
}

/* Comparison table */
.comparison-table { padding: 2rem 0; }
.comparison-table__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }

.comparison-table__grid {
    border: 1px solid var(--color-neutral-200);
    border-radius: 0.75rem;
    overflow: hidden;
}
.comparison-table__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.comparison-table__row--header {
    background: var(--color-secondary);
    color: #fff;
    font-weight: 700;
}
.comparison-table__row:not(.comparison-table__row--header):nth-child(even) {
    background: var(--color-neutral-50);
}
.comparison-table__row--total {
    background: var(--color-neutral-100) !important;
    border-top: 2px solid var(--color-neutral-200);
}

.comparison__cell {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.comparison__cell--label { font-weight: 600; }
.comparison__hint {
    font-size: 0.6875rem;
    opacity: 0.6;
    font-weight: 400;
}
.comparison__cell--winner {
    background: rgba(22, 163, 74, 0.08);
    color: #166534;
    font-weight: 700;
}
.comparison__cell--loser {
    opacity: 0.6;
}
.comparison__trophy { font-size: 0.875rem; }

.comparison-verdict { padding: 2rem 0; }
.comparison-verdict__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.comparison-verdict__text { max-width: 700px; }

.comparison-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}
.comparison-ctas__item { text-align: center; }
.comparison-ctas__item h3 { margin-bottom: 0.75rem; font-size: 1rem; }

@media (max-width: 600px) {
    .comparison-table__row { grid-template-columns: 1fr; }
    .comparison__cell--label {
        background: var(--color-neutral-100);
        font-size: 0.8125rem;
    }
}

/* ─── BLOG CARD ──────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.blog-card {
    background: #fff;
    border: 1px solid var(--color-neutral-200);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.blog-card__link { display: block; color: inherit; }
.blog-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.blog-card__img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 1rem; }
.blog-card__category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    font-weight: 700;
}
.blog-card__title { font-size: 1.0625rem; font-weight: 700; margin: 0.25rem 0 0.5rem; line-height: 1.3; }
.blog-card__excerpt { font-size: 0.875rem; color: var(--color-neutral-700); line-height: 1.5; }
.blog-card__meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-neutral-700);
    opacity: 0.7;
}

/* ─── BLOG SINGLE ────────────────────────────────────────── */
.post-single__header { margin-bottom: 1.5rem; }
.post-single__category {
    font-size: 0.8125rem;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 700;
}
.post-single__title { font-size: 2rem; font-weight: 800; margin: 0.25rem 0; }
.post-single__meta { font-size: 0.8125rem; color: var(--color-neutral-700); }
.post-single__featured {
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 2rem;
}
.post-single__img { width: 100%; }
.post-single__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-neutral-200);
}
.post-single__tag {
    background: var(--color-neutral-100);
    color: var(--color-neutral-700);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8125rem;
}

.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid var(--color-neutral-200);
}
.post-nav__link {
    color: inherit;
    padding: 1rem;
    border-radius: 0.5rem;
    background: var(--color-neutral-50);
}
.post-nav__link:hover { background: var(--color-neutral-100); }
.post-nav__label { font-size: 0.75rem; color: var(--color-neutral-700); display: block; }
.post-nav__title { font-weight: 600; font-size: 0.9375rem; margin-top: 0.25rem; display: block; }
.post-nav__link--next { text-align: right; }

/* ─── ENTRY CONTENT (Gutenberg output) ───────────────────── */
.entry-content h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.entry-content h3 { font-size: 1.25rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.entry-content p  { margin-bottom: 1rem; }
.entry-content ul, .entry-content ol { margin: 0 0 1rem 1.5rem; }
.entry-content li { margin-bottom: 0.25rem; }
.entry-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: var(--color-neutral-50);
    font-style: italic;
}
.entry-content img {
    border-radius: 0.5rem;
    margin: 1.5rem auto;
}
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.entry-content th, .entry-content td {
    padding: 0.625rem;
    border: 1px solid var(--color-neutral-200);
    text-align: left;
}
.entry-content th { background: var(--color-neutral-50); font-weight: 600; }

/* ─── QUIZ ───────────────────────────────────────────────── */
.quiz-page { padding: 3rem 0; }
.quiz-page__header { text-align: center; margin-bottom: 2rem; }
.quiz-page__title { font-size: 2rem; font-weight: 800; }
.quiz-page__subtitle { color: var(--color-neutral-700); margin-top: 0.5rem; }

.quiz__progress {
    background: var(--color-neutral-100);
    border-radius: 999px;
    height: 6px;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}
.quiz__progress-bar {
    background: var(--color-primary);
    height: 100%;
    border-radius: 999px;
    transition: width 0.4s ease;
}
.quiz__progress-text {
    font-size: 0.8125rem;
    color: var(--color-neutral-700);
    text-align: center;
    display: block;
    margin-bottom: 1.5rem;
}

.quiz__step {
    display: none;
    animation: fadeIn 0.3s;
}
.quiz__step.is-active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.quiz__question {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-align: center;
}
.quiz__icon { margin-right: 0.5rem; }

.quiz__answers {
    display: grid;
    gap: 0.75rem;
}
.quiz__answer {
    display: block;
    width: 100%;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 2px solid var(--color-neutral-200);
    border-radius: 0.75rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 1rem;
}
.quiz__answer:hover {
    border-color: var(--color-primary);
    background: color-mix(in srgb, var(--color-primary) 5%, white);
}
.quiz__answer.is-selected {
    border-color: var(--color-primary);
    background: color-mix(in srgb, var(--color-primary) 10%, white);
}
.quiz__answer-label { font-weight: 600; display: block; }
.quiz__answer-desc { font-size: 0.8125rem; color: var(--color-neutral-700); display: block; margin-top: 0.125rem; }

.quiz__nav {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

/* Loader */
.quiz__loader {
    text-align: center;
    padding: 3rem 0;
}
.quiz__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-neutral-200);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Results */
.quiz-results__title { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 1.5rem; }
.quiz-results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}
.quiz-results__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.quiz-results__empty { text-align: center; padding: 1.5rem; color: var(--color-neutral-700); }

/* ─── ARCHIVE FILTERS ────────────────────────────────────── */
.archive-filters {
    padding: 1rem 0 1.5rem;
}
.archive-filters__group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.archive-filters__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-neutral-700);
}
.archive-filters__tag {
    font-size: 0.8125rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: var(--color-neutral-100);
    color: var(--color-neutral-700);
    transition: 0.2s;
}
.archive-filters__tag:hover,
.archive-filters__tag.is-active {
    background: var(--color-primary);
    color: #fff;
}
.archive-filters__count { opacity: 0.6; }

/* ─── SIDEBAR ────────────────────────────────────────────── */
.sidebar__quiz-cta {
    background: var(--color-neutral-50);
    border: 1px solid var(--color-neutral-200);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 1.5rem;
}
.sidebar__quiz-cta h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.sidebar__quiz-cta p { font-size: 0.875rem; color: var(--color-neutral-700); margin-bottom: 1rem; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
    margin-top: 0;
}

/* Bande CTA */
.footer-cta {
    background: var(--color-primary);
}
.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 0;
    flex-wrap: wrap;
}
.footer-cta__text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
}
.footer-cta__text p { margin: 0; }
.footer-cta__emoji { font-size: 1.5rem; }
.footer-cta .btn {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
    font-weight: 700;
    white-space: nowrap;
}
.footer-cta .btn:hover {
    background: rgba(255,255,255,0.9);
    color: var(--color-primary-dark);
}

/* Corps principal */
.footer-main {
    background: var(--color-secondary);
    padding: 3rem 0;
}
.footer-main__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}

/* Marque */
.footer-brand__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 0.75rem;
}
.footer-brand__logo:hover { opacity: 0.85; color: #fff; }
.footer-brand__emoji { font-size: 1.5rem; }
.footer-brand__tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 300px;
}

/* Navigation footer */
.footer-nav__title {
    color: rgba(255,255,255,0.35);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav__list li {
    margin-bottom: 0.625rem;
}
.footer-nav__list a {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s;
}
.footer-nav__list a:hover {
    color: #fff;
}

/* Barre basse */
.footer-bottom {
    background: color-mix(in srgb, var(--color-secondary) 90%, black);
    padding: 1.25rem 0;
}
.footer-bottom__disclaimer {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 0.75rem;
    line-height: 1.6;
}
.footer-bottom__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom__copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}
.footer-bottom__made {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .footer-main__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-cta__inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom__bar {
        justify-content: center;
        text-align: center;
    }
}

/* ─── 404 ────────────────────────────────────────────────── */
.page-404 {
    text-align: center;
    padding: 5rem 0;
}
.page-404__title { font-size: 5rem; font-weight: 900; color: var(--color-neutral-200); }
.page-404__text { font-size: 1.125rem; color: var(--color-neutral-700); margin: 1rem 0 2rem; }
.page-404__actions { display: flex; gap: 1rem; justify-content: center; }

/* ─── PAGINATION ─────────────────────────────────────────── */
.pagination { padding: 2rem 0; text-align: center; }
.pagination .nav-links { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.pagination .page-numbers {
    padding: 0.5rem 0.875rem;
    border-radius: 0.375rem;
    background: var(--color-neutral-100);
    color: var(--color-neutral-700);
    font-weight: 600;
    font-size: 0.875rem;
}
.pagination .page-numbers.current {
    background: var(--color-primary);
    color: #fff;
}

/* ─── UTILITY ────────────────────────────────────────────── */
.archive-empty {
    text-align: center;
    padding: 3rem 0;
    color: var(--color-neutral-700);
}
/* ═══════════════════════════════════════════════════════════════
   TONTELIBRE — Styles complémentaires à ajouter en fin de style.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── Bannière chiffre-clé ───────────────────────────────────── */
.tl-stat-banner {
    background: linear-gradient(135deg, var(--color-primary-dark, #1a3a2a), var(--color-primary, #2d5a3f));
    color: #fff;
    padding: 2.5rem 0;
    text-align: center;
}
.tl-stat-banner__inner {
    max-width: 600px;
    margin: 0 auto;
}
.tl-stat-banner__number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #7bc89a;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.tl-stat-banner__text {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}
.tl-stat-banner__text strong {
    color: #fff;
}

/* ─── Bloc éditorial "Pourquoi ce site est différent" ────────── */
.tl-editorial {
    padding: 3.5rem 0;
}
.tl-editorial__content {
    max-width: 680px;
    margin: 0 auto 2rem;
    text-align: center;
}
.tl-editorial__content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-neutral-700, #334155);
    margin-bottom: 0.8rem;
}
.tl-editorial__content p strong {
    color: var(--color-neutral-900, #0f172a);
}
.tl-editorial__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.tl-feature {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--color-neutral-50, #f2fbf6);
    border-radius: 12px;
    border: 1px solid var(--color-neutral-200, #e0f5ea);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.tl-feature:hover {
    border-color: var(--color-primary-light, #3d8b5e);
    box-shadow: 0 4px 16px rgba(45, 90, 63, 0.08);
}
.tl-feature__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.6rem;
}
.tl-feature__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary-dark, #1a3a2a);
    margin-bottom: 0.4rem;
}
.tl-feature p {
    font-size: 0.88rem;
    color: var(--color-neutral-700, #334155);
    line-height: 1.6;
    margin: 0;
}

/* ─── Bloc parcours "Par où commencer" ───────────────────────── */
.tl-parcours {
    padding: 3.5rem 0;
}
.tl-parcours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 1.5rem auto 0;
}
.tl-card {
    display: block;
    background: #fff;
    border: 1px solid var(--color-neutral-200, #cbd5e1);
    border-radius: 10px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.tl-card:hover {
    border-color: var(--color-primary-light, #3d8b5e);
    box-shadow: 0 6px 20px rgba(45, 90, 63, 0.1);
    transform: translateY(-2px);
}
.tl-card__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}
.tl-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary-dark, #1a3a2a);
    margin-bottom: 0.25rem;
}
.tl-card__desc {
    font-size: 0.82rem;
    color: var(--color-neutral-700, #64748b);
    margin: 0;
    line-height: 1.5;
}
/* ═══════════════════════════════════════════════════════════════
   TONTELIBRE — Blocs éditoriaux articles
   À ajouter à la suite de tontelibre-additions.css dans style.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── Bloc "En français ?" ───────────────────────────────────── 
   Usage dans l'éditeur WP : 
   <div class="tl-enfrancais">
     <strong>Mulching :</strong> au lieu de ramasser l'herbe…
   </div>
──────────────────────────────────────────────────────────────── */
.tl-enfrancais {
    position: relative;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #3b82f6;
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem 1.25rem 1.5rem;
    margin: 1.5rem 0 1.8rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #1e3a5f;
}
.tl-enfrancais::before {
    content: '💬 En français ?';
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}
.tl-enfrancais strong {
    color: #1e40af;
    font-weight: 700;
}
.tl-enfrancais p {
    margin: 0;
}
.tl-enfrancais p + p {
    margin-top: 0.5rem;
}

/* Variante compacte (pour les encadrés courts d'une ligne) */
.tl-enfrancais--compact {
    padding: 0.9rem 1.2rem;
}
.tl-enfrancais--compact::before {
    display: inline;
    margin-right: 0.5rem;
    margin-bottom: 0;
}

/* ─── Bloc "Verdict du voisin" ───────────────────────────────── 
   Usage dans l'éditeur WP :
   <div class="tl-verdict">
     <p>"Si j'avais ton jardin, je prendrais le Navimow…"</p>
   </div>
──────────────────────────────────────────────────────────────── */
.tl-verdict {
    position: relative;
    background: linear-gradient(135deg, #e0f5ea 0%, #f2fbf6 100%);
    border-left: 4px solid #3d8b5e;
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem 1.25rem 4rem;
    margin: 2rem 0;
}
.tl-verdict::before {
    content: '🏡';
    position: absolute;
    left: 1.1rem;
    top: 1.15rem;
    font-size: 1.6rem;
    line-height: 1;
}
.tl-verdict::after {
    content: 'Le verdict du voisin';
    position: absolute;
    top: 0;
    left: 1rem;
    transform: translateY(-50%);
    background: #2d5a3f;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}
.tl-verdict p {
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 500;
    color: #1a3a2a;
    line-height: 1.65;
    margin: 0;
}
.tl-verdict p strong {
    font-style: normal;
    color: #2d5a3f;
}

/* ─── Bloc affiliation produit ───────────────────────────────── 
   Usage dans l'éditeur WP :
   <div class="tl-affiliation">
     <div class="tl-affiliation__img">
       <img src="photo-produit.jpg" alt="Nom du produit">
     </div>
     <div class="tl-affiliation__body">
       <h4 class="tl-affiliation__name">Segway Navimow i105E</h4>
       <p class="tl-affiliation__price">À partir de <strong>649 €</strong></p>
       <p class="tl-affiliation__desc">Le meilleur rapport qualité/prix pour jardins jusqu'à 500 m²</p>
       <div class="tl-affiliation__actions">
         <a href="#" class="tl-affiliation__btn tl-affiliation__btn--primary">Voir le prix sur Amazon →</a>
         <a href="#" class="tl-affiliation__btn tl-affiliation__btn--secondary">Lire notre avis complet</a>
       </div>
     </div>
   </div>
──────────────────────────────────────────────────────────────── */
.tl-affiliation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    border: 2px solid #e0f5ea;
    border-radius: 14px;
    padding: 1.3rem 1.5rem;
    margin: 2rem 0;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.tl-affiliation:hover {
    border-color: #3d8b5e;
    box-shadow: 0 6px 24px rgba(45, 90, 63, 0.1);
}
.tl-affiliation__img {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    background: #f2fbf6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tl-affiliation__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.tl-affiliation__body {
    flex: 1;
    min-width: 0;
}
.tl-affiliation__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a3a2a;
    margin: 0 0 0.2rem;
    line-height: 1.3;
}
.tl-affiliation__price {
    font-size: 0.92rem;
    color: #64748b;
    margin: 0 0 0.3rem;
}
.tl-affiliation__price strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2d5a3f;
}
.tl-affiliation__desc {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 0.8rem;
    line-height: 1.5;
}
.tl-affiliation__actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.tl-affiliation__btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    cursor: pointer;
}
.tl-affiliation__btn:active {
    transform: scale(0.97);
}
.tl-affiliation__btn--primary {
    background: #e5a524;
    color: #1a1a2e;
}
.tl-affiliation__btn--primary:hover {
    background: #d4960e;
}
.tl-affiliation__btn--secondary {
    background: transparent;
    color: #2d5a3f;
    border: 1px solid #2d5a3f;
}
.tl-affiliation__btn--secondary:hover {
    background: #e0f5ea;
}

/* ─── Variante compacte affiliation (inline dans les listes) ── */
.tl-affiliation--compact {
    padding: 0.9rem 1.2rem;
    gap: 1rem;
}
.tl-affiliation--compact .tl-affiliation__img {
    width: 80px;
    height: 80px;
}
.tl-affiliation--compact .tl-affiliation__name {
    font-size: 0.95rem;
}
.tl-affiliation--compact .tl-affiliation__desc {
    display: none;
}

/* ─── Variante pleine largeur (en fin d'article) ─────────────── */
.tl-affiliation--featured {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(180deg, #f2fbf6 0%, #fff 100%);
    border: 2px solid #3d8b5e;
}
.tl-affiliation--featured .tl-affiliation__img {
    width: 160px;
    height: 160px;
}
.tl-affiliation--featured .tl-affiliation__actions {
    justify-content: center;
}
.tl-affiliation--featured .tl-affiliation__name {
    font-size: 1.25rem;
}
.tl-affiliation--featured .tl-affiliation__price strong {
    font-size: 1.5rem;
}

/* ─── Bloc conseil cash (bonus) ──────────────────────────────── 
   Usage : <div class="tl-conseil"><strong>Conseil cash :</strong> texte</div>
──────────────────────────────────────────────────────────────── */
.tl-conseil {
    background: linear-gradient(135deg, #fef6dd 0%, #fef9ee 100%);
    border-left: 4px solid #e5a524;
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.4rem;
    margin: 1.5rem 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #78570a;
}
.tl-conseil strong {
    color: #5c4107;
    font-weight: 700;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
    .tl-stat-banner__number {
        font-size: 2.2rem;
    }
    .tl-editorial__features {
        grid-template-columns: 1fr;
    }
    .tl-parcours__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .tl-card {
        padding: 1rem 0.8rem;
    }
    .tl-card__icon {
        font-size: 1.5rem;
    }
	    .tl-affiliation {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    .tl-affiliation__img {
        width: 100px;
        height: 100px;
    }
    .tl-affiliation__actions {
        justify-content: center;
    }
    .tl-verdict {
        padding-left: 3.5rem;
    }
    .tl-verdict::before {
        left: 0.8rem;
        font-size: 1.3rem;
    }
    .tl-verdict::after {
        font-size: 0.62rem;
        right: 0.6rem;
    }
    .tl-enfrancais {
        padding: 1rem 1.2rem;
    }
    .tl-affiliation--compact {
        flex-direction: row;
        text-align: left;
    }
}
@media (max-width: 400px) {
    .tl-parcours__grid {
        grid-template-columns: 1fr;
    }
}
/* ─── PRODUCT GALLERY ────────────────────────────────────── */
.product-gallery { padding: 2rem 0; }
.product-gallery__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.product-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}
.product-gallery__thumb {
    aspect-ratio: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    display: block;
    border: 2px solid var(--color-neutral-200);
    transition: border-color 0.2s, transform 0.2s;
}
.product-gallery__thumb:hover {
    border-color: var(--color-primary);
    transform: scale(1.03);
}
.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox CSS-only */
.product-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}
.product-lightbox:target {
    display: flex;
}
.product-lightbox__inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}
.product-lightbox__inner img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
}
.product-lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.15s;
}
.product-lightbox__close:hover { opacity: 1; color: #fff; }
.product-lightbox__caption {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-top: 0.75rem;
}
.product-lightbox__nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}
.product-lightbox__prev,
.product-lightbox__next {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.15s;
}
.product-lightbox__prev:hover,
.product-lightbox__next:hover { opacity: 1; color: #fff; }

/* ─── ABOUT CARD ────────────────────────────────────── */
.about-card {
    background: #fff;
    border: 1px solid var(--color-primary-light);
    border-radius: 12px;
    padding: 22px 24px;
}
.about-card .icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.about-card h3 {
    margin-top: 0;
    font-size: 0.92rem;
}
.about-card p {
    font-size: 0.88rem;
    margin-bottom: 0;
    color: var(--text-muted);
}
/* ─── LOGO IMAGE / EMOJI ─────────────────────────────────── */
.flavor-logo-img {
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}
.flavor-logo-emoji {
    font-size: 1.5rem;
    line-height: 1;
    vertical-align: middle;
}
.flavor-logo-emoji--lg {
    font-size: 2.5rem;
}