.categories-bar {
    display: flex; gap: 1.5rem; overflow-x: auto; padding: 1rem 0; margin-bottom: 2rem;
}
.category-pill {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    min-width: 100px; cursor: pointer; color: var(--c-wood-dark);
}
.cat-icon {
    width: 60px; height: 60px; border-radius: 50%; background: var(--c-wood-light);
    display: flex; align-items: center; justify-content: center; color: white; overflow: hidden;
}
.catalog-title { 
    text-align: center; 
    margin-bottom: 1.5rem; 
    border-bottom: 2px solid var(--c-wood-light); 
    padding-bottom: 0.5rem; 
}
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.product-card {
    background: var(--c-white); border-radius: 8px; overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-5px); }
.product-img { width: 100%; height: 250px; object-fit: cover; }
.product-info { padding: 1.5rem; }
.product-info h3 { font-size: 1.1rem; margin-bottom: 0.5rem; min-height: 45px; }
.price { font-size: var(--text-h4); font-weight: bold; color: var(--c-accent-red); margin-bottom: 1rem; }
.add-to-cart-btn { width: 100%; }