/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #1a1a1a;
}

/* LEFT */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.burger {
    font-size: 20px;
    cursor: pointer;
}

.logo {
    font-weight: bold;
    font-size: 16px;
}

/* CENTER */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.search {
    width: 60%;
    max-width: 500px;
    padding: 8px 12px;
    background: #2a2a2a;
    border: none;
    color: #fff;
    border-radius: 4px;
}

/* RIGHT */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    display: flex;
    gap: 8px;
    background: #0e3a3f;
    padding: 6px 10px;
    border-radius: 20px;
}

.lang-switcher img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.lang-switcher img:hover {
    transform: scale(1.1);
}

/* LOGIN */
.user a {
    background: #00c896;
    padding: 6px 12px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
}