/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme
Author: Muffin group
Author URI: https://muffingroup.com
Description: Child Theme for Betheme
Template: betheme
Version: 2.0.2
*/
/* Carrito flotante moderno */
.floating-cart {
    position: fixed;
    top: 20px;
    right: 25px;
    background: #00CB80;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    text-decoration: none !important;
    z-index: 999999999999 !important;
    transition: .3s ease;
}

.floating-cart:hover {
    background: #00b672;
    transform: scale(1.08);
}

.fc-icon svg {
    pointer-events: none;
}

.fc-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: #00CB80;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

@media screen and (max-width: 768px){
    .floating-cart {
        top: 15px;
        right: 15px;
        width: 48px;
        height: 48px;
    }
}
