/*header {*/
/*    border-bottom: #ffffff 1px solid;*/
/*    height: 6rem;*/
/*    padding: 1rem 2rem 0 2rem;*/
/*    flex: 0 0 auto;*/
/*}*/

/*nav {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*.right-side-wrap {*/
/*    display: flex;*/
/*    justify-content: flex-end;*/
/*    gap: 10rem;*/
/*}*/

/*.globe-icon {*/
/*    color: #ffffff;*/
/*    width: 1.5rem;*/
/*    height: 1.5rem;*/
/*}*/

/*.language-menu {*/
/*    display: flex;*/
/*    gap: 0.8rem;*/
/*    float: right;*/
/*    align-items: center;*/
/*}*/

/*.language-menu a {*/
/*    color: #ffffff;*/
/*}*/

/*.search-icon {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 14px;*/
/*    transform: translateY(-50%);*/
/*    width: 1.5rem;*/
/*    height: 1.5rem;*/
/*    opacity: 0.9;*/
/*    pointer-events: none;*/
/*}*/

/*.search-box {*/
/*    position: relative;*/
/*    width: 320px;*/
/*}*/

/*.search-box input {*/
/*    width: 100%;*/
/*    padding: 14px 16px 14px 44px;*/

/*    background: transparent;*/
/*    border: 1px solid rgba(255, 255, 255, 0.7);*/
/*    color: white;*/

/*    font-size: 16px;*/
/*    outline: none;*/
/*}*/

/*.order-btn {*/
/*    color: white;*/
/*    cursor: pointer;*/
/*    background-color: transparent;*/
/*    text-decoration: underline;*/
/*    border: none;*/
/*    font-size: 16px;*/
/*}*/

/*.header-logo {*/
/*    width: 192px;*/
/*    height: 66px;*/
/*}*/

header {
    border-bottom: #ffffff 1px solid;
    flex: 0 0 auto;
    padding: 1rem clamp(1rem, 3vw, 2rem);
}

nav {
    min-height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-logo {
    width: clamp(140px, 14vw, 192px);
    height: auto;
    display: block;
}

.right-side-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(1rem, 5vw, 10rem);
}

.search-box {
    position: relative;
    width: clamp(220px, 24vw, 420px);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0.9;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px 14px 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: white;
    font-size: 16px;
    outline: none;
}

.language-menu {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    white-space: nowrap;
}

.language-menu a {
    color: #ffffff;
}

.globe-icon {
    width: 1.5rem;
    height: 1.5rem;
}

footer {
    padding: 1rem clamp(1rem, 3vw, 2rem);
}

@media (max-width: 900px) {
    nav {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .right-side-wrap {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }

    .search-box {
        flex: 1;
        width: auto;
        min-width: 0;
    }
}

@media (max-width: 560px) {
    header {
        padding: 0.8rem 0;
    }

    nav {
        gap: 1rem;
    }

    .header-logo {
        width: 135px;
    }

    .right-side-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .language-menu {
        justify-content: flex-end;
    }

    .search-box {
        width: 100%;
    }
}