.hc-white-space {
    height: 70px;
}

small {
    color: #666;
}

.js-filters {
    display: flex;
    gap: 16px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.filter-group {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
}

.filter-group h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
}

.js-filter-btn {
    border: 1px solid #ccc;
    padding: 4px 10px;
    margin: 2px;
    border-radius: 4px;
    cursor: pointer;
    background: #f7f7f7;
    font-size: 13px;
}

.js-filter-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

#js-products-container {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.js-product-card {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
}

.product-title {
    font-weight: bold;
    margin-bottom: 4px;
}

.product-meta {
    font-size: 12px;
    color: #666;
}

.hidden {
    display: none !important;
}