:root {
	--roe-primary: #1568b8;
	--roe-primary-dark: #0d4a87;
	--roe-bg: #f7fafc;
	--roe-border: #e2e8f0;
	--roe-text: #1e293b;
	--roe-text-muted: #64748b;
	--roe-radius: 12px;
}

.roe-store, .roe-recommended-products {
	color: var(--roe-text);
}

/* --- Recommended products / product grid --- */
.roe-recommended-products {
	margin: 32px 0;
	padding: 24px;
	background: var(--roe-bg);
	border: 1px solid var(--roe-border);
	border-radius: var(--roe-radius);
}
.roe-recommended-products__title {
	margin: 0 0 16px 0;
	font-size: 20px;
	color: var(--roe-primary-dark);
}
.roe-recommended-products__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 18px;
}
.roe-recommended-products__view-all { margin-top: 16px; }
.roe-recommended-products__view-all a {
	color: var(--roe-primary);
	font-weight: 600;
	text-decoration: none;
}

/* --- Product card --- */
.roe-product-card {
	background: #fff;
	border: 1px solid var(--roe-border);
	border-radius: var(--roe-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .15s ease;
}
.roe-product-card:hover { box-shadow: 0 4px 14px rgba(21,104,184,.12); }
.roe-product-card__image-link { display: block; background: #fff; aspect-ratio: 1 / 1; }
.roe-product-card__image-link img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.roe-product-card__image-placeholder { width: 100%; height: 100%; background: #eef2f6; }
.roe-product-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; }
.roe-product-card__title { font-size: 15px; margin: 0; line-height: 1.35; }
.roe-product-card__brand { font-size: 12px; color: var(--roe-text-muted); margin: 0; }
.roe-product-card__desc { font-size: 13px; color: var(--roe-text-muted); margin: 0; }
.roe-product-card__best-for { font-size: 12px; margin: 0; }
.roe-product-card__cta {
	margin-top: 8px;
	display: inline-block;
	text-align: center;
	background: var(--roe-primary);
	color: #fff !important;
	padding: 9px 14px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}
.roe-product-card__cta:hover { background: var(--roe-primary-dark); }
.roe-product-card__disclaimer { font-size: 10px; color: #94a3b8; margin: 6px 0 0 0; line-height: 1.4; }

/* --- Store homepage / category --- */
.roe-store__hero { text-align: center; padding: 32px 16px; }
.roe-store__hero h1 { color: var(--roe-primary-dark); margin-bottom: 8px; }
.roe-store__section { margin: 40px 0; }
.roe-store__category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 14px;
}
.roe-store__category-card {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: #fff;
	border: 1px solid var(--roe-border);
	border-radius: var(--roe-radius);
	padding: 18px;
	text-decoration: none;
	color: var(--roe-text);
	font-weight: 600;
}
.roe-store__category-card:hover { border-color: var(--roe-primary); }
.roe-store__category-count { font-size: 12px; font-weight: 400; color: var(--roe-text-muted); }
.roe-store__article-list { list-style: disc; padding-left: 20px; }

/* --- Sidebar widgets --- */
.roe-widget-products { display: flex; flex-direction: column; gap: 10px; }
.roe-widget-product { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--roe-text); }
.roe-widget-product img { width: 44px; height: 44px; object-fit: contain; border: 1px solid var(--roe-border); border-radius: 6px; background: #fff; }
.roe-widget-product__title { font-size: 13px; }

@media (max-width: 480px) {
	.roe-recommended-products__grid, .roe-store__category-grid { grid-template-columns: repeat(2, 1fr); }
}
