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

:root {
    --sz-ink:        #0c1017;
    --sz-ink-2:      #131a24;
    --sz-ink-3:      #1d2633;
    --sz-line:       #e4e7ec;
    --sz-line-dark:  #26303f;
    --sz-bg:         #f6f7f9;
    --sz-surface:    #ffffff;
    --sz-text:       #161a20;
    --sz-muted:      #626b7a;
    --sz-muted-dark: #9aa5b6;
    --sz-accent:     #ff7a1a;
    --sz-accent-dk:  #e0630a;
    --sz-mint:       #14b8a6;
    --sz-danger:     #d92d20;
    --sz-success:    #12805c;
    --sz-radius:     14px;
    --sz-radius-sm:  9px;
    --sz-shadow:     0 1px 2px rgba(16,24,40,.05), 0 12px 30px -12px rgba(16,24,40,.18);
    --sz-shadow-lg:  0 24px 60px -20px rgba(12,16,23,.35);
    --sz-font:       'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

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

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

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

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

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

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

.sz-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;
}
.sz-btn:active { transform: translateY(1px); }
.sz-btn--primary { background: var(--sz-accent); color: #fff; }
.sz-btn--primary:hover { background: var(--sz-accent-dk); color: #fff; }
.sz-btn--dark { background: var(--sz-ink); color: #fff; }
.sz-btn--dark:hover { background: var(--sz-ink-3); color: #fff; }
.sz-btn--outline { background: transparent; border-color: var(--sz-line); color: var(--sz-text); }
.sz-btn--outline:hover { border-color: var(--sz-ink); color: var(--sz-ink); }
.sz-btn--ghost { background: transparent; color: var(--sz-muted); }
.sz-btn--ghost:hover { color: var(--sz-ink); }
.sz-btn--block { width: 100%; }
.sz-btn--lg { padding: 15px 30px; font-size: 15px; }
.sz-btn[disabled], .sz-btn.is-disabled { opacity: .5; pointer-events: none; }
.sz-linkbtn { background: none; border: 0; padding: 0; color: inherit; font: inherit; cursor: pointer; }
.sz-linkbtn:hover { color: var(--sz-accent); }

/* ------------------------------------------------------------------ header */

.sz-header { position: relative; z-index: 40; }

.sz-topbar { background: #05080e; color: var(--sz-muted-dark); font-size: 12.5px; padding: 9px 0; }
.sz-topbar__list { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.sz-topbar__list i { color: var(--sz-accent); margin-right: 6px; }
.sz-topbar__phone { color: #fff; font-weight: 600; }
.sz-topbar__phone i { color: var(--sz-accent); }

.sz-lang__toggle {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    color: #fff; border-radius: 999px; padding: 5px 12px; font-size: 12.5px; font-weight: 600; cursor: pointer;
}
.sz-lang__menu { border: 0; box-shadow: var(--sz-shadow-lg); border-radius: 12px; padding: 6px; min-width: 190px; }
.sz-lang__menu .dropdown-item { border-radius: 8px; padding: 9px 12px; font-weight: 600; font-size: 14px; }
.sz-lang__menu .dropdown-item.active { background: var(--sz-bg); color: var(--sz-accent); }

.sz-nav { background: var(--sz-ink); color: #fff; }
.sz-nav__inner { display: flex; align-items: center; gap: 24px; padding: 16px 0; }

.sz-logo { display: inline-flex; align-items: center; gap: 11px; color: #fff; }
.sz-logo:hover { color: #fff; }
.sz-logo__mark {
    width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 21px;
    background: linear-gradient(140deg, var(--sz-accent), #ffb457); color: #10131a;
}
.sz-logo__text { display: flex; flex-direction: column; font-size: 19px; font-weight: 600; letter-spacing: .01em; line-height: 1.15; }
.sz-logo__text strong { font-weight: 700; color: var(--sz-accent); }
.sz-logo__text small { font-size: 10.5px; font-weight: 500; letter-spacing: .1em; color: var(--sz-muted-dark); text-transform: uppercase; }
.sz-logo--footer .sz-logo__mark { width: 38px; height: 38px; font-size: 18px; }

.sz-search { flex: 1; max-width: 520px; position: relative; }
.sz-search input {
    width: 100%; border: 1px solid var(--sz-line-dark); background: #0a0e15; color: #fff;
    border-radius: 999px; padding: 12px 48px 12px 20px; font-size: 14px;
}
.sz-search input::placeholder { color: #6d7787; }
.sz-search input:focus { border-color: var(--sz-accent); outline: none; }
.sz-search button {
    position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px; border-radius: 50%; border: 0; background: var(--sz-accent); color: #fff; cursor: pointer;
}

.sz-nav__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.sz-cart-btn {
    position: relative; display: inline-flex; align-items: center; gap: 8px; color: #fff;
    background: rgba(255,255,255,.07); border-radius: 999px; padding: 10px 18px; font-weight: 500; font-size: 13.5px;
}
.sz-cart-btn:hover { background: var(--sz-accent); color: #fff; }
.sz-cart-btn__count {
    position: absolute; top: -5px; right: -3px; min-width: 20px; height: 20px; padding: 0 5px;
    border-radius: 999px; background: var(--sz-accent); color: #fff; font-size: 11px; display: grid; place-items: center;
}
.sz-burger { display: none; background: rgba(255,255,255,.07); border: 0; color: #fff; width: 42px; height: 42px; border-radius: 12px; font-size: 20px; }

.sz-menu { border-top: 1px solid var(--sz-line-dark); }
.sz-menu > ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 4px 0; flex-wrap: wrap; }
.sz-menu > ul > li > a {
    display: inline-flex; align-items: center; gap: 5px; padding: 12px 16px; color: #ced5e0;
    font-weight: 500; font-size: 13.5px; letter-spacing: .02em; border-radius: 10px;
}
.sz-menu > ul > li > a:hover { background: rgba(255,255,255,.06); color: #fff; }
.sz-menu__has-children { position: relative; }
.sz-submenu {
    list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; left: 0; min-width: 320px;
    background: #fff; border-radius: 14px; box-shadow: var(--sz-shadow-lg); display: none; z-index: 60;
}
.sz-menu__has-children:hover > .sz-submenu, .sz-menu__has-children.is-open > .sz-submenu { display: block; }
.sz-submenu a {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 9px;
    color: var(--sz-text); font-weight: 600; font-size: 14px;
}
.sz-submenu a:hover { background: var(--sz-bg); color: var(--sz-accent); }
.sz-submenu a i { color: var(--sz-accent); font-size: 17px; }
.sz-submenu a span { margin-left: auto; color: var(--sz-muted); font-size: 12px; font-weight: 700; }

@media (max-width: 991px) {
    .sz-nav__inner { flex-wrap: wrap; gap: 12px; }
    .sz-search { order: 3; max-width: 100%; flex-basis: 100%; }
    .sz-burger { display: inline-flex; align-items: center; justify-content: center; }
    .sz-menu > ul { flex-direction: column; }
    .sz-submenu { position: static; box-shadow: none; background: rgba(255,255,255,.05); }
    .sz-submenu a { color: #ced5e0; }
    .sz-cart-btn__label { display: none; }
    .sz-topbar__list li:first-child { display: none; }
}

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

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

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

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

/* --------------------------------------------------------------------- hero */

.sz-hero {
    background: radial-gradient(1100px 520px at 12% -10%, #1e2b3d 0%, transparent 60%), var(--sz-ink);
    color: #fff; padding: 76px 0 84px; position: relative; overflow: hidden;
}
.sz-hero::after {
    content: ''; position: absolute; inset: auto -10% -50% auto; width: 620px; height: 620px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,122,26,.16), transparent 62%);
}
.sz-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px;
    background: rgba(255,122,26,.14); border: 1px solid rgba(255,122,26,.3); color: #ffb87a;
    font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
}
.sz-hero h1 { color: #fff; font-size: clamp(29px, 4vw, 46px); font-weight: 600; letter-spacing: .005em; line-height: 1.25; margin: 18px 0 18px; max-width: 19ch; }
.sz-hero p { color: #b7c0cf; font-size: 15.5px; font-weight: 400; line-height: 1.75; max-width: 58ch; margin-bottom: 30px; }
.sz-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.sz-hero__cta .sz-btn--outline { border-color: rgba(255,255,255,.28); color: #fff; }
.sz-hero__cta .sz-btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.07); color: #fff; }
.sz-hero__stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 40px; position: relative; z-index: 2; }
.sz-hero__stat strong { display: block; font-size: 24px; color: #fff; font-weight: 600; }
.sz-hero__stat span { color: var(--sz-muted-dark); font-size: 13px; }
.sz-hero__card {
    position: relative; z-index: 2; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px; padding: 10px; box-shadow: var(--sz-shadow-lg);
}
.sz-hero__card img { border-radius: 14px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sz-hero__tag {
    position: absolute; left: 24px; bottom: 24px; background: #fff; color: var(--sz-ink);
    border-radius: 12px; padding: 12px 16px; box-shadow: var(--sz-shadow-lg); font-size: 13px; font-weight: 700;
}
.sz-hero__tag em { display: block; font-style: normal; color: var(--sz-accent); font-size: 18px; }

/* ------------------------------------------------------------------ atouts */

.sz-usp { background: var(--sz-ink-2); padding: 0; }
.sz-usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--sz-line-dark); }
.sz-usp__item { background: var(--sz-ink-2); padding: 26px 24px; color: #cbd3e0; }
.sz-usp__item i { font-size: 24px; color: var(--sz-accent); }
.sz-usp__item h3 { color: #fff; font-size: 14.5px; font-weight: 600; margin: 10px 0 6px; }
.sz-usp__item p { font-size: 13px; color: var(--sz-muted-dark); margin: 0; }
@media (max-width: 991px) { .sz-usp__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .sz-usp__grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- catégories */

.sz-cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.sz-cat {
    display: flex; align-items: center; gap: 14px; background: var(--sz-surface); border: 1px solid var(--sz-line);
    border-radius: var(--sz-radius); padding: 18px; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.sz-cat:hover { border-color: var(--sz-accent); transform: translateY(-2px); box-shadow: var(--sz-shadow); }
.sz-cat i { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: #fff2e6; color: var(--sz-accent); font-size: 21px; flex: none; }
.sz-cat strong { display: block; font-size: 14.5px; color: var(--sz-ink); line-height: 1.35; }
.sz-cat span { font-size: 12.5px; color: var(--sz-muted); }

/* -------------------------------------------------------------- carte produit */

.sz-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 22px; }

.sz-card {
    background: var(--sz-surface); border: 1px solid var(--sz-line); border-radius: var(--sz-radius);
    overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.sz-card:hover { box-shadow: var(--sz-shadow); transform: translateY(-3px); border-color: #d3d8e0; }
.sz-card__media { position: relative; display: block; aspect-ratio: 1/1; background: #f1f3f6; overflow: hidden; }
.sz-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s ease; }
.sz-card:hover .sz-card__media img { transform: scale(1.05); }
.sz-card__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; }
.sz-badge {
    font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    padding: 5px 10px; border-radius: 999px; background: var(--sz-ink); color: #fff;
}
.sz-badge--save { background: var(--sz-accent); }
.sz-badge--year { background: rgba(12,16,23,.75); backdrop-filter: blur(4px); }
.sz-badge--sold { background: var(--sz-danger); }
.sz-badge--mint { background: var(--sz-mint); }
.sz-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.sz-card__brand { font-size: 10.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--sz-muted); }
.sz-card__title { font-size: 14.5px; font-weight: 600; color: var(--sz-ink); line-height: 1.45; margin: 0; }
.sz-card__meta { display: flex; flex-wrap: wrap; gap: 6px; font-size: 11.5px; color: var(--sz-muted); }
.sz-card__meta span { background: var(--sz-bg); border-radius: 6px; padding: 3px 8px; }
.sz-card__prices { display: flex; align-items: baseline; gap: 9px; margin-top: auto; padding-top: 8px; }
.sz-card__price { font-size: 19px; font-weight: 600; color: var(--sz-ink); }
.sz-card__old { font-size: 13px; color: var(--sz-muted); text-decoration: line-through; }
.sz-card__save { font-size: 12px; font-weight: 700; color: var(--sz-success); }
.sz-card__actions { display: flex; gap: 8px; margin-top: 10px; }
.sz-card__actions .sz-btn { flex: 1; padding: 10px 14px; font-size: 13px; }

/* -------------------------------------------------------------- page produit */

.sz-product { padding: 40px 0 72px; }
.sz-gallery__main {
    background: var(--sz-surface); border: 1px solid var(--sz-line); border-radius: var(--sz-radius);
    overflow: hidden; aspect-ratio: 4/3; display: grid; place-items: center;
}
.sz-gallery__main img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.sz-gallery__thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 9px; margin-top: 12px; }
.sz-gallery__thumbs img {
    aspect-ratio: 1/1; object-fit: cover; width: 100%; border-radius: var(--sz-radius-sm);
    border: 2px solid transparent; cursor: pointer; background: #fff; transition: border-color .15s ease;
}
.sz-gallery__thumbs img:hover { border-color: #cfd5de; }
.sz-gallery__thumbs img.is-active { border-color: var(--sz-accent); }

.sz-product__brand { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sz-accent); }
.sz-product h1 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; line-height: 1.3; margin: 8px 0 12px; }
.sz-product__lead { font-size: 15px; font-weight: 400; line-height: 1.7; color: var(--sz-muted); }
.sz-product__rating { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--sz-muted); }
.sz-product__rating i { color: #f5a623; }

.sz-pricebox { background: var(--sz-surface); border: 1px solid var(--sz-line); border-radius: var(--sz-radius); padding: 22px; margin: 22px 0; }
.sz-pricebox__row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; }
.sz-pricebox__price { font-size: 31px; font-weight: 600; color: var(--sz-ink); letter-spacing: 0; }
.sz-pricebox__old { font-size: 16px; color: var(--sz-muted); text-decoration: line-through; }
.sz-pricebox__save { background: #e7f6f0; color: var(--sz-success); font-weight: 700; font-size: 13px; padding: 5px 11px; border-radius: 999px; }
.sz-pricebox__note { font-size: 12.5px; color: var(--sz-muted); margin: 6px 0 0; }
.sz-pricebox__form { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.sz-qty { display: inline-flex; align-items: center; border: 1px solid var(--sz-line); border-radius: 999px; overflow: hidden; }
.sz-qty input { width: 54px; border: 0; text-align: center; font-weight: 700; padding: 12px 0; }
.sz-qty button { border: 0; background: transparent; width: 40px; height: 44px; font-size: 17px; cursor: pointer; color: var(--sz-muted); }

.sz-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 20px 0; }
.sz-fact { background: var(--sz-surface); border: 1px solid var(--sz-line); border-radius: var(--sz-radius-sm); padding: 12px 14px; }
.sz-fact span { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: .11em; color: var(--sz-muted); font-weight: 600; }
.sz-fact strong { font-size: 14.5px; color: var(--sz-ink); font-weight: 600; }
@media (max-width: 575px) { .sz-facts { grid-template-columns: 1fr; } }

.sz-trust { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.sz-trust li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--sz-muted); }
.sz-trust i { color: var(--sz-mint); font-size: 17px; margin-top: 1px; }

.sz-panel { background: var(--sz-surface); border: 1px solid var(--sz-line); border-radius: var(--sz-radius); padding: 26px 28px; margin-bottom: 22px; }
.sz-panel h2 { font-size: 18px; font-weight: 600; margin: 0 0 16px; }
.sz-panel p { color: #404853; }
.sz-panel ul { padding-left: 20px; color: #404853; }

.sz-spectable { width: 100%; border-collapse: collapse; font-size: 14px; }
.sz-spectable th, .sz-spectable td { padding: 11px 4px; border-bottom: 1px solid var(--sz-line); text-align: left; vertical-align: top; }
.sz-spectable th { width: 42%; color: var(--sz-muted); font-weight: 600; }
.sz-spectable td { font-weight: 500; color: var(--sz-ink); }
.sz-spectable tr:last-child th, .sz-spectable tr:last-child td { border-bottom: 0; }

.sz-review { border-bottom: 1px solid var(--sz-line); padding: 16px 0; }
.sz-review:last-child { border-bottom: 0; }
.sz-review__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sz-review__stars i { color: #f5a623; font-size: 14px; }
.sz-review__author { font-weight: 700; font-size: 14px; }
.sz-review__badge { font-size: 11px; font-weight: 700; color: var(--sz-success); background: #e7f6f0; padding: 3px 9px; border-radius: 999px; }
.sz-review p { margin: 8px 0 0; color: #404853; font-size: 14px; }

/* ------------------------------------------------------------ boutique/filtres */

.sz-filters { background: var(--sz-surface); border: 1px solid var(--sz-line); border-radius: var(--sz-radius); padding: 22px; position: sticky; top: 20px; }
.sz-filters h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--sz-muted); margin: 0 0 12px; }
.sz-filters__group + .sz-filters__group { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--sz-line); }
.sz-filters label { display: flex; align-items: center; gap: 9px; font-size: 14px; padding: 5px 0; cursor: pointer; color: #333a45; }
.sz-filters label span { margin-left: auto; color: var(--sz-muted); font-size: 12px; }
.sz-filters input[type="number"] { width: 100%; border: 1px solid var(--sz-line); border-radius: 9px; padding: 9px 11px; font-size: 14px; }

.sz-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.sz-toolbar__count { color: var(--sz-muted); font-size: 14px; }
.sz-toolbar select { border: 1px solid var(--sz-line); border-radius: 999px; padding: 10px 18px; font-size: 14px; font-weight: 600; background: #fff; }

.sz-empty { text-align: center; padding: 60px 20px; color: var(--sz-muted); }
.sz-empty i { font-size: 44px; color: #cfd5de; }

.pagination { gap: 6px; }
.page-link { border-radius: 10px !important; border: 1px solid var(--sz-line); color: var(--sz-text); font-weight: 600; }
.page-item.active .page-link { background: var(--sz-ink); border-color: var(--sz-ink); }

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

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

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

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

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

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

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

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

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

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

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

.sz-faq { background: var(--sz-surface); border: 1px solid var(--sz-line); border-radius: var(--sz-radius); overflow: hidden; }
.sz-faq details { border-bottom: 1px solid var(--sz-line); }
.sz-faq details:last-child { border-bottom: 0; }
.sz-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(--sz-ink);
}
.sz-faq summary::-webkit-details-marker { display: none; }
.sz-faq summary::after { content: '+'; font-size: 22px; color: var(--sz-accent); font-weight: 400; }
.sz-faq details[open] summary::after { content: '−'; }
.sz-faq .sz-faq__body { padding: 0 24px 22px; color: #404853; font-size: 14.5px; }

/* ---------------------------------------------------------------- pied de page */

.sz-footer { background: var(--sz-ink); color: #b7c0cf; margin-top: 60px; }
.sz-footer__newsletter { background: var(--sz-ink-2); padding: 40px 0; border-bottom: 1px solid var(--sz-line-dark); }
.sz-footer__newsletter h3 { color: #fff; font-size: 20px; font-weight: 600; margin: 0 0 6px; }
.sz-footer__newsletter p { margin: 0; font-size: 14px; }
.sz-newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; position: relative; }
.sz-newsletter-form input[type="email"] {
    flex: 1; min-width: 220px; border: 1px solid var(--sz-line-dark); background: #0a0e15; color: #fff;
    border-radius: 999px; padding: 14px 22px; font-size: 13.5px;
}
.sz-newsletter-form input::placeholder { color: #6d7787; }
.sz-newsletter-form button { border: 0; border-radius: 999px; background: var(--sz-accent); color: #fff; font-weight: 600; padding: 14px 28px; cursor: pointer; }
.sz-newsletter-form__legal { font-size: 12px; color: #7d8797; margin: 10px 0 0; }
.sz-newsletter-form__legal a { color: #9aa5b6; text-decoration: underline; }

.sz-footer__main { padding: 52px 0 40px; }
.sz-footer__main h4 { color: #fff; font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 16px; }
.sz-footer__main p { font-size: 14px; margin: 16px 0; }
.sz-footer__links, .sz-footer__contact, .sz-footer__social { list-style: none; margin: 0; padding: 0; }
.sz-footer__links li { margin-bottom: 9px; font-size: 14px; }
.sz-footer__links a:hover, .sz-footer__contact a:hover { color: var(--sz-accent); }
.sz-footer__contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13.5px; }
.sz-footer__contact i { color: var(--sz-accent); font-size: 16px; margin-top: 2px; }
.sz-footer__social { display: flex; gap: 9px; }
.sz-footer__social a {
    width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
    background: rgba(255,255,255,.06); color: #fff; font-size: 17px;
}
.sz-footer__social a:hover { background: var(--sz-accent); }
.sz-footer__bottom { border-top: 1px solid var(--sz-line-dark); padding: 18px 0; font-size: 13px; }
.sz-footer__bottom p { margin: 0; }
.sz-footer__payment { color: #fff; font-weight: 600; }
.sz-footer__payment i { color: var(--sz-accent); }

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

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

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

/* --------------------------------------------------------------- retour haut */

.tap-top {
    display: none; position: fixed; right: 18px; bottom: 18px; width: 44px; height: 44px; border-radius: 50%;
    background: var(--sz-ink); color: #fff; z-index: 1000; cursor: pointer; place-items: center;
}
.tap-top div { display: grid; place-items: center; width: 100%; height: 100%; font-size: 20px; }

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

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

/* ---------------------------------------------- surcharges du thème Multikart */

.sz-body h1, .sz-body h2, .sz-body h3, .sz-body h4, .sz-body h5, .sz-body h6,
.sz-body p, .sz-body a, .sz-body span, .sz-body li, .sz-body label, .sz-body button,
.sz-body summary, .sz-body th, .sz-body td, .sz-body strong, .sz-body div {
    text-transform: none;
}
.sz-badge, .sz-heading__eyebrow, .sz-hero__eyebrow, .sz-card__brand,
.sz-product__brand, .sz-filters h3, .sz-footer__main h4, .sz-fact span,
.sz-toc h3, .text-uppercase {
    text-transform: uppercase !important;
}
.sz-body ul, .sz-body ol { list-style: revert; }
.sz-menu ul, .sz-topbar__list, .sz-footer__links, .sz-footer__contact,
.sz-footer__social, .sz-trust, .sz-steps, .sz-breadcrumb ol, .sz-submenu { list-style: none; }
.sz-body .container { max-width: 1280px; }

/* Le menu principal reste déployé sur grand écran malgré la classe `collapse`. */
@media (min-width: 992px) {
    .sz-menu.collapse:not(.show) { display: block; }
}
.sz-body .sz-hero__tag { color: var(--sz-ink); }
.sz-body .sz-hero__tag em { color: var(--sz-accent); }

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

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

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

/* Trait de liaison entre les étapes */
.sz-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(--sz-line) 0 6px, transparent 6px 12px);
}
.sz-process__step:last-child::before { display: none; }

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

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

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

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

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

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

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

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

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

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

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

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

.sz-footer__claim { background: var(--sz-ink-2); border-top: 1px solid var(--sz-line-dark); padding: 22px 0; }
.sz-footer__claim-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.sz-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(--sz-accent);
}
.sz-footer__claim-icon svg { width: 26px; height: 26px; }
.sz-footer__claim-text { flex: 1 1 320px; }
.sz-footer__claim-text strong { display: block; color: #fff; font-size: 15px; font-weight: 600; }
.sz-footer__claim-text p { margin: 3px 0 0; font-size: 13px; color: var(--sz-muted-dark); }
@media (max-width: 575px) { .sz-footer__claim-inner .sz-btn { width: 100%; } }

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

/* -------------------------------------------- état fonctionnel vérifié expert */

.sz-expert {
    display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
    background: #f2fbf8; border: 1px solid #cdeee3; border-radius: var(--sz-radius);
    padding: 15px 18px; margin: 20px 0 0;
}
.sz-expert__icon {
    width: 40px; height: 40px; flex: none; border-radius: 12px; display: grid; place-items: center;
    background: #fff; border: 1px solid #cdeee3; color: var(--sz-mint);
}
.sz-expert__icon svg { width: 24px; height: 24px; }
.sz-expert > div { flex: 1 1 220px; }
.sz-expert strong { display: block; font-size: 14.5px; font-weight: 600; color: #0f5f4a; }
.sz-expert p { margin: 3px 0 0; font-size: 12.5px; color: #3a6d60; }
.sz-expert__badge {
    font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    background: var(--sz-mint); color: #fff; border-radius: 999px; padding: 5px 11px; flex: none;
}

.sz-fact--accent { border-color: #cdeee3; background: #f7fdfb; }
.sz-fact--accent strong { color: #0f5f4a; }
.sz-fact--accent i { color: var(--sz-mint); font-size: 14px; vertical-align: -1px; }

.sz-card__meta--check { background: #eafaf6 !important; color: #0f5f4a; font-weight: 600; }
.sz-card__meta--check i { color: var(--sz-mint); }

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

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

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

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

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

.sz-footer__payment { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: #fff; font-weight: 500; font-size: 13px; }
.sz-footer__payment i { color: var(--sz-accent); }
.sz-footer__cards { display: flex; gap: 6px; align-items: center; }
.sz-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. */
.sz-bankcard--pending p { color: #b7c0cf; font-size: 13.5px; margin: 0 0 16px; }
.sz-bankcard--pending .sz-bankcard__email { color: #fff; font-family: var(--sz-font); font-weight: 600; word-break: break-all; }
.sz-bankcard__note { border-top: 1px solid var(--sz-line-dark); margin-top: 16px !important; padding-top: 14px; font-size: 12.5px; }

/* ------------------------------------------------------------------
   Pagination du catalogue
   ------------------------------------------------------------------ */
.sz-pagination { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 8px; }
.sz-pagination__list {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 6px; list-style: none; margin: 0; padding: 0;
}
.sz-pagination__item { display: block; }
.sz-pagination__item > a,
.sz-pagination__item > span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px;
    border: 1px solid var(--sz-line); border-radius: 10px;
    background: #fff; color: var(--sz-ink);
    font-size: 14px; font-weight: 500; line-height: 1; text-decoration: none;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.sz-pagination__item > a:hover { border-color: var(--sz-accent); color: var(--sz-accent); }
.sz-pagination__item--active > span { background: var(--sz-accent); border-color: var(--sz-accent); color: #fff; font-weight: 600; }
.sz-pagination__item--disabled > span { opacity: .4; }
.sz-pagination__item--dots > span { border-color: transparent; background: transparent; min-width: 24px; padding: 0 4px; }
.sz-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. */
.sz-pagination svg { width: 18px; height: 18px; }
.sz-pagination__count { margin: 0; font-size: 13px; color: var(--sz-muted); }

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

/* Libellé du relevé bancaire : le paiement carte est encaissé par la société propriétaire. */
.sz-method__descriptor {
    display: flex; gap: 6px; align-items: flex-start;
    margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--sz-line);
    font-size: 12.5px; line-height: 1.5; color: var(--sz-muted);
}
.sz-method__descriptor i { color: var(--sz-accent); font-size: 15px; line-height: 1.2; }

/* Logo fourni par le client : image à fond perdu, sans pastille dégradée. */
.sz-logo__mark--image { background: none; border-radius: 0; width: 54px; height: 54px; }
.sz-logo__mark--image img { width: 100%; height: 100%; object-fit: contain; display: block; }
.sz-logo--footer .sz-logo__mark--image { width: 46px; height: 46px; }
