.floating-cart-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #238767 0%, #2649e6 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(38, 73, 230, 0.35);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}
.floating-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(38, 73, 230, 0.5);
}
.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #d32f2f;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(211, 47, 47, 0.4);
}

.floating-cart-btn i,
.floating-cart-btn .cart-count {
    pointer-events: none; /* Evita que capturen el click */
}

@media (max-width: 600px) {
    .floating-cart-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 16px;
        right: 16px;
    }
}