/* =========================================
   ESTILOS DEL FOOTER SEYPRO Y WHATSAPP
   ========================================= */

/* Contenedor Principal del Footer */
.footer-seypro {
    background-color: #0e1828;
    color: #94a3b8;
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top: 4px solid #ff6f00;
}

/* Filtro para volver el logo blanco */
.footer-logo {
    height: 45px;
    filter: brightness(0) invert(1);
}

/* Botones de Redes Sociales */
.footer-social-btn {
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background-color: #ff6f00;
    border-color: #ff6f00;
    color: white !important;
}

/* Iconos de Contacto */
.footer-icon {
    color: #ff6f00;
}

/* Divisor inferior (Copyright) */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Efecto Hover para los Enlaces Rápidos */
.hover-orange {
    transition: all 0.3s ease;
}

.hover-orange:hover {
    color: #ff6f00 !important;
    padding-left: 5px;
}

/* =========================================
   BOTÓN FLOTANTE DE WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebc57;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.4);
}

/* =========================================
   BOTÓN DE CARRITO FLOTANTE (RESTAURADO)
   ========================================= */
.floating-cart-btn {
    position: fixed;
    top: 100px;
    right: 30px;
    background-color: #0072ce;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 12px;
    text-decoration: none;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    width: 60px;
    white-space: nowrap;
}

.floating-cart-btn:hover {
    width: 170px;
    background-color: #005bb5;
    color: white;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 36px;
    font-size: 1.2rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff6f00;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #0072ce;
}

.floating-cart-btn:hover .cart-badge {
    border-color: #005bb5;
}

.cart-text {
    opacity: 0;
    margin-left: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.floating-cart-btn:hover .cart-text {
    opacity: 1;
}

@media (max-width: 768px) {
    .floating-cart-btn {
        top: auto;
        bottom: 110px; /* Se posiciona justo encima del botón de WhatsApp */
        right: 40px;
    }
}