#geo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

#geo-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.geo-popup-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.geo-popup-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 0;
}

.geo-popup-content a {
    color: #d4a373;
    text-decoration: underline;
}

.geo-popup-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

#geo-popup button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    background-color: #d4a373;
    color: #fff;
    transition: background-color 0.3s ease;
}

#geo-popup button:hover {
    background-color: #c1905e;
}

#geo-popup select {
    padding: 8px 12px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

#geo-popup select:hover {
    border-color: #d4a373;
    box-shadow: 0 0 5px rgba(212, 163, 115, 0.3);
}

#geo-popup select:focus {
    border-color: #d4a373;
    box-shadow: 0 0 5px rgba(212, 163, 115, 0.5);
}

#geo-popup select option {
    background-color: #fff;
    color: #333;
}

.georedirect-city-switcher {
    display: inline-block;
}

.georedirect-city-switcher select.city-switcher {
    padding: 0px 10px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #fff;
    border: 2px solid #ae8c63;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-width: 180px;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.wp-widget-group__inner-blocks {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #e1d0bb;
}
.top_bar_wrapper .top_bar a {
    font-size: 16px !important;
    font-family: 'Roboto', sans-serif;
    color: #e1d0bb !important;
}

.top_bar_wrapper.d-none.d-xl-block.w-100.topbar_show_mobile_yes.transparent_topbar.transparent_border_topbar {
    border-color: #ffffff00;
}

li#block-4 {
    border-color: #ffffff00;
}

.top_bar_wrapper .right-top-widet .widget-container {
    padding-left: 0px;
}

li#block-5 {
    border-color: #ffffff00;
}

li#block-6 {
    border-color: #ffffff00;
}

li#block-8 {
    border-color: #ffffff00;
}
li#block-9 {
    border-color: #ffffff00;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #e1d0bb;
}

ul.xoxo {
    margin-bottom: -15px !important;
}

.georedirect-city-switcher select.city-switcher:hover {
    border-color: #d4a373;
    box-shadow: 0 0 5px rgba(212, 163, 115, 0.3);
}

.georedirect-city-switcher select.city-switcher:focus {
    border-color: #d4a373;
    box-shadow: 0 0 5px rgba(212, 163, 115, 0.5);
}

.georedirect-city-switcher select.city-switcher option {
    background-color: #fff;
    color: #333;
}

@media (max-width: 768px) {
    #geo-popup {
        padding: 20px;
        max-width: 90%;
    }
    .geo-popup-buttons {
        flex-direction: column;
        gap: 10px;
    }
    #geo-popup button {
        width: 100%;
        margin: 0;
    }
    .georedirect-city-switcher select.city-switcher {
        width: 100%;
        margin: 10px 0;
    }
}