/* mobile-header-menu.css */

/* Wrapper sticky para el header móvil */
.mhm-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
}

/* Fila 2: buscador / Productos */
.mhm-row.mhm-row-2 {
    display: flex;
    align-items: stretch;
    padding: 0;
    border-bottom: 1px solid #1b3f82;
    border-top: 1px solid #1b3f82;
}

.mhm-row-2 .mhm-col {
    flex: 1;
    text-align: center;
}

/* Separador entre buscador y dropdown */
.mhm-row.mhm-row-2 > .mhm-col.search {
    padding-right: 15px;
    background: aliceblue;
}

.mhm-row.mhm-row-2 > .mhm-col.dropdown {
    border-left: 1px solid #1b3f82;
    padding-left: 15px;
}

/* Básicos del dropdown */
.mhm-dropdown {
    position: relative;
}

.mhm-dropdown-toggle {
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Manrope', Helvetica, Arial, Lucida, sans-serif !important;
    text-transform: uppercase !important;
    font-size: 15px !important;
    color: #1B3F82 !important;
    line-height: 1.2em !important;
    padding: 10px;
}

.mhm-dropdown-menu {
    display: none;
    position: fixed;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 0 0 20px 20px;
    z-index: 100;
    border: 1px solid #2d2a76;
    border-top: 3px solid rgba(230, 51, 57, 1);
}


.mhm-dropdown:hover .mhm-dropdown-menu,
.mhm-dropdown-menu.active {
    display: block;
}

/* Nivel 0 (.et_pb_blurb_content) */
.mhm-dropdown-menu > .et_pb_blurb_content {
    display: flex;
    align-items: baseline;
    text-align: left;
    padding: 8px 12px;
    margin-bottom: -18px;
}

.mhm-dropdown-menu .et_pb_main_blurb_image .et-pb-icon {
    font-size: 16px;
    margin-right: 8px;
    color: #E63339 !important;
}

.mhm-dropdown-menu .et_pb_blurb_container h4 a {
    color: #E63339 !important;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.2em;
}

/* Nivel 1 (submenú) */
.mhm-dropdown-menu .et_pb_module.et_pb_text {
    margin: 0 0 5px;
}

.mhm-dropdown-menu .et_pb_text_inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mhm-dropdown-menu .et_pb_text_inner ul li {
    padding: 6px 12px;
    border-bottom: 1px solid #eee;
}

.mhm-dropdown-menu .et_pb_text_inner ul li:last-child {
    border-bottom: none;
}

.mhm-dropdown-menu .et_pb_text_inner ul li a {
    color: #1B3F82 !important;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.3em;
}

/* Flecha del dropdown */
.arrow::before {
    font-family: 'FontAwesome';
    content: "\f107";
    display: inline-block;
    margin-left: 5px;
}

/* Ajustes Ivory Search */
.mhm-col.search form.is-form-id-2056 {
    box-shadow: none !important;
    color: #1b3f82;
    padding: 5px !important;
    background: none !important;
}

/* Evitar scroll horizontal */
html, body {
    overflow-x: hidden;
}

.is-search-input::placeholder {
  color: #2d2a72 !important;
}
svg.ywcas-submit-icon {
    color: #2d2a72 !important;
}

/* Ocultar en pantallas grandes */
@media screen and (min-width: 770px) {
    .mhm-wrapper {
        display: none !important;
    }
}