/* ── Acordeón Materiales y Cuidados ───────────────────────── */

.mmg-mat {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.mmg-mat__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    font-weight: 600;
    text-align: left;
    color: inherit;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mmg-mat__header:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* ── Lado izquierdo: ícono + texto del título ───────────── */

.mmg-mat__header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mmg-mat__title-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 1;
}

.mmg-mat__title-icon i,
.mmg-mat__title-icon svg {
    display: block;
}

/* ── Ícono de despliegue ─────────────────────────────────── */

.mmg-mat__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-style: normal;
    font-size: 1.1em;
    line-height: 1;
    transition: transform 0.25s ease;
    transform: rotate(180deg); /* cerrado = apunta hacia abajo */
}

.mmg-mat__chevron i,
.mmg-mat__chevron svg {
    display: block;
    transition: inherit;
}

.mmg-mat--open .mmg-mat__chevron {
    transform: rotate(0deg); /* abierto = apunta hacia arriba */
}

/* ── Cuerpo ─────────────────────────────────────────────── */

.mmg-mat__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.mmg-mat--open .mmg-mat__body {
    max-height: 800px;
    padding-bottom: 20px;
}

/* ── Descripción ────────────────────────────────────────── */

.mmg-mat__descripcion {
    margin: 0 0 16px;
    line-height: 1.6;
}

/* ── Lista de ítems ─────────────────────────────────────── */

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

.mmg-mat__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.mmg-mat__item-icono {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px; /* el SVG de FA hereda este tamaño */
    flex-shrink: 0;
    min-width: 24px;
}

.mmg-mat__item-icono svg {
    width: 1em;
    height: 1em;
}

.mmg-mat__item-label {
    font-size: 0.95em;
}
