.hcd-catalog { background: var(--hcd-color-surface); }
.hcd-catalog__toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--hcd-color-border); }
.hcd-catalog__count { margin: 0; color: var(--hcd-color-muted); font-size: 14px; }
.hcd-catalog__sort select { min-height: 40px; padding: 6px 12px; border: 1px solid var(--hcd-color-border); border-radius: var(--hcd-radius-sm); background: #fff; font-size: 14px; }
.hcd-catalog__grid, .hcd-catalog ul.products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--hcd-gap); margin: 0; padding: 0; list-style: none; }
.hcd-catalog ul.products li.product { width: auto; margin: 0; float: none; }
.hcd-product-card, .hcd-catalog ul.products li.product .box { height: 100%; overflow: hidden; border: 1px solid var(--hcd-color-border); border-radius: var(--hcd-radius-md); background: #fff; transition: transform var(--hcd-transition), box-shadow var(--hcd-transition); }
.hcd-product-card:hover, .hcd-catalog ul.products li.product .box:hover { transform: translateY(-3px); box-shadow: var(--hcd-shadow); }
.hcd-product-card__image img, .hcd-catalog .box-image img { aspect-ratio: 1 / 1; object-fit: cover; background: var(--hcd-color-surface-soft); }
.hcd-product-card__title, .hcd-catalog .product-title { display: -webkit-box; min-height: 42px; margin: 12px 14px 6px; overflow: hidden; font-size: 14px; font-weight: 700; line-height: 21px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.hcd-product-card__price, .hcd-catalog .price { margin: 0 14px; color: var(--hcd-color-primary); font-size: 17px; font-weight: 700; }
.hcd-product-card__button { margin: 12px 14px 14px; }
@media (max-width: 1024px) { .hcd-catalog__grid, .hcd-catalog ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 849px) { .hcd-catalog__grid, .hcd-catalog ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 549px) { .hcd-catalog__toolbar { flex-direction: column; align-items: flex-start; } .hcd-product-card__title, .hcd-catalog .product-title { min-height: 38px; font-size: 13px; line-height: 19px; } }
