.sweet_sidebar {
    flex: 0 0 auto;
    width: 100%;
    max-width: 210px;
}

.sweet_sidebar_menu {
    display: flex;
    padding: 18px;
    border-radius: 10px;
    background: linear-gradient(180deg, #bfe3ff 0%, #7fb4ff 45%, #4a74d9 100%);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .15);
}

.sweet_sidebar_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    width: 100%;
}

.sweet_sidebar_list__item.sweet_sidebar_header {
    padding: 12px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    align-items: center;

    background: linear-gradient(135deg, #ffffff, #dbe9ff);
    color: #0b2e6f;
    font-weight: 600;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, .6),
        0 6px 14px rgba(0, 0, 0, .12);
}

.sweet_sidebar_list__item-ico {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .25));
}

.sweet_custom_dropdown {
    background: linear-gradient(135deg, #eef5ff, #cfe3ff);
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
    transition: transform .2s ease, box-shadow .2s;
}

.sweet_custom_dropdown:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, .18);
}

.sweet_dropdown_title {
    color: #0e2f78;
    font-weight: 700;
}

.dropdown-item span {
    color: #0a2e66;
    font-weight: 500;
}

.dropdown-item:hover span {
    color: #ffffff;
}

.sweet_dropdown_body {
    display: flex;
    list-style: none;
    flex-direction: column;
    gap: 4px;
}

ul#category-menu-services{
    list-style: none;
}
.dropdown-item {
    background: linear-gradient(135deg, #7fb4ff, #4a74d9);
    padding: 4px 5px;
    border-radius: 5px;
    display: block;
    transition: background .2s ease, transform .2s ease;
}

.sweet_dropdown_item_wrap .sweet_dropdown_item_selected {
    background: linear-gradient(135deg, #e9c651, #e7bb08);
    padding: 4px 5px;
    border-radius: 5px;
    display: block;
    color: black;
    transition: background .2s ease, transform .2s ease;
    font-weight: 600;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #4a74d9, #1d48a6);
}

.sweet_sidebar {
    align-self: flex-start;
}
.sweet_sidebar nav{
    padding: 10px;
    background: linear-gradient(180deg, #bfe3ff 0%, #7fb4ff 45%, #4a74d9 100%);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .15);
    border-radius: 12px;
}

.main-slider {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--dark);
}

.main-slider .swiper-wrapper {
    align-items: center;
}
ul#category-menu-services,
ul#category-menu-nationality {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.main-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    aspect-ratio: 3 / 4;
    max-height: 600px;
}

.main-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.main-slider .swiper-slide img[src=""],
.main-slider .swiper-slide img:not([src]) {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.sweet-sidebar-toggle {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #7fb4ff, #4a74d9);
    color: #fff;
    font-size: 22px;
    display: none;
    z-index: 1100;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
    cursor: pointer;
}

/* Overlay */
.sweet-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    pointer-events: none;
    z-index: 1090;
    transition: .25s;
}


@media (max-width:600px) {

    .sweet-sidebar-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sweet_sidebar {
        
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100%;
        max-width: 280px;
        z-index: 1091;
        transition: .35s ease;
    }

    .sweet_sidebar_menu {
        height: 100%;
        overflow-y: auto;
        border-radius: 0;
        justify-content: center;
    }

    .sweet_sidebar.active {
        right: 0;
        height: 100%;
        background: linear-gradient(180deg, #bfe3ff 0%, #7fb4ff 45%, #4a74d9 100%);
        box-shadow: 0 12px 26px rgba(0, 0, 0, .15);
    }
    .sweet_sidebar.active nav{
        margin-top: 40px;
        padding: 0 20px;
        background: transparent;
        box-shadow: none;
    }

    .sweet-sidebar-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .sweet_dropdown_body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .sweet_dropdown_body.open {
        max-height: 300px;
    }

    .sweet_dropdown_body.visible {
        overflow: visible;
        list-style: none;
    }

}