﻿/* =====================================================
   FLOATING-CART.CSS - Floating Cart Icon
   ===================================================== */

/* Floating Cart Icon */
.floating-cart {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #e63946;
    color: white;
    font-size: 28px;
    text-decoration: none;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .floating-cart:hover {
        background-color: #d62828;
        transform: scale(1.1);
    }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: yellow;
    color: black;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 700;
}

/* Cart Badge Animation */
.floating-cart .cart-badge {
    transition: all 0.3s ease;
}
