/* ============================================================
   BOHEME DE DIOR - Page Checkout (extension de theme.css)
   Reutilise .boheme-summary/.boheme-trust/.boheme-stepper (boheme.css)
   et .boheme-cart-hero/.boheme-cart-empty-* (cart.css).
   ============================================================ */

.boheme-checkout-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    vertical-align: middle;
}

.boheme-checkout-block {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--bs-border-color);
}
.boheme-checkout-block:last-child { border-bottom: 0; padding-bottom: 0; }

/* ---------- Mode de paiement ---------- */
.boheme-payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.boheme-payment-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border: 1.5px solid var(--bs-border-color);
    border-radius: var(--boheme-radius);
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease;
}
.boheme-payment-option:hover { border-color: rgba(var(--bs-primary-rgb), .5); }
.boheme-payment-option input[type="radio"] {
    width: 18px; height: 18px;
    accent-color: var(--bs-primary);
    flex-shrink: 0;
}
.boheme-payment-option:has(input:checked) {
    border-color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), .06);
}
.boheme-payment-option.is-disabled {
    opacity: .55;
    cursor: not-allowed;
}
.boheme-payment-option.is-disabled:hover { border-color: var(--bs-border-color); }
.boheme-payment-option-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--bs-tertiary-bg);
    color: var(--bs-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.boheme-payment-option-body { display: flex; flex-direction: column; }
.boheme-payment-option-title { font-weight: 600; color: var(--bs-emphasis-color); font-size: .95rem; }
.boheme-payment-option-desc { color: var(--bs-secondary-color); font-size: .82rem; }

/* ---------- Lignes recap (compact, lecture seule) ---------- */
.boheme-checkout-lines { display: flex; flex-direction: column; gap: 14px; }
.boheme-checkout-line {
    display: flex;
    align-items: center;
    gap: 12px;
}
.boheme-checkout-line img {
    width: 52px; height: 65px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--bs-tertiary-bg);
    flex-shrink: 0;
}
.boheme-checkout-line-body { flex-grow: 1; min-width: 0; }
.boheme-checkout-line-name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--bs-emphasis-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.boheme-checkout-line-qty { font-size: .78rem; color: var(--bs-secondary-color); }
.boheme-checkout-line-price {
    font-size: .85rem;
    font-weight: 700;
    color: var(--bs-emphasis-color);
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .boheme-checkout-block { padding-bottom: 20px; }
}
