/**
 * Oilstrich Custom Styles
 * - Boton flotante de WhatsApp
 * - Ocultar botones de añadir al carrito (manteniendo espacio)
 */

/* BOTON FLOTANTE DE WHATSAPP */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
    text-decoration: none;
}

.whatsapp-float svg {
    fill: #FFF;
    width: 35px;
    height: 35px;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* OCULTAR BOTON AÑADIR AL CARRITO - Mantener espacio con altura fija */
.product-cart-btn {
    min-height: 50px !important;
    display: block !important;
}

.product-cart-btn a,
.product-cart-btn .add_to_cart,
.product-cart-btn .cart-btn,
.product-cart-btn .compare-btn,
.add_to_cart,
.cart-btn.add_to_cart,
a.add_to_cart,
button.add_to_cart,
.btn.add_to_cart,
.compare-btn.add_to_cart,
.compare-btn.cart-btn,
.compare-btn.btn.cart-btn {
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
}

/* Ocultar el carrito del header */
.cart-icon,
.header-cart,
.mini-cart,
.cart-dropdown,
.shopping-cart,
.cart-sidebar,
.cart-wrap,
.cart-count {
    display: none !important;
}
}
