/* Digital Hub — design tokens, see docs/design-tokens.md (snapshot from plati.market) */
:root {
	--color-bg: #f3f4f6;
	--color-surface: #ffffff;
	--color-header: #111927;
	--color-accent: #f59622;
	--color-accent-hover: #e08414;
	/* Donor uses TWO accents, not one: orange (--accent-500) is reserved for
	   nav/promo (Каталог button), blue (--brand-500) is the real "buy" color —
	   confirmed visually on live product/category/cart pages, not assumed. */
	--color-brand: #4884ff;
	--color-brand-hover: #3471ef;
	--color-text: #0b0d12;
	--color-text-secondary: #6c737f;
	--radius-card: 12px;
	--font-family: "Inter", sans-serif;
	/* Real value from donor's CSS: .block-container{max-width:1470px}
	   (first guessed 1600px from "looks narrow" — wrong, this is the actual
	   number, confirmed in /opt/papa.market/website/donor-reference/css/styles.min.css). */
	--content-max-width: 1470px;
}

/* Storefront's default .col-full caps content at ~1064px (66.5em) — reads as
   a narrow boxed column on real desktop monitors. plati.market runs a wider
   layout (1470px) — match that instead of either the Storefront "blog" width
   or an arbitrary wider guess. */
.col-full {
	max-width: var(--content-max-width) !important;
	/* Storefront's own .col-full is box-sizing:content-box, so its padding
	   (2.617924em/side) renders ON TOP of max-width — actual box ends up
	   ~84px wider than intended. Donor's Bootstrap-based layout uses
	   border-box (padding included in the width) — match that so 1470px
	   means the real rendered width, not 1470px + padding. */
	box-sizing: border-box !important;
}

body {
	background-color: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family);
	color: var(--color-text);
}

a {
	color: var(--color-text);
}

a:hover {
	color: var(--color-accent);
}
