/* ============================================================
   cart.css — Boutique Lonewolf — v2026072101
   LONEWOLF 2026 — minimalisme éditorial dark + brutalisme soft
   Tokens: cf. style.css §1 (fallbacks legacy pour transition)
   ============================================================ */

/* ── Progress Steps ──────────────────────────────────────── */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 24px 16px 32px;
    max-width: 560px;
    margin: 0 auto;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
}
.step + .step::before {
    content: '';
    position: absolute;
    left: calc(-50% + 16px);
    right: calc(50% + 16px);
    top: 14px;
    height: 1px;
    background: var(--border);
    transition: background .4s;
}
.step.done + .step::before,
.step.active + .step::before {
    background: var(--gray-5, var(--text-muted));
}
.step__icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all .3s;
    z-index: 1;
}
.step.active .step__icon {
    border-color: var(--gray-8, var(--text));
    background: var(--gray-8, var(--text));
    color: var(--gray-0, var(--bg));
}
.step.done .step__icon {
    border-color: var(--success, var(--color-success));
    background: transparent;
    color: var(--success, var(--color-success));
}
.step__label {
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: var(--fs-xs, 0.6875rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--ls-label, .14em);
    color: var(--text-muted);
    white-space: nowrap;
    text-align: center;
}
.step.active .step__label { color: var(--text); font-weight: 600; }
.step.done .step__label  { color: var(--success, var(--color-success)); }

/* Mode vitrine : la commande est fermée, les étapes Livraison/Paiement/
   Confirmation sont grisées (elles promettaient un paiement impossible). */
.step--off { opacity: .35; }
.step--off .step__icon,
.step--off .step__label { color: var(--text-muted); }

/* Mobile : stepper COMPACT HORIZONTAL (l'empilement vertical sur 4 lignes
   sans connecteurs faisait une liste numérotée illisible à 390 px). */
@media (max-width: 480px) {
    .checkout-steps { flex-direction: row; align-items: flex-start; gap: 2px; padding: 14px 8px 20px; }
    .step { flex-direction: column; gap: 5px; padding: 0; }
    .step + .step::before {
        top: 12px; left: calc(-50% + 14px); right: calc(50% + 14px);
        width: auto; height: 1px;
    }
    .step__icon { width: 24px; height: 24px; font-size: 10px; }
    .step__label { white-space: nowrap; text-align: center; font-size: 9px; letter-spacing: .06em; }
}

/* ── Cart Layout ─────────────────────────────────────────── */
.cart-wrap {
    max-width: var(--max-width, 1280px);
    margin: 0 auto;
    padding: 0 var(--space-4, 24px) 80px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--space-5, 40px);
    align-items: start;
}
@media (max-width: 700px) {
    .cart-wrap { grid-template-columns: 1fr; gap: var(--space-4, 24px); }
}

/* ── Cart Items — liste éditoriale ───────────────────────── */
.cart-item {
    display: flex;
    gap: var(--space-3, 16px);
    padding: var(--space-3, 16px) 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    margin-bottom: 0;
    align-items: center;
    flex-wrap: wrap;
    transition: border-color var(--transition, .2s);
}
.cart-item:hover { border-color: var(--gray-5, var(--text-muted)); }
.cart-item__img {
    width: 88px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: #e9e9ea; /* gris studio fixe — mockups Printify, cf. spec §4 */
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.cart-item__info { flex: 1 1 160px; min-width: 0; }
.cart-item__name {
    color: var(--text);
    font-weight: 600;
    font-size: var(--fs-sm, 0.8125rem);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}
.cart-item__name:hover { text-decoration: underline; text-underline-offset: 3px; }
.cart-item__variant {
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: var(--fs-xs, 0.6875rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--ls-label, .14em);
    color: var(--text-muted);
}
.cart-item__price {
    color: var(--gray-7, var(--text-muted));
    font-size: var(--fs-sm, 0.8125rem);
    font-weight: 500;
    margin-top: 6px;
}

.qty-ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.qty-btn {
    width: 44px; height: 44px;
    background: transparent;
    color: var(--text);
    border: 0;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition, .15s);
}
.qty-btn:hover { background: var(--gray-2, var(--color-surface-hover)); color: var(--text); border-color: var(--border); }
.qty-val {
    min-width: 28px;
    text-align: center;
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 13px;
    font-weight: 600;
}
.cart-item__del {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 8px 4px;
    line-height: 1;
    transition: color var(--transition, .15s);
}
.cart-item__del:hover { color: var(--danger, #f87171); }

/* ── Cross-sell / Upsell ─────────────────────────────────── */
.upsell-section {
    margin-top: var(--space-5, 40px);
}
.upsell-section__title {
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: var(--fs-xs, 0.6875rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--ls-label, .14em);
    color: var(--text-muted);
    margin-bottom: var(--space-3, 16px);
}
.upsell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2, 8px) var(--space-2, 8px);
}
@media (max-width: 480px) { .upsell-grid { grid-template-columns: 1fr 1fr; } }
.upsell-card {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition, .2s);
    cursor: pointer;
}
.upsell-card:hover { border-color: var(--gray-5, var(--text-muted)); transform: none; }
.upsell-card picture { display: block; position: relative; }
.upsell-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
    background: #e9e9ea; /* gris studio fixe */
    border-bottom: 1px solid var(--border);
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.upsell-card:hover img { transform: scale(1.04); }
.upsell-card__body { padding: 10px 10px 12px; }
.upsell-card__name {
    font-size: var(--fs-sm, 0.8125rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.upsell-card__price {
    font-size: var(--fs-sm, 0.8125rem);
    font-weight: 500;
    color: var(--gray-7, var(--text-muted));
    margin-bottom: 6px;
}
.upsell-card__add {
    width: 100%;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    transition: background var(--transition, .15s), border-color var(--transition, .15s);
}
.upsell-card__add:hover { background: var(--gray-2, var(--color-surface-hover)); border-color: var(--gray-6, var(--text-muted)); color: var(--text); }

/* ── Sidebar ─────────────────────────────────────────────── */
.cart-sidebar {
    position: sticky;
    top: 96px;
}

/* ── Shipping Progress ───────────────────────────────────── */
.ship-progress {
    background: var(--accent-dim, color-mix(in srgb, var(--accent) 14%, transparent));
    border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 12px;
}
.ship-progress__msg {
    font-size: var(--fs-sm, 0.8125rem);
    color: var(--accent-text, var(--color-highlight));
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ship-emoji {
    display: inline-block;
    animation: none;
}
.ship-emoji.bounce {
    animation: emojiBounce .6s ease infinite alternate;
}
@keyframes emojiBounce {
    from { transform: translateY(0); }
    to   { transform: translateY(-4px); }
}
.ship-track {
    height: 4px;
    background: var(--gray-3, var(--border));
    border-radius: var(--radius-pill, 999px);
    overflow: hidden;
}
.ship-bar {
    height: 100%;
    width: 0;
    background: var(--accent);
    border-radius: var(--radius-pill, 999px);
    transition: width .6s cubic-bezier(.4,0,.2,1);
}

/* Confetti — supprimé de la DA (élément conservé pour le JS, rendu inerte) */
.confetti-wrap { display: none; }
.confetti-bit { display: none; }

/* ── Promo Accordion ─────────────────────────────────────── */
.promo-accordion {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.promo-accordion summary {
    padding: 14px 16px;
    cursor: pointer;
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: var(--fs-xs, 0.6875rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--ls-label, .14em);
    color: var(--text);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}
.promo-accordion summary::-webkit-details-marker { display: none; }
.promo-accordion summary::after {
    content: '▾';
    color: var(--text-muted);
    transition: transform .25s;
}
.promo-accordion[open] summary::after { transform: rotate(-180deg); }
.promo-body { padding: 0 16px 14px; }
.promo-row { display: flex; gap: 8px; margin-bottom: 8px; }
.promo-input {
    flex: 1;
    min-width: 0;
    background: var(--gray-2, var(--color-bg));
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 13px;
    letter-spacing: .06em;
    outline: none;
    transition: border-color var(--transition, .2s), box-shadow var(--transition, .2s);
}
.promo-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim, color-mix(in srgb, var(--accent) 14%, transparent));
}
.promo-submit {
    padding: 10px 14px;
    background: var(--gray-8, var(--text));
    color: var(--gray-0, var(--bg));
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 80px;
    min-height: 44px;
    justify-content: center;
    transition: opacity var(--transition, .15s);
}
.promo-submit:hover { opacity: .85; background: var(--gray-8, var(--text)); }
.promo-submit:active { transform: scale(.98); }
.promo-spinner {
    width: 14px; height: 14px;
    border: 2px solid color-mix(in srgb, var(--gray-0, var(--bg)) 30%, transparent);
    border-top-color: var(--gray-0, var(--bg));
    border-radius: 50%;
    animation: spin .7s linear infinite;
    display: none;
}
.promo-submit.loading .promo-spinner { display: block; }
.promo-submit.loading .promo-btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.promo-applied {
    background: color-mix(in srgb, var(--success, var(--color-success)) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--success, var(--color-success)) 25%, transparent);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-sm, 0.8125rem);
    color: var(--success, var(--color-success));
    display: none;
}
.promo-applied__remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.promo-applied__remove:hover { color: var(--danger, #f87171); }
.promo-msg { font-size: 12px; margin-top: 6px; }

/* ── Toast ───────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 20px;
    font-size: var(--fs-sm, 0.8125rem);
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
    opacity: 0;
    pointer-events: none;
    max-width: 320px;
    text-align: center;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.toast.success { border-color: color-mix(in srgb, var(--success, var(--color-success)) 40%, transparent); color: var(--success, var(--color-success)); }
.toast.error   { border-color: color-mix(in srgb, var(--danger, #f87171) 40%, transparent); color: var(--danger, #f87171); }

/* ── Total Panel ─────────────────────────────────────────── */
.total-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-4, 24px);
    margin-bottom: 14px;
}
.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-sm, 0.8125rem);
    padding: 6px 0;
    color: var(--gray-7, var(--text-muted));
}
.total-row > span:first-child {
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: var(--fs-xs, 0.6875rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--ls-label, .14em);
    color: var(--text-muted);
}
.total-row + .total-row { border-top: 0; }
.total-row.grand {
    padding-top: 12px;
    margin-top: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    border-top: 1px solid var(--border);
}
.total-row.grand strong { font-weight: 700; }
.total-row .strike { text-decoration: line-through; color: var(--text-muted); font-size: 12px; margin-right: 4px; }
.total-row .free-ship { color: var(--success, var(--color-success)); font-weight: 600; }
.total-row .discount { color: var(--success, var(--color-success)); }

.pay-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    opacity: .7;
}
/* Ni grayscale ni opacité réduite : ces logos ne rassurent que par RECONNAISSANCE,
   laquelle passe par la couleur. Désaturés, ils ne disaient plus « accepté » mais
   « désactivé » — au moment précis où le client cherche à se rassurer sur le paiement.
   Les retrouver au survol ne sert à rien : la décision est déjà prise. */
.pay-logo {
    height: 22px;
    opacity: 1;
}

/* ── CTA Button — seul élément violet plein de la page ───── */
.btn-checkout {
    display: block;
    width: 100%;
    padding: 14px 20px;
    min-height: 52px;
    background: var(--accent);
    color: var(--accent-ink, #ffffff);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: background var(--transition, .2s);
    margin-bottom: 12px;
}
.btn-checkout:hover { background: var(--accent-hover, var(--color-accent-hover)); }
.btn-checkout:active { transform: scale(.98); }
.btn-checkout:disabled { opacity: .6; cursor: not-allowed; }

/* ── Réassurance ─────────────────────────────────────────── */
.trust-badges {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
}
.trust-badge {
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: var(--fs-xs, 0.6875rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--ls-label, .14em);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
}
.trust-badge:last-child { border-bottom: 1px solid var(--border); }

/* ── Empty State ─────────────────────────────────────────── */
.cart-empty {
    text-align: center;
    padding: var(--space-6, 64px) 24px;
    max-width: 440px;
    margin: 0 auto;
}
.cart-empty__wolf {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    color: var(--text);
    opacity: .12;
}
.cart-empty svg { display: block; width: 100%; height: 100%; }
.cart-empty__title {
    font-size: var(--fs-h2, 1.75rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--ls-display, -0.03em);
    line-height: 1.05;
    margin-bottom: 10px;
}
.cart-empty__sub {
    color: var(--text-muted);
    font-size: var(--fs-body, 0.9375rem);
    margin-bottom: 28px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: background var(--transition, .2s), border-color var(--transition, .2s), transform var(--transition, .2s);
}
.btn-primary:hover { background: var(--gray-2, var(--color-surface-hover)); border-color: var(--gray-6, var(--text-muted)); transform: translateY(-2px); }
.btn-primary:active { transform: scale(.98); }

/* ── Country selector ────────────────────────────────────── */
.country-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: var(--fs-xs, 0.6875rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--ls-label, .14em);
    color: var(--text-muted);
}
.country-select {
    background: var(--gray-2, var(--color-bg));
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 13px;
}
.country-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim, color-mix(in srgb, var(--accent) 14%, transparent));
}

/* ── VAT line ────────────────────────────────────────────── */
.vat-line {
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
    margin-top: 2px;
}

/* ── Wallet hint ─────────────────────────────────────────── */
.wallet-hint {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--accent-dim, color-mix(in srgb, var(--accent) 14%, transparent));
    border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--accent-text, var(--color-highlight));
    margin-bottom: 10px;
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    .ship-emoji.bounce { animation: none; }
    .upsell-card:hover img { transform: none; }
}

/* ── Modale liste d'attente lancement (mode vitrine) ───────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: color-mix(in srgb, var(--gray-0, var(--bg)) 60%, transparent);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 28px;
    max-width: 440px;
    width: 100%;
    transform: translateY(20px);
    transition: transform 200ms ease;
    position: relative;
    text-align: center;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 24px;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition);
}
.modal-close:hover { color: var(--text); }
.waitlist-card h2 {
    font-size: var(--fs-h3, 1.375rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--ls-display, -0.03em);
    margin: 4px 0 10px;
}
.waitlist-card p { color: var(--text-muted); margin-bottom: 18px; line-height: 1.5; }
.waitlist-card form { display: flex; flex-direction: column; gap: 10px; }
.waitlist-card input[type="email"] {
    width: 100%;
    padding: 13px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--gray-2, var(--color-bg));
    color: var(--text);
    font-size: 15px;
}
.waitlist-card input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim, color-mix(in srgb, var(--accent) 14%, transparent));
}
.waitlist-msg { min-height: 20px; margin: 12px 0 0; font-size: 14px; font-weight: 600; }
.waitlist-note {
    margin: 10px 0 0;
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: var(--fs-xs, 0.6875rem);
    letter-spacing: var(--ls-label, .14em);
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
}

/* Titre du panier garni. `.cart-wrap` est une grille `1.6fr 1fr` : un enfant direct
   supplémentaire prenait la première cellule et décalait TOUTE la mise en page (colonne
   gauche vide, colonne droite au mauvais endroit, vignettes à taille nulle donc jamais
   chargées puisqu'en `loading="lazy"`). Le titre doit occuper la ligne entière. */
.cart-title {
    grid-column: 1 / -1;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 8px;
}
