.product-catalog{margin:2rem 0}
.product-catalog-head{display:flex;justify-content:space-between;gap:1rem;align-items:end;margin-bottom:1rem}
.product-catalog-head h2{margin:0}
.product-catalog-head p{margin:.35rem 0 0;color:var(--muted)}
.product-catalog-meta{font-size:.85rem;color:var(--muted);white-space:nowrap}
.product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.product-card{background:var(--paper);border:1px solid var(--line);border-radius:22px;overflow:hidden;box-shadow:0 8px 24px rgba(32,45,31,.07);display:flex;flex-direction:column}
.product-card-image{display:block;aspect-ratio:4/3;background:#f1eee4;overflow:hidden}
.product-card-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .2s ease}
.product-card:hover .product-card-image img{transform:scale(1.025)}
.product-card-body{padding:1rem;display:flex;flex-direction:column;flex:1}
.product-card-body h3{font-size:1.08rem;margin:.65rem 0 .4rem}
.product-card-body p{font-size:.94rem;margin:.2rem 0 1rem;color:var(--muted)}
.product-card-footer{display:flex;justify-content:space-between;align-items:center;gap:.8rem;margin-top:auto}
.product-card-footer strong{font-size:.95rem}
.product-card-footer .btn{padding:.62rem .8rem;font-size:.86rem}
@media (max-width:700px){.product-grid{grid-template-columns:1fr}.product-catalog-head,.product-card-footer{align-items:flex-start;flex-direction:column}.product-catalog-meta{white-space:normal}}
