:root {
	--color-bg: #f6f6f6;
	--color-surface: #ffffff;
	--color-surface-alt: #fbfbfb;
	--color-heading: #1f1f1f;
	--color-text: #4a4a4a;
	--color-text-muted: #767676;
	--color-border: #e8e8e8;
	--color-accent: #f26522;
	--color-accent-dark: #d9541a;
	--color-accent-soft: rgba(242, 101, 34, 0.1);
	--color-success: #27ae60;
	--color-danger: #c65252;
	--shadow-sm: 0 10px 26px rgba(31, 31, 31, 0.04);
	--shadow-md: 0 18px 40px rgba(31, 31, 31, 0.06);
	--radius-sm: 12px;
	--radius-md: 20px;
	--radius-lg: 28px;
	--container: 1280px;
	--font-base: "Manrope", "Segoe UI", sans-serif;
	--font-heading: "Onest", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-base);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	color: inherit;
}

textarea {
	resize: vertical;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

.container {
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto;
}

/* UI Kit Foundation */
:root {
	--color-accent: #F26522;
	--color-accent-dark: #D9541A;
	--color-heading: #1F1F1F;
	--color-text: #4A4A4A;
	--color-bg: #F6F6F6;
	--color-surface: #FFFFFF;
	--color-surface-alt: #F6F6F6;
	--color-success: #27AE60;
	--color-border: rgba(31, 31, 31, 0.08);
	--color-border-strong: rgba(31, 31, 31, 0.14);
	--color-overlay: rgba(31, 31, 31, 0.56);
	--color-accent-soft: rgba(242, 101, 34, 0.12);
	--shadow-xs: 0 4px 12px rgba(31, 31, 31, 0.04);
	--shadow-sm: 0 10px 24px rgba(31, 31, 31, 0.06);
	--shadow-md: 0 18px 40px rgba(31, 31, 31, 0.08);
	--shadow-lg: 0 26px 56px rgba(31, 31, 31, 0.1);
	--radius-xs: 10px;
	--radius-sm: 14px;
	--radius-md: 20px;
	--radius-lg: 28px;
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 20px;
	--space-6: 24px;
	--space-7: 32px;
	--space-8: 40px;
	--space-9: 56px;
	--container: 1280px;
	--font-base: "Manrope", "Segoe UI", sans-serif;
	--font-heading: "Onest", "Segoe UI", sans-serif;
}

html {
	font-size: 16px;
}

body {
	font-family: var(--font-base);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--color-heading);
}

p {
	margin: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

::selection {
	background: var(--color-accent-soft);
	color: var(--color-heading);
}

.container--narrow {
	width: min(calc(100% - 32px), 860px);
}

.site-main {
	padding-bottom: 72px;
}

.page-section,
.section,
.catalog-page,
.product-page {
	padding-top: 56px;
}

.section-heading,
.page-header {
	margin-bottom: 28px;
}

.section-title,
h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: var(--font-heading);
	line-height: 1.08;
	color: var(--color-heading);
}

h1 {
	font-size: clamp(2.2rem, 4vw, 4rem);
}

h2 {
	font-size: clamp(1.65rem, 3vw, 2.5rem);
}

h3 {
	font-size: 1.2rem;
}

p {
	margin: 0 0 1em;
}

.eyebrow {
	margin: 0 0 12px;
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.section-description,
.content-note,
.content-entry,
.page-meta {
	color: var(--color-text-muted);
}

.breadcrumbs,
.catalog-breadcrumbs {
	margin-bottom: 18px;
	color: var(--color-text-muted);
	font-size: 0.95rem;
}

.woocommerce-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.notice {
	margin-top: 18px;
	padding: 14px 18px;
	border-radius: 16px;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
}

.notice--success {
	border-color: rgba(47, 143, 87, 0.28);
	background: #eef8f2;
}

.notice--error {
	border-color: rgba(198, 82, 82, 0.26);
	background: #fff2f2;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.modal-open {
	overflow: hidden;
}

body.catalog-filters-open {
	overflow: hidden;
}
