/* Irie WP Menu List Widget Styles */

.irie-wp-menu-list-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.irie-wp-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    border-top: 1px solid #e2a093;
    border-bottom: 1px solid #e2a093;
    box-sizing: border-box;
}

.irie-wp-menu-item {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e2a093;
    box-sizing: border-box;
}

.irie-wp-menu-item:last-child {
    border-bottom: none;
}

.irie-wp-menu-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.irie-wp-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    padding: 14px 20px;
    color: #a01212;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.2s ease;
    background-color: transparent;
    box-sizing: border-box;
}

.irie-wp-menu-link:hover,
.irie-wp-menu-link:focus {
    color: #7d0b0b;
    background-color: rgba(160, 18, 18, 0.04);
    text-decoration: none;
}

.irie-wp-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: transform 0.2s ease;
}

.irie-wp-menu-sub-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    color: #a01212;
    cursor: pointer;
    transition: transform 0.2s ease;
    user-select: none;
}

.irie-wp-menu-sub-toggle.active svg,
.irie-wp-menu-sub-toggle.active i {
    transform: rotate(180deg);
}

/* Submenu Styling */
.irie-wp-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(226, 160, 147, 0.5);
    display: none;
}

.irie-wp-submenu.open {
    display: block;
}

.irie-wp-sub-item {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(226, 160, 147, 0.3);
}

.irie-wp-sub-item:last-child {
    border-bottom: none;
}

.irie-wp-sub-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px 11px 32px;
    font-size: 14px;
    color: #a01212;
    text-decoration: none;
    transition: all 0.2s ease;
}

.irie-wp-sub-link:hover,
.irie-wp-sub-link:focus {
    color: #7d0b0b;
    background-color: rgba(160, 18, 18, 0.06);
    text-decoration: none;
}

.irie-wp-menu-empty-msg {
    padding: 20px;
    text-align: center;
    color: #888888;
    font-size: 14px;
    border: 1px dashed #cccccc;
    border-radius: 8px;
}
