/* ===============================
   HEADER GLOBAL
================================= */
.site-header {
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    width: 100%;
    margin: 0;
    padding: 0 clamp(20px, 6vw, 80px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

/* LEFT / RIGHT */
.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* LOGO */
.logo img {
    height: 32px;
}

/* BUTTONS */
.burger-menu,
.icon-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
}

.subscribe-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
}


/* ===============================
   DESKTOP NAV
================================= */
.desktop-nav {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-main {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-main .menu-item {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item svg {
    transition: transform 0.2s ease;
}

.menu-item:hover svg {
    transform: scale(1.1);
}

.nav-globe {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-globe svg {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ===============================
   MOBILE
================================= */
@media (max-width: 1023px) {

    .desktop-nav,
    .mega-menu {
        display: none !important;
    }
}


/* ===============================
   DESKTOP
================================= */
@media (min-width: 1024px) {

    .desktop-nav {
        display: flex !important;
        justify-content: center;
    }

    .desktop-nav ul {
        gap: 28px;
    }

    /* cacher burger */
    .burger-menu {
        display: none !important;
    }


    /* header layout */
    .header-inner {
        height: 70px;
        gap: 30px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .header-left {
        gap: 25px;
        flex: 1;
        justify-content: flex-start;
    }

    .header-right {
        flex: 1;
        justify-content: flex-end;
    }

    .logo img {
        height: 38px;
    }
}


/* HEADER SEARCH CLEAN */
.header-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000;

    opacity: 0;
    pointer-events: none;

    transition: opacity .25s ease;

    z-index: 11000;
}

.header-search.active {
  opacity: 1;
  pointer-events: auto;
}


.header-search-form {
    display: flex;
    align-items: stretch;
    width: min(90%, 600px);
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.header-search-input {
    flex: 1;
    min-width: 0;
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    outline: none;
    color: #111;
}

.header-search-input::placeholder {
    color: #aaa;
}

.header-search .search-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: #0a66c2;
    color: #fff;
    border: none;
    cursor: pointer;
}

.header-search .search-btn:hover {
    background: #0652b3;
}

.close-search {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #111;
}

.close-search:hover {
    color: #0a66c2;
}

.site-header.header-search-active {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


