/* --- FLOATING CART (Compact Style) --- */
.floating-cart {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    /* Reduced from 60px */
    height: 50px;
    background-color: #62109F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    /* Reduced icon size */
    box-shadow: 0 4px 15px rgba(97, 16, 159, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.floating-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(97, 16, 159, 0.5);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--accent-red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    /* Smaller badge */
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #000;
}

/* --- MOBILE BREAKPOINT --- */
@media (max-width: 768px) {
    .floating-cart {
        bottom: 20px;
        right: 20px;
        width: 45px;
        /* Even smaller on mobile */
        height: 45px;
        font-size: 18px;
    }

    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: 0;
        right: 0;
    }
}