/* --- Catalog Specific Styles --- */

.catalog-hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, var(--accent-light) 0%, transparent 100%);
    text-align: center;
}

.hero-simple h1 {
    font-size: var(--text-h2);
    margin-bottom: 1.5rem;
}

.hero-simple p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* --- Filter Controls --- */

.filters-section {
    padding: 2rem 0;
    position: sticky;
    top: 5rem;
    z-index: 100;
}

.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 248, 231, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--white-soft);
}

.filter-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    background: var(--accent-light);
}

.filter-btn.active {
    background: var(--accent);
    color: white;
}

.search-box {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 3rem 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(160, 82, 45, 0.2);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: white;
}

.search-box i {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    opacity: 0.6;
}

/* --- Grid Adjustments --- */

.catalog-grid-section {
    padding-top: 2rem;
    min-height: 400px;
}

.no-results {
    text-align: center;
    padding: 4rem 0;
}

.no-results i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0.3;
}

.no-results p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Active Link in Nav */
.active-link {
    color: var(--accent) !important;
}

.active-link::after {
    width: 100% !important;
}

/* --- Media Queries --- */

@media (max-width: 992px) {
    .filter-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .filter-controls {
        justify-content: center;
    }

    .search-box {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .catalog-hero {
        padding-top: 8rem;
    }

    .filter-controls {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}