.vosta-fixed-controls {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    border-left: 1px solid black;
    z-index: 1002;
    background-color: white;
}

.vosta-menu-toggle,
.vosta-booking-btn {
    font-size: 26px;
    font-weight: 400;
    cursor: pointer;
    color: black;
    background: transparent;
    border: none;
}

.vosta-booking-btn {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 10px;
    font-weight: bold;
    background: white;
    color: black;
    border: 1px solid black;
}

.vosta-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    z-index: 1000;
}

.vosta-overlay.vosta-active {
    display: block;
}

.vosta-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100%;
    background-color: white;
    border-left: 1px solid black;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 1001;
    padding: 20px;
    color: black;
}

.vosta-sidebar.vosta-active {
    right: 50px;
}

.vosta-sidebar .vosta-top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid black;
}

.vosta-sidebar .vosta-lang-account {
    display: flex;
    gap: 20px;
    font-size: 14px;
    justify-content: center;
    width: 100%;
}

.vosta-main-menu {
    padding: 0;
}

.vosta-sidebar ul {
    list-style: none;
    margin-top: 20px;
    flex-grow: 1;
}

.vosta-sidebar ul li {
    padding: 15px 0;
    font-weight: bold;
    font-size: 20px;
    border: none;
    cursor: pointer;
    position: relative;
}

.vosta-sidebar ul li a {
    color: black;
    text-decoration: none;
}

.vosta-sidebar ul li a:hover {
    text-decoration: underline;
}

.vosta-sidebar ul li .vosta-submenu {
    display: none;
    padding-left: 20px;
    font-size: 16px;
}

.vosta-sidebar ul li:hover .vosta-submenu {
    display: block;
}

.vosta-sidebar .vosta-bottom-links {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid black;
}

.vosta-sidebar .vosta-bottom-links a {
    display: block;
    color: black;
    margin-bottom: 10px;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
}

.vosta-sidebar .vosta-bottom-links a:hover {
    text-decoration: underline;
}

.vosta-sidebar .vosta-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 20px;
}

.vosta-sidebar .vosta-social-icons span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
    border-radius: 50%;
    color: black;
}

.vosta-mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1003;
}

.vosta-mobile-header .vosta-logo {
    font-weight: bold;
    font-size: 20px;
}

.vosta-mobile-header .vosta-mobile-toggle {
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: black;
}

.vosta-mobile-menu {
    display: flex;
    flex-direction: column;
    background: white;
    z-index: 1002;
    position: absolute;
    top: 120px;
    width: 100%;
    align-items: center;
    transition: max-height 0.3s ease;
    overflow: hidden;
    max-height: 0;
}

.vosta-mobile-menu.vosta-active {
    max-height: 1000px;
}

.vosta-mobile-menu a {
    padding: 15px 20px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    border: none;
    text-align: center;
    width: 100%;
}

.vosta-mobile-menu a:hover {
    background: #f5f5f5;
}

@media (min-width: 768px) {
    .vosta-sidebar {
        width: 400px;
    }

    .vosta-mobile-header,
    .vosta-mobile-menu {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .vosta-fixed-controls {
        display: none;
    }

    .vosta-mobile-header {
        display: flex;
    }
}