.floating-cart {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    background: #e74c3c;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    font-family: inherit;
}

.floating-cart:hover {
    transform: scale(1.12);
    background: #c0392b;
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.55);
}

.floating-cart i { font-size: 28px; }

.floating-cart .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #2c3e50;
    color: white;
    font-size: 12px;
    font-weight: bold;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

@keyframes pulse {
    0%   { box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4); }
    50%  { box-shadow: 0 8px 35px rgba(231, 76, 60, 0.6); }
    100% { box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4); }
}

@media (max-width: 768px) {
    .floating-cart {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }
    .floating-cart i { font-size: 24px; }
}
