/**
 * Advanced Search: filters (category, format), sort
 */
.advanced-search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #eee;
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.filter-select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #131314;
    min-width: 160px;
    cursor: pointer;
}
.filter-select:hover,
.filter-select:focus {
    border-color: #ED1C24;
    outline: none;
}
/* Search autocomplete dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    max-height: 320px;
    overflow-y: auto;
    z-index: 1000;
}
.search-suggestions-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: #131314;
    border-bottom: 1px solid #f0f0f0;
}
.search-suggestions-item:last-child {
    border-bottom: none;
}
.search-suggestions-item:hover {
    background: #f8f8f8;
}
.search-suggestions-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
}
.search-suggestions-item .suggestion-title {
    font-weight: 500;
}
.hero-search-wrap,
.archive-search-wrap {
    position: relative;
}
.load-more-btn {
    display: block;
    margin: 2rem auto;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #ED1C24;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.load-more-btn:hover:not(:disabled) {
    background: #c4181e;
}
.load-more-btn:disabled,
.load-more-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}
.archive-pagination-loadmore {
    margin-top: 2rem;
}
.breadcrumbs-single {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
@media (max-width: 639px) {
    .advanced-search-filters {
        flex-direction: column;
    }
    .filter-select {
        min-width: 100%;
    }
}
