/* iSavior Cart Sound */
.isavior-cart-button-success {
    background-color: #21a65b !important;
    border-color: #21a65b !important;
    color: #ffffff !important;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease !important;
    transform: scale(1.02);
}

.isavior-cart-bounce {
    animation: isaviorCartBounce .55s ease;
}

@keyframes isaviorCartBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.18); }
    55% { transform: scale(.96); }
    80% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.isavior-cart-toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999999;
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: calc(100vw - 36px);
    padding: 12px 14px;
    border-radius: 12px;
    background: #111111;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.isavior-cart-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.isavior-cart-toast-link {
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: underline !important;
    white-space: nowrap;
}

.isavior-free-shipping-bar {
    margin: 14px 0 18px;
    padding: 13px 14px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(120,97,163,.22);
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
    color: #111111;
}

.isavior-free-shipping-text {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 9px;
}

.isavior-free-shipping-track {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(120,97,163,.14);
}

.isavior-free-shipping-track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #7861A3;
    transition: width .35s ease;
}

.isavior-free-shipping-bar.is-complete .isavior-free-shipping-track span {
    background: #21a65b;
}

.isavior-confetti-canvas {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    pointer-events: none;
}

/* v1.7 premium free shipping bar */
.isavior-free-shipping-anchor {
    width: 100%;
    clear: both;
}

.woocommerce-checkout #isavior-free-shipping-bar {
    margin: 16px 0 14px;
}

#place_order + .isavior-free-shipping-bar,
#isavior-free-shipping-bar + #place_order {
    margin-top: 12px;
}

.isavior-free-shipping-icon {
    display: inline-block;
    margin-right: 3px;
    transform: translateY(1px);
}

.isavior-free-shipping-bar {
    animation: isaviorFreeShippingIn .22s ease both;
}

@keyframes isaviorFreeShippingIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
