.header-wrapper {
    grid-area: header;
    position: fixed;
    width: 100%;
    z-index: 120;
}

.header-wrapper::before {
    content: "";
    position: absolute;
    top: 0rem;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5be;
    backdrop-filter: blur(20px);
    padding: 0;
}

.header {
    grid-area: header;
    top: 0;
    z-index: 10;
    grid-column: 1 / 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8rem;
    position: relative;
    padding: 0 2rem;
}

.header__logo {
    width: 12rem;
    padding: 2rem 0;
    display: none;
}

.header__logo img {
    object-fit: contain;
}

.header__container-nav {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 3rem;
}
.search-container {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5rem;
    padding: 5px 10px;

    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.search-input {
    border: none;
    outline: none;
    font-size: 14px;
    flex: 1;
    color: #333;
    padding: 5px 10px;
    width: 100%;

    background-color: #f5f5f500;
}

.search-input::placeholder {
    color: #ccc;
}

.search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.search-button:hover {
    color: #555;
}

svg {
    width: 16px;
    height: 16px;
}

.header__nav {
    position: absolute;
    width: 100%;
    top: 7.8rem;
    left: 0;
    right: 0;
    text-align: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-out;
    backdrop-filter: blur(20px);
    background: #f5f5f5c0;
    height: auto;
}
.header__nav.active {
    max-height: 900px;
}

.icons {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icons svg {
    height: 2.5rem;
    width: 2.5rem;
    fill: #000000;
}

.icons #close-icon {
    display: none;
}

.header__nav-user {
    padding-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.icons__header {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.icons__header-notify svg {
    height: 2rem;
    width: 2.5rem;
}

.header__user-button {
    height: 100%;
    padding: 1rem 2.7rem;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    font-weight: 300;
}
.header__user-button--login {
    color: var(--tx-black);
    text-transform: uppercase;
    background-color: transparent;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.header__nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 0;
}
.header__nav-link {
    list-style: none;
}
.header_nav_btn-contact {
    background-color: #1d1a1a;
    padding: 2rem 3rem;
    color: #fff;
    display: none;
}

.header__nav-link a {
    text-decoration: none;
    font-size: 14px;
    color: var(--tx-primary-dark);
    font-weight: 300;
    text-transform: uppercase;
}
.header__nav-link a:hover {
    color: #a38c6d;
}

.header__user-button--register {
    color: var(--tx-white);
    text-transform: uppercase;
    background-color: var(--bg-primary-chocolate);
}

@media (min-width: 768px) {
    .search-container {
        border-radius: 1rem;
        padding: 5px 10px;
    }
}
