/* Products page demo — industry presets & image cards */

.shop-industry-bar {
    background: #faf5ff;
    border-bottom: 1px solid #e9d5ff;
    padding: 0.75rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.shop-industry-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b21a8;
    margin-right: 0.25rem;
}

.shop-industry-chip {
    min-height: 34px;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    border: 2px solid #ddd6fe;
    background: #fff;
    color: #5b21b6;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
}

.shop-industry-chip.active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
}

.shop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f1f5f9;
}

.shop-cart-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.shop-card.out-of-stock { opacity: 0.65; }
.shop-card.out-of-stock .shop-add-btn { background: #94a3b8; cursor: not-allowed; }

[data-shop-style="sharp"] .shop-card { border-radius: 4px; }
[data-shop-style="sharp"] .shop-cat { border-radius: 4px; }

[data-shop-style="minimal"] .shop-card {
    border: none;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}
[data-shop-style="minimal"] .shop-card-img { aspect-ratio: 4/3; }
