/*
 * Guide des Tailles — Feuille de style dédiée
 *
 * @file        assets/css/guide-tailles.css
 * @package     LovelyLili
 * @version     1.0.0
 * @guide-step  Étape 8 — Pages custom (hors WooCommerce)
 * @depends     assets/css/main.css (tokens CSS — chargé avant)
 * @used-by     inc/setup.php — enqueue conditionnel sur is_page_template('page-guide-tailles.php')
 *
 * Organisation :
 *   1. Page wrapper & layout
 *   2. Hero
 *   3. Sidebar navigation
 *   4. Sections (header, intro, numéro)
 *   5. Emplacements illustrations
 *   6. Étapes de mesure
 *   7. Méthodes (bagues)
 *   8. Tableaux de tailles
 *   9. Encadrés conseil (tips)
 *  10. Matériel nécessaire
 *  11. Section cadeau / offrir
 *  12. CTA final
 *  13. Responsive — tablet & mobile
 */

/* ====================================================================
   1. PAGE WRAPPER & LAYOUT
   ==================================================================== */

.ll-guide-page {
    background: var(--warm-white);
}

.ll-guide-page__breadcrumb {
    padding-top: var(--space-lg);
    padding-bottom: 0;
}

/* Layout principal : sidebar gauche + contenu droit */
.ll-guide-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--space-2xl);
    align-items: start;
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

/* Pills de navigation sous le titre */
.ll-guide-hero__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.ll-guide-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    color: var(--text-body);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    backdrop-filter: blur(4px);
}

.ll-guide-pill:hover {
    background: var(--rose-50);
    border-color: var(--rose-300);
    color: var(--rose-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

/* ====================================================================
   3. SIDEBAR NAVIGATION
   ==================================================================== */

.ll-guide-sidebar {
    /* Hauteur naturelle — le JS gère le sticky */
}

.ll-guide-sidebar__inner {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    background: var(--color-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
}

.ll-guide-sidebar__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.ll-guide-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.ll-guide-sidebar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition-fast);
    position: relative;
}

.ll-guide-sidebar__link:hover {
    background: var(--rose-50);
    color: var(--rose-700);
}

.ll-guide-sidebar__link.is-active {
    background: var(--rose-50);
    color: var(--rose-700);
    font-weight: 600;
}

.ll-guide-sidebar__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
    transition: background var(--transition-fast);
}

.ll-guide-sidebar__link.is-active .ll-guide-sidebar__dot {
    background: var(--rose-500);
}

.ll-guide-sidebar__icon {
    font-size: 15px;
    flex-shrink: 0;
}

/* Bloc cadeau dans la sidebar */
.ll-guide-sidebar__gift-box {
    background: linear-gradient(135deg, var(--gold-50), var(--rose-50));
    border: 1px solid var(--gold-100);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.ll-guide-sidebar__gift-title {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.ll-guide-sidebar__gift-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.ll-guide-sidebar__gift-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--rose-600);
    transition: color var(--transition-fast);
}

.ll-guide-sidebar__gift-link:hover {
    color: var(--rose-800);
}

/* ====================================================================
   4. SECTIONS — Header, intro, numéro
   ==================================================================== */

.ll-guide-section {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--border);
}

.ll-guide-section:last-child {
    border-bottom: none;
}

.ll-guide-section__header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.ll-guide-section__number {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 600;
    color: var(--border);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -8px;
    letter-spacing: -0.03em;
    user-select: none;
}

.ll-guide-section__title {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.15;
}

.ll-guide-section__intro {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: var(--space-xl);
    font-weight: 300;
}

/* Section cadeau — fond différencié */
.ll-guide-section--gift {
    background: linear-gradient(135deg, var(--gold-50) 0%, var(--rose-50) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-top: var(--space-xl);
    border: 1px solid var(--gold-100);
}

/* ====================================================================
   5. EMPLACEMENTS ILLUSTRATIONS
   ==================================================================== */

.ll-guide-illus {
    margin: var(--space-xl) 0;
}

/* Placeholder de l'emplacement illustration */
.ll-guide-illus__placeholder {
    background: var(--linen);
    border: 2px dashed var(--rose-200);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    gap: var(--space-sm);
    transition: background var(--transition-base);
    min-height: 160px;
}

.ll-guide-illus__placeholder:hover {
    background: var(--rose-50);
    border-color: var(--rose-400);
}

.ll-guide-illus__icon {
    width: 64px;
    height: 64px;
    background: rgba(194, 80, 107, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-500);
    margin-bottom: var(--space-xs);
}

.ll-guide-illus__label {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.ll-guide-illus__sublabel {
    font-size: 13px;
    color: var(--text-muted);
}

.ll-guide-illus__spec {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rose-400);
    background: rgba(194, 80, 107, 0.07);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-top: var(--space-xs);
}

.ll-guide-illus__caption {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-sm);
    font-style: italic;
}

/* Variantes de format */
.ll-guide-illus--wide .ll-guide-illus__placeholder {
    min-height: 220px;
}

.ll-guide-illus--portrait .ll-guide-illus__placeholder {
    min-height: 280px;
    max-width: 360px;
}

.ll-guide-illus--square .ll-guide-illus__placeholder {
    min-height: 240px;
    max-width: 320px;
}

/* ====================================================================
   6. ÉTAPES DE MESURE
   ==================================================================== */

.ll-guide-how {
    margin-bottom: var(--space-xl);
}

.ll-guide-how__title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

/* Disposition illustration + étapes côte à côte */
.ll-guide-how__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.ll-guide-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    list-style: none;
    counter-reset: steps;
}

.ll-guide-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.ll-guide-step__num {
    width: 32px;
    height: 32px;
    background: var(--rose-600);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: var(--font-sans);
}

.ll-guide-step__body {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
    padding-top: 5px;
}

.ll-guide-step__body strong {
    color: var(--text-dark);
}

/* ====================================================================
   7. MÉTHODES (Bagues — 3 options)
   ==================================================================== */

.ll-guide-method {
    background: var(--color-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-soft);
}

.ll-guide-method__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--linen);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.ll-guide-method__badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose-700);
    background: var(--rose-100);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.ll-guide-method__title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.ll-guide-method__tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--border);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.ll-guide-method__body {
    padding: var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

/* ====================================================================
   8. TABLEAUX DE TAILLES
   ==================================================================== */

.ll-guide-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    margin: var(--space-xl) 0;
}

.ll-guide-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    font-family: var(--font-sans);
}

.ll-guide-table__caption {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    caption-side: top;
    text-align: left;
    padding: var(--space-md) var(--space-lg);
    background: var(--linen);
    border-bottom: 1px solid var(--border);
}

.ll-guide-table thead {
    background: var(--linen);
}

.ll-guide-table th {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.ll-guide-table td {
    padding: var(--space-md) var(--space-lg);
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.ll-guide-table tbody tr:last-child td {
    border-bottom: none;
}

.ll-guide-table tbody tr:hover {
    background: var(--rose-50);
}

/* Ligne mise en avant */
.ll-guide-table__row--highlight td {
    background: rgba(194, 80, 107, 0.04);
    font-weight: 500;
}

.ll-guide-table__row--highlight:hover td {
    background: var(--rose-50);
}

/* Badge dans le tableau */
.ll-guide-table__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rose-700);
    background: var(--rose-100);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 8px;
    vertical-align: middle;
    white-space: nowrap;
}

/* ====================================================================
   9. ENCADRÉS CONSEIL (tips)
   ==================================================================== */

.ll-guide-tip {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background: var(--gold-50);
    border: 1px solid var(--gold-100);
    border-left: 4px solid var(--gold-400);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

.ll-guide-tip__icon {
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1.4;
}

.ll-guide-tip strong {
    color: var(--text-dark);
}

/* ====================================================================
   10. MATÉRIEL NÉCESSAIRE
   ==================================================================== */

.ll-guide-material-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.ll-guide-material-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background: var(--color-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: box-shadow var(--transition-base);
}

.ll-guide-material-item:hover {
    box-shadow: var(--shadow-card);
}

.ll-guide-material-item__icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.ll-guide-material-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.ll-guide-material-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ====================================================================
   11. SECTION CADEAU / OFFRIR
   ==================================================================== */

.ll-guide-gift-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.ll-guide-gift-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--gold-100);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.ll-guide-gift-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.ll-guide-gift-item__icon {
    font-size: 32px;
    display: block;
    margin-bottom: var(--space-sm);
}

.ll-guide-gift-item h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.ll-guide-gift-item__size {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    color: var(--rose-600);
    margin-bottom: var(--space-sm);
}

.ll-guide-gift-item p:last-child {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ====================================================================
   12. CTA FINAL
   ==================================================================== */

.ll-guide-cta {
    background: var(--text-dark);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    margin-top: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.ll-guide-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(194, 80, 107, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(212, 163, 74, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.ll-guide-cta__title {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-md);
    position: relative;
}

.ll-guide-cta__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto var(--space-xl);
    font-weight: 300;
    position: relative;
}

.ll-guide-cta__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.ll-guide-cta__btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.ll-guide-cta__btn--primary {
    background: var(--rose-600);
    color: #fff;
}

.ll-guide-cta__btn--primary:hover {
    background: var(--rose-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(194, 80, 107, 0.4);
    color: #fff;
}

.ll-guide-cta__btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.ll-guide-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    color: #fff;
}

/* ====================================================================
   13. RESPONSIVE — Tablet (≤ 1024px) · Mobile (≤ 768px) · XS (≤ 480px)
   Correctif v1.1 — réécriture complète
   ==================================================================== */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {

    /* Layout : sidebar réduite */
    .ll-guide-layout {
        grid-template-columns: 180px 1fr;
        gap: var(--space-lg);
    }

    /* Grilles en 2 colonnes max */
    .ll-guide-gift-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Méthodes bagues : empilées */
    .ll-guide-method__body {
        grid-template-columns: 1fr;
    }

    /* Illustrations portrait/carré : pleine largeur */
    .ll-guide-illus--portrait,
    .ll-guide-illus--square {
        max-width: 100%;
    }

    .ll-guide-illus--portrait .ll-guide-illus__placeholder,
    .ll-guide-illus--square  .ll-guide-illus__placeholder {
        min-height: 200px;
    }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {

    /* ── Corrige le débordement horizontal global ── */
    .ll-guide-page,
    .ll-guide-hero,
    .ll-guide-layout,
    .ll-guide-content {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* ── Layout : colonne unique, sidebar masquée ── */
    .ll-guide-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: var(--space-xl);
        padding-bottom: var(--space-xl);
    }

    .ll-guide-sidebar {
        display: none;
    }

    /* ── Hero ── */
    .ll-page-header--guide-tailles {
        padding: var(--space-xl) 0 var(--space-lg);
    }


    /* Pills : scroll horizontal sans retour à la ligne */
    .ll-guide-hero__pills {
		justify-content: flex-start;
		margin-left:  -24px;
        margin-right: -24px;
        padding-left:  24px;
        padding-right: 24px;
        width: calc(100% + 48px);
        box-sizing: border-box;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .ll-guide-hero__pills::-webkit-scrollbar { display: none; }

    .ll-guide-pill {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 7px 14px;
        font-size: 12px;
    }

    /* ── Sections ── */
    .ll-guide-section {
        padding: var(--space-xl) 0;
    }

    /* Numéro de section : plus discret sur mobile */
    .ll-guide-section__header {
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }

    .ll-guide-section__number {
        font-size: 32px;
        margin-top: -4px;
    }

    .ll-guide-section__title {
        font-size: 22px;
    }

    .ll-guide-section__intro {
        font-size: 14px;
        margin-bottom: var(--space-lg);
    }

    .ll-guide-section--gift {
        padding: var(--space-lg) var(--space-md);
        border-radius: var(--radius-lg);
        margin-top: var(--space-lg);
    }

    /* ── Illustrations ── */
    .ll-guide-illus {
        margin: var(--space-lg) 0;
    }

    .ll-guide-illus__placeholder {
        min-height: 140px;
        padding: var(--space-lg) var(--space-md);
        gap: var(--space-xs);
    }

    .ll-guide-illus--wide .ll-guide-illus__placeholder  { min-height: 160px; }
    .ll-guide-illus--portrait .ll-guide-illus__placeholder { min-height: 160px; max-width: 100%; }
    .ll-guide-illus--square .ll-guide-illus__placeholder   { min-height: 160px; max-width: 100%; }

    .ll-guide-illus__icon {
        width: 48px;
        height: 48px;
    }

    .ll-guide-illus__label   { font-size: 13px; }
    .ll-guide-illus__sublabel { font-size: 12px; }

    /* Spec technique : masquée sur mobile (info pour intégrateur uniquement) */
    .ll-guide-illus__spec { display: none; }

    /* ── Comment mesurer : illustration + steps en colonne unique ── */
    .ll-guide-how__title {
        font-size: 17px;
    }

    .ll-guide-how__steps {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* ── Étapes numérotées ── */
    .ll-guide-step__body {
        font-size: 14px;
    }

    /* ── Méthodes bagues ── */
    .ll-guide-method__header {
        padding: var(--space-sm) var(--space-md);
        gap: var(--space-sm);
    }

    .ll-guide-method__title {
        font-size: 15px;
        flex: 1 1 100%; /* passe en dessous du badge sur mobile */
        order: 3;
    }

    .ll-guide-method__body {
        padding: var(--space-md);
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* ── Matériel ── */
    .ll-guide-material-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .ll-guide-material-item {
        padding: var(--space-sm) var(--space-md);
    }

    /* ── Tableaux ── */
    .ll-guide-table-wrap {
        border-radius: var(--radius-md);
        margin: var(--space-lg) 0;
        -webkit-overflow-scrolling: touch;
    }

    .ll-guide-table__caption {
        font-size: 13px;
        padding: var(--space-sm) var(--space-md);
    }

    .ll-guide-table th {
        padding: var(--space-sm) var(--space-md);
        font-size: 11px;
    }

    .ll-guide-table td {
        padding: 10px var(--space-md);
        font-size: 13px;
    }

    /* Masque la 3e colonne (diamètre intérieur) sur le tableau bagues —
       valeur secondaire, la circonférence suffit pour identifier la taille */
    .ll-guide-table thead th:nth-child(3),
    .ll-guide-table tbody td:nth-child(3) {
        display: none;
    }

    /* Badge dans les cellules : passe sous le texte */
    .ll-guide-table__badge {
        display: block;
        margin-left: 0;
        margin-top: 4px;
        width: fit-content;
    }

    /* ── Conseil (tips) ── */
    .ll-guide-tip {
        padding: var(--space-sm) var(--space-md);
        font-size: 13px;
        gap: var(--space-sm);
    }

    /* ── Section cadeau ── */
    .ll-guide-gift-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .ll-guide-gift-item {
        padding: var(--space-md) var(--space-sm);
    }

    .ll-guide-gift-item__size {
        font-size: 18px;
    }

    .ll-guide-gift-item p:last-child {
        font-size: 12px;
    }

    /* ── CTA final ── */
    .ll-guide-cta {
        padding: var(--space-xl) var(--space-lg);
        border-radius: var(--radius-lg);
        margin-top: var(--space-xl);
    }

    .ll-guide-cta__text {
        font-size: 14px;
    }
}

/* ── Très petit mobile (≤ 480px) ── */
@media (max-width: 480px) {

    /* Hero : numéro de section masqué pour gagner de la place */
    .ll-guide-section__number {
        display: none;
    }

    /* Cadeau : 1 colonne */
    .ll-guide-gift-grid {
        grid-template-columns: 1fr;
    }

    /* CTA : boutons pleine largeur empilés */
    .ll-guide-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ll-guide-cta__btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}