/* ── Guest Cart — styles ─────────────────────────────────────────── */

/* Icône panier dans la navbar */
.ws-guest-cart-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 4px 10px;
    text-decoration: none !important;
    color: inherit;
    transition: opacity .15s;
}
.ws-guest-cart-link:hover { opacity: .75; }

.ws-cart-svg {
    display: block;
    color: currentColor;
}

/* Badge compteur */
.ws-guest-cart-badge {
    position: absolute;
    top: -2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: #dc2626;
    color: #fff;
    border-radius: 9px;
    font-size: 10px;
    font-weight: 700;
    font-family: -apple-system, Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0,0,0,.25);
    pointer-events: none;
}

/* Toast notification */
.ws-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #1a1a2e;
    color: #f0f0f0;
    padding: 13px 18px;
    border-radius: 10px;
    font-size: .875rem;
    font-family: -apple-system, Arial, sans-serif;
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .28s ease, transform .28s ease;
    max-width: 300px;
    line-height: 1.4;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
    border-left: 3px solid #16a34a;
}
.ws-toast a { color: #86efac; margin-left: 6px; text-decoration: none; font-weight: 600; }
.ws-toast a:hover { text-decoration: underline; }
.ws-toast-show { opacity: 1; transform: translateY(0); }
