/* --- 1. VARIABLES Y ESTILOS GENERALES --- */
:root {
    --primary-color: #ffc9ea;
    --secondary-color: #D4A59A;
    --rosa-palo: #fff0f5;
    --rosa-hover: #D4A59A; 
}

/* --- 2. ELIMINAR FONDO VERDE (HOME Y MÓVIL) --- */
.site-header, .header-t, .banner-section, .banner-section .item, .banner-section .overlay, .banner-section .banner-caption, .blossom-spa-pro-banner .banner-caption, #custom_header_media, #custom_header_media .overlay {
    background-color: #ffffff !important;
    background-image: none !important;
}

.banner-section .overlay::before, .banner-section .item::before, .banner-section .item::after, #custom_header_media::before, #custom_header_media .overlay::before {
    display: none !important;
}

@media (max-width: 1024px) {
    .main-navigation.mobile-navigation, .main-navigation ul li a {
        background-color: #ffffff !important;
        color: #333 !important;
    }
}

/* --- 3. BOTONES Y HOVERS --- */
.button, button, input[type="button"], .widget_blossom_spa_featured_page_widget .text-holder .read-more, .blossom-spa-pro-banner .btn-cta a {
    background-color: #f0f0f0 !important;
    color: #333 !important;
    border: none !important;
    transition: 0.3s all ease !important;
}

.blossom-spa-pro-banner .btn-cta a:hover, .button:hover, button:hover, .read-more:hover {
    background-color: var(--rosa-hover) !important; 
    color: #333 !important; 
}

/* --- 4. HEADER Y LOGO --- */
.custom-logo, .site-logo img, .header-logo img, header img {
    max-width: 250px !important;
    height: auto !important;
}

.site-description {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-left: 15px !important;
}

/* --- 5. FOOTER: NEGRO Y LIMPIO (CORREGIDO) --- */
footer#colophon, .site-footer {
    background-color: #1a1a1a !important;
}

#footer-widgets {
    display: block !important;
    background-color: #1a1a1a !important;
    padding: 20px 0 !important;
}

/* Ocultar redes sociales originales */
.site-footer .social-networks, .site-footer .widget_blossom_spa_social_links_widget, .site-footer svg, .site-footer i {
    display: none !important;
}

/* Copyright y Texto personalizado (Recuperado) */
.site-footer .footer-b {
    display: block !important;
    background-color: #1a1a1a !important;
    padding: 20px 10px 40px 10px !important;
    text-align: center !important;
}

.site-footer .footer-b .site-info, .site-footer .footer-b .copyright {
    display: none !important;
}

.site-footer .footer-b::before {
    content: "© 2026 BER-PAL. Todos los derechos reservados. | 📞 933 00 61 50 | 📍 Barcelona" !important;
    display: block !important;
    color: #ffffff !important;
    font-size: 14px !important;
}

/* --- 6. ELIMINAR CÍRCULOS Y TÍTULO WIDGET (SOLUCIÓN DEFINITIVA) --- */

/* Matamos los círculos azul y verde sin romper el resto */
.site-footer .footer-t::before, 
.site-footer .footer-t::after, 
.site-footer .footer-b::after {
    display: none !important;
    background: none !important;
}

/* Matamos el título "Whastsapp" y su raya blanca */
#footer-widgets .widget-title {
    display: none !important;
}

#footer-widgets .footer-col-1 {
    text-align: left !important;
    padding-left: 20px;
}

/* --- BOTÓN WHATSAPP FLOTANTE REPARADO --- */
.berpal-wa-fixed {
    position: fixed !important;
    width: 65px !important;
    height: 65px !important;
    bottom: 30px !important;
    left: 30px !important;
    background-color: #25d366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important; /* Por encima de todo */
    box-shadow: 0 6px 15px rgba(0,0,0,0.3) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.berpal-wa-fixed svg {
    width: 35px !important;
    height: 35px !important;
    fill: #ffffff !important; /* Forzamos color blanco */
    display: block !important;
}

/* Efecto hover */
.berpal-wa-fixed:hover {
    background-color: #128c7e !important;
    transform: scale(1.1) !important;
}

/* Para móviles */
@media (max-width: 768px) {
    .berpal-wa-fixed {
        width: 55px !important;
        height: 55px !important;
        bottom: 20px !important;
        left: 20px !important;
    }
}