/**
 * MegaMenuSeinto – Estilos
 * SVG inline, dropdown, accesible, SEO friendly
 */

/* NAV contenedor */
#mms-menu-wrapper {
    position: relative;
    display: inline-block;
    z-index: 10000;
}

/* Botón transparente */
.mms-btn {
    background: transparent !important;
    border: none !important;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
	transition:0.5s;
}

.mms-btn:hover{
	border-radius: 50%;
	background: #ec23245c !important;
	transition:0.5s;
}

/* Iconos */
.mms-icon {
    width: 26px;
    height: 26px;
    display: none;
}

.mms-icon-visible {
    display: block !important;
}

/* Dropdown bajo el botón */
.mms-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    display: none;
    z-index: 9999;
}

.mms-overlay.mms-open {
    display: block;
}

/* Panel blanco */
.mms-panel {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    min-width: 240px;
    width: 320px;
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Lista de enlaces */
.mms-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mms-item a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #e5e5e5;
}

.mms-item:last-child a {
    border-bottom: none;
}

.mms-item a:hover {
    background: #f5f5f5;
}
