.liza-floating-cart {
    position: fixed;
    bottom: 21px;
    left: 29px;
    z-index: 9998;
    background: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.liza-floating-cart:hover {
    transform: scale(1.2);
}

.liza-cart-icon-wrapper {
    position: relative;
    color: #e8685a;
}

.liza-cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffffff;
    color: #e8685a;
    font-size: 11px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
}

/* Shake Animation */
@keyframes liza-shake {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-5px); }
    75% { transform: translateY(5px); }
}

.liza-shake-vertical {
    animation: liza-shake 0.4s ease-in-out 2;
}
