/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor.
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: hello-elementor-child
*/

/* =========================================================
   AÑADE AQUÍ TU CSS PERSONALIZADO A PARTIR DE ESTA LÍNEA
   ========================================================= */

/* Estilos para el buscador de Elimfilters */
.elimfilters-search-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('https://tu-sitio-web.com/ruta/a/tu/imagen-de-fondo.jpg');
    background-size: cover;
    background-position: center center;
}

.ef-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.ef-logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
}

.ef-tabs-container {
    position: absolute;
    top: 220px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.ef-tab {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 10px 25px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: relative;
    margin-left: 5px;
}

.ef-tab:first-child {
    margin-left: 0;
}

.ef-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #FFCC00;
    transition: height 0.3s ease;
}

.ef-tab.active::after {
    height: 4px;
}

.ef-search-container {
    position: absolute;
    top: 350px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px;
    border-radius: 5px;
}

.ef-search-form {
    display: flex;
    gap: 10px;
}

.ef-search-input {
    flex-grow: 1;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.ef-search-button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    background-color: #FFCC00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* Ocultar header inyectado */
header#elim-global-header,
nav[style*="display:flex;gap:28px"],
div#elim-global-header {
    display: none !important;
    height: 0 !important;
    visibility: hidden !important;
}

/* Resetear espacios superiores */
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Subir contenido principal */
main,
.elementor,
#main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}