/* ==========================================================================
   RANDEVU HEADER STYLES (IMPORTED)
   ========================================================================== */
.randevu-header {
    background-color: #00325B;
    padding: 12px 0;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.randevu-header .site-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.randevu-logo img {
    height: 34px;
    width: auto;
    display: block;
}

/* --- HEADER ACTIONS (HOME & LANG) --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* LANG SELECTOR */
.lang-selector {
    position: relative;
    width: 100px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif !important;
    width: 100%;
    justify-content: center;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-arrow {
    width: 10px;
    height: 6px;
    opacity: 0.8;
    transition: transform 0.2s ease;
}

.lang-selector:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    z-index: 2000;
    flex-direction: column;
}

/* .lang-selector:hover .lang-dropdown {
    display: flex;
} */

.lang-selector.active .lang-dropdown {
    display: flex;
}

.lang-dropdown a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: 0.1s;
    border-bottom: 1px solid #eee;
    font-family: 'Inter', sans-serif;
}

.lang-dropdown a:last-child {
    border-bottom: none;
}

.lang-dropdown a:hover {
    background-color: #f7fbfe;
    color: #00325B;
}

.lang-dropdown a.active {
    background-color: #e6f7ff;
    color: #0071CE;
    font-weight: 700;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: contain;
    border-radius: 2px;
}

/* FLUID SCALE override if needed */
@media (min-width: 2000px) {
    .randevu-header .site-container {
        max-width: 1400px !important;
    }
}