:root {
	--bg: #0f1115;
	--surface: #1a1d24;
	--border: #2a2e37;
	--text: #e8e9ec;
	--text-dim: #9a9fac;
	--accent: #5b8def;
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.5;
}

header {
	padding: 1.5rem 2rem;
	border-bottom: 1px solid var(--border);
}

header h1 {
	margin: 0;
	font-size: 1.25rem;
}

header a {
	color: var(--text);
	text-decoration: none;
}

main {
	max-width: 960px;
	margin: 0 auto;
	padding: 2rem;
}

#product-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.product {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem;
}

.product h3 {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
}

.product p {
	margin: 0 0 0.5rem;
	color: var(--text-dim);
	font-size: 0.9rem;
}

.product .price {
	color: var(--accent);
	font-weight: 600;
	font-size: 1rem;
}
