/**
 * Floating Cart Button
 * Fixed position on the left side, below header
 */

.floating-cart-button {
    position: fixed;
    left: 20px;
    top: 120px; /* Below header */
    z-index: 999;
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    color: white;
    border: none;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
    transition: all 0.3s ease;
    font-size: 24px;
}

.floating-cart-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
}

.floating-cart-button:active {
    transform: scale(0.95);
}

.floating-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #EF4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
}

.floating-cart-badge:empty {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-cart-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        left: 15px;
        top: 100px;
    }
    
    .floating-cart-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: -3px;
        right: -3px;
    }
}
