/* Mobile Menu Dropdown Styles */
.mobile-menu-sec .sub-menu {
    display: none !important;
    padding-left: 12px !important;
    margin-top: 5px;
    margin-bottom: 0;
}

.mobile-menu-sec .has-submenu.open .sub-menu {
    display: block !important;
}

.mobile-menu-sec .has-submenu > a {
    position: relative;
    padding-right: 30px;
}

.mobile-menu-sec .dropdown-toggle {
    position: absolute;
    right: 0;
    top: 3px;
    cursor: pointer;
    color: #777;
    padding: 0 5px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-sec .dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-sec .has-submenu.open .dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-menu-sec .sub-menu li {
    margin-bottom: 5px !important;
    padding-bottom: 5px !important;
    border-bottom: 1px dashed rgba(238, 29, 54, 0.1) !important;
}

.mobile-menu-sec .sub-menu li:last-child {
    border-bottom: none !important;
}

/* Debug styles - remove after testing */
.mobile-menu-sec .has-submenu {
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.mobile-menu-sec .has-submenu.open {
    background-color: rgba(238, 29, 54, 0.05);
}