/* ===== CATALOG PAGE BACKGROUND ===== */
.catalog-wrapper {
    min-height: 100vh;
    background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    font-family: sans-serif;
}

.catalog-inner {
    min-height: 100vh;
    backdrop-filter: blur(3px);
    padding-bottom: 3rem;
}

/* ===== MAIN ===== */
.catalog-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.catalog-main-title {
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 12px #000;
    margin-bottom: 2rem;
}

/* ===== FILTERS ===== */
.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.catalog-search,
.catalog-category {
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.35);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(6px);
    width: 230px;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.catalog-search::placeholder {
    color: rgba(255,255,255,0.9);
}

.catalog-category option {
    color: black;
}

/* ===== STATES ===== */
.catalog-loading,
.catalog-error,
.catalog-empty {
    color: white;
    font-size: 1.2rem;
    margin-top: 2rem;
    text-shadow: 0 0 6px #000;
}

.catalog-error {
    color: #ffb3b3;
}

/* ===== GRID ===== */
.catalog-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 2rem;
}
