.navigation-header {
    background-color: #fff;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    padding: 18px 0;
}

.navigation-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== LOGO ===== */
.navigation-header__logo .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navigation-header__logo img {
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #5E3B0E;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.logo-link:hover .logo-text {
    color: #e94560 !important;
    transition: color 0.2s ease;
}

/* ===== SEARCH ===== */
.navigation-header__search {
    flex: 1;
    max-width: 480px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 9px 44px 9px 16px;
    border-radius: 24px;
    border: 1px solid #2e2e4a;
    background-color: rgb(255 255 255);
    color: #000000;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.search-input:focus {
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.2);
}

.search-button {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    color: #888aaa;
    transition: color 0.2s ease;
}

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

.search-icon {
    width: 20px;
    height: 20px;
}

#search_button svg path {
    fill: unset;
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid rgba(139, 69, 19, 0.15);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-dropdown {
    overflow: hidden;
}

.search-results {
    max-height: 400px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.search-results::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.search-dropdown {
    max-height: 400px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.search-dropdown::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.search-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.search-dropdown-content {
    padding: 0;
}

.search-no-results {
    padding: 16px;
    color: #888aaa;
    text-align: center;
    font-size: 0.9rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #333;
}

.search-result-item:hover {
    transform: translateX(4px);
}

.search-result-item:last-child {
    border-bottom: none;
    border-radius: 0 0 13px 13px;
}

.search-result-item:first-child {
    border-radius: 13px 13px 0 0;
}

.search-result-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin-right: 12px;
    object-fit: cover;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.search-result-title {
    font-weight: 600;
    color: #8b4513;
    margin: 0;
    font-size: 14px;
}

.search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(139, 69, 19, 0.2);
    border-top: 2px solid #8b4513;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* ===== NAVIGATION MENU ===== */
.navigation-header__menu {
    flex-shrink: 0;
}

.navigation-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.navigation-menu__item {
    display: inline-flex;
}

.navigation-menu__link {
    display: block;
    padding: 8px 14px;
    border-radius: 20px;
    color: #4e342e;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: 2px solid rgba(139, 69, 19, 0.15);
    background-color: rgba(139, 69, 19, 0.08);
}

.navigation-menu__link:hover,
.navigation-menu__link.active {
    background-color: #e94560;
    color: #ffffff;
}