/*
 * BOUDOIR CLASSIC CHILD THEME - CSS PRINCIPAL
 * ===========================================
 * 
 * Fecha: 19 de octubre de 2025
 * Última actualización: 23 de noviembre de 2025
 * Propósito: Estilos personalizados para el tema hijo boudoir-classic
 * Basado en: Tema Classic de PrestaShop
 * 
 * NOVEDADES AÑADIDAS:
 * - Formulario de contacto WSF completo con etiquetas flotantes
 * - Selector internacional de países con banderas CSS
 * - Sistema de validación visual en tiempo real
 * - Diseño responsive optimizado para móviles
 * - +40 banderas de países implementadas con gradientes CSS
 * 
 * VERIFICACIÓN DE FUNCIONAMIENTO:
 * Este archivo debe cargar correctamente y mostrar estilos básicos
 */

/* =================================
   CURSOR POINTER - FORZAR EN ELEMENTOS INTERACTIVOS
   ================================= */

/* Forzar cursor pointer en elementos clickeables */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');

a, 
button, 
[role="button"], 
input[type="button"], 
input[type="submit"], 
input[type="reset"], 
select, 
[onclick], 
[data-toggle], 
[data-target], 
.btn, 
.button, 
.clickable, 
.dropdown-toggle,
.nav-link,
.menu-link,
.product-link,
.category-link,
.filter-link,
.pagination a,
.add-to-cart,
.quick-view,
.wishlist-button,
.compare-button,
.cart-icon,
.search-widget button,
.close,
.modal-close,
[type="checkbox"],
[type="radio"],
label[for] {
    cursor: pointer !important;
}





/* =================================
   FONTAWESOME - ASEGURAR FUNCIONAMIENTO
   ================================= */
   
/* Importar FontAwesome si no está cargado */
@import url("../../_libraries/font-awesome/css/font-awesome.min.css");

/* Asegurar que los iconos FontAwesome funcionen correctamente */
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Iconos específicos que usamos en el theme */
.fa-search:before { content: "\f002"; }
.fa-user:before { content: "\f007"; }
.fa-shopping-bag:before { content: "\f290"; }
.fa-times:before { content: "\f00d"; }
.fa-angle-down:before { content: "\f107"; }
.fa-angle-right:before { content: "\f105"; }


body {
    border-top: 3px solid #ff6b9d;
    position: relative;
}



/* =================================
   VARIABLES BOUDOIR - ACTUALIZADAS
   ================================= */
   
:root {
    /* Colores exactos de boudoir.es */
    --boudoir-pink: rgba(128, 0, 128, 1);
    --boudoir-pink-light: rgba(128, 0, 128, 0.2);
    --boudoir-pink-dark: rgba(102, 0, 102, 1);
    --boudoir-black: #212121;
    --boudoir-gray: #757575;
    --boudoir-gray-light: #BDBDBD;
    --boudoir-white: #FFFFFF;
    --boudoir-background: #FAFAFA;
    
    /* Tipografías */
    --boudoir-font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --boudoir-font-secondary: 'Playfair Display', Georgia, serif;
    
    /* Espaciados */
    --boudoir-spacing-xs: 0.5rem;
    --boudoir-spacing-sm: 1rem;
    --boudoir-spacing-md: 1.5rem;
    --boudoir-spacing-lg: 2rem;
    --boudoir-spacing-xl: 3rem;
    
    /* Bordes */
    --boudoir-border-radius: 8px;
    --boudoir-border-radius-small: 4px;
    
    /* Sombras */
    --boudoir-shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --boudoir-shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --boudoir-shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Transiciones */
    --boudoir-transition: all 0.3s ease;
}

/* =================================
   ESTILOS GENERALES BOUDOIR
   ================================= */

body {
    border-top: 3px solid var(--boudoir-pink);
    position: relative;
    font-family: var(--boudoir-font-primary);
    background-color: var(--boudoir-background);
    color: var(--boudoir-black);
    line-height: 1.6;
}



.container{
    width: 1400px;
}

h1,h2,h3,h4,h5,h6 {
    color: var(--boudoir-black);
    margin-bottom: 15px;
    font-family: "Playfair Display", serif !important;
}

/* =================================
   HEADER BOUDOIR PERSONALIZADO
   ================================= */

#header.boudoir-header {
    background: var(--boudoir-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    border: none;
}

/* TOP BAR - Descuento */
.boudoir-top-bar {
    background: var(--boudoir-pink);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
}

.boudoir-discount-link {
    color: white;
    text-decoration: none;
    transition: var(--boudoir-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.boudoir-discount-link:hover {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

/* HEADER PRINCIPAL */
.boudoir-main-header {
    padding: 15px 0;
    background: white;
}

/* LOGO */
.boudoir-logo img {
    max-height: 70px;
    transition: var(--boudoir-transition);
}

.boudoir-logo:hover img {
    transform: scale(1.05);
}

.boudoir-text-logo {
    font-family: var(--boudoir-font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--boudoir-pink);
    text-decoration: none;
    letter-spacing: 2px;
}

.boudoir-text-logo:hover {
    color: var(--boudoir-pink-dark);
    text-decoration: none;
}

/* =================================
   MENÚ HORIZONTAL MULTI-LÍNEA
   ================================= */

/* Contenedor principal de navegación */
.boudoir-main-nav {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    z-index: 100;
}

/* Wrapper del menú */
.boudoir-menu-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contenedor del menú principal */
.boudoir-main-menu {
    position: relative;
}

/* Lista principal - FLEXBOX WRAP para múltiples líneas */
#boudoir-top-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}

/* Items del menú principal */
#boudoir-top-menu > li.category {
    position: relative;
    margin: 0;
}

/* Enlaces principales */
#boudoir-top-menu > li.category > a.boudoir-menu-link {
    display: block;
    padding: 16px 18px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

/* Hover en enlaces principales */
#boudoir-top-menu > li.category > a.boudoir-menu-link:hover {
    color: var(--boudoir-pink);
    border-bottom-color: var(--boudoir-pink);
    background-color: rgba(128, 0, 128, 0.05);
}

/* Iconos de flechas */
.boudoir-dropdown-arrow {
    margin-left: 5px;
    font-size: 10px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.boudoir-submenu-arrow {
    margin-left: 12px;
    font-size: 10px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

/* Rotar flechas en hover */
.category.has-submenu:hover > a > .boudoir-dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.category.has-submenu:hover > a > .boudoir-submenu-arrow {
    transform: rotate(-90deg);
    opacity: 1;
}

/* =================================
   DROPDOWNS NIVEL 1
   ================================= */

/* Regla específica: #boudoir-top-menu > li > div - OPTIMIZADO PARA ITEMS UNIFORMES */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 600px; /* Ancho mínimo para acomodar items uniformes */
    width: auto; /* Ancho automático basado en contenido */
    background: white;
    border-top: none;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    
    /* Oculto por defecto */
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Mostrar dropdown en hover del item padre */
#boudoir-top-menu > li.category.has-submenu:hover > div.boudoir-dropdown-menu,
#boudoir-top-menu > li.category.has-submenu.keyboard-active > div.boudoir-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Lista dentro del dropdown nivel 1 - HORIZONTAL UNIFORME CON WRAP */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu {
    list-style: none;
    margin: 0;
    padding: 1px;
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    justify-content: stretch; /* Distribuir elementos uniformemente */
    align-items: stretch; /* Misma altura para todos */
    max-width: 720px; /* Límite ajustado para items más uniformes */
    width: 100%; /* Ocupar todo el ancho disponible */
    background-color: #f1f0f0;
}

/* =================================
   ITEMS NIVEL 1 DENTRO DEL DROPDOWN
   ================================= */

/* Regla específica: #boudoir-top-menu > li > div > ul > li - ITEMS HORIZONTALES UNIFORMES */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category {
    position: relative;
    margin: 0;
    border-bottom: none; /* Eliminar bordes verticales */
    border-right: 0; /* Separador horizontal */
    flex: 1; /* Distribuir espacio uniformemente */
    min-width: 140px; /* Ancho mínimo para contenido corto */
    max-width: 180px; /* Ancho máximo para evitar items demasiado anchos */
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: #fff;
}

#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category:last-child {
    border-right: none;
}

/* Enlaces nivel 1 dentro del dropdown - ADAPTADOS PARA HORIZONTAL UNIFORME */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category > a.boudoir-menu-link {
    padding: 8px; 
    color: #666;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    border-left: none; /* Quitar borde izquierdo */
    border-bottom: 2px solid transparent; /* Borde inferior como indicador */
    white-space: normal; /* Evitar salto de línea en el texto */
    width: 100%; /* Ocupar todo el ancho del contenedor li */
    text-align: center; /* Centrar texto */
    box-sizing: border-box; /* Incluir padding en el cálculo del ancho */
    align-items: center;
    justify-content: center;
    height: 100%;
    display: flex;
}

/* Hover en enlaces nivel 1 - ADAPTADO PARA HORIZONTAL */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category > a.boudoir-menu-link:hover {
    background-color: rgba(128, 0, 128, 0.08);
    color: var(--boudoir-pink);
    border-bottom-color: var(--boudoir-pink); /* Borde inferior en lugar del izquierdo */
    transform: translateY(-1px); /* Pequeño movimiento hacia arriba */
}

/* =================================
   DROPDOWNS NIVEL 2 (SUBMENÚS ANIDADOS)
   ================================= */

/* Regla específica: #boudoir-top-menu > li > div > ul > li > div - POSICIONAMIENTO PARA HORIZONTAL */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category.has-submenu > div.boudoir-dropdown-menu.boudoir-nested-menu {
    position: absolute;
    top: 100%; /* Aparecer debajo del item horizontal */
    left: 0;
    margin-left: 0;
    min-width: 280px;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1001;
    
    /* Oculto por defecto */
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px); /* Cambiar a movimiento vertical */
    transition: all 0.3s ease;
}

/* Mostrar submenu anidado en hover - AJUSTADO PARA VERTICAL */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category.has-submenu:hover > div.boudoir-nested-menu,
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category.has-submenu.keyboard-active > div.boudoir-nested-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Cambiar a movimiento vertical */
}

/* Lista dentro del submenu anidado */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category.has-submenu > div.boudoir-nested-menu > ul.boudoir-submenu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

/* =================================
   ITEMS NIVEL 2 DENTRO DEL SUBMENU ANIDADO
   ================================= */

/* Regla específica: #boudoir-top-menu > li > div > ul > li > div > ul > li */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category.has-submenu > div.boudoir-nested-menu > ul.boudoir-submenu > li.category {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #f5f5f5;
}

#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category.has-submenu > div.boudoir-nested-menu > ul.boudoir-submenu > li.category:last-child {
    border-bottom: none;
}

/* Enlaces nivel 2 */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category.has-submenu > div.boudoir-nested-menu > ul.boudoir-submenu > li.category > a.boudoir-menu-link {
    display: block;
    padding: 10px 18px;
    color: #555;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.1px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

/* Hover en enlaces nivel 2 */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category.has-submenu > div.boudoir-nested-menu > ul.boudoir-submenu > li.category > a.boudoir-menu-link:hover {
    background-color: rgba(128, 0, 128, 0.08);
    color: var(--boudoir-pink);
    border-left-color: var(--boudoir-pink);
    padding-left: 23px;
}

/* =================================
   INDICADORES VISUALES PARA SUBMENÚS
   ================================= */

/* Indicador de que hay submenu (flecha hacia abajo para horizontal) */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category.has-submenu > a.boudoir-menu-link::after {
    content: '▼'; /* Flecha hacia abajo */
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    color: #999;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease;
}

/* Cambiar color de la flecha en hover */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category.has-submenu:hover > a.boudoir-menu-link::after {
    color: var(--boudoir-pink);
}

/* =================================
   POSICIONAMIENTO INTELIGENTE
   ================================= */

/* Si el dropdown se sale por la derecha, posicionarlo desde la derecha */
#boudoir-top-menu > li.category:nth-last-child(-n+2) > div.boudoir-dropdown-menu,
.boudoir-dropdown-menu.dropdown-right-aligned {
    left: auto;
    right: 0;
}

/* Si el submenu anidado se sale por la derecha, posicionarlo desde la derecha */
#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category:nth-last-child(-n+3).has-submenu > div.boudoir-nested-menu,
.boudoir-nested-menu.nested-left-aligned {
    left: auto;
    right: 0; /* Alinear desde la derecha del item padre */
    margin-left: 0;
    margin-right: 0;
    transform: translateY(-10px);
}

#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category:nth-last-child(-n+3).has-submenu:hover > div.boudoir-nested-menu,
.boudoir-nested-menu.nested-left-aligned:hover {
    transform: translateY(0);
}

/* =================================
   RESPONSIVE - COLAPSAR EN MÓVIL
   ================================= */

@media (max-width: 768px) {
    #boudoir-top-menu {
        flex-direction: column;
        align-items: stretch;
    }
    
    #boudoir-top-menu > li.category {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    #boudoir-top-menu > li.category > a.boudoir-menu-link {
        padding: 12px 15px;
        text-align: left;
    }
    
    /* En móvil, dropdowns van debajo del item */
    #boudoir-top-menu > li.category > div.boudoir-dropdown-menu {
        position: static;
        transform: none;
        border: none;
        box-shadow: none;
        background: #f9f9f9;
        border-top: 1px solid #e0e0e0;
    }
    
    /* Submenús horizontales en móvil se vuelven verticales */
    #boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu {
        flex-direction: column;
        max-width: none;
        gap: 0;
    }
    
    #boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
    
    #boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category > a.boudoir-menu-link {
        text-align: left;
        min-width: auto;
        padding: 12px 15px;
        border-left: 3px solid transparent;
        border-bottom: none;
    }
    
    #boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category > a.boudoir-menu-link:hover {
        border-left-color: var(--boudoir-pink);
        border-bottom-color: transparent;
        transform: none;
        padding-left: 20px;
    }
    
    /* Submenús anidados también estáticos en móvil */
    #boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category.has-submenu > div.boudoir-nested-menu {
        position: static;
        transform: none;
        border: none;
        box-shadow: none;
        background: #f0f0f0;
        margin-left: 20px;
    }
}

/* ICONOS DEL HEADER */
.boudoir-header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    height: 70px;
}

.boudoir-search-btn,
.boudoir-contact-btn,
.boudoir-user-btn,
.boudoir-cart-btn {
    background: none;
    border: none;
    color: var(--boudoir-black);
    font-size: 16px;
    cursor: pointer;
    transition: var(--boudoir-transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.boudoir-search-btn:hover,
.boudoir-user-btn:hover,
.boudoir-cart-btn:hover {
    color: var(--boudoir-pink);
    transform: translateY(-1px);
}

.boudoir-contact-btn {
    font-family: var(--boudoir-font-primary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 15px;
    border: 1px solid var(--boudoir-black);
    border-radius: 20px;
    transition: var(--boudoir-transition);
}

.boudoir-contact-btn:hover {
    background: var(--boudoir-black);
    color: white;
    text-decoration: none;
}

/* CONTADOR CARRITO */
.boudoir-cart-btn {
    position: relative;
}

.boudoir-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--boudoir-pink);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* PANEL DE BÚSQUEDA */
.boudoir-search-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #E0E0E0;
    box-shadow: var(--boudoir-shadow-medium);
    padding: 20px 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.boudoir-search-panel.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.boudoir-search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.boudoir-search-input {
    border: 2px solid #E0E0E0;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 16px;
    transition: var(--boudoir-transition);
}

.boudoir-search-input:focus {
    border-color: var(--boudoir-pink);
    box-shadow: 0 0 0 3px var(--boudoir-pink-light);
    outline: none;
}

.boudoir-search-submit {
    background: var(--boudoir-pink);
    border: none;
    border-radius: 0 25px 25px 0;
    color: white;
    padding: 12px 20px;
    transition: var(--boudoir-transition);
}

.boudoir-search-submit:hover {
    background: var(--boudoir-pink-dark);
}

.boudoir-search-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--boudoir-gray-light);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: white;
    cursor: pointer;
    transition: var(--boudoir-transition);
}

.boudoir-search-close:hover {
    background: var(--boudoir-gray);
}

/* SELECTOR DE IDIOMAS */
.boudoir-language-selector {
    position: relative;
    display: inline-block;
}

.boudoir-language-current {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: none;
    border: 1px solid var(--boudoir-black);
    border-radius: 20px;
    padding: 8px 15px;
    font-family: var(--boudoir-font-primary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--boudoir-black);
    transition: var(--boudoir-transition);
}

.boudoir-language-current:hover {
    background: var(--boudoir-black);
    color: white;
}

.boudoir-language-current i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.boudoir-language-selector:hover .boudoir-language-current i,
.boudoir-language-selector.active .boudoir-language-current i {
    transform: rotate(180deg);
}

.boudoir-language-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    min-width: 150px;
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    box-shadow: var(--boudoir-shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.boudoir-language-selector:hover .boudoir-language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.boudoir-lang-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.boudoir-lang-item {
    margin: 0;
}

.boudoir-lang-item.active {
    background: var(--boudoir-pink-light);
}

.boudoir-lang-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--boudoir-black);
    text-decoration: none;
    font-size: 14px;
    transition: var(--boudoir-transition);
}

.boudoir-lang-link:hover {
    background: var(--boudoir-pink-light);
    color: var(--boudoir-pink);
    text-decoration: none;
}

.boudoir-lang-flag img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.boudoir-lang-name {
    font-weight: 500;
}

/* MENÚ MÓVIL */
.boudoir-mobile-toggle {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.boudoir-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--boudoir-black);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.boudoir-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.boudoir-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.boudoir-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.boudoir-mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #E0E0E0;
    box-shadow: var(--boudoir-shadow-medium);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.boudoir-mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.boudoir-mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.boudoir-mobile-menu-list li {
    border-bottom: 1px solid #F0F0F0;
}

.boudoir-mobile-menu-list a {
    display: block;
    padding: 15px 20px;
    color: var(--boudoir-black);
    text-decoration: none;
    font-family: var(--boudoir-font-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--boudoir-transition);
}

.boudoir-mobile-menu-list a:hover {
    background: var(--boudoir-pink-light);
    color: var(--boudoir-pink-dark);
    text-decoration: none;
}

.boudoir-mobile-divider {
    height: 10px;
    background: #F5F5F5;
    border-bottom: none !important;
}

body.mobile-menu-open {
    overflow: hidden;
}

/* =================================
   BREADCRUMB
   ================================= */

.breadcrumb {
    background: transparent;
    padding: var(--boudoir-spacing-sm) 0;
    margin-bottom: var(--boudoir-spacing-md);
}

.breadcrumb a {
    color: var(--boudoir-gray);
    text-decoration: none;
    transition: var(--boudoir-transition);
}

.breadcrumb a:hover {
    color: var(--boudoir-pink);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--boudoir-black);
    font-weight: 500;
}

/* =================================
   BOTONES Y ELEMENTOS INTERACTIVOS
   ================================= */

/* Botones principales */
.btn-primary,
.btn.btn-primary {
    background-color: var(--boudoir-pink);
    border-color: var(--boudoir-pink);
    border-radius: var(--boudoir-border-radius);
    transition: var(--boudoir-transition);
    font-family: var(--boudoir-font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 24px;
}

.btn-primary:hover,
.btn.btn-primary:hover {
    background-color: var(--boudoir-pink-dark);
    border-color: var(--boudoir-pink-dark);
    transform: translateY(-2px);
    box-shadow: var(--boudoir-shadow-medium);
}

.btn-primary:focus,
.btn.btn-primary:focus {
    background-color: var(--boudoir-pink-dark);
    border-color: var(--boudoir-pink-dark);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
}

/* Botones secundarios */
.btn-secondary,
.btn.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--boudoir-pink);
    color: var(--boudoir-pink);
    border-radius: var(--boudoir-border-radius);
    transition: var(--boudoir-transition);
    font-family: var(--boudoir-font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 22px;
}

.btn-secondary:hover,
.btn.btn-secondary:hover {
    background-color: var(--boudoir-pink);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--boudoir-shadow-light);
}

/* Enlaces */
a {
    color: var(--boudoir-pink);
    transition: var(--boudoir-transition);
    text-decoration: none;
}

a:hover {
    color: var(--boudoir-pink-dark);
    text-decoration: none;
}

/* =================================
   PRODUCTOS Y CATÁLOGO
   ================================= */

/* Cards de productos */
.product-miniature,
.product-item {
    border-radius: var(--boudoir-border-radius);
    overflow: hidden;
    transition: var(--boudoir-transition);
    border: 1px solid #E0E0E0;
    background: var(--boudoir-white);
    margin-bottom: var(--boudoir-spacing-lg);
}

.product-miniature:hover,
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--boudoir-shadow-medium);
    border-color: var(--boudoir-pink-light);
}

/* Imágenes de productos */
.product-miniature img,
.product-item img {
    transition: var(--boudoir-transition);
    width: 100%;
    height: auto;
}

.product-miniature:hover img,
.product-item:hover img {
    transform: scale(1.05);
}

/* Información del producto */
.product-title,
.product-name {
    font-family: var(--boudoir-font-primary);
    font-weight: 600;
    color: var(--boudoir-black);
    margin-bottom: var(--boudoir-spacing-xs);
    transition: var(--boudoir-transition);
}

.product-title:hover,
.product-name:hover {
    color: var(--boudoir-pink);
}

.product-price,
.price {
    font-family: var(--boudoir-font-primary);
    font-weight: 700;
    color: var(--boudoir-pink);
    font-size: 18px;
}

.regular-price {
    color: var(--boudoir-gray);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: var(--boudoir-spacing-xs);
}

/* Botones de producto */
.add-to-cart,
.btn-add-to-cart {
    background: var(--boudoir-pink);
    color: white;
    border: none;
    border-radius: var(--boudoir-border-radius-small);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--boudoir-transition);
    cursor: pointer;
}

.add-to-cart:hover,
.btn-add-to-cart:hover {
    background: var(--boudoir-pink-dark);
    transform: translateY(-1px);
}

/* Lista de productos */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

    padding: var(--boudoir-spacing-lg) 0;
}

/* Página de producto individual */
.product-cover img {
    border-radius: var(--boudoir-border-radius);
}

.product-details h1 {
    font-family: var(--boudoir-font-secondary);
    color: var(--boudoir-black);
    margin-bottom: var(--boudoir-spacing-md);
}

.product-variants select,
.product-variants input {
    border-radius: var(--boudoir-border-radius-small);
    border: 1px solid #E0E0E0;
    padding: 8px 12px;
    transition: var(--boudoir-transition);
}

.product-variants select:focus,
.product-variants input:focus {
    border-color: var(--boudoir-pink);
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.1);
    outline: none;
}

/* =================================
   FOOTER
   ================================= */

#footer {
    background: var(--boudoir-black);
    color: white;
    padding: 0;
    margin-top: var(--boudoir-spacing-xl);
}

#footer h3,
#footer h4 {
    color: white;
    font-family: var(--boudoir-font-primary);
    font-weight: 600;
    margin-bottom: var(--boudoir-spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#footer a {

    transition: var(--boudoir-transition);
    text-decoration: none;
}

#footer a:hover {
    color: #FFF;
    text-decoration: none;
}

#footer ul {
    list-style: none;
    padding: 0;
}

#footer ul li {
    margin-bottom: var(--boudoir-spacing-xs);
}

#footer ul li a {
    padding: 4px 20px;
}

/* Copyright */
.footer-copyright {
    border-top: 1px solid #424242;
    margin-top: var(--boudoir-spacing-lg);
    padding-top: var(--boudoir-spacing-md);
    text-align: center;
    color: var(--boudoir-gray-light);
    font-size: 14px;
}

/* Información de contacto en footer */
.footer-contact {
    background: var(--boudoir-pink);
    color: white;
    padding: var(--boudoir-spacing-md);
    border-radius: var(--boudoir-border-radius);
    margin-bottom: var(--boudoir-spacing-lg);
}

.footer-contact h4 {
    color: white;
    margin-bottom: var(--boudoir-spacing-sm);
}

.footer-contact p {
    margin-bottom: var(--boudoir-spacing-xs);
    font-size: 14px;
}

/* Redes sociales */
.social-links {
    display: flex;
    gap: var(--boudoir-spacing-sm);
    margin-top: var(--boudoir-spacing-md);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--boudoir-pink);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: var(--boudoir-transition);
    text-decoration: none;
}

.social-links a:hover {
    background: #FFF;
    transform: translateY(-2px);
    box-shadow: var(--boudoir-shadow-light);
}

/* =================================
   CATEGORÍAS Y PÁGINAS
   ================================= */

/* Títulos de página */
.page-title,
h1.page-title {
    font-family: var(--boudoir-font-secondary);
    color: var(--boudoir-black);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: var(--boudoir-spacing-lg);
    text-align: center;
}

/* Grid de categorías */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--boudoir-spacing-lg);
    margin: var(--boudoir-spacing-xl) 0;
}

.category-item {
    background: var(--boudoir-white);
    border-radius: var(--boudoir-border-radius);
    overflow: hidden;
    transition: var(--boudoir-transition);
    border: 1px solid #E0E0E0;
    text-align: center;
    padding: var(--boudoir-spacing-lg);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--boudoir-shadow-medium);
    border-color: var(--boudoir-pink-light);
}

.category-item h3 {
    font-family: var(--boudoir-font-primary);
    font-weight: 600;
    color: var(--boudoir-black);
    margin-top: var(--boudoir-spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-item:hover h3 {
    color: var(--boudoir-pink);
}

/* =================================
   FORMULARIOS
   ================================= */

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
    border-radius: var(--boudoir-border-radius-small);
    border: 1px solid #E0E0E0;
    padding: 12px 15px;
    transition: var(--boudoir-transition);
    font-family: var(--boudoir-font-primary);
    font-size: 14px;
}

.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: var(--boudoir-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    outline: none;
}

.form-group label {
    font-weight: 600;
    color: var(--boudoir-black);
    margin-bottom: var(--boudoir-spacing-xs);
    font-size: 14px;
}

/* =================================
   MENSAJES Y ALERTAS
   ================================= */

.alert {
    border-radius: var(--boudoir-border-radius);
    padding: var(--boudoir-spacing-md);
    margin-bottom: var(--boudoir-spacing-md);
    border: none;
}

.alert-success {
    background-color: #E8F5E8;
    color: #2E7D32;
    border-left: 4px solid #4CAF50;
}

.alert-warning {
    background-color: #FFF3CD;
    color: #856404;
    border-left: 4px solid #FFC107;
}

.alert-danger {
    background-color: #F8D7DA;
    color: #721C24;
    border-left: 4px solid #DC3545;
}

.alert-info {
    background-color: var(--boudoir-pink-light);
    color: var(--boudoir-pink-dark);
    border-left: 4px solid var(--boudoir-pink);
}

/* =================================
   RESPONSIVE BÁSICO
   ================================= */

@media (max-width: 768px) {
    body::before {
        font-size: 8px;
        padding: 3px 6px;
        top: 10px;
        right: 10px;
    }
    
    .products {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: var(--boudoir-spacing-md);
    }
    
    .product-miniature:hover,
    .product-item:hover {
        transform: none;
    }
    
    .page-title,
    h1.page-title {
        font-size: 2rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: var(--boudoir-spacing-md);
    }
    
    .social-links {
        justify-content: center;
    }
    
    #header {
        padding: var(--boudoir-spacing-sm) 0;
    }

    .boudoir-header-icons {
        gap: 10px;
    }
    
    .boudoir-language-current {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .boudoir-language-selector.active .boudoir-language-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-menu a,
    #main-menu a,
    .top-menu a {
        padding: var(--boudoir-spacing-xs) var(--boudoir-spacing-sm);
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn.btn-primary,
    .btn-secondary,
    .btn.btn-secondary {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .product-price,
    .price {
        font-size: 16px;
    }
    
    #footer {
        padding: var(--boudoir-spacing-lg) 0;
    }
    
    .footer-contact {
        margin-bottom: var(--boudoir-spacing-md);
    }
}

/* =================================
   UTILIDADES
   ================================= */

.text-boudoir-pink {
    color: var(--boudoir-pink) !important;
}

.text-boudoir-black {
    color: var(--boudoir-black) !important;
}

.bg-boudoir-pink {
    background-color: var(--boudoir-pink) !important;
}

.bg-boudoir-white {
    background-color: var(--boudoir-white) !important;
}

.border-boudoir-pink {
    border-color: var(--boudoir-pink) !important;
}

.font-primary {
    font-family: var(--boudoir-font-primary) !important;
}

.font-secondary {
    font-family: var(--boudoir-font-secondary) !important;
}

.shadow-light {
    box-shadow: var(--boudoir-shadow-light) !important;
}

.shadow-medium {
    box-shadow: var(--boudoir-shadow-medium) !important;
}

.rounded-boudoir {
    border-radius: var(--boudoir-border-radius) !important;
}

.text-center {
    text-align: center !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-semibold {
    font-weight: 600 !important;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--boudoir-spacing-xs) !important; }
.mb-2 { margin-bottom: var(--boudoir-spacing-sm) !important; }
.mb-3 { margin-bottom: var(--boudoir-spacing-md) !important; }
.mb-4 { margin-bottom: var(--boudoir-spacing-lg) !important; }
.mb-5 { margin-bottom: var(--boudoir-spacing-xl) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--boudoir-spacing-xs) !important; }
.mt-2 { margin-top: var(--boudoir-spacing-sm) !important; }
.mt-3 { margin-top: var(--boudoir-spacing-md) !important; }
.mt-4 { margin-top: var(--boudoir-spacing-lg) !important; }
.mt-5 { margin-top: var(--boudoir-spacing-xl) !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: var(--boudoir-spacing-xs) !important; }
.pb-2 { padding-bottom: var(--boudoir-spacing-sm) !important; }
.pb-3 { padding-bottom: var(--boudoir-spacing-md) !important; }
.pb-4 { padding-bottom: var(--boudoir-spacing-lg) !important; }
.pb-5 { padding-bottom: var(--boudoir-spacing-xl) !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: var(--boudoir-spacing-xs) !important; }
.pt-2 { padding-top: var(--boudoir-spacing-sm) !important; }
.pt-3 { padding-top: var(--boudoir-spacing-md) !important; }
.pt-4 { padding-top: var(--boudoir-spacing-lg) !important; }
.pt-5 { padding-top: var(--boudoir-spacing-xl) !important; }

/* Clase para ocultar el indicador en producción */
.hide-theme-indicator body::before {
    display: none;
}

/* =================================
   ANIMACIONES Y EFECTOS
   ================================= */

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.slide-in {
    animation: slideIn 0.5s ease-in-out;
}

/* Efecto de carga para imágenes */
img {
    transition: opacity 0.3s ease;
}

img[data-src] {
    opacity: 0;
}

img[data-src].loaded {
    opacity: 1;
}

/* =================================
   FIXES ESPECÍFICOS PARA MENÚ PRESTASHOP
   ================================= */


/* =================================
   BOUDOIR CATEGORIES BLOCK - ESTILOS
   ================================= */

.boudoir-featured-categories {
    padding: 20px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.boudoir-featured-categories .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.boudoir-section-heading {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--boudoir-black);
    margin-bottom: 15px;
    position: relative;
    
}

.boudoir-section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--boudoir-pink);
    margin: 15px auto;
    border-radius: 2px;
}

.boudoir-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 400;
    margin-bottom: 45px;
}

/* GRID DE CATEGORÍAS */
.boudoir-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 0 15px;
}

/* ITEM INDIVIDUAL */
.boudoir-category-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background: white;
}

.boudoir-category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.boudoir-category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* IMAGEN DE CATEGORÍA */
.boudoir-category-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.boudoir-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    background: #f5f5f5;
    
    /* Optimizar para imágenes de alta calidad */
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
}

/* Para imágenes originales de alta calidad */
.boudoir-category-image img:not([data-is-fallback]) {
    image-rendering: auto;
    filter: none; /* Sin filtros para imágenes originales */
}

/* Solo aplicar mejoras a imágenes de fallback pequeñas */
.boudoir-category-image img[data-is-fallback] {
    filter: contrast(1.05) saturate(1.05);
    image-rendering: crisp-edges;
}

.boudoir-category-image img.fallback-image {
    filter: grayscale(20%) brightness(1.1) contrast(1.1);
    border: 2px solid rgba(128, 0, 128, 0.1);
}

/* Placeholder para imágenes rotas */
.boudoir-category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ddd;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.boudoir-category-image img[src=""]::before,
.boudoir-category-image img:not([src])::before {
    opacity: 1;
}

.boudoir-category-item:hover .boudoir-category-image img {
    transform: scale(1.05);
}

/* OVERLAY CON INFORMACIÓN */
.boudoir-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.boudoir-category-item:hover .boudoir-category-overlay {
    transform: translateY(0);
    opacity: 1;
}

.boudoir-category-info {
    margin-bottom: 15px;
}

.boudoir-category-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: white;
}

.boudoir-category-count {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    color: #f0f0f0;
}

/* CALL TO ACTION */
.boudoir-category-cta {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--boudoir-pink);
    background: rgba(255,255,255,0.9);
    padding: 8px 15px;
    border-radius: 20px;
    width: fit-content;
    transition: all 0.3s ease;
}

.boudoir-category-cta i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.boudoir-category-item:hover .boudoir-category-cta {
    background: white;
    color: var(--boudoir-pink);
}

.boudoir-category-item:hover .boudoir-category-cta i {
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .boudoir-featured-categories {
        padding: 40px 0;
    }
    
    .boudoir-section-heading {
        font-size: 2rem;
    }
    
    .boudoir-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }
    
    .boudoir-category-image {
        height: 200px;
    }
    
    /* En móvil, mostrar overlay siempre */
    .boudoir-category-overlay {
        transform: translateY(0);
        opacity: 1;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
    }
}

@media (max-width: 480px) {
    .boudoir-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* =================================
   FOOTER BOUDOIR - DISEÑO MODERNO
   ================================= */

#footer.js-footer {
    background: #1a1a1a;
    color: #e0e0e0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

#footer.js-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--boudoir-pink), #9b59b6, var(--boudoir-pink));
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* SECCIÓN SOCIAL */
.block-social {
    padding: 30px 0;
    border-bottom: 1px solid #333;
    text-align: center;
}

.block-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.block-social ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.block-social ul li a:hover {
    background: var(--boudoir-pink);
    border-color: var(--boudoir-pink);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(128, 0, 128, 0.3);
}

/* CONTENEDOR PRINCIPAL DEL FOOTER */
.footer-container {
    padding: 0px;
}

.footer-container .container .row {
    margin-bottom: 30px;
}

/* TÍTULOS DE SECCIONES */
.footer-container .h3,
.footer-container h3,
.footer-container .h4,
.footer-container h4 {
    color: white;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-container .h3::after,
.footer-container h3::after,
.footer-container .h4::after,
.footer-container h4::after {
    content: '';
    position: absolute;
    bottom: -13px;
    right: calc(50% - 20px);
    width: 40px;
    height: 2px;
    background: var(--boudoir-pink);
}

/* ENLACES DEL FOOTER */
.footer-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-container ul li {
    margin-bottom: 12px;
    position: relative;
}

.footer-container ul li a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding-left: 15px;
    position: relative;
    display: inline-block;
}

.footer-container ul li a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--boudoir-pink);
    font-size: 8px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-container ul li a:hover {
    color: white;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-container ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
    transform: translateY(6px);
}

/* SECCIÓN DE CUENTA */
#block_myaccount_infos .myaccount-title a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

#block_myaccount_infos .myaccount-title a:hover {
    color: var(--boudoir-pink);
}

/* INFORMACIÓN DE CONTACTO */
.block-contact {
    background: rgba(255,255,255,0.03);
    padding: 30px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--boudoir-pink);
}

.block-contact .block-contact-title {
    color: white;
    margin-bottom: 20px;
}

.block-contact #contact-infos {
    line-height: 1.8;
    color: #d0d0d0;
}

.block-contact #contact-infos a {
    color: var(--boudoir-pink);
    text-decoration: none;
    font-weight: 500;
}

.block-contact #contact-infos a:hover {
    color: white;
    text-decoration: underline;
}

/* ELEMENTOS COLAPSABLES EN MÓVIL */
.title.clearfix {
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.title.clearfix:hover {
    background: rgba(255,255,255,0.08);
}

.title.clearfix .h3 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.title.clearfix .navbar-toggler {
    color: var(--boudoir-pink);
}

.title.clearfix .material-icons {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.title.clearfix[aria-expanded="true"] .material-icons.add {
    transform: rotate(45deg);
}

/* COPYRIGHT */
.footer-container .row:last-child {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
}

.footer-container .text-sm-center {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-container .text-sm-center a {
    color: #aaa;
    text-decoration: none;
    font-weight: 500;
}

.footer-container .text-sm-center a:hover {
    color: var(--boudoir-pink);
}

/* WRAPPERS DE COLUMNAS */
.footer-container .wrapper {
    padding: 20px 0;
}

.footer-container .links .wrapper {
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 30px;
}

.footer-container .links .wrapper:last-child {
    border-right: none;
    padding-right: 0;
}

/* RESPONSIVE FOOTER */
@media (max-width: 992px) {
    .footer-container .links .wrapper {
        border-right: none;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .block-contact {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    #footer.js-footer {
        margin-top: 40px;
    }
    
    .footer-container {
        padding: 30px 0 20px;
    }
    
    .block-social {
        padding: 20px 0;
    }
    
    .block-social ul {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .block-social ul li a {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .footer-container .h3,
    .footer-container h3,
    .footer-container .h4,
    .footer-container h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    /* Mostrar elementos colapsables */
    .hidden-md-up {
        display: block !important;
    }
    
    .hidden-sm-down {
        display: none !important;
    }
    
    .collapse:not(.show) {
        display: none;
    }
    
    .collapse.show {
        display: block;
    }
    
    .block-contact {
        padding: 20px 15px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container .container {
        padding: 0 15px;
    }
    
    .block-social ul {
        justify-content: space-around;
    }
    
    .footer-container ul li a {
        font-size: 0.9rem;
    }
    
    .block-contact #contact-infos {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ANIMACIONES Y EFECTOS */
.footer-container .wrapper {
    transition: transform 0.3s ease;
}

.footer-container .wrapper:hover {
    transform: translateY(-2px);
}

/* MEJORAS VISUALES ADICIONALES */
.footer-container .links {
    position: relative;
}

.footer-container .links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(128, 0, 128, 0.03) 0%, transparent 70%);
    
}

/* ESTADOS DE HOVER MEJORADOS */
.footer-container .wrapper:hover .h3::after,
.footer-container .wrapper:hover h3::after,
.footer-container .wrapper:hover .h4::after,
.footer-container .wrapper:hover h4::after {
    width: 60px;
    background: linear-gradient(90deg, var(--boudoir-pink), #9b59b6);
    right: calc(50% - 30px);
}

/* =================================
   TEXTO PERSONALIZADO FOOTER BOUDOIR
   ================================= */

.boudoir-custom-footer-text {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #e0e0e0;
    padding: 50px 0;
    border-top: 4px solid var(--boudoir-pink);
    position: relative;
    overflow: hidden;
}

.boudoir-custom-footer-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(128, 0, 128, 0.05) 0%, transparent 70%);
    
}

.boudoir-footer-custom-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.boudoir-footer-custom-content h1,
.boudoir-footer-custom-content h2,
.boudoir-footer-custom-content h3,
.boudoir-footer-custom-content h4,
.boudoir-footer-custom-content h5,
.boudoir-footer-custom-content h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.boudoir-footer-custom-content h3 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.boudoir-footer-custom-content h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--boudoir-pink), #9b59b6);
    margin: 15px auto;
    border-radius: 2px;
}

.boudoir-footer-custom-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.boudoir-footer-custom-content a {
    color: var(--boudoir-pink);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.boudoir-footer-custom-content a:hover {
    color: white;
    text-decoration: underline;
}

/* Sección About específica */
.boudoir-about-section {
    max-width: 1500px;
    margin: 0 auto;
}

.boudoir-contact-info {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.boudoir-contact-info p {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin: 0;
    color: #e0e0e0;
}

.boudoir-contact-info i {
    color: var(--boudoir-pink);
    margin-right: 10px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .boudoir-custom-footer-text {
        padding: 30px 0;
    }
    
    .boudoir-footer-custom-content h3 {
        font-size: 1.5rem;
    }
    
    .boudoir-footer-custom-content p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .boudoir-contact-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .boudoir-custom-footer-text {
        padding: 25px 0;
    }
    
    .boudoir-footer-custom-content h3 {
        font-size: 1.3rem;
    }
    
    .boudoir-contact-info p {
        font-size: 0.9rem;
    }
}



.footer-info {
    text-align: center;
    max-width: 300px;
    margin: auto;
    color: #fff;
    font-size: 14px;
}

.footer-logo {
    max-width: 100%;
    margin-bottom: 15px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footer-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.footer-list a {
    color: #fff;
    text-decoration: none;
}

.footer-list a:hover {
    text-decoration: underline;
}

/* Icono único reutilizable */
.icon {
    width: 10px;
    height: 10px;
    display: inline-block;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c-9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z'/%3E%3C/svg%3E") center/contain no-repeat;
    background-color: #fff;
}

/* Redes sociales */
.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    width: 26px;
    height: 26px;
    display: inline-block;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.7;
    transition: 0.3s;
    line-height: 0;
    padding-top: 4px;
}

.social-links a:hover {
    opacity: 1;
}

.social-icon {
    width: 18px;
    height: 18px;
    opacity: 0.8;
    transition: .3s;
}

.social-icon:hover {
    opacity: 1;
}


.footer-container ul.footer-list li a:hover::before{
    opacity: 0;
    
}

/* =====================================================
   ESTILOS PARA LA PÁGINA "QUIÉNES SOMOS"
   ===================================================== */

.boudoir-about-section {
    font-family: 'Poppins', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header principal */
.boudoir-about-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin-bottom: 50px;
    border-bottom: 3px solid var(--boudoir-pink);
}

.boudoir-title-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.boudoir-main-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--boudoir-dark);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.boudoir-main-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--boudoir-pink);
    border-radius: 2px;
}

.boudoir-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin: 30px 0 0 0;
    font-weight: 300;
    font-style: italic;
}

/* Información de contacto */
.boudoir-contact-info {
    background: #fff;
    padding: 40px 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 20px 50px 20px;
}

.boudoir-contact-item {
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.boudoir-contact-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 10px;
    background: #f8f9fa;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.boudoir-contact-link:hover {
    background: var(--boudoir-light-pink);
    border-left-color: var(--boudoir-pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--boudoir-dark);
    text-decoration: none;
}

.boudoir-contact-icon {
    font-size: 1.8rem;
    color: var(--boudoir-pink);
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.boudoir-contact-link:hover .boudoir-contact-icon {
    color: var(--boudoir-dark);
    transform: scale(1.1);
}

.boudoir-contact-text {
    font-size: 1rem;
    line-height: 1.4;
}

.boudoir-contact-text strong {
    color: var(--boudoir-dark);
    font-weight: 600;
}

/* Contenido principal */
.boudoir-main-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.boudoir-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.boudoir-about-image,
.boudoir-store-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s ease;
}

.boudoir-image-wrapper:hover .boudoir-about-image,
.boudoir-image-wrapper:hover .boudoir-store-image {
    transform: scale(1.05);
}

.boudoir-logo-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.boudoir-content-wrapper {
    padding: 0 20px;
}

.boudoir-section-title,
.boudoir-subsection-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 700;
    color: var(--boudoir-dark);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.boudoir-section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.boudoir-subsection-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.boudoir-section-title:after,
.boudoir-subsection-title:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--boudoir-pink);
    border-radius: 1px;
}

.boudoir-text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.boudoir-text-content p {
    margin-bottom: 20px;
}

.boudoir-text-content strong {
    color: var(--boudoir-dark);
    font-weight: 600;
}

.boudoir-spacer {
    height: 40px;
}

/* Sección de servicios */
.boudoir-services-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.boudoir-service-block {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-top: 4px solid var(--boudoir-pink);
}

.boudoir-service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.boudoir-shipping-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.boudoir-cta-wrapper {
    margin-top: 25px;
}

.boudoir-cta-button {
    background: linear-gradient(135deg, var(--boudoir-pink) 0%, var(--boudoir-dark) 100%);
    color: #800080;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #e7cfe7;
}

.boudoir-cta-button:hover {
    background: linear-gradient(135deg, var(--boudoir-dark) 0%, var(--boudoir-pink) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Sección de la tienda */
.boudoir-store-section {
    padding: 60px 0;
    background: #fff;
}

.boudoir-store-images {
    position: relative;
}

/* Enlaces sociales */
.boudoir-social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.boudoir-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--boudoir-pink);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.boudoir-social-link:hover {
    background: var(--boudoir-dark);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Mapa */
.boudoir-map-section {
    margin: 50px 0 0 0;
}

.boudoir-map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.boudoir-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* RESPONSIVE DESIGN */

/* Tablets */
@media (max-width: 992px) {
    .boudoir-main-title {
        font-size: 2.8rem;
    }
    
    .boudoir-subtitle {
        font-size: 1.1rem;
    }
    
    .boudoir-section-title {
        font-size: 2.2rem;
    }
    
    .boudoir-subsection-title {
        font-size: 1.6rem;
    }
    
    .boudoir-about-header {
        padding: 40px 0;
    }
    
    .boudoir-main-content,
    .boudoir-services-section,
    .boudoir-store-section {
        padding: 40px 0;
    }
    
    .boudoir-content-wrapper {
        margin-top: 30px;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .boudoir-main-title {
        font-size: 2.2rem;
    }
    
    .boudoir-subtitle {
        font-size: 1rem;
    }
    
    .boudoir-section-title {
        font-size: 1.8rem;
    }
    
    .boudoir-subsection-title {
        font-size: 1.4rem;
    }
    
    .boudoir-about-header {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    
    .boudoir-main-content,
    .boudoir-services-section,
    .boudoir-store-section {
        padding: 30px 0;
    }
    
    .boudoir-contact-info {
        margin: 0 10px 30px 10px;
        padding: 30px 0;
    }
    
    .boudoir-contact-link {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .boudoir-contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 2rem;
    }
    
    .boudoir-text-content {
        font-size: 1rem;
    }
    
    .boudoir-service-block {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .boudoir-content-wrapper {
        padding: 0 10px;
        margin-top: 30px;
    }
    
    .boudoir-social-links {
        justify-content: center;
    }
    
    .boudoir-map-wrapper {
        height: 300px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .boudoir-main-title {
        font-size: 1.8rem;
    }
    
    .boudoir-main-title:after {
        width: 60px;
    }
    
    .boudoir-section-title {
        font-size: 1.5rem;
    }
    
    .boudoir-subsection-title {
        font-size: 1.2rem;
    }
    
    .boudoir-contact-text {
        font-size: 0.9rem;
    }
    
    .boudoir-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Animaciones adicionales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.boudoir-about-section .container > .row > div {
    animation: fadeInUp 0.6s ease-out;
}

.boudoir-about-section .container > .row > div:nth-child(2) {
    animation-delay: 0.2s;
}

/* Efectos de hover mejorados */
.boudoir-service-block {
    position: relative;
    overflow: hidden;
}

.boudoir-service-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.boudoir-service-block:hover:before {
    left: 100%;
}

/* =====================================================
   ESTILOS PARA LA PÁGINA DE CONTACTO
   ===================================================== */

.boudoir-contact-page {
    font-family: 'Poppins', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header de contacto */
.boudoir-contact-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin-bottom: 50px;
    border-bottom: 3px solid var(--boudoir-pink);
}

/* Contacto rápido */
.boudoir-quick-contact {
    padding: 50px 0;
    background: #fff;
}

.boudoir-quick-contact-item {
    display: flex;
    align-items: center;

    background: #f8f9fa;
    border-radius: 15px;

    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.boudoir-quick-contact-item:hover {
    background: var(--boudoir-light-pink);
    border-left-color: var(--boudoir-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.boudoir-quick-contact-icon {
    width: 60px;
    height: 60px;
    background: var(--boudoir-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.boudoir-quick-contact-item:hover .boudoir-quick-contact-icon {
    background: var(--boudoir-dark);
    transform: scale(1.1);
}

.boudoir-quick-contact-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: var(--boudoir-dark);
    font-weight: 600;
}

.boudoir-quick-contact-content p {
    margin: 0;
    color: #666;
}

.boudoir-quick-contact-content a {
    color: var(--boudoir-pink);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.boudoir-quick-contact-content a:hover {
    color: var(--boudoir-dark);
    text-decoration: none;
}

/* Sección del formulario */
.boudoir-contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.boudoir-contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.boudoir-contact-form-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--boudoir-pink), var(--boudoir-dark));
}

/* Estilos del formulario */
.boudoir-contact-form {
    position: relative;
}

.boudoir-form-group {
    margin-bottom: 30px;
    position: relative;
}

.boudoir-form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.boudoir-form-control:focus {
    outline: none;
    border-color: var(--boudoir-pink);
    box-shadow: 0 0 0 3px rgba(231, 76, 177, 0.1);
    background: #fff;
}



.boudoir-form-label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 8px;
    color: #666;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 1;
}

.boudoir-form-control:focus + .boudoir-form-label,
.boudoir-form-control:not(:placeholder-shown) + .boudoir-form-label {
    top: 0;
    font-size: 0.85rem;
    color: var(--boudoir-pink);
    font-weight: 500;
}

/* Textarea específico */
textarea.boudoir-form-control + .boudoir-form-label {
    top: 25px;
}

textarea.boudoir-form-control:focus + .boudoir-form-label,
textarea.boudoir-form-control:not(:placeholder-shown) + .boudoir-form-label {
    top: 0;
}

/* Campo de teléfono */
.boudoir-phone-wrapper {
    display: flex;
    gap: 0;
}

.boudoir-country-select {
    width: 120px;
    padding: 18px 10px;
    border: 2px solid #e1e8ed;
    border-right: none;
    border-radius: 10px 0 0 10px;
    background: #f8f9fa;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.boudoir-phone-input {
    border-radius: 0 10px 10px 0 !important;
    border-left: none !important;
}

.boudoir-country-select:focus {
    outline: none;
    border-color: var(--boudoir-pink);
    box-shadow: 0 0 0 3px rgba(231, 76, 177, 0.1);
}

/* Checkbox personalizado */
.boudoir-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.boudoir-checkbox {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--boudoir-pink);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.boudoir-checkbox-label {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

.boudoir-checkbox-label a {
    color: var(--boudoir-pink);
    text-decoration: none;
    font-weight: 500;
}

.boudoir-checkbox-label a:hover {
    text-decoration: underline;
}

/* Errores */
.boudoir-form-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.boudoir-form-group.error .boudoir-form-error {
    display: block;
}

.boudoir-form-group.error .boudoir-form-control {
    border-color: #dc3545;
}

.wsf-field.boudoir-form-control.iti__tel-input:focus {
    background: transparent;
}

/* Botón de envío */
.boudoir-submit-btn {
    background: linear-gradient(135deg, var(--boudoir-pink) 0%, var(--boudoir-dark) 100%);
    color: #fff;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.boudoir-submit-btn:hover {
    background: linear-gradient(135deg, var(--boudoir-dark) 0%, var(--boudoir-pink) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.boudoir-submit-btn:active {
    transform: translateY(0);
}

.boudoir-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Sección de información adicional */
.boudoir-contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.boudoir-info-block {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--boudoir-pink);
}

.boudoir-info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Horarios */
.boudoir-schedule {
    margin-top: 25px;
}

.boudoir-schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #e9ecef;

}

.boudoir-schedule-item:last-child {
    border-bottom: none;
}

.boudoir-day {
    font-weight: 500;
    color: var(--boudoir-dark);
}

.boudoir-time {
    color: var(--boudoir-pink);
    font-weight: 600;
}

/* Botón de direcciones */
.boudoir-directions-btn {
    margin-top: 25px;
}

.boudoir-directions-btn .boudoir-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* RESPONSIVE DESIGN */

/* Tablets */
@media (max-width: 992px) {
    .boudoir-contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .boudoir-quick-contact-item {
        padding: 25px;
    }
    
    .boudoir-contact-form-section,
    .boudoir-contact-info-section {
        padding: 60px 0;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .boudoir-contact-header {
        padding: 40px 0;
        margin-bottom: 30px;
    }
    
    .boudoir-quick-contact {
        padding: 30px 0;
    }
    
    .boudoir-quick-contact-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .boudoir-quick-contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .boudoir-contact-form-wrapper {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .boudoir-contact-form-section,
    .boudoir-contact-info-section {
        padding: 40px 0;
    }
    
    .boudoir-phone-wrapper {
        flex-direction: column;
    }
    
    .boudoir-country-select {
        width: 100%;
        border-radius: 10px;
        border-right: 2px solid #e1e8ed;
        margin-bottom: 10px;
    }
    
    .boudoir-phone-input {
        border-radius: 10px !important;
        border-left: 2px solid #e1e8ed !important;
    }
    
    .boudoir-info-block {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .boudoir-contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .boudoir-submit-btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .boudoir-checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .boudoir-checkbox {
        align-self: flex-start;
    }
}

/* Animaciones y efectos especiales */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.boudoir-form-group.error .boudoir-form-control {
    animation: shake 0.5s ease-in-out;
}

/* Loading spinner personalizado */
.boudoir-btn-loading .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Efectos de hover mejorados */
.boudoir-contact-form-wrapper {
    position: relative;
    overflow: hidden;
}


/* =================================
   PÁGINA DE CONTACTO PRESTASHOP - OPTIMIZADA
   ================================= */

/* Contenedor principal de contacto */
.boudoir-contact-page {
    padding: 0;
    margin: 0;
    min-height: 60vh;
}

/* PrestaShop Contact Form Specific */
#contact-form .form-control {
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    padding: 15px;
    background: #fafbfc;
    transition: all 0.3s ease;
}

#contact-form .form-control:focus {
    border-color: var(--boudoir-pink);
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(128, 0, 128, 0.1);
}

#contact-form .form-group label {
    color: #666;
    font-weight: 500;
    margin-bottom: 8px;
}

#contact-form .btn {
    background: linear-gradient(135deg, var(--boudoir-pink), #9b59b6);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

#contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(128, 0, 128, 0.4);
}

/* Alertas de PrestaShop mejoradas */
.alert {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.alert-danger {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* =================================
   FORMULARIO WSF STYLE - BOUDOIR
   ================================= */

/* Grid System para formulario WSF */
.wsf-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.wsf-extra-small-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
    margin-bottom: var(--boudoir-spacing-md);
}

.wsf-small-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .wsf-small-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Campo con etiqueta interior */
.wsf-label-position-inside {
    position: relative;
    display: block;
}

.wsf-field {
    width: 100%;
    padding: 15px 16px;
    border: 2px solid #E5E5E5;
    border-radius: var(--boudoir-border-radius);
    font-family: var(--boudoir-font-primary);
    font-size: 16px;
    color: var(--boudoir-black);
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.wsf-field:focus {
    border-color: var(--boudoir-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
    transform: translateY(-2px);
}

.wsf-field:focus + .wsf-label {
    color: var(--boudoir-pink);
    transform: translateY(-24px) scale(0.85);
}

/* Etiquetas del formulario WSF */
.wsf-label {
    position: absolute;
    top: 15px;
    left: 16px;
    background: white;
    padding: 0 6px;
    color: #999;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    transform-origin: left center;
    z-index: 2;
}

/* Campo de teléfono internacional */
.iti {
    width: 100%;
    position: relative;
}

.iti__flag-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 0;
}

.iti__selected-flag {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 12px;
    border-right: 2px solid #E5E5E5;
    background: #F8F9FA;
    border-top-left-radius: var(--boudoir-border-radius);
    border-bottom-left-radius: var(--boudoir-border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.iti__selected-flag:hover {
    background: #E9ECEF;
}

.iti__flag {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #666;
    transition: transform 0.3s ease;
}

.iti__selected-flag[aria-expanded="true"] .iti__arrow {
    transform: rotate(180deg);
}

.iti__tel-input {
    padding-left: 60px !important;
}

/* Dropdown de países */
.iti__dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #E5E5E5;
    border-top: none;
    border-radius: 0 0 var(--boudoir-border-radius) var(--boudoir-border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 200px;
    overflow: hidden;
    width: 200px;
}

.iti__dropdown-content.iti__hide {
    display: none;
}

.iti__search-input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid #E5E5E5;
    font-size: 14px;
    background: #F8F9FA;
    outline: none;
}

.iti__search-input:focus {
    background: white;
    border-bottom-color: var(--boudoir-pink);
}

.iti__country-list {
    max-height: 150px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.iti__country {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #F0F0F0;
}

.iti__country:hover {
    background-color: #F8F9FA;
}

.iti__country.iti__preferred {
    background-color: rgba(233, 30, 99, 0.1);
    color: var(--boudoir-pink);
    font-weight: 600;
}

.iti__country.iti__preferred:hover {
    background-color: rgba(233, 30, 99, 0.15);
}

.iti__flag-box {
    margin-right: 12px;
}

.iti__country-name {
    flex: 1;
    font-size: 14px;
    color: var(--boudoir-black);
}

.iti__dial-code {
    font-size: 13px;
    color: #666;
    margin-left: 8px;
    font-weight: 500;
}

/* Banderas CSS sprites */
.iti__flag.iti__af { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAALCAYAAAB/Ca1DAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAAdgAAAHYBTnsmCAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAFbSURBVCiRpZM9SwNBEIafgwQSCxsLwcJCG1sLG1sLG1sLbSy0sLGwsLGwsLCwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGw=='); }
.iti__flag.iti__es { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAALCAYAAAB/Ca1DAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAAdgAAAHYBTnsmCAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAFbSURBVCiRpZM9SwNBEIafgwQSCxsLwcJCG1sLG1sLG1sLbSy0sLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGwsLGw=='); }
/* Banderas base64 simplificadas para principales países */

/* Checkbox GDPR */
.boudoir-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    accent-color: var(--boudoir-pink);
    cursor: pointer;
}

.boudoir-checkbox-label {

    font-size: 14px;
    line-height: 1.5;
    color: var(--boudoir-black);
    position: relative;
    top: 0;
    left: 0;
    background: none;
    padding: 0;

   
}

.boudoir-link {
    color: var(--boudoir-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.boudoir-link:hover {
    color: var(--boudoir-purple);
    text-decoration: underline;
}

/* Texto requerido */
.wsf-text-danger {
    color: #dc3545;
    font-weight: 700;
}

/* Mensajes de error */
.wsf-invalid-feedback {
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    display: none; /* Oculto por defecto */
}

/* Mostrar mensaje de error cuando el campo tenga error o cuando sea forzado por JS */
.boudoir-form-group.error .wsf-invalid-feedback,
.wsf-field-wrapper.error .wsf-invalid-feedback,
.wsf-invalid-feedback.show {
    display: block;
}

/* También mostrar si el aria-hidden es false */
.wsf-invalid-feedback[aria-hidden="false"] {
    display: block;
}

/* Botón de envío WSF */
.wsf-button {
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: var(--boudoir-border-radius);
    background: #e7cfe7;
    color: #800080;
    font-family: var(--boudoir-font-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(65 57 60 / 18%);
    position: relative;
    overflow: hidden;
}

.wsf-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--boudoir-dark) 0%, var(--boudoir-pink) 100%);
    color: #660066;
}

.wsf-button:active {
    transform: translateY(0);
}

.wsf-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .wsf-small-6 {
        margin-bottom: var(--boudoir-spacing-sm);
    }
    
    .wsf-field {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* =================================
   BANDERAS PARA SELECTOR DE PAÍSES
   ================================= */

/* Banderas CSS usando gradientes de colores nacionales */
.iti__flag.iti__es { background: linear-gradient(0deg, #AA151B 0%, #AA151B 25%, #F1BF00 25%, #F1BF00 75%, #AA151B 75%); }
.iti__flag.iti__us { background: linear-gradient(0deg, #B22234 0%, #B22234 50%, #FFFFFF 50%); }
.iti__flag.iti__gb { background: linear-gradient(45deg, #012169 25%, #FFFFFF 25%, #FFFFFF 50%, #CE1126 50%, #CE1126 75%, #FFFFFF 75%); }
.iti__flag.iti__fr { background: linear-gradient(90deg, #002395 33%, #FFFFFF 33%, #FFFFFF 66%, #ED2939 66%); }
.iti__flag.iti__de { background: linear-gradient(0deg, #000000 33%, #DD0000 33%, #DD0000 66%, #FFCE00 66%); }
.iti__flag.iti__it { background: linear-gradient(90deg, #009246 33%, #FFFFFF 33%, #FFFFFF 66%, #CE2B37 66%); }
.iti__flag.iti__br { background: linear-gradient(0deg, #009739 0%, #009739 40%, #FEDD00 40%, #FEDD00 60%, #002776 60%); }
.iti__flag.iti__ca { background: linear-gradient(90deg, #FF0000 20%, #FFFFFF 20%, #FFFFFF 80%, #FF0000 80%); }
.iti__flag.iti__mx { background: linear-gradient(90deg, #006847 33%, #FFFFFF 33%, #FFFFFF 66%, #CE1126 66%); }
.iti__flag.iti__ar { background: linear-gradient(0deg, #74ACDF 33%, #FFFFFF 33%, #FFFFFF 66%, #74ACDF 66%); }
.iti__flag.iti__pe { background: linear-gradient(90deg, #D91023 33%, #FFFFFF 33%, #FFFFFF 66%, #D91023 66%); }
.iti__flag.iti__co { background: linear-gradient(0deg, #CE1126 50%, #003893 25%, #FDE047 25%); }
.iti__flag.iti__cl { background: linear-gradient(0deg, #D52B1E 50%, #FFFFFF 25%, #0039A6 25%); }
.iti__flag.iti__ve { background: linear-gradient(0deg, #CF142B 33%, #00247D 33%, #00247D 66%, #FCDD09 66%); }
.iti__flag.iti__ec { background: linear-gradient(0deg, #CE1126 33%, #002868 33%, #002868 66%, #FCDD09 66%); }
.iti__flag.iti__uy { background: linear-gradient(0deg, #0038A8 20%, #FFFFFF 20%, #FFFFFF 40%, #0038A8 40%); }
.iti__flag.iti__pt { background: linear-gradient(90deg, #046A38 40%, #DA020E 40%); }
.iti__flag.iti__nl { background: linear-gradient(0deg, #21468B 33%, #FFFFFF 33%, #FFFFFF 66%, #AE1C28 66%); }
.iti__flag.iti__be { background: linear-gradient(90deg, #000000 33%, #FDDA24 33%, #FDDA24 66%, #EF3340 66%); }
.iti__flag.iti__ch { background: linear-gradient(0deg, #DA020E 40%, #FFFFFF 40%, #FFFFFF 60%, #DA020E 60%); }
.iti__flag.iti__at { background: linear-gradient(0deg, #C8102E 33%, #FFFFFF 33%, #FFFFFF 66%, #C8102E 66%); }
.iti__flag.iti__se { background: linear-gradient(0deg, #006AA7 40%, #FECC00 40%, #FECC00 60%, #006AA7 60%); }
.iti__flag.iti__no { background: linear-gradient(0deg, #C8102E 33%, #FFFFFF 33%, #FFFFFF 66%, #C8102E 66%); }
.iti__flag.iti__dk { background: linear-gradient(0deg, #C8102E 40%, #FFFFFF 40%, #FFFFFF 60%, #C8102E 60%); }
.iti__flag.iti__fi { background: linear-gradient(0deg, #003580 40%, #FFFFFF 40%, #FFFFFF 60%, #003580 60%); }
.iti__flag.iti__jp { background: linear-gradient(45deg, #FFFFFF 40%, #BC002D 40%); }
.iti__flag.iti__kr { background: linear-gradient(0deg, #CD2E3A 25%, #FFFFFF 25%, #FFFFFF 75%, #0047A0 75%); }
.iti__flag.iti__cn { background: linear-gradient(45deg, #DE2910 60%, #FFDE00 60%); }
.iti__flag.iti__in { background: linear-gradient(0deg, #138808 33%, #FFFFFF 33%, #FFFFFF 66%, #FF9933 66%); }
.iti__flag.iti__au { background: linear-gradient(45deg, #012169 40%, #FFFFFF 40%); }
.iti__flag.iti__nz { background: linear-gradient(45deg, #012169 50%, #FFFFFF 50%); }
.iti__flag.iti__za { background: linear-gradient(0deg, #000C8A 20%, #E03C31 20%, #E03C31 40%, #FFFFFF 40%); }
.iti__flag.iti__ru { background: linear-gradient(0deg, #0039A6 33%, #FFFFFF 33%, #FFFFFF 66%, #D52B1E 66%); }
.iti__flag.iti__th { background: linear-gradient(0deg, #ED1C24 20%, #FFFFFF 20%, #FFFFFF 40%, #241D4F 40%, #241D4F 60%, #FFFFFF 60%, #FFFFFF 80%, #ED1C24 80%); }
.iti__flag.iti__tr { background: linear-gradient(45deg, #E30A17 60%, #FFFFFF 60%); }
.iti__flag.iti__pk { background: linear-gradient(90deg, #01411C 25%, #FFFFFF 25%); }
.iti__flag.iti__id { background: linear-gradient(0deg, #CE1126 50%, #FFFFFF 50%); }
.iti__flag.iti__eg { background: linear-gradient(0deg, #CE1126 33%, #FFFFFF 33%, #FFFFFF 66%, #000000 66%); }
.iti__flag.iti__ma { background: linear-gradient(45deg, #C1272D 60%, #006233 40%); }
.iti__flag.iti__ng { background: linear-gradient(90deg, #008751 33%, #FFFFFF 33%, #FFFFFF 66%, #008751 66%); }

/* Banderas por defecto para países sin definir */
.iti__flag[class*="iti__"]:not(.iti__es):not(.iti__us):not(.iti__gb):not(.iti__fr):not(.iti__de):not(.iti__it):not(.iti__br):not(.iti__ca):not(.iti__mx):not(.iti__ar):not(.iti__pe):not(.iti__co):not(.iti__cl):not(.iti__ve):not(.iti__ec):not(.iti__uy):not(.iti__pt):not(.iti__nl):not(.iti__be):not(.iti__ch):not(.iti__at):not(.iti__se):not(.iti__no):not(.iti__dk):not(.iti__fi):not(.iti__jp):not(.iti__kr):not(.iti__cn):not(.iti__in):not(.iti__au):not(.iti__nz):not(.iti__za):not(.iti__ru):not(.iti__th):not(.iti__tr) {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}


.block-category-footer {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

/* Texto */
.category-description-footer {
    flex: 2;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.category-description-footer p {
    margin-bottom: 1.2rem;
}

.category-description-footer ol {
    margin-left: 1.2rem;
    padding-left: 0.8rem;
}

.category-description-footer li {
    margin-bottom: 0.5rem;
}

/* Imagen */
.category-cover-footer {
    flex: 1;
    max-width: 220px;
}

.category-cover-footer img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.block-category-footer .category-cover-footer img{
    width: 100% !important;
    height: auto !important;
}

/* Responsive */
@media (max-width: 768px) {
    .block-category-footer {
        flex-direction: column-reverse;
        text-align: left;
    }

    .category-cover-footer {
        max-width: 260px;
        margin: 0 auto 1.5rem;
    }
}

/* =================================
   CURSOR FIX FINAL - Anti-interferencia
   ================================= */

/* Forzar cursor pointer con máxima especificidad */
body button,
body input[type="button"],
body input[type="submit"],
body input[type="reset"],
body a,
body .btn,
body .button,
body [role="button"],
body [onclick],
body [data-toggle],
body .clickable,
body select,
body option,
body label[for],
body .custom-checkbox label,
body .custom-radio label,
body .form-check-label,
body .pagination a,
body .nav-link,
body .dropdown-item,
body .list-group-item-action {
    cursor: pointer !important;
}

/* Eliminar cualquier pointer-events que pueda interferir */
body * {
    pointer-events: auto !important;
}

/* Asegurar que no hay JavaScript que cambie el cursor */
body *[style*="cursor"] {
    cursor: pointer !important;
}

/* 
=================================================
=   ICONOS SVG - COLORES PERSONALIZADOS         =
=================================================
*/

.boudoir-social-link:hover svg, .boudoir-quick-contact-item:hover svg, .boudoir-cta-button svg {
    fill: #800080;
}

.boudoir-quick-contact-icon svg, .boudoir-social-link svg {
    fill: #fff;
}

/* =================================
   CAMPO DE TELÉFONO CON SELECTOR DE PAÍS
   ================================= */

/* Solo ajustar el padding del input para dejar espacio a la bandera */
.iti__tel-input {
    padding-left: 75px !important;
}

/* Ajustar posición de etiqueta para teléfono */
.iti + .boudoir-form-label {
    left: 0px !important; /* Por defecto a la izquierda */
    transition: all 0.2s ease;
}

/* Cuando la etiqueta está en posición intermedia (translateY(-10px) translateX(65px)) */
.iti + .boudoir-form-label[style*="translateY(-10px)"] {
    /* No necesita left específico ya que usa translateX(65px) */
}

/* Cuando la etiqueta está arriba (translateY(-27px)) */
.iti + .boudoir-form-label[style*="translateY(-27px)"] {
    left: 0px !important;
}

/* Dropdown básico para países */
.iti__dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 2px;
}

.iti__dropdown-content.iti__hide {
    display: none;
}

.iti__search-input {
    width: 100%;
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid #E5E5E5;
    outline: none;
    font-size: 14px;
}

.iti__country-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.iti__country {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
}

.iti__country:hover {
    background: #f5f5f5;
}

.iti__flag-box {
    margin-right: 8px;
}

.iti__country-name {
    flex: 1;
    margin-right: 8px;
}

.iti__dial-code {
    color: #666;
    font-size: 13px;
}

#boudoir-top-menu > li.category > div.boudoir-dropdown-menu > ul.boudoir-submenu > li.category.has-submenu > a.boudoir-menu-link::after {
    content: none !important;
}

#header a:hover {
    color: #bca2bc;
    text-decoration: none;
}

.boudoir-lang-link:hover{
    color: #292329 !important;
}

.btn-unstyle.select-title .material-icons{
    height: 3px !important;
    margin-top: -7px;
}