/* =========================================================================
   Lignara — surcouche de design appliquée au thème Multikart
   ========================================================================= */

:root {
    --ln-ink:        #15110e;
    --ln-ink-2:      #1f1914;
    --ln-ink-3:      #2a221b;
    --ln-line:       #e6dccd;
    --ln-line-dark:  #3a3027;
    --ln-bg:         #f7f2ea;
    --ln-surface:    #ffffff;
    --ln-text:       #2b241f;
    --ln-muted:      #7b6f64;
    --ln-muted-dark: #b5a898;
    --ln-accent:     #c47a35;
    --ln-accent-dk:  #a8622a;
    --ln-mint:       #2e4636;
    --ln-danger:     #b3261e;
    --ln-success:    #2f6b45;
    --ln-radius:     16px;
    --ln-radius-sm:  10px;
    --ln-shadow:     0 1px 2px rgba(21,17,14,.05), 0 14px 34px -16px rgba(21,17,14,.22);
    --ln-shadow-lg:  0 24px 60px -20px rgba(21,17,14,.35);
    --ln-font:       'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ------------------------------------------------------------------ base */

.ln-body {
    font-family: var(--ln-font);
    background: var(--ln-bg);
    color: var(--ln-text);
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: .01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ln-body h1, .ln-body h2, .ln-body h3, .ln-body h4, .ln-body h5, .ln-body h6 {
    font-family: var(--ln-font);
    color: var(--ln-ink);
    font-weight: 600;
    letter-spacing: .005em;
    line-height: 1.3;
}

.ln-body a { color: inherit; text-decoration: none; transition: color .18s ease; }
.ln-body a:hover { color: var(--ln-accent); }
.ln-body img { max-width: 100%; height: auto; }
.ln-body :focus-visible { outline: 3px solid var(--ln-accent); outline-offset: 2px; border-radius: 4px; }

.ln-section { padding: 72px 0; }
.ln-section--tight { padding: 48px 0; }
.ln-section--alt { background: var(--ln-surface); }

.ln-heading { margin-bottom: 34px; }
.ln-heading__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ln-accent); margin-bottom: 10px;
}
.ln-heading h2 { font-size: clamp(23px, 2.8vw, 32px); font-weight: 600; margin: 0 0 8px; }
.ln-heading p { color: var(--ln-muted); margin: 0; max-width: 68ch; font-weight: 400; }
.ln-heading__row { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end; justify-content: space-between; }

/* ---------------------------------------------------------------- boutons */

.ln-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border-radius: 999px; border: 1px solid transparent; cursor: pointer;
    padding: 13px 26px; font-weight: 600; font-size: 13.5px; line-height: 1; letter-spacing: .02em;
    transition: transform .15s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.ln-btn:active { transform: translateY(1px); }
.ln-btn--primary { background: var(--ln-accent); color: #fff; }
.ln-btn--primary:hover { background: var(--ln-accent-dk); color: #fff; }
.ln-btn--dark { background: var(--ln-ink); color: #fff; }
.ln-btn--dark:hover { background: var(--ln-ink-3); color: #fff; }
.ln-btn--outline { background: transparent; border-color: var(--ln-line); color: var(--ln-text); }
.ln-btn--outline:hover { border-color: var(--ln-ink); color: var(--ln-ink); }
.ln-btn--ghost { background: transparent; color: var(--ln-muted); }
.ln-btn--ghost:hover { color: var(--ln-ink); }
.ln-btn--block { width: 100%; }
.ln-btn--lg { padding: 15px 30px; font-size: 15px; }
.ln-btn[disabled], .ln-btn.is-disabled { opacity: .5; pointer-events: none; }
.ln-linkbtn { background: none; border: 0; padding: 0; color: inherit; font: inherit; cursor: pointer; }
.ln-linkbtn:hover { color: var(--ln-accent); }

/* --------------------------------------------------------------- fil d'Ariane */

.ln-breadcrumb { background: var(--ln-surface); border-bottom: 1px solid var(--ln-line); padding: 14px 0; font-size: 13px; }
.ln-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; color: var(--ln-muted); }
.ln-breadcrumb li + li::before { content: '/'; margin-right: 8px; color: #c3c9d2; }
.ln-breadcrumb a { color: var(--ln-muted); }
.ln-breadcrumb a:hover { color: var(--ln-accent); }
.ln-breadcrumb li[aria-current] { color: var(--ln-text); font-weight: 600; }

/* ------------------------------------------------------------------ alertes */

.ln-alert {
    display: flex; gap: 12px; align-items: flex-start; margin: 22px 0 0;
    padding: 14px 18px; border-radius: var(--ln-radius-sm); font-size: 14px; font-weight: 600;
}
.ln-alert i { font-size: 19px; line-height: 1.3; }
.ln-alert ul { margin: 0; padding-left: 18px; font-weight: 500; }
.ln-alert--success { background: #e7f6f0; color: var(--ln-success); }
.ln-alert--error { background: #fdecea; color: var(--ln-danger); }
.ln-alert--info { background: #eef2fb; color: #29457c; }

/* --------------------------------------------------------- panier / commande */

.ln-cart-table { width: 100%; background: var(--ln-surface); border: 1px solid var(--ln-line); border-radius: var(--ln-radius); overflow: hidden; }
.ln-cart-row { display: grid; grid-template-columns: 92px 1fr auto; gap: 16px; padding: 18px; border-bottom: 1px solid var(--ln-line); align-items: center; }
.ln-cart-row:last-child { border-bottom: 0; }
.ln-cart-row img { width: 92px; height: 92px; object-fit: cover; border-radius: var(--ln-radius-sm); background: #f1f3f6; }
.ln-cart-row h3 { font-size: 15px; margin: 0 0 4px; }
.ln-cart-row__meta { font-size: 12.5px; color: var(--ln-muted); }
.ln-cart-row__price { font-size: 17px; font-weight: 800; text-align: right; }
@media (max-width: 575px) { .ln-cart-row { grid-template-columns: 72px 1fr; } .ln-cart-row img { width: 72px; height: 72px; } .ln-cart-row__price { grid-column: 1 / -1; text-align: left; } }

.ln-summary { background: var(--ln-surface); border: 1px solid var(--ln-line); border-radius: var(--ln-radius); padding: 24px; position: sticky; top: 20px; }
.ln-summary h2 { font-size: 17px; margin: 0 0 16px; }
.ln-summary__line { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; font-size: 14px; color: var(--ln-muted); }
.ln-summary__line strong { color: var(--ln-ink); font-weight: 700; }
.ln-summary__total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--ln-line); margin-top: 12px; padding-top: 14px; font-size: 15px; }
.ln-summary__total strong { font-size: 23px; font-weight: 600; color: var(--ln-ink); }
.ln-summary__saving { background: #e7f6f0; color: var(--ln-success); border-radius: 9px; padding: 9px 12px; font-size: 13px; font-weight: 700; margin-top: 12px; }

.ln-form label { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .02em; color: #333a45; margin-bottom: 7px; }
.ln-form input[type="text"], .ln-form input[type="email"], .ln-form input[type="tel"],
.ln-form input[type="search"], .ln-form select, .ln-form textarea {
    width: 100%; border: 1px solid var(--ln-line); border-radius: 10px; padding: 12px 14px; font-size: 14.5px;
    background: #fff; color: var(--ln-text); transition: border-color .15s ease, box-shadow .15s ease;
}
.ln-form input:focus, .ln-form select:focus, .ln-form textarea:focus {
    border-color: var(--ln-accent); box-shadow: 0 0 0 3px rgba(255,122,26,.14); outline: none;
}
.ln-form .ln-field { margin-bottom: 16px; }
.ln-form .ln-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; font-weight: 500; color: #404853; }
.ln-form .ln-check input { margin-top: 3px; flex: none; }
.ln-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.ln-callout { border-radius: var(--ln-radius); padding: 18px 20px; font-size: 14px; display: flex; gap: 13px; align-items: flex-start; }
.ln-callout i { font-size: 21px; margin-top: 1px; }
.ln-callout--bank { background: #eef4ff; color: #1e3f7a; border: 1px solid #cfe0ff; }
.ln-callout--warn { background: #fff6e8; color: #7a4a08; border: 1px solid #ffe0b2; }
.ln-callout--ship { background: #f2fbf8; color: #0f5f4a; border: 1px solid #cdeee3; }
.ln-callout strong { display: block; margin-bottom: 3px; }

.ln-bankcard { background: var(--ln-ink); color: #fff; border-radius: var(--ln-radius); padding: 26px 28px; }
.ln-bankcard h2 { color: #fff; font-size: 18px; margin: 0 0 18px; }
.ln-bankcard dl { display: grid; grid-template-columns: 150px 1fr; gap: 10px 16px; margin: 0; }
.ln-bankcard dt { color: var(--ln-muted-dark); font-size: 13px; }
.ln-bankcard dd { margin: 0; font-weight: 700; font-family: 'SF Mono', ui-monospace, Menlo, monospace; letter-spacing: .02em; word-break: break-all; }
.ln-bankcard dd.ln-amount { color: var(--ln-accent); font-size: 21px; }
@media (max-width: 575px) { .ln-bankcard dl { grid-template-columns: 1fr; gap: 2px 0; } .ln-bankcard dd { margin-bottom: 10px; } }

.ln-steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: 14px; }
.ln-steps li { counter-increment: step; display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; color: #404853; }
.ln-steps li::before {
    content: counter(step); flex: none; width: 30px; height: 30px; border-radius: 50%;
    background: var(--ln-accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 14px;
}

/* ------------------------------------------------------------- pages légales */

.ln-legal { background: var(--ln-surface); border: 1px solid var(--ln-line); border-radius: var(--ln-radius); padding: 40px 46px; }
.ln-legal .lead { font-size: 15.5px; font-weight: 400; line-height: 1.75; color: #3a424e; border-left: 3px solid var(--ln-accent); padding-left: 18px; margin-bottom: 30px; }
.ln-legal h2 { font-size: 20px; font-weight: 600; margin: 34px 0 12px; padding-top: 6px; }
.ln-legal h3 { font-size: 15.5px; font-weight: 600; margin: 22px 0 10px; color: #232a34; }
.ln-legal p, .ln-legal li { color: #3a424e; }
.ln-legal ul, .ln-legal ol { padding-left: 22px; }
.ln-legal li { margin-bottom: 6px; }
.ln-legal table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 13.5px; }
.ln-legal th, .ln-legal td { border: 1px solid var(--ln-line); padding: 10px 12px; text-align: left; vertical-align: top; }
.ln-legal thead th { background: var(--ln-bg); font-weight: 700; color: var(--ln-ink); }
.ln-legal blockquote { border-left: 3px solid var(--ln-line); padding: 4px 0 4px 18px; color: var(--ln-muted); margin: 18px 0; }
.ln-legal code { background: var(--ln-bg); padding: 2px 6px; border-radius: 5px; font-size: 12.5px; }
.ln-legal a { color: var(--ln-accent); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 767px) { .ln-legal { padding: 26px 20px; } .ln-legal table { display: block; overflow-x: auto; } }

.ln-toc { background: var(--ln-surface); border: 1px solid var(--ln-line); border-radius: var(--ln-radius); padding: 20px; position: sticky; top: 20px; font-size: 13.5px; }
.ln-toc h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--ln-muted); margin-bottom: 10px; }
.ln-toc a { display: block; padding: 5px 0; color: #48505c; }

/* ------------------------------------------------------------------- FAQ */

.ln-faq { background: var(--ln-surface); border: 1px solid var(--ln-line); border-radius: var(--ln-radius); overflow: hidden; }
.ln-faq details { border-bottom: 1px solid var(--ln-line); }
.ln-faq details:last-child { border-bottom: 0; }
.ln-faq summary {
    padding: 20px 24px; font-weight: 600; font-size: 15px; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; gap: 16px; align-items: center; color: var(--ln-ink);
}
.ln-faq summary::-webkit-details-marker { display: none; }
.ln-faq summary::after { content: '+'; font-size: 22px; color: var(--ln-accent); font-weight: 400; }
.ln-faq details[open] summary::after { content: '−'; }
.ln-faq .ln-faq__body { padding: 0 24px 22px; color: #404853; font-size: 14.5px; }

/* ----------------------------------------------------------- bandeau cookies */

.ln-cookie { position: fixed; inset: auto 0 0 0; z-index: 1080; padding: 16px; display: flex; justify-content: center; }
.ln-cookie[hidden] { display: none; }
.ln-cookie__panel {
    background: #fff; border-radius: 18px; box-shadow: var(--ln-shadow-lg); max-width: 780px; width: 100%;
    padding: 26px 28px; border: 1px solid var(--ln-line);
}
.ln-cookie__head h2 { font-size: 18px; margin: 0 0 8px; }
.ln-cookie__head p { font-size: 14px; color: var(--ln-muted); margin: 0 0 8px; }
.ln-cookie__head a { color: var(--ln-accent); font-size: 13.5px; font-weight: 700; text-decoration: underline; }
.ln-cookie__prefs { margin: 20px 0 4px; border-top: 1px solid var(--ln-line); }
.ln-cookie__pref { display: flex; gap: 18px; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--ln-line); }
.ln-cookie__pref strong { font-size: 14.5px; }
.ln-cookie__pref p { font-size: 12.8px; color: var(--ln-muted); margin: 3px 0 0; }
.ln-cookie__always { font-size: 12px; font-weight: 700; color: var(--ln-success); background: #e7f6f0; padding: 5px 11px; border-radius: 999px; flex: none; }
.ln-cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; justify-content: flex-end; }
.ln-cookie__actions .ln-btn { flex: 1 1 auto; min-width: 140px; }
@media (max-width: 575px) { .ln-cookie__actions .ln-btn { flex-basis: 100%; } }

.ln-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex: none; }
.ln-switch input { opacity: 0; width: 0; height: 0; }
.ln-switch span { position: absolute; inset: 0; background: #cfd5de; border-radius: 999px; transition: background .2s ease; cursor: pointer; }
.ln-switch span::before {
    content: ''; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px;
    background: #fff; border-radius: 50%; transition: transform .2s ease;
}
.ln-switch input:checked + span { background: var(--ln-mint); }
.ln-switch input:checked + span::before { transform: translateX(20px); }
.ln-switch input:focus-visible + span { outline: 3px solid var(--ln-accent); outline-offset: 2px; }

/* ------------------------------------------------------------------ impression */

@media print {
    .ln-header, .ln-footer, .ln-cookie, .tap-top, .ln-breadcrumb { display: none !important; }
    .ln-body { background: #fff; }
}

/* ------------------------------------------- schéma du parcours de commande */

.ln-process {
    background: var(--ln-surface);
    border: 1px solid var(--ln-line);
    border-radius: var(--ln-radius);
    padding: 34px 32px 28px;
    margin: 30px 0;
}
.ln-process__head { margin-bottom: 30px; max-width: 70ch; }
.ln-process__head h2 { font-size: 21px; font-weight: 600; margin: 0 0 8px; }
.ln-process__head p { color: var(--ln-muted); margin: 0; }

.ln-process__list {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
    counter-reset: process;
}
.ln-process__step { position: relative; padding: 0 14px; }
.ln-process__step:first-child { padding-left: 0; }
.ln-process__step:last-child { padding-right: 0; }

/* Trait de liaison entre les étapes */
.ln-process__step::before {
    content: ''; position: absolute; top: 27px; left: calc(50% + 32px); right: calc(-50% + 32px);
    height: 1px; background: repeating-linear-gradient(to right, var(--ln-line) 0 6px, transparent 6px 12px);
}
.ln-process__step:last-child::before { display: none; }

.ln-process__marker { position: relative; width: 56px; height: 56px; margin-bottom: 16px; }
.ln-process__icon {
    display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
    background: #fff4ec; color: var(--ln-accent); border: 1px solid #ffd9bd;
}
.ln-process__icon svg { width: 30px; height: 30px; }
.ln-process__number {
    position: absolute; right: -6px; bottom: -6px; width: 23px; height: 23px; border-radius: 50%;
    background: var(--ln-ink); color: #fff; font-size: 11.5px; font-weight: 600;
    display: grid; place-items: center; border: 2px solid var(--ln-surface);
}

.ln-process__delay {
    display: inline-block; font-size: 10.5px; font-weight: 600; letter-spacing: .09em;
    text-transform: uppercase; color: var(--ln-mint); background: #eafaf6;
    border-radius: 999px; padding: 4px 10px; margin-bottom: 8px;
}
.ln-process__body h3 { font-size: 14.5px; font-weight: 600; margin: 0 0 6px; line-height: 1.4; }
.ln-process__body p { font-size: 13px; color: var(--ln-muted); margin: 0; line-height: 1.6; }

.ln-process__note {
    margin: 28px 0 0; padding-top: 18px; border-top: 1px solid var(--ln-line);
    font-size: 12.5px; color: var(--ln-muted); display: flex; gap: 8px; align-items: flex-start;
}
.ln-process__note i { color: var(--ln-accent); font-size: 15px; }

@media (max-width: 1199px) {
    .ln-process__list { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
    .ln-process__step:nth-child(3)::before { display: none; }
}
@media (max-width: 767px) {
    .ln-process { padding: 26px 20px 22px; }
    .ln-process__list { grid-template-columns: 1fr; row-gap: 0; }
    .ln-process__step { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 0 0 26px; }
    .ln-process__step::before {
        display: block; top: 62px; bottom: 6px; left: 27px; right: auto; width: 1px; height: auto;
        background: repeating-linear-gradient(to bottom, var(--ln-line) 0 6px, transparent 6px 12px);
    }
    .ln-process__step:last-child { padding-bottom: 0; }
    .ln-process__marker { margin-bottom: 0; }
}

/* ------------------------------------------------------- suivi de commande */

.ln-hint { font-size: 12px; color: var(--ln-muted); margin: 6px 0 0; }

.ln-track-head { display: flex; gap: 16px; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; }
.ln-track-head h2 { font-size: 20px; font-weight: 600; }

.ln-timeline { list-style: none; margin: 0; padding: 0; }
.ln-timeline__item { position: relative; display: grid; grid-template-columns: 30px 1fr; gap: 16px; padding: 0 0 26px; }
.ln-timeline__item:last-child { padding-bottom: 0; }
.ln-timeline__item::before {
    content: ''; position: absolute; left: 14px; top: 30px; bottom: 4px; width: 2px; background: var(--ln-line);
}
.ln-timeline__item:last-child::before { display: none; }
.ln-timeline__item.is-done::before { background: var(--ln-mint); }

.ln-timeline__dot {
    width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--ln-line);
    background: var(--ln-surface); display: grid; place-items: center; color: #fff; font-size: 15px; z-index: 1;
}
.ln-timeline__item.is-done .ln-timeline__dot { background: var(--ln-mint); border-color: var(--ln-mint); }
.ln-timeline__item.is-current .ln-timeline__dot { border-color: var(--ln-accent); box-shadow: 0 0 0 4px rgba(255,122,26,.16); }

.ln-timeline__row { display: flex; gap: 12px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.ln-timeline__body h3 { font-size: 15px; font-weight: 600; margin: 3px 0 0; }
.ln-timeline__body p { font-size: 13.5px; color: var(--ln-muted); margin: 5px 0 0; }
.ln-timeline__body time { display: inline-flex; gap: 6px; align-items: center; font-size: 12.5px; color: var(--ln-muted); margin-top: 7px; }
.ln-timeline__state {
    font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    color: var(--ln-muted); background: var(--ln-bg); border-radius: 999px; padding: 4px 10px;
}
.ln-timeline__item.is-done .ln-timeline__state { color: var(--ln-success); background: #e7f6f0; }
.ln-timeline__item.is-current .ln-timeline__state { color: var(--ln-accent-dk); background: #fff2e6; }

.ln-track-item {
    display: flex; gap: 16px; justify-content: space-between; align-items: center;
    padding: 12px 0; border-bottom: 1px solid var(--ln-line); flex-wrap: wrap;
}
.ln-track-item:last-child { border-bottom: 0; }
.ln-track-item strong { display: block; font-size: 14.5px; font-weight: 600; }
.ln-track-item span { font-size: 12.5px; color: var(--ln-muted); }
.ln-track-item__price { font-size: 14.5px; font-weight: 600; color: var(--ln-ink); white-space: nowrap; }

/* --------------------------------------------- bandeau réclamation (footer) */

.ln-footer__claim { background: var(--ln-ink-2); border-top: 1px solid var(--ln-line-dark); padding: 22px 0; }
.ln-footer__claim-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ln-footer__claim-icon {
    width: 48px; height: 48px; flex: none; border-radius: 14px; display: grid; place-items: center;
    background: rgba(255,122,26,.12); border: 1px solid rgba(255,122,26,.28); color: var(--ln-accent);
}
.ln-footer__claim-icon svg { width: 26px; height: 26px; }
.ln-footer__claim-text { flex: 1 1 320px; }
.ln-footer__claim-text strong { display: block; color: #fff; font-size: 15px; font-weight: 600; }
.ln-footer__claim-text p { margin: 3px 0 0; font-size: 13px; color: var(--ln-muted-dark); }
@media (max-width: 575px) { .ln-footer__claim-inner .ln-btn { width: 100%; } }

/* Multikart force l'affichage en ligne de certains `li` : on rétablit la pile verticale. */
.ln-footer__links li,
.ln-footer__contact li,
.ln-menu > ul > li,
.ln-submenu li,
.ln-trust li,
.ln-steps li { display: block; }
.ln-footer__contact li, .ln-trust li, .ln-steps li { display: flex; }
.ln-menu > ul > li { display: block; }
@media (min-width: 992px) { .ln-menu > ul > li { display: inline-block; } }
.ln-footer__social li { display: inline-block; }
.ln-topbar__list li { display: inline-flex; align-items: center; }

/* -------------------------------------------------- choix du moyen de paiement */

.ln-methods { display: grid; gap: 12px; }
.ln-method { display: block; cursor: pointer; margin: 0; }
.ln-method input { position: absolute; opacity: 0; width: 0; height: 0; }
.ln-method__box {
    display: block; border: 2px solid var(--ln-line); border-radius: var(--ln-radius);
    padding: 16px 18px; transition: border-color .18s ease, background .18s ease;
}
.ln-method:hover .ln-method__box { border-color: #cfd5de; }
.ln-method input:checked + .ln-method__box { border-color: var(--ln-accent); background: #fffaf6; }
.ln-method input:focus-visible + .ln-method__box { outline: 3px solid var(--ln-accent); outline-offset: 2px; }
.ln-method__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ln-method__head i { font-size: 20px; color: var(--ln-accent); }
.ln-method__head strong { font-size: 15px; font-weight: 600; }
.ln-method__secure {
    font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    color: var(--ln-success); background: #e7f6f0; border-radius: 999px; padding: 5px 12px;
    display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}
.ln-method__text { display: block; font-size: 13px; color: var(--ln-muted); margin-top: 7px; line-height: 1.6; }
.ln-method__cards { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.ln-method__cards em {
    font-style: normal; font-size: 10.5px; font-weight: 600; letter-spacing: .04em;
    color: #4a5361; background: #fff; border: 1px solid var(--ln-line); border-radius: 6px; padding: 4px 8px;
}

/* --------------------------------------------------- logos des moyens de paiement */

.ln-method__cards { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; align-items: center; }
.ln-method__cards img { display: block; height: 28px; width: auto; border-radius: 4px; }
.ln-method__secure img { height: 15px; width: auto; flex: none; }

.ln-cardrow { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; align-items: center; }
.ln-cardrow img { display: block; height: 25px; width: auto; border-radius: 4px; }

.ln-footer__payment { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: #fff; font-weight: 500; font-size: 13px; }
.ln-footer__payment i { color: var(--ln-accent); }
.ln-footer__cards { display: flex; gap: 6px; align-items: center; }
.ln-footer__cards img { display: block; height: 24px; width: auto; border-radius: 4px; }

/* Virement : l'IBAN n'est jamais affiché, seul le rappel d'envoi par e-mail l'est. */
.ln-bankcard--pending p { color: #b7c0cf; font-size: 13.5px; margin: 0 0 16px; }
.ln-bankcard--pending .ln-bankcard__email { color: #fff; font-family: var(--ln-font); font-weight: 600; word-break: break-all; }
.ln-bankcard__note { border-top: 1px solid var(--ln-line-dark); margin-top: 16px !important; padding-top: 14px; font-size: 12.5px; }

/* ------------------------------------------------------------------
   Pagination du catalogue
   ------------------------------------------------------------------ */
.ln-pagination { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 8px; }
.ln-pagination__list {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 6px; list-style: none; margin: 0; padding: 0;
}
.ln-pagination__item { display: block; }
.ln-pagination__item > a,
.ln-pagination__item > span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px;
    border: 1px solid var(--ln-line); border-radius: 10px;
    background: #fff; color: var(--ln-ink);
    font-size: 14px; font-weight: 500; line-height: 1; text-decoration: none;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.ln-pagination__item > a:hover { border-color: var(--ln-accent); color: var(--ln-accent); }
.ln-pagination__item--active > span { background: var(--ln-accent); border-color: var(--ln-accent); color: #fff; font-weight: 600; }
.ln-pagination__item--disabled > span { opacity: .4; }
.ln-pagination__item--dots > span { border-color: transparent; background: transparent; min-width: 24px; padding: 0 4px; }
.ln-pagination__item i { font-size: 20px; line-height: 1; }
/* Les vues Laravel par défaut injectent des SVG sans dimension : on les borne ici aussi,
   au cas où une pagination non stylée serait rendue ailleurs. */
.ln-pagination svg { width: 18px; height: 18px; }
.ln-pagination__count { margin: 0; font-size: 13px; color: var(--ln-muted); }

@media (max-width: 575.98px) {
    .ln-pagination__item > a,
    .ln-pagination__item > span { min-width: 36px; height: 36px; padding: 0 9px; font-size: 13px; }
}
