.wr-floating-cart-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1599;
}
.floating-cart-toggle {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border: none;
    border-radius: 250px;
    padding: 16px 16px 16px 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 600;
    border: 1px solid rgba(110, 12, 13, .25);
}
.floating-cart-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20);
}
.floating-cart-toggle i {
    font-size: 20px;
    color: #000;
}
.floating-cart-count {
    background: #a50a0c;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    min-width: 24px;
    text-align: center;
}
.floating-cart-total {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    margin-left: 5px;
}
.floating-toast {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: #1abc9c;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    animation: toastInOut 2.5s ease-in-out forwards;
    z-index: 99999;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
@keyframes toastInOut {
    0% { opacity: 0; transform: translateY(20px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}
