.sap-grid-wrap { --sap-accent: #7c3aed; margin: 24px 0; }

.sap-filters { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.sap-filters select { padding: 8px 12px; border-radius: 8px; border: 1px solid #e2e2e2; }

.sap-product-grid {
	display: grid;
	grid-template-columns: repeat(var(--sap-columns, 4), 1fr);
	gap: 16px;
}
@media (max-width: 900px) { .sap-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sap-product-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.sap-product-card {
	display: block;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,.08);
	text-decoration: none;
	color: inherit;
	transition: transform .15s ease, box-shadow .15s ease;
}
.sap-product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.sap-product-image { aspect-ratio: 1 / 1; background: #f5f5f7; }
.sap-product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sap-product-info { padding: 12px; }
.sap-product-name { font-size: 14px; font-weight: 600; margin: 0 0 6px; line-height: 1.3; max-height: 2.6em; overflow: hidden; }
.sap-product-price { color: #e11d48; font-weight: 700; font-size: 16px; }
.sap-product-sold { font-size: 12px; color: #888; margin-top: 2px; }
.sap-shop-now {
	display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 600;
	color: var(--sap-accent); border: 1px solid var(--sap-accent); border-radius: 999px; padding: 4px 10px;
}

.sap-product-row { margin: 28px 0; }
.sap-row-title { font-size: 18px; margin-bottom: 12px; }
.sap-row-badge {
	background: var(--sap-accent); color: #fff; padding: 6px 16px; border-radius: 999px; font-size: 14px;
}
.sap-row-scroll { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x mandatory; }
.sap-card-sm { flex: 0 0 160px; scroll-snap-align: start; }
.sap-card-sm .sap-product-image { aspect-ratio: 1/1; }

.sap-search-bar { position: relative; max-width: 480px; }
.sap-search-input { width: 100%; padding: 10px 16px; border-radius: 999px; border: 1px solid #ddd; }
.sap-search-results {
	position: absolute; top: 100%; left: 0; right: 0; background: #fff;
	border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.15); margin-top: 6px; z-index: 20;
}

.sap-no-products { text-align: center; padding: 40px 0; color: #888; }
