/* ==========================================================================
   Search And Filters
   ========================================================================== */
.catalog-store-section {
    padding: 20px 0 4rem;
}

.catalog-store-top {
    margin: 16px 0 10px;
}

.catalog-search input {
    width: 100%;
    max-width: 380px;
    margin-bottom: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    outline: none;
    background: #111;
    color: #fff;
}

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

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.catalog-filter {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
}

.catalog-filter:hover {
    border-color: #ff6600;
    color: #ff6600;
}

.catalog-filter.is-active {
    border-color: #ff6600;
    background: #ff6600;
    color: #000;
}

.catalog-store-results {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* ==========================================================================
   Catalog Grid And Cards
   ========================================================================== */
.catalog-store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 10px;
}

.catalog-item-card {
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
}

.catalog-item-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.4);
}

.catalog-item-card.is-hidden {
    display: none;
}

.catalog-item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    padding: 20px;
    background: #000;
}

.catalog-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.catalog-item-body {
    padding: 16px;
}

.catalog-item-body h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.catalog-item-body p {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.45;
}

/* ==========================================================================
   Catalog Responsive Rules
   ========================================================================== */
@media (max-width: 900px) {
    .catalog-store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .catalog-store-grid {
        grid-template-columns: 1fr;
    }

    .catalog-hero-minimal {
        padding: 22px 0 10px;
    }

    .catalog-hero-minimal h1 {
        font-size: 1.8rem;
    }

    .catalog-hero-minimal p {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .catalog-search input {
        max-width: 100%;
    }
}
