/* VIP Free Shipping Bar — vsb.css v2.1 */

/* ── Shared keyframe (defined ONCE) ── */
@keyframes vsb-shimmer {
    0%   { left: -100%; }
    100% { left:  200%; }
}

/* ═══════════════════════════════════════
   SHARED BASE STYLES
═══════════════════════════════════════ */
.vsb-product-widget,
.vsb-cart-widget {
    margin: 16px 0 8px;
    padding: 14px 16px;
    background: #f8f5ff;
    border: 1.5px solid #e0d6f5;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: border-color 0.3s ease, background 0.3s ease;
    box-sizing: border-box;
}
.vsb-cart-widget {
    margin: 0 0 20px;
    padding: 16px 18px;
}

/* Reached state */
.vsb-product-widget.vsb-reached,
.vsb-cart-widget.vsb-reached {
    background: #f0fff5;
    border-color: #b8e8c8;
}

/* ── Message ── */
.vsb-message {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.45;
}
.vsb-message strong { color: #4D148C; }

.vsb-reached .vsb-message,
.vsb-reached .vsb-message strong { color: #1a7a3e; }

/* ── Track ── */
.vsb-track {
    height: 10px;
    background: #e8e0f8;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 6px;
}
.vsb-reached .vsb-track { background: #d0f0dc; }

/* ── Fill ── */
.vsb-fill {
    height: 100%;
    width: 0%;
    border-radius: 20px;
    background: #4D148C;
    transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Shimmer effect — single definition */
.vsb-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    bottom: 0;
    width: 60%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    animation: vsb-shimmer 2.2s ease infinite;
}

/* ── Labels ── */
.vsb-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #bbb;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-top: 2px;
}
.vsb-goal { color: #4D148C; }
.vsb-reached .vsb-goal { color: #1a7a3e; }

/* ═══════════════════════════════════════
   MOBILE (≤ 600px)
═══════════════════════════════════════ */
@media (max-width: 600px) {
    .vsb-product-widget,
    .vsb-cart-widget {
        padding: 12px 14px;
        border-radius: 10px;
        margin: 12px 0 6px;
    }
    .vsb-cart-widget { margin: 0 0 16px; }
    .vsb-message { font-size: 13px; }
    .vsb-track   { height: 8px; }
}
