/* ===== AudioBerry — Catalog (catalog/index & catalog/view) ===== */
.product-img-wrap {
    position: relative; overflow: hidden; aspect-ratio: 1 / 1; border-radius: 12px; margin-bottom: 14px;
}
.product-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease; background: var(--bg-light, #f8f9fa);
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

/* Catalog index header */
.catalog-section{padding-top:40px}
.catalog-title{font-size:32px;font-weight:700;margin-bottom:8px;color:var(--article-text-primary)}
.catalog-subtitle{font-size:16px;color:var(--article-text-secondary);margin-bottom:32px}
.product-card-link{text-decoration:none;color:inherit}
