.title-search-result {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    margin-top: 4px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.title-search-result.active {
    display: block;
}

.search-content {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.search-category-title {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.search-item {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #f5f5f5;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
}

.search-item a:hover {
    background-color: #f5f7fa;
}

.search-item-name {
    font-size: 14px;
    color: #333;
}

.search-item-all .search-item-name {
    color: var(--color-primary);
    font-weight: 500;
}

.search-item-arrow {
    color: #ccc;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.search-item a:hover .search-item-arrow {
    transform: translateX(4px);
    color: var(--color-primary);
}

.title-search-fader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
}

.title-search-fader.active {
    display: block;
}

@media (max-width: 768px) {
    .title-search-result {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: none;
        border-radius: 0;
        margin-top: 0;
    }

    .search-item a {
        padding: 14px 20px;
    }

    .search-item-name {
        font-size: 16px;
    }
}