/* Best Selling Products grid */
.best-selling-section { padding: 24px 16px; }
.best-selling-section .landing-merch-heading-copy { margin-bottom: 12px; }
.best-selling-grid { display: grid; gap: 12px; justify-content: center; }
/* Each card targets a fixed physical size of 3in x 3in as requested. Using minmax allows responsive columns. */
.best-selling-grid { grid-template-columns: repeat(auto-fit, minmax(2in, 1fr)); }
.best-selling-card { width: 2in; height: 2in; background-color:#eee; background-size:cover; background-position:center; border-radius:6px; overflow:hidden; display:flex; align-items:flex-end; box-shadow:0 6px 18px rgba(0,0,0,0.12); }
.best-selling-card .meta { background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%); color:#fff; width:100%; padding:8px; box-sizing:border-box; font-size:14px; }
.best-selling-card a{ display:block; width:100%; height:100%; color:inherit; text-decoration:none; }
@media (max-width: 480px){
	.best-selling-grid { gap:8px; grid-template-columns: repeat(auto-fit, minmax(1in, 1fr)); }
	.best-selling-card { width: 1in; height: 1in; max-width:1in; }
}
