/* ==========================================================================
   WooCaftan Optimizer — Achat rapide (Phase 3 + habillage Phase 4)
   ==========================================================================
   Couleurs et typographies tirées de la charte graphique centrale (voir
   modules/front-styles/design-tokens.css, chargé en dépendance).
   ========================================================================== */

.wco-quick-buy-loop-btn {
    display: block;
    margin-top: 9px;
    padding: 9px 14px;
    text-align: center;
    text-decoration: none;
    font-family: var(--wco-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--wco-color-accent-ink);
    background: var(--wco-color-accent);
    border-radius: var(--wco-radius-pill);
    transition: background 0.2s ease;
}

.wco-quick-buy-loop-btn:hover {
    background: var(--wco-color-ink);
    color: var(--wco-color-surface);
}

.wco-quick-buy-single-btn {
    display: inline-block;
    margin-left: 12px;
    padding: 13px 24px;
    font-family: var(--wco-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--wco-color-ink);
    background: var(--wco-color-surface);
    border: 1px solid var(--wco-color-ink);
    border-radius: var(--wco-radius-pill);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.wco-quick-buy-single-btn:hover {
    background: var(--wco-color-ink);
    color: var(--wco-color-surface);
}

@media (max-width: 600px) {
    .wco-quick-buy-single-btn {
        display: block;
        margin: 12px 0 0;
        width: 100%;
    }
}
