/* ========== Floating Cart Button ========== */
.floating-cart-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.floating-cart-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
    color: white;
}

.floating-cart-btn i {
    font-size: 24px;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 12px;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

@media (max-width: 768px) {
    .floating-cart-btn {
        bottom: 80px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .floating-cart-btn i {
        font-size: 22px;
    }
}

/* ========== Modal Cart Button ========== */
.btn-modal-cart {
    flex: 1;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-modal-cart:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-modal-cart i {
    font-size: 16px;
}
