/* Mobile Accordion Widget Structural Styles */
.mwa-container-b89e83bd {
    font-family: inherit;
    width: 100%;
}

.mwa-search-wrapper-b89e83bd {
    margin-bottom: 15px;
    width: 100%;
}

.mwa-search-field-b89e83bd {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #ddd;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    border-radius: 6px;
}

.mwa-search-field-b89e83bd:focus {
    border-color: #8c8c8c;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.mwa-level-list-b89e83bd {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mwa-item-b89e83bd {
    display: block;
    width: 100%;
}

.mwa-row-b89e83bd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #eaeaea;
    transition: background-color 0.25s ease, border-color 0.25s ease;
    gap: 12px;
}

/* LEADING VISUAL AND CONTAINER */
.mwa-leading-visual-b89e83bd {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.25s ease, color 0.25s ease, fill 0.25s ease, transform 0.25s ease;
    overflow: hidden;
}

.mwa-leading-visual-b89e83bd svg,
.mwa-leading-visual-b89e83bd i {
    display: inline-block;
    transition: fill 0.25s ease, color 0.25s ease;
}

.mwa-emoji-visual-b89e83bd {
    line-height: 1;
}

.mwa-img-visual-b89e83bd {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.mwa-content-wrapper-b89e83bd {
    flex-grow: 1;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.mwa-title-wrap-b89e83bd {
    display: flex;
    flex-direction: column;
}

.mwa-title-b89e83bd {
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.mwa-subtitle-b89e83bd {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
    transition: color 0.25s ease;
}

/* CUSTOMISABLE BADGES SYSTEM */
.mwa-badge-b89e83bd {
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    color: #fff;
    line-height: 1;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* TRAILING (TOGGLE) BUTTON AND ACTIONS */
.mwa-toggle-btn-b89e83bd {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease, fill 0.3s ease, opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    position: relative;
}

.mwa-icon-state-container-b89e83bd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mwa-icon-state-container-b89e83bd svg,
.mwa-icon-state-container-b89e83bd i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* HIGH FIDELITY ANIMATIONS */
/* Rotate */
.mwa-anim-rotate .mwa-toggle-btn-b89e83bd {
    transition: transform 0.3s ease-in-out, background-color 0.3s, color 0.3s;
}

/* Fade / Crossfade transition */
.mwa-anim-fade .mwa-toggle-btn-b89e83bd .mwa-icon-state-container-b89e83bd {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.mwa-anim-fade .mwa-item-b89e83bd.is-active > .mwa-row-b89e83bd .mwa-toggle-btn-b89e83bd .mwa-icon-state-container-b89e83bd {
    animation: mwaFadeIn 0.3s forwards;
}

/* Scale transition */
.mwa-anim-scale .mwa-toggle-btn-b89e83bd {
    transition: transform 0.3s ease, background-color 0.3s;
}
.mwa-anim-scale .mwa-item-b89e83bd.is-active > .mwa-row-b89e83bd .mwa-toggle-btn-b89e83bd {
    transform: scale(1.15);
}

/* Combined Animation (Rotate + Fade + Scale) */
.mwa-anim-combined .mwa-toggle-btn-b89e83bd {
    transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.3s;
}
.mwa-anim-combined .mwa-toggle-btn-b89e83bd .mwa-icon-state-container-b89e83bd {
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.mwa-anim-combined .mwa-item-b89e83bd.is-active > .mwa-row-b89e83bd .mwa-toggle-btn-b89e83bd {
    transform: scale(1.1) rotate(180deg);
}

@keyframes mwaFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mwa-submenu-wrapper-b89e83bd {
    width: 100%;
}

.mwa-view-all-row-b89e83bd {
    padding: 8px 15px;
    border-bottom: 1px dashed #f0f0f0;
}

.mwa-view-all-link-b89e83bd {
    font-size: 13px;
    color: #007aff;
    text-decoration: none;
    font-weight: 500;
}

/* Hidden items during search filtering */
.mwa-item-hidden-b89e83bd {
    display: none !important;
}

/* Keyboard and hover indicators */
.mwa-row-b89e83bd:focus-within {
    outline: 2px solid #007aff;
}

.mwa-toggle-btn-b89e83bd:focus {
    outline: 2px solid #007aff;
    outline-offset: 2px;
}
