/* ==========================================================================
   DESIGN TOKENS — START
   ========================================================================== */

:root {
	color-scheme: only light;

	--container-wide: 1440px;
	--container-main: 1280px;
	--container-narrow: 880px;
	--page-gutter: clamp(16px, 3vw, 48px);
	--color-page-bg: #fbfaf8;
	--color-section-warm: #f8f1eb;
	--color-surface: #ffffff;
	--color-control-bg: var(--color-surface);
	--color-border-card: #e7c8a6;
	--color-border-control: #ded5c8;
	--color-divider: #e8dfd4;
	--color-border-dark: rgb(255 255 255 / 30%);
	--color-text-strong: #332f2b;
	--color-text: #47413b;
	--color-text-muted: #706961;
	--color-orange: #f4ad2f;
	--color-orange-dark: #d98d14;
	--color-orange-soft: #fff4e3;
	--color-green: #347348;
	--color-green-dark: #275a37;
	--color-header-bg: #3e271a;
	--color-nav-bg: #2d1c13;
	--color-header-foreground: #fff8ed;
	--color-header-muted: #d8c9b9;
	--color-graphite-soft: var(--color-text);
	--color-beige: #f4ede1;
	--color-beige-deep: #e8dcc9;
	--color-content: #fffdfa;
	--color-header-text: #292724;
	--radius-control: 6px;
	--radius-card: 8px;
	--radius-panel: 10px;
	--radius-ui: 10px;
	--radius-round: 999px;
}

/* ==========================================================================
   DESIGN TOKENS — END
   ========================================================================== */

/* ==========================================================================
   BASE — START
   ========================================================================== */

html {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}

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

body {
	width: 100%;
	min-width: 0;
	margin: 0;
	overflow-x: clip;
	font-family: Arial, sans-serif;
	color: var(--color-text);
	background: var(--color-page-bg);
}

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

a {
	color: inherit;
}

/* ==========================================================================
   BASE — END
   ========================================================================== */

/* ==========================================================================
   FORM CONTROLS — START
   ========================================================================== */

.consultation-section__form :is(input[type="text"], input[type="tel"], input[type="email"], input[type="url"], textarea, select),
.contact-form-modal__form :is(input[type="text"], input[type="tel"], input[type="email"], input[type="url"], textarea, select),
.catalog-sidebar__search-field {
	color: var(--color-text);
	background: var(--color-control-bg);
	border: 1px solid var(--color-border-control);
	border-radius: var(--radius-control);
}

.consultation-section__form :is(input[type="text"], input[type="tel"], input[type="email"], input[type="url"], textarea)::placeholder,
.contact-form-modal__form :is(input[type="text"], input[type="tel"], input[type="email"], input[type="url"], textarea)::placeholder,
.catalog-sidebar__search-field::placeholder {
	color: var(--color-text-muted);
	opacity: 1;
}

.consultation-section__form :is(input[type="text"], input[type="tel"], input[type="email"], input[type="url"], textarea, select):-webkit-autofill,
.contact-form-modal__form :is(input[type="text"], input[type="tel"], input[type="email"], input[type="url"], textarea, select):-webkit-autofill,
.catalog-sidebar__search-field:-webkit-autofill {
	-webkit-text-fill-color: var(--color-text);
	caret-color: var(--color-text);
	box-shadow: 0 0 0 1000px var(--color-control-bg) inset;
}

/* ========================================================================== 
   FORM CONTROLS — END
   ========================================================================== */

/* ========================================================================== 
   PRODUCT SEARCH AUTOCOMPLETE — START
   ========================================================================== */

.product-search-autocomplete {
	position: relative;
	width: 100%;
	min-width: 0;
}

.product-search-autocomplete__panel {
	position: absolute;
	z-index: 50;
	top: calc(100% + 6px);
	inset-inline: 0;
	display: flex;
	max-height: min(420px, calc(100vh - 120px));
	min-width: 0;
	overflow: hidden;
	flex-direction: column;
	color: var(--color-text);
	background: var(--color-surface);
	border: 1px solid var(--color-border-control);
	border-radius: var(--radius-ui);
	box-shadow: 0 12px 30px rgb(62 39 26 / 16%);
}

.product-search-autocomplete__panel[hidden] {
	display: none;
}

.product-search-autocomplete__status {
	padding: 14px 16px;
	color: var(--color-text-muted);
	font-size: 0.9rem;
	line-height: 1.4;
}

.product-search-autocomplete__status:empty {
	display: none;
}

.product-search-autocomplete__list {
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 6px;
}

.product-search-autocomplete__option {
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 72px;
	padding: 8px;
	color: var(--color-text-strong);
	border-radius: calc(var(--radius-ui) - 3px);
	text-decoration: none;
	touch-action: manipulation;
	transition: color 0.18s ease, background-color 0.18s ease;
}

.product-search-autocomplete__option:hover,
.product-search-autocomplete__option:focus-visible,
.product-search-autocomplete__option.is-active {
	color: var(--color-text-strong);
	background: var(--color-orange-soft);
	text-decoration: none;
}

.product-search-autocomplete__option:focus-visible,
.product-search-autocomplete__all:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: -3px;
}

.product-search-autocomplete__profile {
	display: grid;
	width: 68px;
	height: 54px;
	overflow: hidden;
	color: var(--color-text-muted);
	background: var(--color-page-bg);
	border: 1px solid var(--color-divider);
	border-radius: calc(var(--radius-ui) - 3px);
	place-items: center;
}

.product-search-autocomplete__profile img {
	width: 100%;
	height: 100%;
	padding: 5px;
	object-fit: contain;
}

.product-search-autocomplete__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
}

.product-search-autocomplete__placeholder svg {
	width: 48px;
	height: 32px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.product-search-autocomplete__copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 4px;
}

.product-search-autocomplete__title {
	display: -webkit-box;
	overflow: hidden;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.3;
	overflow-wrap: anywhere;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.product-search-autocomplete__match {
	color: var(--color-orange-dark);
}

.product-search-autocomplete__attribute {
	display: block;
	color: var(--color-text-muted);
	font-size: 0.82rem;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.product-search-autocomplete__all {
	display: flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	color: var(--color-orange-dark);
	border-top: 1px solid var(--color-divider);
	font-size: 0.9rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transition: color 0.18s ease, background-color 0.18s ease;
}

.product-search-autocomplete__all[hidden] {
	display: none;
}

.product-search-autocomplete__all:hover {
	color: var(--color-orange-dark);
	background: var(--color-orange-soft);
	text-decoration: none;
}

.mobile-navigation__search-autocomplete {
	margin: 0 0 14px;
}

.mobile-navigation__search-autocomplete .mobile-navigation__search {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.mobile-navigation__search-autocomplete .product-search-autocomplete__panel {
		max-height: min(52vh, 360px);
		max-height: min(52dvh, 360px);
	}

	.product-search-autocomplete__option {
		grid-template-columns: 62px minmax(0, 1fr);
		min-height: 68px;
		gap: 10px;
	}

	.product-search-autocomplete__profile {
		width: 62px;
		height: 50px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.product-search-autocomplete__option,
	.product-search-autocomplete__all {
		transition: none;
	}
}

/* ========================================================================== 
   PRODUCT SEARCH AUTOCOMPLETE — END
   ========================================================================== */

/* ========================================================================== 
   BUTTONS — START
   ========================================================================== */

.site-button,
.consultation-section__form .wpcf7-submit,
.contact-form-modal__form .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-ui);
	font-family: inherit;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.site-button {
	min-height: 48px;
	padding: 12px 22px;
	font-size: 0.95rem;
}

.site-button--primary,
.consultation-section__form .wpcf7-submit,
.contact-form-modal__form .wpcf7-submit {
	color: #fff;
	background: var(--color-orange);
}

.site-button--primary:hover,
.consultation-section__form .wpcf7-submit:not(:disabled):not([disabled]):hover,
.contact-form-modal__form .wpcf7-submit:not(:disabled):not([disabled]):hover {
	color: #fff;
	background: var(--color-orange-dark);
	border-color: var(--color-orange-dark);
	text-decoration: none;
}

.site-button--outline {
	color: var(--color-orange);
	background: transparent;
	border: 2px solid var(--color-orange);
}

.site-button--outline:hover {
	color: var(--color-orange-dark);
	background: var(--color-orange-soft);
	border-color: var(--color-orange-dark);
	text-decoration: none;
}

.site-button:focus-visible,
.consultation-section__form .wpcf7-submit:focus-visible,
.contact-form-modal__form .wpcf7-submit:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

/* ==========================================================================
   BUTTONS — END
   ========================================================================== */

/* ========================================================================== 
   ACTION LINKS — START
   ========================================================================== */

.site-action-link {
	display: inline-flex;
	align-items: center;
	color: var(--color-orange-dark);
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-action-link:hover {
	color: var(--color-text-strong);
}

.site-action-link:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

/* ========================================================================== 
   ACTION LINKS — END
   ========================================================================== */

/* ========================================================================== 
   NAVIGATION ARROWS — START
   ========================================================================== */

.navigation-arrow {
	--navigation-arrow-x: -4px;
	--navigation-arrow-y: 0;
	--navigation-arrow-rotation: 0deg;

	gap: 10px;
}

.navigation-arrow::after {
	width: 18px;
	height: 18px;
	content: "";
	background-color: currentcolor;
	flex: 0 0 18px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	transform: translate(var(--navigation-arrow-x), var(--navigation-arrow-y)) rotate(var(--navigation-arrow-rotation));
	transition: transform 180ms ease-out;
}

.navigation-arrow--back {
	--navigation-arrow-x: 4px;
	--navigation-arrow-rotation: 180deg;
}

.navigation-arrow--back::after {
	order: -1;
}

.navigation-arrow--down {
	--navigation-arrow-x: 0;
	--navigation-arrow-y: -4px;
	--navigation-arrow-rotation: 90deg;
}

.navigation-arrow:is(:hover, :focus-visible)::after {
	transform: translate(0, 0) rotate(var(--navigation-arrow-rotation));
}

@media (prefers-reduced-motion: reduce) {
	.navigation-arrow::after {
		transition: none;
	}
}

/* ========================================================================== 
   NAVIGATION ARROWS — END
   ========================================================================== */

/* ========================================================================== 
   LAYOUT — START
   ========================================================================== */

.container-wide,
.container,
.container-narrow {
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--page-gutter);
}

.container-wide {
	max-width: calc(var(--container-wide) + (var(--page-gutter) * 2));
}

.container {
	max-width: calc(var(--container-main) + (var(--page-gutter) * 2));
}

.container-narrow {
	max-width: calc(var(--container-narrow) + (var(--page-gutter) * 2));
}

.layout-grid {
	display: grid;
}

.page-shell,
.catalog-page-shell {
	padding-block: clamp(32px, 3.2vw, 40px) clamp(44px, 5vw, 72px);
}

.page-layout,
.catalog-layout-grid {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
	gap: clamp(28px, 2.2vw, 32px);
}

.page-layout__main,
.product-catalog__main {
	min-width: 0;
}

.site-surface {
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-ui);
}

.site-panel,
.info-card,
.contacts-page__panel,
.contacts-page__location {
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-ui);
}

.site-card {
	overflow: hidden;
	background: var(--color-surface);
	border: 1px solid var(--color-border-card);
	border-radius: var(--radius-card);
}

.product-card,
.news-card {
	display: flex;
	min-width: 0;
	height: 100%;
	flex-direction: column;
}

.info-notice,
.wp-block-vector-catalog-cta {
	background: var(--color-section-warm);
	border: 1px solid var(--color-border-card);
	border-radius: var(--radius-panel);
}

.page-surface,
.catalog-surface {
	padding: clamp(20px, 2.6vw, 20px);
}

.site-breadcrumbs {
	margin-bottom: 16px;
	overflow-wrap: anywhere;
	color: var(--color-text-muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

.site-breadcrumbs__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-breadcrumbs__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.site-breadcrumbs__item + .site-breadcrumbs__item::before {
	width: 1em;
	height: 1em;
	content: "";
	background-color: currentcolor;
	flex: 0 0 1em;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-breadcrumbs a {
	color: var(--color-orange-dark);
	text-decoration: none;
}

.site-breadcrumbs a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.site-breadcrumbs a:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.page-title {
	margin: 0;
	color: var(--color-text-strong);
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.08;
}

.page-title--compact {
	overflow-wrap: anywhere;
	font-size: clamp(1.65rem, 2.5vw, 2.5rem);
	line-height: 1.12;
}

.site-section-title {
	margin: 0;
	color: var(--color-text-strong);
	font-size: clamp(1.8rem, 3vw, 2.75rem);
	line-height: 1.1;
}

.site-prose :where(h2, h3) {
	color: var(--color-text-strong);
	line-height: 1.25;
}

.site-prose :where(h2) {
	margin: 1.6em 0 0.65em;
	font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.site-prose :where(h3) {
	margin: 1.4em 0 0.6em;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
}

@media (max-width: 1199px) {
	.page-layout,
	.catalog-layout-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

.site-header,
.primary-navigation,
.site-main--front,
.home-hero {
	width: 100%;
	max-width: none;
	margin: 0;
}

/* ==========================================================================
   LAYOUT — END
   ========================================================================== */

/* ==========================================================================
   PAGE TRANSITIONS — START
   ========================================================================== */

@view-transition {
	navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
	animation-duration: 100ms;
	animation-timing-function: ease;
	animation-fill-mode: both;
}

::view-transition-old(root) {
	animation-name: page-fade-out;
}

::view-transition-new(root) {
	animation-name: page-fade-in;
}

@keyframes page-fade-out {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes page-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	::view-transition-old(root),
	::view-transition-new(root) {
		animation-duration: 1ms;
	}
}

/* ==========================================================================
   PAGE TRANSITIONS — END
   ========================================================================== */

/* ==========================================================================
   ACCESSIBILITY — START
   ========================================================================== */

body.menu-open {
	overflow: hidden;
}

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

.skip-link {
	position: fixed;
	z-index: 100000;
	top: 12px;
	left: 12px;
	padding: 12px 18px;
	color: #fff;
	background: var(--color-header-bg);
	border: 2px solid var(--color-orange);
	border-radius: var(--radius-control);
	transform: translateY(-180%);
	transition: transform 0.2s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

/* ==========================================================================
   ACCESSIBILITY — END
   ========================================================================== */

/* ==========================================================================
   COLLAPSIBLE — START
   ========================================================================== */

[data-collapsible-wrapper] {
	min-width: 0;
}

[data-collapsible-description].is-animating [data-collapsible-wrapper] {
	overflow: hidden;
	transition: height 350ms ease;
}

[data-collapsible-content] > .is-last-visible {
	margin-bottom: 0;
}

.collapsible__ellipsis {
	display: block;
	margin-top: 8px;
	color: var(--color-text-muted);
	font-size: 1.2rem;
	line-height: 1;
}

.collapsible__ellipsis[hidden] {
	display: none;
}

.collapsible__toggle {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	width: 100%;
	min-width: 0;
	min-height: 44px;
	margin: 6px 0 0;
	padding: 6px 0;
	color: var(--color-orange-dark);
	background: transparent;
	border: 0;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	cursor: pointer;
	transition: color 0.18s ease;
}

.collapsible__toggle::before {
	order: 2;
	min-width: 0;
	border-top: 1px dashed var(--color-orange);
	content: "";
	flex: 1 1 auto;
}

.collapsible__toggle::after {
	order: 1;
	width: 9px;
	height: 9px;
	content: "";
	flex: 0 0 9px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.18s ease;
}

.collapsible__toggle[aria-expanded="true"]::after {
	transform: rotate(225deg);
}

.collapsible__toggle:hover {
	color: var(--color-text-strong);
}

.collapsible__toggle:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.collapsible__toggle[hidden] {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	[data-collapsible-description].is-animating [data-collapsible-wrapper] {
		transition: none;
	}

	.collapsible__toggle::after {
		transition: none;
	}
}

/* ==========================================================================
   COLLAPSIBLE — END
   ========================================================================== */

/* ==========================================================================
   HEADER — START
   ========================================================================== */

.site-header {
	position: relative;
	z-index: 20;
	color: var(--color-header-foreground);
	background: var(--color-header-bg);
	border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(24px, 4vw, 64px);
	padding-block: 10px;
}

.site-branding {
	width: clamp(280px, 34vw, 460px);
	max-width: 100%;
	min-width: 0;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
	width: 100%;
	max-width: 100%;
	min-height: 44px;
	flex-shrink: 0;
}

.custom-logo {
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: 84px;
	object-fit: contain;
}

.site-header__contacts {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	gap: clamp(18px, 2.5vw, 36px);
	max-width: none;
}

.site-header__primary-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 1px;
	min-width: 0;
}

.header-hours {
	color: var(--color-header-muted);
	font-size: 0.76rem;
	line-height: 1.25;
	white-space: nowrap;
}

.header-phone,
.header-messengers a,
.menu-toggle,
.mobile-search-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	border-radius: var(--radius-control);
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.header-phone {
	padding-inline: 0;
	color: var(--color-header-foreground);
	font-size: clamp(1.25rem, 1.65vw, 1.55rem);
	font-weight: 700;
	line-height: 1.1;
	white-space: nowrap;
}

.header-messengers {
	display: flex;
	align-items: center;
	gap: 6px;
}

.header-messengers a {
	gap: 6px;
	padding-inline: 10px;
	color: var(--color-header-foreground);
	background: rgb(255 255 255 / 8%);
	border: 1px solid var(--color-border-dark);
	font-size: 0.78rem;
	font-weight: 700;
}

.header-messengers--desktop {
	flex: 0 0 auto;
}

.header-messengers--desktop a {
	width: 44px;
	padding: 0;
	border-radius: var(--radius-round);
}

.messenger-link--telegram svg,
.messenger-link--max svg {
	color: currentColor;
}

.header-callback {
	min-width: 44px;
	min-height: 44px;
	padding-inline: 16px;
	box-shadow: 0 5px 14px rgb(244 173 47 / 18%);
	font-size: 0.82rem;
	white-space: nowrap;
}

.header-phone:hover,
.header-messengers a:hover {
	color: #ffd083;
}

.header-messengers a:hover {
	color: #fff;
	background: rgb(255 255 255 / 14%);
	border-color: var(--color-border-dark);
}

.site-header a:focus-visible,
.site-header button:focus-visible {
	outline: 3px solid #f59e0b;
	outline-offset: 3px;
}

.site-header__mobile-actions {
	display: none;
}

.site-header__mobile-contact-row {
	display: none;
}

@media (max-width: 1279px) and (min-width: 1101px) {
	.site-header__inner {
		gap: 24px;
	}

	.site-branding {
		width: clamp(280px, 30vw, 360px);
	}

	.site-header__contacts {
		gap: 18px;
	}

	.header-hours {
		font-size: 0.7rem;
	}

	.header-phone {
		font-size: 1.25rem;
	}
}

@media (max-width: 1100px) {
.site-header__inner {
		position: relative;
		z-index: 3;
		display: flex;
		min-height: 62px;
		gap: 10px;
		padding-block: 8px;
	}

	.site-branding {
		width: auto;
		flex: 1 1 auto;
	}

	.custom-logo {
		max-width: min(240px, calc(100vw - 106px));
		max-height: 48px;
	}

	.custom-logo-link {
		width: auto;
		max-width: min(240px, calc(100vw - 106px));
	}

	.site-header__contacts {
		display: none;
	}

.site-header__mobile-contact-row {
		display: block;
		background: var(--color-nav-bg);
		border-top: 1px solid rgb(255 255 255 / 10%);
	}

	.site-header__mobile-contact-inner {
		display: flex;
		min-height: 54px;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		padding-block: 5px;
	}

	.header-phone--mobile {
		min-width: 0;
		min-height: 44px;
		font-size: clamp(1rem, 4.8vw, 1.2rem);
	}

	.header-messengers--mobile {
		flex: 0 0 auto;
		gap: 6px;
		margin-left: auto;
	}

	.header-messengers--mobile a {
		width: 44px;
		padding: 0;
		color: var(--color-header-foreground);
		background: rgb(255 255 255 / 8%);
		border-color: var(--color-border-dark);
		border-radius: var(--radius-round);
	}

	.header-messengers--mobile a:hover {
		background: rgb(255 255 255 / 14%);
		border-color: var(--color-border-dark);
	}
}

@media (max-width: 767px) {
	.site-header__mobile-actions {
		display: flex;
		align-items: center;
		gap: 6px;
		flex: 0 0 auto;
	}

	.custom-logo,
	.custom-logo-link {
		max-width: min(210px, calc(100vw - 156px));
	}
}

@media (max-width: 420px) {
	.custom-logo {
		max-width: min(190px, calc(100vw - 150px));
		max-height: 42px;
	}

	.custom-logo-link {
		max-width: min(190px, calc(100vw - 150px));
	}
}

/* ==========================================================================
   HEADER — END
   ========================================================================== */

/* ==========================================================================
   PRIMARY NAVIGATION — START
   ========================================================================== */

.mobile-menu-backdrop {
	display: none;
}

.menu-toggle,
.mobile-search-toggle {
	padding: 0;
	color: var(--color-text-strong);
	background: var(--color-beige);
	border: 1px solid var(--color-border-control);
	cursor: pointer;
}

.mobile-search-toggle svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}

.primary-navigation {
	color: #fff;
	background: var(--color-nav-bg);
	border-top: 1px solid rgb(255 255 255 / 8%);
}

.primary-navigation__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.primary-navigation__menu {
	display: flex;
	flex-wrap: wrap;
	flex: 1 1 auto;
	min-width: 0;
	gap: 2px 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation__menu li {
	position: relative;
}

.primary-navigation__menu a {
	display: flex;
	align-items: center;
	min-height: 42px;
	padding-inline: 13px;
	border-radius: 0;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.primary-navigation__menu a:hover,
.primary-navigation__menu a:focus-visible,
.primary-navigation__menu .current-menu-item > a,
.primary-navigation__menu .current-menu-ancestor > a {
	color: #fff;
	background: var(--color-header-bg);
	box-shadow: inset 0 -3px 0 var(--color-orange);
}

.primary-navigation__menu .menu-item-has-children > a::after {
	width: 7px;
	height: 7px;
	margin: -4px 0 0 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: rotate(45deg);
}

.primary-navigation__menu .sub-menu {
	position: absolute;
	top: calc(100% - 2px);
	left: 0;
	z-index: 30;
	display: none;
	width: max-content;
	min-width: 220px;
	max-width: min(320px, calc(100vw - 32px));
	margin: 0;
	padding: 7px;
	color: var(--color-header-text);
	background: var(--color-content);
	border: 1px solid var(--color-border-control);
	border-radius: var(--radius-panel);
	box-shadow: 0 14px 30px rgb(39 33 27 / 18%);
	list-style: none;
}

.primary-navigation__menu .sub-menu a {
	min-height: 44px;
	border-radius: var(--radius-control);
	font-weight: 500;
}

.primary-navigation__menu .sub-menu a:hover,
.primary-navigation__menu .sub-menu a:focus-visible,
.primary-navigation__menu .sub-menu .current-menu-item > a {
	color: var(--color-green-dark);
	background: var(--color-beige);
	box-shadow: none;
}

.primary-navigation__menu li:hover > .sub-menu,
.primary-navigation__menu li:focus-within > .sub-menu {
	display: block;
}

.primary-navigation__menu .sub-menu .sub-menu {
	top: 0;
	left: 100%;
}

@media (min-width: 1101px) {
	.primary-navigation__inner {
		justify-content: flex-end;
	}

	.primary-navigation__menu {
		flex: 0 1 auto;
		justify-content: flex-end;
		margin-left: auto;
		gap: 4px 10px;
	}

	.primary-navigation__menu > li > a {
		min-height: 58px;
		padding-inline: 16px;
		font-size: 1rem;
		font-weight: 700;
		letter-spacing: 0.015em;
		text-transform: uppercase;
	}

	.header-messengers--desktop {
		margin-left: 14px;
		gap: 8px;
	}

	.header-messengers--desktop a {
		color: #fff;
	}
}

@media (max-width: 1100px) {
	.header-messengers--desktop {
		display: none;
	}
}

@media (max-width: 767px) {
	.menu-toggle {
		color: var(--color-nav-bg);
		background: var(--color-orange);
		border-color: var(--color-orange);
	}

	.menu-toggle:hover {
		background: var(--color-orange-dark);
		border-color: var(--color-orange-dark);
	}

	.primary-navigation {
		display: none;
	}
}

/* ==========================================================================
   PRIMARY NAVIGATION — END
   ========================================================================== */

/* ==========================================================================
   MOBILE NAVIGATION — START
   ========================================================================== */

.mobile-navigation,
.mobile-navigation-fallback {
	display: none;
}

@media (max-width: 767px) {
	.mobile-navigation {
		position: fixed;
		z-index: 99998;
		top: 0;
		right: 0;
		display: block;
		width: min(100%, 420px);
		height: 100dvh;
		max-width: 100%;
		color: var(--color-text);
		background: var(--color-surface);
		box-shadow: -18px 0 44px rgb(15 10 7 / 24%);
		visibility: hidden;
		opacity: 0;
		transform: translateX(100%);
		transition: transform 280ms ease, opacity 220ms ease, visibility 0s linear 280ms;
	}

	.admin-bar .mobile-navigation {
		top: 46px;
		height: calc(100dvh - 46px);
	}

	.mobile-navigation.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateX(0);
		transition-delay: 0s;
	}

	.mobile-navigation__shell {
		display: flex;
		height: 100%;
		min-height: 0;
		flex-direction: column;
	}

	.mobile-navigation__header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		min-height: 72px;
		padding: max(10px, env(safe-area-inset-top)) 18px 10px;
		color: var(--color-header-foreground);
		background: var(--color-header-bg);
		border-bottom: 1px solid var(--color-border-dark);
		flex: 0 0 auto;
	}

	.mobile-navigation__branding {
		min-width: 0;
		flex: 1 1 auto;
	}

	.mobile-navigation__branding .custom-logo-link {
		width: auto;
		max-width: min(230px, calc(100vw - 94px));
	}

	.mobile-navigation__branding .custom-logo {
		width: auto;
		max-width: 100%;
		max-height: 46px;
	}

	.mobile-navigation__close,
	.mobile-navigation__back {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 44px;
		min-height: 44px;
		margin: 0;
		padding: 0;
		font: inherit;
		cursor: pointer;
	}

	.mobile-navigation__close {
		color: var(--color-header-foreground);
		background: rgb(255 255 255 / 8%);
		border: 1px solid var(--color-border-dark);
		border-radius: var(--radius-round);
	}

	.mobile-navigation__close:hover {
		background: rgb(255 255 255 / 15%);
	}

	.mobile-navigation__close svg,
	.mobile-navigation__back svg {
		display: block;
		width: 22px;
		height: 22px;
		fill: none;
		stroke: currentColor;
		stroke-width: 2;
		stroke-linecap: round;
		stroke-linejoin: round;
	}

	.mobile-navigation__viewport {
		position: relative;
		min-height: 0;
		overflow: hidden;
		flex: 1 1 auto;
	}

	.mobile-navigation__screen {
		position: absolute;
		inset: 0;
		min-width: 0;
		padding: 18px 18px max(24px, env(safe-area-inset-bottom));
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		transition: transform 280ms ease, opacity 220ms ease, visibility 0s linear 280ms;
	}

	.mobile-navigation__screen--main {
		transform: translateX(0);
	}

	.mobile-navigation__screen--catalog {
		visibility: hidden;
		opacity: 0;
		transform: translateX(100%);
	}

	.mobile-navigation.is-catalog .mobile-navigation__screen--main {
		visibility: hidden;
		opacity: 0;
		transform: translateX(-100%);
	}

	.mobile-navigation.is-catalog .mobile-navigation__screen--catalog {
		visibility: visible;
		opacity: 1;
		transform: translateX(0);
		transition-delay: 0s;
	}

	.mobile-navigation__search {
		display: flex;
		align-items: stretch;
		width: 100%;
		min-width: 0;
		margin: 0;
	}

	.mobile-navigation__search-field {
		flex: 1 1 0;
		width: auto;
		min-width: 0;
		min-height: 50px;
		margin: 0;
		padding: 10px 13px;
		color: var(--color-text);
		background: var(--color-control-bg);
		border: 1px solid var(--color-border-control);
		border-right: 0;
		border-radius: var(--radius-ui) 0 0 var(--radius-ui);
		font: inherit;
		font-size: 1rem;
		appearance: none;
	}

	.mobile-navigation__search-field:focus {
		position: relative;
		z-index: 1;
		border-color: var(--color-orange);
		box-shadow: inset 0 0 0 1px var(--color-orange);
		outline: none;
	}

	.mobile-navigation__search-submit {
		display: grid;
		width: 50px;
		min-height: 50px;
		margin: 0;
		padding: 0;
		color: #fff;
		background: var(--color-orange);
		border: 1px solid var(--color-orange);
		border-radius: 0 var(--radius-ui) var(--radius-ui) 0;
		cursor: pointer;
		place-items: center;
		flex: 0 0 50px;
	}

	.mobile-navigation__search-submit:hover {
		background: var(--color-orange-dark);
		border-color: var(--color-orange-dark);
	}

	.mobile-navigation__search-submit svg {
		display: block;
		width: 22px;
		height: 22px;
		fill: none;
		stroke: currentColor;
		stroke-width: 2;
		stroke-linecap: round;
	}

	.mobile-navigation__menu,
	.mobile-navigation__catalog-list {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.mobile-navigation__menu li + li,
	.mobile-navigation__catalog-list li + li {
		border-top: 1px solid var(--color-divider);
	}

	.mobile-navigation__menu-link,
	.mobile-navigation__catalog-link {
		display: flex;
		align-items: center;
		gap: 12px;
		width: 100%;
		min-width: 0;
		min-height: 50px;
		margin: 0;
		padding: 10px 8px;
		box-sizing: border-box;
		color: var(--color-text-strong);
		background: transparent;
		border: 0;
		border-radius: var(--radius-control);
		font: inherit;
		font-size: 0.98rem;
		font-weight: 600;
		line-height: 1.35;
		text-align: left;
		text-decoration: none;
		cursor: pointer;
		transition: color 180ms ease, background-color 180ms ease;
	}

	.mobile-navigation__menu-link:hover,
	.mobile-navigation__catalog-link:hover {
		color: var(--color-orange-dark);
		background: var(--color-orange-soft);
	}

	.mobile-navigation__menu-link.is-current,
	.mobile-navigation__catalog-link.is-current,
	.mobile-navigation__catalog-link.is-active-path {
		color: var(--color-orange-dark);
		background: transparent;
		font-weight: 700;
	}

	.mobile-navigation__chevron {
		width: 8px;
		height: 8px;
		margin-left: auto;
		border-top: 2px solid currentColor;
		border-right: 2px solid currentColor;
		flex: 0 0 8px;
		transform: rotate(45deg);
	}

	.mobile-navigation__wholesale {
		display: flex;
		align-items: center;
		gap: 13px;
		min-height: 72px;
		margin-top: 18px;
		padding: 13px 15px;
		box-sizing: border-box;
		color: #fff;
		background: var(--color-orange);
		border-radius: var(--radius-ui);
		text-decoration: none;
		transition: background-color 180ms ease;
	}

	.mobile-navigation__wholesale:hover {
		color: #fff;
		background: var(--color-orange-dark);
	}

	.mobile-navigation__wholesale-icon {
		display: grid;
		width: 38px;
		height: 38px;
		border-radius: var(--radius-round);
		background: rgb(255 255 255 / 15%);
		place-items: center;
		flex: 0 0 38px;
	}

	.mobile-navigation__wholesale svg,
	.mobile-navigation__contact-row svg {
		display: block;
		width: 22px;
		height: 22px;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.8;
		stroke-linecap: round;
		stroke-linejoin: round;
	}

	.mobile-navigation__wholesale strong,
	.mobile-navigation__wholesale small {
		display: block;
	}

	.mobile-navigation__wholesale strong {
		font-size: 0.97rem;
		line-height: 1.25;
	}

	.mobile-navigation__wholesale small {
		margin-top: 3px;
		font-size: 0.75rem;
		line-height: 1.3;
		opacity: 0.9;
	}

	.mobile-navigation__contacts {
		display: grid;
		gap: 10px;
		margin-top: 20px;
		padding-top: 18px;
		border-top: 1px solid var(--color-divider);
	}

	.mobile-navigation__messengers {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}

	.mobile-navigation__messengers a {
		display: inline-flex;
		align-items: center;
		gap: 7px;
		min-height: 44px;
		padding: 7px 12px;
		color: var(--color-text-strong);
		background: var(--color-section-warm);
		border: 1px solid var(--color-border-card);
		border-radius: var(--radius-ui);
		font-size: 0.88rem;
		font-weight: 700;
		text-decoration: none;
	}

	.mobile-navigation__messengers svg {
		display: block;
		width: 21px;
		height: 21px;
	}

	.mobile-navigation__contact-row {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		min-width: 0;
		margin: 0;
		padding: 4px 2px;
		color: var(--color-text);
		font-size: 0.9rem;
		line-height: 1.45;
		text-decoration: none;
	}

	.mobile-navigation__contact-row span {
		min-width: 0;
		overflow-wrap: anywhere;
	}

	.mobile-navigation__contact-row svg {
		margin-top: 1px;
		color: var(--color-orange-dark);
		flex: 0 0 22px;
	}

	.mobile-navigation__catalog-header {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 8px 14px;
		padding-bottom: 14px;
		border-bottom: 1px solid var(--color-divider);
	}

	.mobile-navigation__back {
		justify-content: flex-start;
		gap: 5px;
		width: fit-content;
		padding: 4px 6px 4px 0;
		color: var(--color-orange-dark);
		background: transparent;
		border: 0;
		font-weight: 700;
	}

	.mobile-navigation__catalog-title {
		grid-column: 1 / -1;
		grid-row: 2;
		margin: 0;
		color: var(--color-text-strong);
		font-size: clamp(1.3rem, 6vw, 1.65rem);
		font-weight: 700;
		line-height: 1.2;
		overflow-wrap: anywhere;
	}

	.mobile-navigation__catalog-all {
		grid-column: 2;
		grid-row: 1;
		color: var(--color-orange-dark);
		font-size: 0.88rem;
		font-weight: 700;
		text-underline-offset: 3px;
	}

	.mobile-navigation__catalog-nav {
		margin-top: 8px;
	}

	.mobile-navigation__catalog-link span:first-child {
		min-width: 0;
		overflow-wrap: anywhere;
	}

	.mobile-navigation__empty {
		margin: 18px 0 0;
		color: var(--color-text-muted);
		font-size: 0.92rem;
	}

	.mobile-navigation__close:focus-visible,
	.mobile-navigation__back:focus-visible,
	.mobile-navigation__search-submit:focus-visible,
	.mobile-navigation__menu-link:focus-visible,
	.mobile-navigation__catalog-link:focus-visible,
	.mobile-navigation__wholesale:focus-visible,
	.mobile-navigation__messengers a:focus-visible,
	.mobile-navigation__contact-row:focus-visible,
	.mobile-navigation__catalog-all:focus-visible {
		outline: 3px solid var(--color-orange);
		outline-offset: 2px;
	}

	.mobile-navigation__backdrop {
		position: fixed;
		z-index: 99997;
		inset: 0;
		display: block;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		background: rgb(15 10 7 / 62%);
		border: 0;
		visibility: hidden;
		opacity: 0;
		cursor: pointer;
		transition: opacity 220ms ease, visibility 0s linear 220ms;
	}

	.mobile-navigation__backdrop.is-visible {
		visibility: visible;
		opacity: 1;
		transition-delay: 0s;
	}

	.mobile-navigation-fallback {
		display: flex;
		flex-wrap: wrap;
		gap: 4px 12px;
		padding: 10px clamp(16px, 4vw, 24px);
		background: var(--color-surface);
		border-bottom: 1px solid var(--color-divider);
	}

	.mobile-navigation-fallback a {
		min-height: 44px;
		padding: 10px 0;
		color: var(--color-orange-dark);
		font-weight: 700;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mobile-navigation,
	.mobile-navigation__screen,
	.mobile-navigation__backdrop,
	.mobile-navigation__menu-link,
	.mobile-navigation__catalog-link,
	.mobile-navigation__wholesale {
		transition: none;
	}
}

/* ========================================================================== 
   MOBILE NAVIGATION — END
   ========================================================================== */

/* ==========================================================================
   HERO — START
   ========================================================================== */

.home-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	min-height: clamp(540px, 44vw, 680px);
	overflow: hidden;
	color: #fff;
	background-color: var(--color-header-bg);
}

.home-hero::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(90deg, rgb(35 20 13 / 96%) 0%, rgb(35 20 13 / 90%) 38%, rgb(35 20 13 / 48%) 68%, rgb(35 20 13 / 12%) 100%);
	content: "";
}

.home-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	width: 100%;
	align-items: center;
	min-height: inherit;
	padding-block: clamp(58px, 6vw, 88px);
}

.home-hero--has-slides::after {
	content: none;
}

.home-hero__slides {
	display: grid;
	width: 100%;
	min-width: 0;
	min-height: inherit;
}

.home-hero__slide {
	position: relative;
	isolation: isolate;
	display: flex;
	min-width: 0;
	min-height: inherit;
	grid-area: 1 / 1;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	background: var(--color-header-bg);
	transition: opacity 280ms ease, visibility 0s linear 280ms;
}

.home-hero__slide[hidden] {
	display: none;
}

.home-hero__slide.is-active {
	z-index: 1;
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0s;
}

.home-hero__slide::after {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(90deg, rgb(35 20 13 / 96%) 0%, rgb(35 20 13 / 90%) 38%, rgb(35 20 13 / 48%) 68%, rgb(35 20 13 / 12%) 100%);
	content: "";
}

.home-hero__media {
	position: absolute;
	z-index: 0;
	inset: 0;
	overflow: hidden;
}

.home-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
}

.home-hero--carousel .home-hero__inner {
	padding-bottom: clamp(118px, 10vw, 140px);
}

.home-hero__content {
	width: min(58%, 800px);
	max-width: 100%;
}

.home-hero__title {
	max-width: 800px;
	margin: 0;
	font-size: clamp(2.25rem, 3.5vw, 4rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: 0.015em;
	text-transform: uppercase;
	overflow-wrap: break-word;
}

.home-hero__title span {
	display: block;
}

.home-hero__subtitle {
	margin: clamp(18px, 2vw, 26px) 0 0;
	color: var(--color-orange-soft);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	font-weight: 600;
	line-height: 1.4;
}

.home-hero__description {
	max-width: 60ch;
	margin: clamp(18px, 2vw, 26px) 0 0;
	color: var(--color-orange-soft);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	font-weight: 600;
	line-height: 1.4;
}

.home-hero__description > :first-child {
	margin-top: 0;
}

.home-hero__description > :last-child {
	margin-bottom: 0;
}

.home-hero__benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px 18px;
	margin: clamp(28px, 3vw, 40px) 0 0;
	padding: 0;
	list-style: none;
}

.home-hero__benefits li {
	display: flex;
	min-width: 0;
	align-items: flex-start;
	gap: 9px;
	font-size: clamp(0.78rem, 0.9vw, 0.9rem);
	font-weight: 600;
	line-height: 1.35;
}

.home-hero__benefit-icon {
	display: inline-flex;
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	align-items: center;
	justify-content: center;
	color: var(--color-orange);
	border: 1px solid rgb(244 173 47 / 72%);
	border-radius: var(--radius-control);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: clamp(30px, 4vw, 44px);
}

.home-hero__button {
	min-height: 48px;
	padding: 12px 22px;
	font-size: 0.95rem;
}

.home-hero__button--primary {
	border: 2px solid transparent;
}

.home-hero__button--secondary {
	min-width: 230px;
	background: rgb(45 28 19 / 28%);
}

.home-hero__button--secondary:hover {
	background: rgb(45 28 19 / 48%);
}

.home-hero__controls {
	position: absolute;
	z-index: 4;
	inset-inline: 0;
	bottom: clamp(24px, 3vw, 40px);
	pointer-events: none;
}

.home-hero__controls-inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
}

.home-hero__arrow,
.home-hero__dot {
	flex: 0 0 auto;
	cursor: pointer;
	pointer-events: auto;
}

.home-hero__arrow {
	display: inline-grid;
	width: 44px;
	height: 44px;
	padding: 0;
	place-items: center;
	color: rgb(255 255 255 / 82%);
	appearance: none;
	background: transparent;
	border: 0;
	box-shadow: none;
	font: inherit;
	line-height: 1;
	transition: color 180ms ease;
}

.home-hero__arrow svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.75;
}

.home-hero__arrow:hover {
	color: var(--color-orange);
}

.home-hero__arrow:focus-visible,
.home-hero__dot:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.home-hero__pagination {
	display: flex;
	max-width: min(50vw, 520px);
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 9px;
}

.home-hero__dot {
	width: 12px;
	height: 12px;
	padding: 0;
	background: rgb(255 255 255 / 46%);
	border: 1px solid rgb(255 255 255 / 76%);
	border-radius: var(--radius-round);
	transition: width 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.home-hero__dot[aria-current="true"] {
	width: 30px;
	background: var(--color-orange);
	border-color: var(--color-orange);
}

@media (max-width: 1100px) {
	.home-hero::after {
		background: linear-gradient(90deg, rgb(35 20 13 / 96%) 0%, rgb(35 20 13 / 88%) 58%, rgb(35 20 13 / 52%) 100%);
	}

	.home-hero__content {
		width: min(82%, 780px);
	}

	.home-hero__image {
		object-position: 62% center;
	}
}

@media (max-width: 800px) {
	.home-hero {
		min-height: 0;
	}

	.home-hero::after {
		background: linear-gradient(90deg, rgb(35 20 13 / 94%) 0%, rgb(35 20 13 / 82%) 100%);
	}

	.home-hero__inner {
		padding-block: clamp(46px, 13vw, 64px);
	}

	.home-hero--carousel .home-hero__inner {
		padding-bottom: max(
			64px,
			calc(env(safe-area-inset-bottom, 0px) + 52px)
		);
	}

	.home-hero__arrow {
		display: none;
	}

	.home-hero__image {
		object-position: 64% center;
	}

	.home-hero__content {
		width: 100%;
	}

	.home-hero__title {
		font-size: clamp(1.7rem, 8.5vw, 2.7rem);
		line-height: 1.06;
	}

	.home-hero__subtitle {
		max-width: 28ch;
		font-size: 0.95rem;
	}

	.home-hero__description {
		max-width: 28ch;
		font-size: 0.95rem;
	}

	.home-hero__benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 12px;
		margin-top: 28px;
	}

	.home-hero__benefits li {
		gap: 7px;
		font-size: clamp(0.76rem, 3.5vw, 0.88rem);
	}

	.home-hero__benefit-icon {
		width: 24px;
		height: 24px;
		flex-basis: 24px;
	}

	.home-hero__actions {
		align-items: stretch;
		flex-direction: column;
		margin-top: 30px;
	}

	.home-hero__button {
		width: 100%;
	}

	.home-hero__button--primary {
		order: 1;
	}

	.home-hero__button--secondary {
		order: 2;
	}

	.home-hero__controls {
		bottom: max(
			32px,
			calc(env(safe-area-inset-bottom, 0px) + 14px)
		);
	}

	.home-hero__controls-inner {
		justify-content: center;
		gap: 0;
	}

	.home-hero__pagination {
		max-width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-hero__slide,
	.home-hero__arrow,
	.home-hero__dot {
		transition: none;
	}
}

/* ==========================================================================
   HERO — END
   ========================================================================== */

/* ==========================================================================
   ABOUT COMPANY — START
   ========================================================================== */

.about-company {
	width: 100%;
	max-width: none;
	margin: 0;
	padding-block: clamp(44px, 5vw, 64px) clamp(36px, 4vw, 52px);
	background: var(--color-section-warm);
}

.about-company__inner {
	min-width: 0;
}

.about-company__columns {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: stretch;
	gap: clamp(32px, 5vw, 72px);
	margin-top: clamp(28px, 4vw, 44px);
}

.about-company__inner--text-only .about-company__columns {
	grid-template-columns: minmax(0, 1fr);
}

.about-company__left {
	min-width: 0;
}

.about-company__content {
	min-width: 0;
}

.about-company__inner--text-only .about-company__content {
	max-width: 880px;
}

.about-company__title {
	margin: 0;
	color: var(--color-text-strong);
	font-size: clamp(1.8rem, 3vw, 2.65rem);
	line-height: 1.1;
}

.about-company__text {
	color: var(--color-text);
	font-size: clamp(0.98rem, 1.2vw, 1.06rem);
	line-height: 1.65;
}

.about-company__text [data-collapsible-content] > :first-child {
	margin-top: 0;
}

.about-company__text [data-collapsible-content] > :last-child {
	margin-bottom: 0;
}

.about-company__text .collapsible__toggle {
	margin-top: 12px;
}

.about-company__text .collapsible__ellipsis {
	display: none;
	margin: 0;
}

.about-company__poster:focus-visible,
.video-poster:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.about-company__media {
	width: 100%;
	height: 100%;
	min-width: 0;
	align-self: stretch;
}

.about-company__process {
	min-width: 0;
}

.about-company__poster,
.video-poster {
	position: relative;
	display: grid;
	width: 100%;
	aspect-ratio: 2.3 / 1;
	padding: 0;
	overflow: hidden;
	color: #fff;
	background: var(--color-text-strong);
	border: 0;
	border-radius: var(--radius-panel);
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.about-company__poster {
	height: 100%;
	min-height: 0;
	aspect-ratio: auto;
}

.about-company__poster--static {
	cursor: default;
}

.about-company__poster::before,
.about-company__poster-image,
.about-company__play,
.video-poster::before,
.video-poster__image,
.video-poster__play,
.video-poster__caption {
	grid-area: 1 / 1;
}

.about-company__poster::before,
.video-poster::before {
	z-index: 1;
	background:
		linear-gradient(rgb(0 0 0 / 14%), rgb(0 0 0 / 14%)),
		linear-gradient(180deg, transparent 52%, rgb(0 0 0 / 46%) 100%);
	content: "";
}

.about-company__poster-image,
.video-poster__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.about-company__poster-image {
	position: absolute;
	inset: 0;
}

.about-company__play,
.video-poster__play {
	z-index: 2;
	display: grid;
	align-self: center;
	justify-self: center;
	width: clamp(88px, 6.5vw, 96px);
	aspect-ratio: 1;
	color: #fff;
	background: rgb(0 0 0 / 35%);
	border: 2px solid #fff;
	border-radius: 50%;
	place-items: center;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.about-company__play svg,
.video-poster__play svg {
	width: 32%;
	height: 32%;
	margin-left: 5%;
}

.about-company__poster:hover .about-company__play,
.about-company__poster:focus-visible .about-company__play,
.video-poster:hover .video-poster__play,
.video-poster:focus-visible .video-poster__play {
	background: rgb(0 0 0 / 50%);
	border-color: rgb(255 255 255 / 88%);
}

.video-poster__caption {
	z-index: 2;
	align-self: end;
	justify-self: stretch;
	padding: 0 24px 22px;
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	text-shadow: 0 2px 8px rgb(0 0 0 / 72%);
}

.video-poster__caption > strong,
.video-poster__caption > small {
	display: block;
}

.video-poster__caption > small {
	margin-top: 5px;
	font-size: 0.82em;
	font-weight: 400;
}

@media (max-width: 767px) {
	.about-company__columns {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"content"
			"media"
			"process";
		gap: 32px;
	}

	.about-company__left {
		display: contents;
	}

	.about-company__content {
		grid-area: content;
	}

	.about-company__inner--text-only .about-company__columns {
		grid-template-areas:
			"content"
			"process";
	}

	.about-company__media {
		grid-area: media;
		width: 100%;
	}

	.about-company__process {
		grid-area: process;
	}

	.about-company__poster {
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.about-company__play,
	.video-poster__play {
		width: clamp(64px, 18vw, 72px);
	}

	.video-poster__caption {
		padding: 0 16px 15px;
		font-size: 0.95rem;
	}
}

/* ==========================================================================
   ABOUT COMPANY — END
   ========================================================================== */

/* ==========================================================================
   VIDEO MODAL — START
   ========================================================================== */

body.video-modal-open {
	overflow: hidden;
}

.video-modal[hidden] {
	display: none;
}

.video-modal {
	position: fixed;
	z-index: 100000;
	inset: 0;
	display: grid;
	padding: clamp(12px, 3vw, 32px);
	overflow: auto;
	place-items: center;
	background: rgb(20 15 12 / 88%);
}

.video-modal__dialog {
	position: relative;
	width: min(100%, 1100px);
	max-height: calc(100vh - 24px);
	max-height: calc(100dvh - 24px);
}

.video-modal__video {
	display: block;
	width: 100%;
	max-height: calc(100vh - 24px);
	max-height: calc(100dvh - 24px);
	aspect-ratio: 16 / 9;
	object-fit: contain;
	background: #000;
	border-radius: var(--radius-panel);
}

.video-modal__close {
	position: absolute;
	z-index: 2;
	top: 10px;
	right: 10px;
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	color: var(--color-text-strong);
	background: rgb(255 255 255 / 92%);
	border: 1px solid rgb(255 255 255 / 76%);
	border-radius: var(--radius-round);
	font-size: 1.9rem;
	line-height: 1;
	cursor: pointer;
	place-items: center;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.video-modal__close:hover {
	color: var(--color-orange-dark);
	background: var(--color-surface);
}

.video-modal__close:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

@media (max-width: 600px) {
	.video-modal {
		padding: 8px;
	}

	.video-modal__dialog,
	.video-modal__video {
		max-height: calc(100vh - 16px);
		max-height: calc(100dvh - 16px);
	}
}

/* ==========================================================================
   VIDEO MODAL — END
   ========================================================================== */



/* ==========================================================================
   HOME CATALOG — START
   ========================================================================== */

.home-catalog {
	width: 100%;
	max-width: none;
	margin: 0;
	padding-block: clamp(56px, 7vw, 96px) clamp(24px, 3vw, 40px);
	background: var(--color-page-bg);
}

.home-catalog__title {
	margin-bottom: clamp(28px, 4vw, 44px);
	overflow-wrap: anywhere;
}

.home-catalog__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
}

.home-catalog__card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	background: var(--color-surface);
	border: 1px solid var(--color-border-card);
	border-radius: var(--radius-ui);
	flex-direction: column;
}

.home-catalog__media {
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--color-section-warm);
}

.home-catalog__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-catalog__content {
	display: flex;
	min-width: 0;
	flex: 1 1 auto;
	flex-direction: column;
	padding: clamp(20px, 2.2vw, 26px);
}

.home-catalog__card-title {
	margin: 0;
	color: var(--color-text-strong);
	font-size: clamp(1.12rem, 1.5vw, 1.3rem);
	line-height: 1.25;
}

.home-catalog__card-title a {
	color: inherit;
	text-decoration: none;
}

.home-catalog__card-title a:hover {
	color: var(--color-orange-dark);
}

.home-catalog__products a {
	color: inherit;
	text-decoration-line: underline;
	text-decoration-color: var(--color-orange);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color 0.2s ease, text-decoration-color 0.2s ease, text-decoration-thickness 0.2s ease;
}

.home-catalog__products a:hover,
.home-catalog__products a:focus-visible {
	color: var(--color-orange-dark);
	text-decoration-color: var(--color-orange-dark);
	text-decoration-thickness: 2px;
}

.home-catalog__card-title a:focus-visible,
.home-catalog__products a:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.home-catalog__products {
	display: grid;
	gap: 8px;
	margin: 18px 0 0;
	padding: 0;
	color: var(--color-text);
	font-size: 0.9rem;
	line-height: 1.35;
	list-style: none;
}

.home-catalog__more {
	display: none;
	margin: 8px 0 0;
	color: var(--color-text-muted);
	font-size: 0.78rem;
	line-height: 1.35;
}

.home-catalog__actions {
	margin-top: auto;
	padding-top: 22px;
}

.home-catalog__link {
	min-height: 46px;
	padding: 11px 18px;
	font-size: 0.9rem;
}

.home-catalog__empty {
	margin: 0;
	color: var(--color-text-muted);
}

@media (max-width: 1100px) {
	.home-catalog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.home-catalog__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.home-catalog__card {
		display: grid;
		grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
		min-height: 220px;
	}

	.home-catalog__media {
		align-self: stretch;
		min-height: 220px;
		aspect-ratio: auto;
	}

	.home-catalog__content {
		min-width: 0;
		padding: 13px;
	}

	.home-catalog__card-title {
		display: -webkit-box;
		overflow: hidden;
		font-size: 1rem;
		line-height: 1.25;
		overflow-wrap: anywhere;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.home-catalog__card-title a:focus-visible {
		outline-offset: 0;
	}

	.home-catalog__products {
		gap: 5px;
		margin-top: 10px;
		font-size: 0.82rem;
		line-height: 1.3;
	}

	.home-catalog__products li {
		min-width: 0;
	}

	.home-catalog__products a {
		display: block;
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.home-catalog__more {
		display: block;
		margin-top: 6px;
		font-size: 0.74rem;
	}

	.home-catalog__actions {
		padding-top: 11px;
	}

	.home-catalog__link {
		min-height: 44px;
		padding: 9px 10px;
		font-size: 0.82rem;
	}

	.home-catalog__link.navigation-arrow {
		gap: 5px;
	}

	.home-catalog__link.navigation-arrow::after {
		width: 15px;
		height: 15px;
		flex-basis: 15px;
	}
}

@media (max-width: 360px) {
	.home-catalog__card {
		grid-template-columns: minmax(98px, 34%) minmax(0, 1fr);
		min-height: 210px;
	}

	.home-catalog__media {
		min-height: 210px;
	}

	.home-catalog__content {
		padding: 10px;
	}

	.home-catalog__products {
		gap: 3px;
		margin-top: 8px;
		font-size: 0.78rem;
	}

	.home-catalog__more {
		margin-top: 4px;
		font-size: 0.7rem;
	}

	.home-catalog__actions {
		padding-top: 8px;
	}

	.home-catalog__link {
		padding-inline: 7px;
		font-size: 0.78rem;
	}
}

/* ==========================================================================
   HOME CATALOG — END
   ========================================================================== */

/* ==========================================================================
   PRODUCT OFFERS — START
   ========================================================================== */

.product-offers {
	min-width: 0;
	padding-block: 0 clamp(24px, 3vw, 40px);
}

.home-product-offers {
	width: 100%;
	max-width: none;
	margin: 0;
	padding-block: clamp(48px, 6vw, 76px);
	background: var(--color-section-warm);
}

.product-offers__header {
	margin-bottom: clamp(28px, 4vw, 44px);
}

.product-offers__grid {
	gap: clamp(16px, 2vw, 24px);
}

.product-offers--columns-1 .product-offers__grid {
	grid-template-columns: minmax(0, 1fr);
}

.product-offers--columns-2 .product-offers__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-offers--columns-3 .product-offers__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-offers--columns-4 .product-offers__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-catalog__main > .product-offers,
.news-archive__main > .product-offers,
.sidebar-page__main > .product-offers {
	margin-top: clamp(32px, 4vw, 48px);
	padding-bottom: 0;
}

@media (max-width: 1100px) {
	.product-offers--columns-3 .product-offers__grid,
	.product-offers--columns-4 .product-offers__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.product-offers--columns-2 .product-offers__grid,
	.product-offers--columns-3 .product-offers__grid,
	.product-offers--columns-4 .product-offers__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ==========================================================================
   PRODUCT OFFERS — END
   ========================================================================== */

/* ==========================================================================
   PRODUCT CARD — START
   ========================================================================== */

.product-card a:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #e7e5e1;
}

.product-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.product-card__media:hover .product-card__image {
	transform: scale(1.025);
}

.product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	max-width: calc(100% - 24px);
	padding: 6px 9px;
	color: #fff;
	background: var(--color-green);
	border-radius: var(--radius-control);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.2;
}

.product-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 18px;
}

.product-card__title {
	margin: 0;
	color: var(--color-text-strong);
	font-size: 1.08rem;
	line-height: 1.3;
}

.product-card__title a {
	text-decoration: none;
}

.product-card__title a:hover {
	color: var(--color-orange-dark);
}

.product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: auto;
	padding-top: 20px;
}

.product-card__price {
	margin: 0;
	color: var(--color-text-strong);
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.2;
}

.product-card__more,
.catalog-promo-card__link {
	min-height: 48px;
	padding-block: 12px;
	font-size: 0.95rem;
}

.product-card__more {
	flex: 0 0 auto;
	padding-inline: 14px;
}

@media (max-width: 767px) {
	.product-card-grid--compact-mobile .product-card {
		display: grid;
		grid-template-columns: minmax(116px, 40%) minmax(0, 1fr);
		min-height: 190px;
		height: auto;
	}

	.product-card-grid--compact-mobile .product-card__media {
		align-self: stretch;
		min-height: 190px;
		aspect-ratio: auto;
	}

	.product-card-grid--compact-mobile .product-card__image {
		display: block;
	}

	.product-card-grid--compact-mobile .product-card__badge {
		top: 8px;
		left: 8px;
		max-width: calc(100% - 16px);
		padding: 5px 7px;
	}

	.product-card-grid--compact-mobile .product-card__body {
		min-width: 0;
		padding: 13px;
	}

	.product-card-grid--compact-mobile .product-card__title {
		display: -webkit-box;
		overflow: hidden;
		font-size: 1rem;
		line-height: 1.25;
		overflow-wrap: anywhere;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.product-card-grid--compact-mobile .product-card__title a:focus-visible {
		outline-offset: 0;
	}

	.product-card-grid--compact-mobile .product-card__footer {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 8px;
		padding-top: 12px;
	}

	.product-card-grid--compact-mobile .product-card__price {
		min-width: 0;
		font-size: 0.92rem;
		line-height: 1.25;
	}

	.product-card-grid--compact-mobile .product-card__more {
		min-height: 44px;
		padding: 9px 10px;
		font-size: 0.82rem;
	}

	.product-card-grid--compact-mobile .product-card__more.navigation-arrow {
		gap: 5px;
	}

	.product-card-grid--compact-mobile .product-card__more.navigation-arrow::after {
		width: 15px;
		height: 15px;
		flex-basis: 15px;
	}
}

@media (max-width: 480px) {
	.product-card-grid--compact-mobile .product-card__footer {
		grid-template-columns: minmax(0, 1fr) 44px;
		gap: 6px;
	}

	.product-card-grid--compact-mobile .product-card__price {
		font-size: 0.88rem;
		white-space: nowrap;
	}

	.product-card-grid--compact-mobile .product-card__more {
		--navigation-arrow-x: 0;

		width: 44px;
		min-width: 44px;
		height: 44px;
		min-height: 44px;
		padding: 0;
		gap: 0;
		flex: 0 0 44px;
	}

	.product-card-grid--compact-mobile .product-card__more-text {
		display: none;
	}
}

@media (max-width: 360px) {
	.product-card-grid--compact-mobile .product-card {
		grid-template-columns: minmax(100px, 36%) minmax(0, 1fr);
		min-height: 184px;
	}

	.product-card-grid--compact-mobile .product-card__media {
		min-height: 184px;
	}

	.product-card-grid--compact-mobile .product-card__body {
		padding: 10px;
	}

	.product-card-grid--compact-mobile .product-card__footer {
		gap: 4px;
		padding-top: 9px;
	}

	.product-card-grid--compact-mobile .product-card__price {
		font-size: 0.82rem;
	}
}

/* ========================================================================== 
   PRODUCT CARD — END
   ========================================================================== */

/* ==========================================================================
   CATALOG PROMO CARDS — START
   ========================================================================== */

.catalog-promotions {
	margin: 0;
	padding: 0 0 clamp(32px, 4vw, 48px);
}

.catalog-promo-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
}

.catalog-promo-card {
	position: relative;
	display: block;
	min-width: 0;
	min-height: 230px;
	overflow: hidden;
}

.catalog-promo-card--no-image {
	grid-template-columns: minmax(0, 1fr);
}

.catalog-promo-card__content {
	position: relative;
	z-index: 2;
	display: flex;
	width: 52%;
	min-width: 0;
	min-height: 230px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding: clamp(22px, 3vw, 34px);
}

.catalog-promo-card__text {
	min-width: 0;
}

.catalog-promo-card__title {
	margin: 0;
	color: var(--color-text-strong);
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	line-height: 1.2;
}

.catalog-promo-card__period {
	margin: 7px 0 0;
	color: var(--color-orange-dark);
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.3;
}

.catalog-promo-card__description {
	max-width: 38rem;
	margin: 14px 0 0;
	color: var(--color-text);
	font-size: 0.94rem;
	line-height: 1.5;
}

.catalog-promo-card__link {
	padding-inline: 22px;
}

.catalog-promo-card__media {
	position: absolute;
	z-index: 0;
	inset: 0;
	min-width: 0;
	overflow: hidden;
}

.catalog-promo-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
}

.catalog-promo-card__media::before {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(
			90deg,
			rgb(255 255 255 / 98%) 0%,
			rgb(255 255 255 / 98%) 20%,
			rgb(255 255 255 / 94%) 30%,
			rgb(255 255 255 / 82%) 40%,
			rgb(255 255 255 / 64%) 50%,
			rgb(255 255 255 / 42%) 60%,
			rgb(255 255 255 / 22%) 70%,
			rgb(255 255 255 / 8%) 78%,
			transparent 84%
	);
	content: "";
	pointer-events: none;
}

@media (max-width: 767px) {
	.catalog-promo-cards {
		grid-template-columns: minmax(0, 1fr);
	}

	.catalog-promo-card {
		min-height: 140px;
	}

	.catalog-promo-card__media {
		position: absolute;
		inset: 0;
		aspect-ratio: auto;
	}

	.catalog-promo-card__content {
		width: 72%;
		min-height: 140px;
		gap: 10px;
		padding: 14px;
	}

	.catalog-promo-card--no-image .catalog-promo-card__content {
		width: 100%;
	}

	.catalog-promo-card__title {
		font-size: 1.08rem;
	}

	.catalog-promo-card__period {
		margin-top: 3px;
		font-size: 0.76rem;
	}

	.catalog-promo-card__description {
		margin-top: 6px;
		font-size: 0.82rem;
		line-height: 1.35;
	}

	.catalog-promo-card__link {
		min-height: 44px;
		padding: 8px 12px;
		font-size: 0.82rem;
	}

	.catalog-promo-card__media::before {
		background: linear-gradient(
			90deg,
			var(--color-surface) 0%,
			rgb(255 255 255 / 96%) 42%,
			rgb(255 255 255 / 72%) 62%,
			transparent 88%
		);
	}
}

/* ==========================================================================
   CATALOG PROMO CARDS — END
   ========================================================================== */

/* ==========================================================================
   WORK PROCESS — START
   ========================================================================== */

.work-process {
	width: 100%;
	max-width: none;
	margin: 0;
	padding-block: 0 clamp(24px, 3vw, 40px);
	background: var(--color-page-bg);
}

.about-company .work-process {
	margin: clamp(24px, 3vw, 32px) 0 0;
	padding: 0;
	background: transparent;
}

.about-company .work-process__inner {
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.about-company .work-process__title {
	margin-bottom: 14px;
	font-size: clamp(1.2rem, 1.7vw, 1.5rem);
}

.about-company .work-steps {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.about-company .work-step,
.about-company .work-step:last-child {
	display: block;
	min-width: 0;
	padding: 11px;
	background: var(--color-surface);
	border: 1px solid var(--color-border-card);
	border-radius: var(--radius-ui);
}

.about-company .work-step__body {
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 9px;
}

.about-company .work-step__icon {
	width: 42px;
	height: 42px;
}

.about-company .work-step__icon svg {
	width: 24px;
	height: 24px;
}

.about-company .work-step__title {
	margin-top: 0;
	font-size: 0.88rem;
	line-height: 1.25;
}

.about-company .work-step__description {
	margin-top: 4px;
	font-size: 0.78rem;
	line-height: 1.35;
}

.about-company .work-step__connector {
	display: none;
}

.work-process__inner {
	padding: clamp(24px, 3.5vw, 44px);
	background: var(--color-section-warm);
	border: 1px solid var(--color-border-card);
	border-radius: var(--radius-ui);
}

.work-process__title {
	margin: 0 0 clamp(24px, 3vw, 34px);
	color: var(--color-text-strong);
	font-size: clamp(1.7rem, 2.6vw, 2.35rem);
	line-height: 1.1;
}

.work-steps,
.page-slug-oplata-i-dostavka .info-process__steps {
	--work-step-connector-width: clamp(28px, 3vw, 44px);

	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.work-step {
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--work-step-connector-width);
	align-items: start;
	min-width: 0;
}

.work-step:last-child {
	grid-template-columns: minmax(0, 1fr);
}

.work-step__body {
	display: grid;
	grid-template-columns: clamp(56px, 4.5vw, 64px) minmax(0, 1fr);
	align-items: start;
	gap: 14px;
	min-width: 0;
}

.work-step__icon,
.page-slug-oplata-i-dostavka .info-process__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(56px, 4.5vw, 64px);
	height: clamp(56px, 4.5vw, 64px);
	color: var(--color-orange);
	background: var(--color-surface);
	border: 1px solid var(--color-border-card);
	border-radius: var(--radius-ui);
}

.work-step__icon svg {
	width: clamp(30px, 2.6vw, 34px);
	height: clamp(30px, 2.6vw, 34px);
}

.page-slug-oplata-i-dostavka .info-process__step {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: auto auto auto;
	align-items: start;
	gap: 10px;
	min-width: 0;
	padding-right: var(--work-step-connector-width);
}

.page-slug-oplata-i-dostavka .info-process__step:last-child {
	padding-right: 0;
}

.page-slug-oplata-i-dostavka .info-process__icon {
	position: relative;
	justify-self: center;
	grid-column: 1;
	grid-row: 1;
}

.page-slug-oplata-i-dostavka .info-process__icon::before {
	width: clamp(30px, 2.6vw, 34px);
	height: clamp(30px, 2.6vw, 34px);
	background: currentColor;
	content: "";
	-webkit-mask: var(--info-process-icon) center / contain no-repeat;
	mask: var(--info-process-icon) center / contain no-repeat;
}

.page-slug-oplata-i-dostavka .info-process__icon--request {
	--info-process-icon: url("../images/icons/delivery-request.svg");
}

.page-slug-oplata-i-dostavka .info-process__icon--order {
	--info-process-icon: url("../images/icons/lumber-order.svg");
}

.page-slug-oplata-i-dostavka .info-process__icon--calculation {
	--info-process-icon: url("../images/icons/delivery-calculation.svg");
}

.page-slug-oplata-i-dostavka .info-process__icon--date {
	--info-process-icon: url("../images/icons/calendar.svg");
}

.page-slug-oplata-i-dostavka .info-process__number {
	position: absolute;
	right: -5px;
	bottom: -5px;
	display: grid;
	width: 24px;
	height: 24px;
	color: var(--color-surface);
	background: var(--color-orange-dark);
	border: 2px solid var(--color-section-warm);
	border-radius: 50%;
	font-size: 0.76rem;
	font-weight: 800;
	line-height: 1;
	place-items: center;
}

.work-step__content {
	min-width: 0;
}

.work-step__connector {
	display: grid;
	align-self: start;
	place-items: center;
	width: 100%;
	height: clamp(56px, 4.5vw, 64px);
	color: var(--color-orange);
}

.work-step__connector::before,
.page-slug-oplata-i-dostavka .info-process__step:not(:last-child)::after {
	width: 11px;
	height: 11px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	transform: rotate(45deg);
}

.page-slug-oplata-i-dostavka .info-process__step:not(:last-child)::after {
	position: absolute;
	top: calc(clamp(56px, 4.5vw, 64px) / 2 - 6px);
	right: calc(var(--work-step-connector-width) / 2 - 6px);
	color: var(--color-orange);
	pointer-events: none;
}

.work-step__title {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 2px 0 0;
	color: var(--color-text-strong);
	font-size: clamp(1rem, 1.25vw, 1.14rem);
	line-height: 1.3;
}

.work-step__number {
	flex: 0 0 auto;
	color: var(--color-orange-dark);
	font-weight: 800;
}

.work-step__title-text {
	min-width: 0;
}

.work-step__description,
.page-slug-oplata-i-dostavka .info-process__text {
	margin: 8px 0 0;
	color: var(--color-text);
	font-size: 0.9rem;
	line-height: 1.45;
}

.page-slug-oplata-i-dostavka .info-process__title {
	min-width: 0;
	margin: 2px 0 0;
	color: var(--color-text-strong);
	font-size: clamp(1rem, 1.25vw, 1.14rem);
	line-height: 1.3;
	grid-column: 1;
	grid-row: 2;
}

.page-slug-oplata-i-dostavka .info-process__text {
	margin-top: 0;
	grid-column: 1;
	grid-row: 3;
}

@media (max-width: 1100px) {
	.work-steps,
	.page-slug-oplata-i-dostavka .info-process__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: clamp(24px, 4vw, 40px);
		row-gap: 30px;
	}

	.work-step,
	.work-step:last-child {
		grid-template-columns: minmax(0, 1fr);
	}

	.work-step__connector {
		display: none;
	}

	.page-slug-oplata-i-dostavka .info-process__step,
	.page-slug-oplata-i-dostavka .info-process__step:last-child {
		padding-right: 0;
	}

	.page-slug-oplata-i-dostavka .info-process__step::after {
		display: none;
	}
}

@media (max-width: 767px) {
	.about-company .work-process {
		margin-top: 0;
	}

	.about-company .work-steps {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.about-company .work-step,
	.about-company .work-step:last-child {
		padding: 16px 0;
		background: transparent;
		border: 0;
		border-radius: 0;
	}

	.about-company .work-step__body {
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 14px;
	}

	.about-company .work-step__icon {
		width: 54px;
		height: 54px;
	}

	.about-company .work-step__icon svg {
		width: 30px;
		height: 30px;
	}

	.about-company .work-step__title {
		margin-top: 1px;
		font-size: 1rem;
	}

	.about-company .work-step__description {
		margin-top: 8px;
		font-size: 0.9rem;
		line-height: 1.45;
	}
}

@media (max-width: 600px) {
	.work-steps,
	.page-slug-oplata-i-dostavka .info-process__steps {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.work-step,
	.page-slug-oplata-i-dostavka .info-process__step {
		padding-block: 16px;
	}

	.work-step__body {
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 14px;
	}

	.work-step__icon,
	.page-slug-oplata-i-dostavka .info-process__icon {
		width: 54px;
		height: 54px;
	}

	.work-step__icon svg {
		width: 30px;
		height: 30px;
	}

	.work-step__title {
		margin-top: 1px;
		font-size: 1rem;
	}

	.work-step__description {
		font-size: 0.9rem;
	}

	.page-slug-oplata-i-dostavka .info-process__icon::before {
		width: 30px;
		height: 30px;
	}

	.page-slug-oplata-i-dostavka .info-process__title {
		margin-top: 1px;
		font-size: 1rem;
	}
}

/* ========================================================================== 
   WORK PROCESS — END
   ========================================================================== */

/* ==========================================================================
   WAREHOUSE & DELIVERY — START
   ========================================================================== */

.warehouse-delivery {
	width: 100%;
	max-width: none;
	margin: 0;
	padding-block: clamp(32px, 4vw, 52px);
	background: var(--color-section-warm);
}

.warehouse-delivery__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
	align-items: stretch;
	gap: clamp(28px, 4vw, 56px);
}

.warehouse-delivery--text-only .warehouse-delivery__inner {
	grid-template-columns: minmax(0, 1fr);
}

.warehouse-delivery__content,
.warehouse-delivery__panel {
	min-width: 0;
}

.warehouse-delivery__content {
	align-self: center;
}

.warehouse-delivery__title {
	max-width: 820px;
}

.warehouse-delivery__description {
	max-width: 820px;
	margin-top: clamp(20px, 2.5vw, 28px);
	color: var(--color-text);
	font-size: 1rem;
	line-height: 1.7;
}

.warehouse-delivery__description p {
	margin: 0;
}

.warehouse-delivery__description p + p {
	margin-top: 14px;
}

.warehouse-delivery__benefits {
	display: grid;
	gap: 10px;
	margin: clamp(22px, 3vw, 30px) 0 0;
	padding: 0;
	color: var(--color-text-strong);
	font-weight: 700;
	line-height: 1.4;
	list-style: none;
}

.warehouse-delivery__benefits li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.warehouse-delivery__benefits li::before {
	display: inline-grid;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	margin-top: 1px;
	color: var(--color-orange-dark);
	content: "✓";
	font-size: 0.82rem;
	line-height: 1;
	place-items: center;
}

.warehouse-delivery__panel {
	display: flex;
	padding: clamp(22px, 3vw, 30px);
	flex-direction: column;
	justify-content: space-between;
	gap: clamp(24px, 3vw, 32px);
}

.warehouse-delivery__details {
	display: grid;
	gap: 0;
	margin: 0;
}

.warehouse-delivery__detail {
	min-width: 0;
	padding-block: 16px;
	border-bottom: 1px solid var(--color-divider);
}

.warehouse-delivery__detail:first-child {
	padding-top: 0;
}

.warehouse-delivery__detail:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.warehouse-delivery__detail dt {
	margin: 0;
	color: var(--color-text-muted);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.35;
}

.warehouse-delivery__detail dd {
	margin: 6px 0 0;
	color: var(--color-text-strong);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.warehouse-delivery__detail address {
	font-style: normal;
}

.warehouse-delivery__phone {
	color: var(--color-orange-dark);
	text-decoration: none;
	transition: color 0.2s ease;
}

.warehouse-delivery__phone:hover {
	color: var(--color-orange);
}

.warehouse-delivery__phone:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.warehouse-delivery__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

@media (max-width: 900px) {
	.warehouse-delivery__inner {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 640px) {
	.warehouse-delivery__actions {
		flex-direction: column;
	}

	.warehouse-delivery__actions .site-button {
		width: 100%;
	}
}

/* ==========================================================================
   WAREHOUSE & DELIVERY — END
   ========================================================================== */

/* ========================================================================== 
   NEWS — START
   ========================================================================== */

.news-section {
	width: 100%;
	max-width: none;
	margin: 0;
	padding-block: clamp(24px, 3vw, 40px) clamp(56px, 7vw, 96px);
	background: var(--color-page-bg);
}

.news-section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(12px, 2vw, 20px);
	margin-bottom: clamp(28px, 4vw, 44px);
}

.news-section__all-link {
	justify-content: flex-end;
	flex: 0 0 auto;
	min-height: 44px;
	padding: 0;
	white-space: nowrap;
}

.news-card a:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.news-section__grid {
	display: grid;
	gap: clamp(16px, 1.8vw, 24px);
}

.news-section__grid--front {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-section__empty {
	margin: 0;
	padding: 24px;
	color: var(--color-text-muted);
	background: var(--color-section-warm);
	border-radius: var(--radius-panel);
}

@media (min-width: 768px) and (max-width: 1199px) {
	.news-section__grid--front {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.news-section__all-link {
		font-size: 0.9rem;
	}

	.news-section__grid--front {
		grid-template-columns: none;
		grid-auto-columns: 86%;
		grid-auto-flow: column;
		overflow-x: auto;
		overflow-y: visible;
		overscroll-behavior-inline: contain;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.news-section__grid--front::-webkit-scrollbar {
		display: none;
	}

	.news-section__grid--front .news-card {
		scroll-snap-align: start;
	}
}

/* ==========================================================================
   NEWS — END
   ========================================================================== */

/* ==========================================================================
   NEWS CARD — START
   ========================================================================== */

.news-card__media {
	display: block;
	aspect-ratio: 8 / 3;
	overflow: hidden;
}

.news-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: clamp(16px, 1.5vw, 18px);
}

.news-card__meta {
	display: flex;
	align-items: center;
	min-width: 0;
	margin-top: 8px;
	gap: 6px;
	overflow: hidden;
	color: var(--color-text-muted);
	font-size: 0.8rem;
	line-height: 1.35;
	white-space: nowrap;
}

.news-card__category {
	min-width: 0;
	overflow: hidden;
	color: inherit;
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 2px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-card__category:hover {
	color: var(--color-orange-dark);
	text-decoration-color: currentColor;
}

.news-card__date {
	flex: 0 0 auto;
}

.news-card__meta-separator {
	flex: 0 0 auto;
}

.news-card__title {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--color-text-strong);
	font-size: clamp(1.05rem, 1.35vw, 1.2rem);
	line-height: 1.3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.news-card__title a {
	text-decoration: none;
}

.news-card__title a:hover {
	color: var(--color-orange-dark);
}

.news-card__excerpt {
	display: -webkit-box;
	margin-top: 12px;
	overflow: hidden;
	color: var(--color-text);
	font-size: 0.92rem;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.news-card__more {
	align-self: flex-start;
	min-height: 44px;
	margin-top: auto;
	padding-top: 16px;
}

@media (max-width: 767px) {
	.news-card__media {
		aspect-ratio: 16 / 9;
	}
}

/* ==========================================================================
   NEWS CARD — END
   ========================================================================== */

/* ==========================================================================
   CONSULTATION — START
   ========================================================================== */

.consultation-section {
	position: relative;
	width: 100%;
	max-width: none;
	min-height: clamp(450px, 32vw, 480px);
	margin: 0;
	overflow: hidden;
	background: var(--color-section-warm);
	border-top: 1px solid #cdcfd1;
}

.consultation-section__inner {
	position: relative;
	z-index: 1;
	min-height: inherit;
}

.consultation-section__form-panel {
	display: flex;
	align-items: center;
	width: 50%;
	min-width: 0;
	min-height: inherit;
	padding: clamp(36px, 5vw, 56px) clamp(24px, 3vw, 48px) clamp(36px, 5vw, 56px) 0;
	background: var(--color-section-warm);
}

.consultation-section__form {
	width: min(100%, 660px);
	margin-inline: auto;
}

.consultation-section__form .wpcf7 {
	width: 100%;
	margin: 0;
}

.consultation-section__form .wpcf7-form {
	display: grid;
	width: 100%;
	min-width: 0;
	margin: 0;
	grid-template-columns: minmax(0, 1fr) auto;
	column-gap: clamp(20px, 2vw, 24px);
	row-gap: 0;
}

.consultation-section__form .wpcf7-form > * {
	min-width: 0;
}

.consultation-section__form .wpcf7-form > :is(h1, h2, h3, h4, p, div) {
	grid-column: 1 / -1;
}

.consultation-section__form :is(h1, h2, h3, h4) {
	margin: 0;
	color: var(--color-text-strong);
	font-size: clamp(1.8rem, 3vw, 2.75rem);
	font-weight: 700;
	line-height: 1.12;
}

.consultation-section__form .consultation-form__title {
	margin: 0 0 8px;
	color: var(--color-text-strong);
	font-size: clamp(1.7rem, 2.6vw, 2.35rem);
	font-weight: 700;
	line-height: 1.1;
}

.consultation-section__form p {
	margin: 0;
	max-width: 100%;
}

.consultation-section__form .consultation-form__subtitle {
	margin: 0 0 24px;
	color: var(--color-text);
	font-size: clamp(1rem, 1.25vw, 1.1rem);
	font-weight: 400;
	line-height: 1.5;
}

.consultation-section__form .wpcf7-form > :is(p, div):has(input[type="text"], input[type="tel"], input[type="email"], input[type="url"], textarea, select) {
	margin-bottom: 16px;
}

.consultation-section__form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
	min-width: 0;
}

.consultation-section__form :is(input[type="text"], input[type="tel"], input[type="email"], input[type="url"], textarea, select) {
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-height: 54px;
	padding: 13px 16px;
	font: inherit;
	font-size: 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consultation-section__form textarea {
	min-height: 120px;
	resize: vertical;
}

.consultation-section__form :is(input[type="text"], input[type="tel"], input[type="email"], input[type="url"], textarea, select):focus {
	border-color: var(--color-orange);
	box-shadow: 0 0 0 3px rgb(244 173 47 / 20%);
	outline: none;
}

.consultation-section__form :is(input[type="text"], input[type="tel"], input[type="email"], input[type="url"], textarea, select):-webkit-autofill:focus {
	box-shadow:
		0 0 0 1000px var(--color-control-bg) inset,
		0 0 0 3px rgb(244 173 47 / 20%);
}

.consultation-section__form .wpcf7-form > :is(p, div):has(.wpcf7-acceptance):not(:has(.wpcf7-submit)):not(:has(input[type="text"], input[type="tel"], input[type="email"], textarea, select)) {
	align-self: center;
	grid-column: 1;
}

.consultation-section__form .wpcf7-form > :is(p, div):has(.wpcf7-submit):not(:has(.wpcf7-acceptance)):not(:has(input[type="text"], input[type="tel"], input[type="email"], textarea, select)) {
	display: flex;
	align-items: center;
	align-self: center;
	justify-content: flex-end;
	gap: 10px;
	grid-column: 2;
}

.consultation-section__form .wpcf7-form > :is(p, div):has(.wpcf7-acceptance):has(.wpcf7-submit):not(:has(input[type="text"], input[type="tel"], input[type="email"], textarea, select)) {
	display: flex;
	align-items: center;
	gap: clamp(20px, 2vw, 24px);
	grid-column: 1 / -1;
}

.consultation-section__form .wpcf7-form > :is(p, div):has(.wpcf7-acceptance):has(.wpcf7-submit):not(:has(input[type="text"], input[type="tel"], input[type="email"], textarea, select)) .wpcf7-form-control-wrap:has(.wpcf7-acceptance),
.consultation-section__form .wpcf7-form > :is(p, div):has(.wpcf7-acceptance):has(.wpcf7-submit):not(:has(input[type="text"], input[type="tel"], input[type="email"], textarea, select)) .wpcf7-acceptance {
	min-width: 0;
	flex: 1 1 auto;
}

.consultation-section__form .wpcf7-acceptance,
.consultation-section__form .wpcf7-list-item-label {
	color: var(--color-text-muted);
	font-size: 0.88rem;
	line-height: 1.45;
}

.consultation-section__form .wpcf7-list-item {
	margin: 0;
}

.consultation-section__form .wpcf7-list-item label {
	display: flex;
	align-items: flex-start;
	gap: 9px;
}

.consultation-section__form input[type="checkbox"] {
	width: 21px;
	height: 21px;
	margin: 1px 0 0;
	flex: 0 0 auto;
	accent-color: var(--color-orange);
}

.consultation-section__form a {
	color: var(--color-green-dark);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.consultation-section__form a:hover {
	color: var(--color-text-strong);
}

.consultation-section__form .wpcf7-submit {
	min-height: 50px;
	margin: 0;
	padding: 12px 24px;
	flex: 0 0 auto;
	border: 0;
	white-space: nowrap;
	cursor: pointer;
	order: 2;
}

.consultation-section__form .wpcf7-submit:not(:disabled):not([disabled]) {
	background: var(--color-orange);
	opacity: 1;
	cursor: pointer;
}

.consultation-section__form input[type="checkbox"]:focus-visible,
.consultation-section__form a:focus-visible {
	outline: 3px solid var(--color-orange-dark);
	outline-offset: 3px;
}

.consultation-section__form .wpcf7-submit:disabled,
.consultation-section__form .wpcf7-submit[disabled] {
	background: var(--color-orange);
	opacity: 0.58;
	cursor: not-allowed;
}

.consultation-section__form .wpcf7-form.submitting .wpcf7-submit {
	opacity: 0.7;
	cursor: wait;
}

.consultation-section__form .wpcf7-spinner {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: 0;
	flex: 0 0 24px;
	vertical-align: middle;
	background-color: var(--color-orange-dark);
	order: 1;
}

.consultation-section__form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	color: #9f2f2f;
	font-size: 0.84rem;
}

.consultation-section__form .wpcf7-response-output {
	width: 100%;
	margin: 20px 0 0;
	padding: 12px 14px;
	grid-column: 1 / -1;
	color: var(--color-text-strong);
	background: rgb(255 255 255 / 70%);
	border: 1px solid var(--color-orange);
	border-radius: var(--radius-control);
}

.consultation-section__form .sent .wpcf7-response-output {
	border-color: var(--color-green);
}

.consultation-section__form .invalid .wpcf7-response-output,
.consultation-section__form .failed .wpcf7-response-output,
.consultation-section__form .spam .wpcf7-response-output,
.consultation-section__form .unaccepted .wpcf7-response-output {
	border-color: #b8473f;
}

.consultation-section__media {
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	min-width: 0;
	min-height: 100%;
	background-color: var(--color-graphite-soft);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media (min-width: 768px) and (max-width: 1100px) {
	.consultation-section__form-panel {
		width: calc(60vw - var(--page-gutter));
		padding-right: clamp(20px, 3vw, 32px);
	}

	.consultation-section__media {
		width: 40%;
	}
}

@media (max-width: 767px) {
	.consultation-section {
		min-height: 0;
	}

	.consultation-section__inner {
		min-height: 0;
	}

	.consultation-section__form-panel {
		width: 100%;
		min-height: 0;
		padding: clamp(36px, 10vw, 48px) 0;
	}

	.consultation-section__form .wpcf7-form {
		grid-template-columns: minmax(0, 1fr);
	}

	.consultation-section__form .wpcf7-form > :is(p, div):has(.wpcf7-acceptance):not(:has(.wpcf7-submit)):not(:has(input[type="text"], input[type="tel"], input[type="email"], textarea, select)),
	.consultation-section__form .wpcf7-form > :is(p, div):has(.wpcf7-submit):not(:has(.wpcf7-acceptance)):not(:has(input[type="text"], input[type="tel"], input[type="email"], textarea, select)) {
		width: 100%;
		grid-column: 1 / -1;
	}

	.consultation-section__form .wpcf7-form > :is(p, div):has(.wpcf7-submit):not(:has(.wpcf7-acceptance)):not(:has(input[type="text"], input[type="tel"], input[type="email"], textarea, select)) {
		flex-wrap: wrap;
		justify-content: stretch;
	}

	.consultation-section__form .wpcf7-form > :is(p, div):has(.wpcf7-acceptance):has(.wpcf7-submit):not(:has(input[type="text"], input[type="tel"], input[type="email"], textarea, select)) {
		align-items: stretch;
		flex-direction: column;
		gap: 16px;
	}

	.consultation-section__media {
		display: none;
	}

	.consultation-section__form .wpcf7-submit {
		width: 100%;
	}

	.consultation-section__form .wpcf7-spinner {
		margin: 0 auto;
	}
}

/* ========================================================================== 
   CONSULTATION — END
   ========================================================================== */

/* ========================================================================== 
   CONTACT FORM MODALS — START
   ========================================================================== */

.contact-form-modal {
	width: min(92vw, 620px);
	max-height: min(88vh, 760px);
	padding: 0;
	overflow: auto;
	color: var(--color-text);
	background: var(--color-section-warm);
	border: 0;
	border-radius: 16px;
	box-shadow: 0 24px 64px rgb(0 0 0 / 28%);
}

.contact-form-modal::backdrop {
	background: rgb(0 0 0 / 58%);
}

.contact-form-modal__panel {
	padding: clamp(24px, 5vw, 40px);
}

.contact-form-modal__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}

.contact-form-modal__title {
	margin: 0;
	font-size: clamp(1.5rem, 4vw, 2rem);
	line-height: 1.15;
}

.contact-form-modal__close {
	display: inline-grid;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	padding: 0;
	place-items: center;
	font: inherit;
	font-size: 2rem;
	line-height: 1;
	color: currentColor;
	cursor: pointer;
	background: transparent;
	border: 1px solid currentColor;
	border-radius: 50%;
}

.contact-form-modal__close:focus-visible {
	outline: 3px solid var(--color-orange-dark);
	outline-offset: 3px;
}

.contact-form-modal__form .wpcf7-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px 20px;
}

.contact-form-modal__form .wpcf7-form > * {
	margin: 0;
}

.contact-form-modal__form .wpcf7-form > * {
	min-width: 0;
	grid-column: 1 / -1;
}

.contact-form-modal__form .wpcf7-form > :is(p, div):has(.wpcf7-acceptance):not(:has(.wpcf7-submit)) {
	align-self: center;
	grid-column: 1;
}

.contact-form-modal__form .wpcf7-form > :is(p, div):has(.wpcf7-submit):not(:has(.wpcf7-acceptance)) {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	grid-column: 2;
}

.contact-form-modal__form :is(input[type="text"], input[type="tel"], input[type="email"], textarea) {
	width: 100%;
	max-width: 100%;
	padding: 12px 14px;
	font: inherit;
}

.contact-form-modal__form textarea {
	min-height: 120px;
	resize: vertical;
}

.contact-form-modal__form .wpcf7-submit {
	min-height: 46px;
	padding: 12px 24px;
	border: 0;
	cursor: pointer;
	order: 2;
	white-space: nowrap;
}

.contact-form-modal__form .wpcf7-spinner {
	order: 1;
}

.contact-form-modal__form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: 0.875rem;
	color: #a52222;
}

.contact-form-modal__form .wpcf7-response-output {
	margin: 0;
}

@media (max-width: 767px) {
	.contact-form-modal__form .wpcf7-form > :is(p, div):has(.wpcf7-acceptance):not(:has(.wpcf7-submit)) {
		align-self: stretch;
		grid-column: 1 / -1;
	}

	.contact-form-modal__form .wpcf7-form > :is(p, div):has(.wpcf7-submit):not(:has(.wpcf7-acceptance)) {
		position: relative;
		width: 100%;
		grid-column: 1 / -1;
		justify-content: stretch;
	}

	.contact-form-modal__form .wpcf7-submit {
		flex: 1 1 100%;
		width: 100%;
	}

	.contact-form-modal__form .wpcf7-spinner {
		position: absolute;
		top: 50%;
		right: 12px;
		margin: 0;
		transform: translateY(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.contact-form-modal {
		scroll-behavior: auto;
	}
}

/* ========================================================================== 
   CONTACT FORM MODALS — END
   ========================================================================== */

/* ========================================================================== 
   FOOTER — START
   ========================================================================== */

.site-footer {
	width: 100%;
	max-width: none;
	color: var(--color-header-foreground);
	background: var(--color-header-bg);
}

.site-footer__main {
	background: var(--color-header-bg);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.2fr) minmax(240px, 1fr) minmax(280px, 1fr) auto;
	align-items: start;
	gap: clamp(28px, 3.5vw, 56px);
	padding-block: clamp(44px, 5vw, 68px);
}

.site-footer__grid > * {
	min-width: 0;
}

.site-footer__brand .custom-logo-link {
	display: inline-flex;
	width: auto;
	max-width: min(100%, 300px);
}

.site-footer__brand .custom-logo {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 92px;
	object-fit: contain;
}

.site-footer__description {
	max-width: 38ch;
	margin: 20px 0 0;
	color: var(--color-header-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.site-footer__menu {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 4px clamp(18px, 2vw, 30px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu li {
	min-width: 0;
}

.site-footer__menu a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	color: var(--color-header-muted);
	font-size: 0.9rem;
	line-height: 1.4;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__menu a:hover,
.site-footer__privacy:hover {
	color: var(--color-orange);
}

.site-footer__contacts {
	display: grid;
	gap: 18px;
	margin: 0;
	color: var(--color-header-muted);
	font-size: 0.9rem;
	font-style: normal;
	line-height: 1.5;
}

.site-footer__contact-row {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	align-items: start;
	gap: 11px;
	min-width: 0;
	overflow-wrap: anywhere;
}

.site-footer__contact-icon {
	display: grid;
	width: 22px;
	height: 22px;
	color: var(--color-orange);
	place-items: center;
}

.site-footer__contact-icon svg {
	display: block;
	width: 20px;
	height: 20px;
}

.site-footer__phone {
	width: fit-content;
	color: var(--color-header-foreground);
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
}

.site-footer__phone:hover {
	color: var(--color-orange);
}

.site-footer__social {
	justify-self: end;
}

.site-footer__messengers {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-footer__messengers a {
	display: grid;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	color: var(--color-header-foreground);
	background: transparent;
	border: 1px solid var(--color-border-dark);
	border-radius: 50%;
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer__messengers a:hover {
	color: var(--color-orange);
	border-color: var(--color-orange);
}

.site-footer__menu a:focus-visible,
.site-footer__phone:focus-visible,
.site-footer__messengers a:focus-visible,
.site-footer__privacy:focus-visible {
	color: var(--color-orange);
}

.site-footer__messengers a:focus-visible {
	border-color: var(--color-orange);
}

.header-messengers svg,
.site-footer__messengers svg {
	display: block;
	width: 19px;
	height: 19px;
	flex: 0 0 19px;
}

.site-footer a:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.site-footer__bottom {
	background: var(--color-nav-bg);
	border-top: 1px solid rgb(255 255 255 / 10%);
}

.site-footer__bottom-inner {
	display: grid;
	grid-template-columns: minmax(220px, 0.85fr) minmax(360px, 1.5fr) minmax(240px, 1fr);
	align-items: center;
	gap: 12px clamp(24px, 4vw, 56px);
	padding-block: 18px 20px;
}

.site-footer__copyright,
.site-footer__disclaimer,
.site-footer__privacy {
	min-width: 0;
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.5;
	white-space: normal;
	overflow-wrap: anywhere;
}

.site-footer__copyright {
	justify-self: start;
	color: var(--color-header-muted);
	font-weight: 400;
}

.site-footer__privacy {
	max-width: 300px;
	justify-self: end;
	color: var(--color-header-foreground);
	text-align: right;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.site-footer__disclaimer {
	max-width: 760px;
	justify-self: center;
	color: var(--color-header-muted);
	text-align: center;
}

@media (max-width: 1100px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-areas:
			"brand navigation"
			"contacts social";
		gap: 40px clamp(32px, 6vw, 64px);
	}

	.site-footer__brand {
		grid-area: brand;
	}

	.site-footer__navigation {
		grid-area: navigation;
	}

	.site-footer__contacts {
		grid-area: contacts;
	}

	.site-footer__social {
		grid-area: social;
		justify-self: start;
	}

	.site-footer__bottom-inner {
		grid-template-areas:
			"copyright privacy"
			"disclaimer disclaimer";
		grid-template-columns: minmax(0, 1fr) minmax(240px, auto);
		gap: 10px 28px;
	}

	.site-footer__copyright {
		grid-area: copyright;
	}

	.site-footer__disclaimer {
		grid-area: disclaimer;
		justify-self: start;
		text-align: left;
	}

	.site-footer__privacy {
		grid-area: privacy;
	}
}

@media (max-width: 767px) {
	.site-footer__grid {
		grid-template-columns: 1fr;
		grid-template-areas: none;
		gap: 36px;
		padding-block: 44px;
	}

	.site-footer__brand,
	.site-footer__navigation,
	.site-footer__contacts,
	.site-footer__social {
		grid-area: auto;
	}

	.site-footer__brand .custom-logo-link {
		max-width: min(100%, 280px);
	}

	.site-footer__bottom-inner {
		grid-template-areas:
			"copyright"
			"disclaimer"
			"privacy";
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
		gap: 12px;
	}

	.site-footer__copyright,
	.site-footer__disclaimer,
	.site-footer__privacy {
		max-width: 100%;
		justify-self: start;
		text-align: left;
		white-space: normal;
	}
}

@media (max-width: 340px) {
	.site-footer__menu {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   FOOTER — END
   ========================================================================== */

/* ==========================================================================
   INTERNAL PAGES — START
   ========================================================================== */

.site-main:not(.site-main--front) {
	min-height: 60vh;
	padding-block: 48px;
}

.site-main.site-main--content,
.site-main.site-main--catalog,
.site-main.site-main--product {
	min-height: 60vh;
	padding-block: 0;
	background: var(--color-page-bg);
}

/* SHARED ARCHIVE UI — START */

.news-archive .pagination,
.product-catalog .pagination {
	margin-top: clamp(32px, 5vw, 52px);
}

.news-archive .nav-links,
.product-catalog .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.news-archive .page-numbers,
.product-catalog .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 8px 12px;
	color: var(--color-text-strong);
	background: var(--color-surface);
	border: 1px solid var(--color-border-control);
	border-radius: var(--radius-control);
	font-weight: 700;
	text-decoration: none;
}

.news-archive .page-numbers:hover,
.news-archive .page-numbers:focus-visible,
.news-archive .page-numbers.current,
.product-catalog .page-numbers:hover,
.product-catalog .page-numbers:focus-visible,
.product-catalog .page-numbers.current {
	color: var(--color-nav-bg);
	background: var(--color-orange);
	border-color: var(--color-orange);
}

.news-archive .page-numbers:focus-visible,
.product-catalog .page-numbers:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.news-archive__empty,
.product-catalog__empty {
	margin: 0;
	padding: 24px;
	color: var(--color-text-muted);
	background: var(--color-surface);
	border-radius: var(--radius-panel);
}

/* SHARED ARCHIVE UI — END */

/* ==========================================================================
   NEWS ARCHIVE — START
   ========================================================================== */

.news-archive,
.news-archive__main {
	width: 100%;
	min-width: 0;
}

.news-archive__intro {
	margin-bottom: clamp(24px, 3vw, 36px);
}

.news-archive__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
}

.news-archive__description {
	max-width: 960px;
	margin-top: 18px;
	color: var(--color-text);
	font-size: 1rem;
	line-height: 1.65;
}

.news-archive__filters {
	max-width: 100%;
	margin-top: clamp(22px, 3vw, 30px);
}

.news-archive__filter-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.news-archive__filter {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 7px 8px 7px 14px;
	flex: 0 0 auto;
	gap: 9px;
	color: var(--color-text-strong);
	background: var(--color-surface);
	border: 1px solid var(--color-border-control);
	border-radius: 11px;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
}

.news-archive__filter-count {
	display: inline-grid;
	min-width: 27px;
	min-height: 27px;
	padding-inline: 6px;
	color: var(--color-text-muted);
	background: var(--color-beige);
	border-radius: 7px;
	font-size: 0.75rem;
	line-height: 1;
	place-items: center;
}

.news-archive__filter:hover,
.news-archive__filter:focus-visible {
	border-color: var(--color-orange);
}

.news-archive__filter.is-active {
	color: #fff;
	background: var(--color-orange);
	border-color: var(--color-orange);
}

.news-archive__filter.is-active .news-archive__filter-count {
	color: #fff;
	background: rgb(255 255 255 / 24%);
}

.news-archive__filter.is-active:hover,
.news-archive__filter.is-active:focus-visible,
.news-archive__filter.is-active:active {
	color: #fff;
	background: var(--color-orange-dark);
	border-color: var(--color-orange-dark);
}

.news-archive__filter:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

@media (max-width: 1100px) {
	.news-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.news-archive__filters {
		width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-inline: contain;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}

	.news-archive__filter-list {
		width: max-content;
		min-width: 100%;
		flex-wrap: nowrap;
		padding-bottom: 6px;
	}

	.news-archive__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ==========================================================================
   NEWS ARCHIVE — END
   ========================================================================== */

/* ==========================================================================
   SINGLE NEWS — START
   ========================================================================== */

.single-news,
.single-news__main,
.single-news__article,
.single-news__card {
	width: 100%;
	min-width: 0;
}

.single-news__main {
	--product-single-gap: clamp(16px, 2vw, 24px);
}

.single-news__header {
	margin-bottom: clamp(22px, 3vw, 32px);
}

.single-news__date {
	display: block;
	margin-top: 12px;
	color: var(--color-text-muted);
	font-size: 0.9rem;
	line-height: 1.4;
}

.single-news__media {
	margin: 0 0 clamp(24px, 3vw, 34px);
}

.single-news__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--radius-panel);
}

/* ==========================================================================
   GUTENBERG CATALOG CTA — START
   ========================================================================== */

.wp-block-vector-catalog-cta {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(18px, 3vw, 30px);
	margin-block: clamp(24px, 3vw, 34px);
	padding: clamp(18px, 2.4vw, 24px);
}

.wp-block-vector-catalog-cta .vector-catalog-cta__copy {
	min-width: 0;
}

.single-news__content > .wp-block-vector-catalog-cta:first-child {
	margin-top: 0;
}

.single-news__content > .wp-block-vector-catalog-cta:last-child {
	margin-bottom: 0;
}

.wp-block-vector-catalog-cta.vector-catalog-cta--without-actions {
	grid-template-columns: minmax(0, 1fr);
}

.wp-block-vector-catalog-cta .vector-catalog-cta__copy h2 {
	margin: 0;
	color: var(--color-text-strong);
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	line-height: 1.25;
}

.wp-block-vector-catalog-cta .vector-catalog-cta__copy p {
	margin: 8px 0 0;
	color: var(--color-text-muted);
	font-size: 0.94rem;
	line-height: 1.5;
}

.wp-block-vector-catalog-cta .vector-catalog-cta__actions {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: flex-end;
	gap: 10px;
	width: max-content;
	max-width: 100%;
}

.wp-block-vector-catalog-cta .vector-catalog-cta__link {
	flex: 0 0 auto;
	min-height: 46px;
	padding: 9px 14px;
	font-size: 0.9rem;
	line-height: 1.25;
}

.wp-block-vector-catalog-cta .vector-catalog-cta__link--primary {
	border: 2px solid transparent;
}

@media (max-width: 900px) {
	.wp-block-vector-catalog-cta {
		align-items: start;
		grid-template-columns: minmax(0, 1fr);
	}

	.wp-block-vector-catalog-cta .vector-catalog-cta__actions {
		flex-wrap: wrap;
		justify-content: flex-start;
		width: auto;
	}
}

@media (max-width: 600px) {
	.wp-block-vector-catalog-cta {
		padding: 16px;
	}

	.wp-block-vector-catalog-cta .vector-catalog-cta__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.wp-block-vector-catalog-cta .vector-catalog-cta__link {
		width: 100%;
	}
}

/* ==========================================================================
   GUTENBERG CATALOG CTA — END
   ========================================================================== */

.single-news__content {
	width: 100%;
	min-width: 0;
	margin-top: clamp(28px, 4vw, 42px);
	overflow-wrap: anywhere;
	color: var(--color-text);
	font-size: clamp(1rem, 1.3vw, 1.08rem);
	line-height: 1.75;
}

.single-news__content > :first-child {
	margin-top: 0;
}

.single-news__content > :last-child {
	margin-bottom: 0;
}

.single-news__content :where(h4) {
	color: var(--color-text-strong);
	line-height: 1.25;
}

.single-news__content :where(p, ul, ol) {
	margin: 0 0 1.1em;
}

.single-news__content :where(ul, ol) {
	padding-left: 1.4em;
}

.single-news__content a:not(.vector-catalog-cta__link) {
	color: var(--color-orange-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.single-news__content a:not(.vector-catalog-cta__link):hover {
	color: var(--color-text-strong);
}

.single-news__content a:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.single-news__content img,
.single-news__content iframe {
	max-width: 100%;
}

.single-news__content img {
	height: auto;
}

.single-news__content .wp-block-table {
	max-width: 100%;
	overflow-x: auto;
}

.single-news__footer {
	margin-top: clamp(30px, 4vw, 46px);
	padding-top: 20px;
	border-top: 1px solid var(--color-divider);
}

.single-news__back {
	justify-content: center;
	min-height: 44px;
	padding: 9px 0;
}

/* ==========================================================================
   SINGLE NEWS — END
   ========================================================================== */

.entry + .entry {
	margin-top: 48px;
}

/* ========================================================================== 
   INTERNAL PAGES — END
   ========================================================================== */

/* ========================================================================== 
   PRODUCT CATALOG — START
   ========================================================================== */

.product-catalog {
	width: 100%;
}

.product-catalog__header {
	margin-bottom: clamp(24px, 3vw, 36px);
}

/* CATALOG ARCHIVE HEADER — START */

.catalog-archive-header {
	width: 100%;
	box-sizing: border-box;
}

/* CATALOG ARCHIVE HEADER — END */

.catalog-archive-intro {
	max-width: 860px;
	margin-top: 14px;
	color: var(--color-text);
	font-size: 1rem;
	line-height: 1.65;
}

.catalog-archive-intro > :first-child {
	margin-top: 0;
}

.catalog-archive-intro > :last-child {
	margin-bottom: 0;
}

/* SIDEBAR PAGE — START */

.sidebar-page {
	width: 100%;
}

.sidebar-page__main,
.sidebar-page__content {
	min-width: 0;
}

.sidebar-page__header {
	margin-bottom: clamp(24px, 3vw, 36px);
}

.sidebar-page__content {
	color: var(--color-text);
	font-size: 1rem;
	line-height: 1.7;
	overflow-wrap: anywhere;
}

.sidebar-page__content > :first-child {
	margin-top: 0;
}

.sidebar-page__content > :last-child {
	margin-bottom: 0;
}

.sidebar-page__content :where(h4) {
	color: var(--color-text-strong);
	line-height: 1.25;
}

.sidebar-page__content :where(p:not(.product-price-table__cta-text), ul, ol) {
	margin: 0 0 1.1em;
}

.sidebar-page__content :where(ul, ol) {
	padding-left: 1.4em;
}

.sidebar-page__content a:not(.product-price-table__cta-button):not(.info-cta__button):not(.contacts-page__contact):not(.contacts-page__route-button):not(.about-page__document) {
	color: var(--color-orange-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.sidebar-page__content a:not(.product-price-table__cta-button):not(.info-cta__button):not(.contacts-page__contact):not(.contacts-page__route-button):not(.about-page__document):hover {
	color: var(--color-text-strong);
}

.sidebar-page__content a:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.sidebar-page__content img,
.sidebar-page__content iframe {
	max-width: 100%;
}

.sidebar-page__content .product-price-table {
	margin-block: 24px;
}

.sidebar-page__content figure.catalog-price-table {
	margin-inline: 0;
}

/* SIDEBAR PAGE — END */

/* ========================================================================== 
   INFO PAGE CONTENT — START
   ========================================================================== */

.info-page,
.contacts-page,
.about-page {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.info-section,
.info-card,
.info-notice,
.info-cta {
	min-width: 0;
	margin-top: clamp(24px, 2.5vw, 30px);
}

.info-section__title {
	margin: 0 0 clamp(14px, 1.8vw, 18px);
	color: var(--color-text-strong);
	font-size: clamp(1.35rem, 2vw, 1.65rem);
	line-height: 1.2;
}

.page-slug-oplata-i-dostavka .sidebar-page__content > p:first-child,
.page-slug-oplata-i-dostavka .sidebar-page__content > :first-child > p:first-child {
	max-width: 760px;
	margin: 0;
	color: var(--color-text);
	font-size: 1rem;
	line-height: 1.7;
}

.page-slug-oplata-i-dostavka .info-process {
	padding: clamp(24px, 3.5vw, 36px);
	background: var(--color-section-warm);
	border: 1px solid var(--color-border-card);
	border-radius: var(--radius-ui);
}

.page-slug-oplata-i-dostavka .info-process > .info-section__title {
	margin-bottom: clamp(24px, 3vw, 34px);
	font-size: clamp(1.55rem, 2.4vw, 1.9rem);
}

.info-card {
	padding: clamp(18px, 2vw, 22px);
}

.info-card--delivery-cost {
	display: grid;
	grid-template-areas:
		"title title"
		"intro accent"
		"list accent";
	grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
	align-items: start;
	column-gap: clamp(22px, 2.5vw, 28px);
	row-gap: 10px;
}

.info-card--delivery-cost > .info-section__title {
	margin-bottom: 2px;
	grid-area: title;
}

.info-card--delivery-cost > p {
	margin: 0;
	grid-area: intro;
}

.info-card--delivery-cost > .info-list {
	grid-area: list;
}

.info-card--delivery-cost > .info-accent-line {
	align-self: stretch;
	grid-area: accent;
}

.info-card__heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 14px;
}

.info-card__heading .info-section__title,
.info-card__heading .info-card__title {
	margin: 0;
}

.info-card__icon {
	position: relative;
	display: grid;
	width: 36px;
	height: 36px;
	color: var(--color-orange-dark);
	flex: 0 0 36px;
	place-items: center;
}

.info-card__icon svg {
	display: block;
	width: 30px;
	height: 30px;
}

.info-card__icon--truck:empty::before {
	width: 32px;
	height: 32px;
	background: currentColor;
	content: "";
	-webkit-mask: url("../images/icons/truck.svg") center / contain no-repeat;
	mask: url("../images/icons/truck.svg") center / contain no-repeat;
}

.info-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.info-list--check li {
	position: relative;
	padding-left: 24px;
}

.info-list--check li + li {
	margin-top: 8px;
}

.info-list--check li::before {
	position: absolute;
	top: 0.5em;
	left: 3px;
	width: 11px;
	height: 6px;
	border-bottom: 2px solid var(--color-orange-dark);
	border-left: 2px solid var(--color-orange-dark);
	content: "";
	transform: rotate(-45deg);
}

.info-accent-line {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	margin: 0;
	padding: 4px 0 4px clamp(20px, 2.5vw, 28px);
	border-left: 1px solid var(--color-divider);
	color: var(--color-text-strong);
	font-weight: 700;
	line-height: 1.5;
}

.info-accent-line::before {
	width: 42px;
	height: 42px;
	color: var(--color-orange-dark);
	background: currentColor;
	content: "";
	-webkit-mask: url("../images/icons/truck.svg") center / contain no-repeat;
	mask: url("../images/icons/truck.svg") center / contain no-repeat;
}

.info-card__note {
	margin: 12px 0 0;
	color: var(--color-text-muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.info-notice {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 12px;
	padding: clamp(16px, 1.8vw, 20px);
	border-left: 4px solid var(--color-orange);
}

.info-notice__icon {
	display: block;
	width: 42px;
	height: 42px;
	color: var(--color-orange-dark);
}

.info-notice__icon:empty::before {
	display: block;
	width: 100%;
	height: 100%;
	background: currentColor;
	content: "";
	-webkit-mask: url("../images/icons/warning.svg") center / contain no-repeat;
	mask: url("../images/icons/warning.svg") center / contain no-repeat;
}

.info-notice__icon svg {
	display: block;
	width: 24px;
	height: 24px;
}

.info-notice__content {
	min-width: 0;
}

.info-notice__title {
	margin: 0 0 6px;
	color: var(--color-text-strong);
	font-size: clamp(1.15rem, 1.7vw, 1.38rem);
	line-height: 1.25;
}

.info-notice__content > p {
	margin: 0;
}

.info-notice__content > p + p {
	margin-top: 8px;
}

.info-notice__content > .info-notice__important {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid var(--color-border-card);
	color: var(--color-text-strong);
	font-weight: 700;
}

.info-notice__important strong {
	color: var(--color-orange-dark);
}

.info-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--color-divider);
}

.info-facts__item {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
	min-width: 0;
	padding-right: clamp(14px, 2vw, 22px);
}

.info-facts__item + .info-facts__item {
	padding-right: 0;
	padding-left: clamp(14px, 2vw, 22px);
	border-left: 1px solid var(--color-divider);
}

.info-facts__label {
	color: var(--color-text-strong);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0;
	text-transform: none;
}

.info-facts__label::after {
	content: ":";
}

.info-facts__value {
	color: var(--color-text);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.45;
}

.info-payment {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-payment__item {
	position: relative;
	min-width: 0;
	padding: 0 clamp(16px, 2.2vw, 24px) 0 50px;
}

.info-payment__item + .info-payment__item {
	padding-right: 0;
	padding-left: calc(clamp(16px, 2.2vw, 24px) + 50px);
	border-left: 1px solid var(--color-divider);
}

.info-payment__item::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 34px;
	height: 34px;
	color: var(--color-orange-dark);
	background: currentColor;
	content: "";
	-webkit-mask: var(--info-payment-icon) center / contain no-repeat;
	mask: var(--info-payment-icon) center / contain no-repeat;
}

.info-payment__item:first-child {
	--info-payment-icon: url("../images/icons/payment-card.svg");
}

.info-payment__item + .info-payment__item {
	--info-payment-icon: url("../images/icons/wallet.svg");
}

.info-payment__item + .info-payment__item::before {
	left: clamp(16px, 2.2vw, 24px);
}

.info-payment__title {
	margin: 0 0 6px;
	color: var(--color-text-strong);
	font-size: clamp(1.05rem, 1.5vw, 1.22rem);
	line-height: 1.3;
}

.info-payment__item > :last-child {
	margin-bottom: 0;
}

.info-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(20px, 3vw, 36px);
	padding: clamp(19px, 2.2vw, 24px);
	color: var(--color-header-foreground);
	background: var(--color-header-bg);
	border-radius: var(--radius-ui);
}

.info-cta__content {
	min-width: 0;
}

.info-cta__title {
	margin: 0;
	color: var(--color-header-foreground);
	font-size: clamp(1.3rem, 2.2vw, 1.75rem);
	line-height: 1.25;
}

.info-cta__text {
	margin: 8px 0 0;
	color: var(--color-header-muted);
	line-height: 1.55;
}

.info-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	min-height: 50px;
	padding: 11px 20px;
	color: var(--color-surface);
	background: var(--color-orange);
	border: 2px solid var(--color-orange);
	border-radius: var(--radius-ui);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	flex: 0 0 auto;
	transition: background-color 0.18s ease, border-color 0.18s ease;
}

.info-cta__button:hover {
	color: var(--color-surface);
	background: var(--color-orange-dark);
	border-color: var(--color-orange-dark);
	text-decoration: none;
}

.info-cta__button:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

@media (max-width: 900px) {
	.info-card--delivery-cost {
		grid-template-areas:
			"title"
			"intro"
			"list"
			"accent";
		grid-template-columns: minmax(0, 1fr);
		row-gap: 0;
	}

	.info-card--delivery-cost > .info-section__title {
		margin-bottom: 14px;
	}

	.info-card--delivery-cost > p {
		margin-bottom: 12px;
	}

	.info-card--delivery-cost > .info-accent-line {
		margin-top: 16px;
		padding: 18px 0 0;
		border-top: 1px solid var(--color-divider);
		border-left: 0;
	}
}

@media (max-width: 640px) {
	.info-section,
	.info-card,
	.info-notice,
	.info-cta {
		margin-top: 24px;
	}

	.info-card {
		padding: 17px;
	}

	.info-facts,
	.info-payment {
		grid-template-columns: minmax(0, 1fr);
	}

	.info-facts__item {
		padding-right: 0;
	}

	.info-payment__item {
		padding-right: 0;
		padding-left: 50px;
	}

	.info-facts__item + .info-facts__item {
		margin-top: 14px;
		padding-top: 14px;
		padding-left: 0;
		border-top: 1px solid var(--color-divider);
		border-left: 0;
	}

	.info-payment__item + .info-payment__item {
		margin-top: 14px;
		padding-top: 14px;
		padding-left: 50px;
		border-top: 1px solid var(--color-divider);
		border-left: 0;
	}

	.info-payment__item + .info-payment__item::before {
		top: 14px;
		left: 0;
	}

	.info-notice {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 10px;
		padding: 16px;
	}

	.info-notice__icon {
		width: 38px;
		height: 38px;
	}

	.info-cta {
		align-items: stretch;
		flex-direction: column;
		gap: 16px;
		padding: 18px;
	}

	.info-cta__button {
		width: 100%;
		min-width: 0;
	}
}

/* ========================================================================== 
   INFO PAGE CONTENT — END
   ========================================================================== */

/* ========================================================================== 
   CONTACTS PAGE CONTENT — START
   ========================================================================== */

.contacts-page__top {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(16px, 2vw, 22px);
}

.contacts-page__panel,
.contacts-page__location {
	min-width: 0;
	padding: clamp(18px, 2vw, 22px);
}

.contacts-page__channels {
	display: grid;
	margin: 0;
	padding: 0;
}

.contacts-page__schedule {
	min-width: 0;
}

.contacts-page__contact {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	min-height: 54px;
	padding: 7px 8px;
	color: var(--color-text);
	border-bottom: 1px solid var(--color-divider);
	font-size: 0.98rem;
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	transition: color 0.18s ease, background-color 0.18s ease;
}

.contacts-page__contact:last-child {
	border-bottom: 0;
}

.contacts-page__contact:hover {
	color: var(--color-text-strong);
	background: var(--color-section-warm);
	text-decoration: none;
}

.contacts-page__contact:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.contacts-page__contact-text {
	min-width: 0;
	overflow-wrap: anywhere;
}

.contacts-page__icon {
	display: grid;
	width: 44px;
	height: 44px;
	color: var(--color-orange-dark);
	border: 1px solid var(--color-border-card);
	border-radius: 50%;
	flex: 0 0 44px;
	place-items: center;
}

.contacts-page__icon::before {
	display: block;
	width: 19px;
	height: 19px;
	background: currentColor;
	content: "";
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.contacts-page__icon--phone::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 3H4a1 1 0 0 0-1 1c0 9.4 7.6 17 17 17a1 1 0 0 0 1-1v-3l-4-1-1 2c-4.4-1.8-7.9-5.3-9.7-9.7L8 7 7 3Z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 3H4a1 1 0 0 0-1 1c0 9.4 7.6 17 17 17a1 1 0 0 0 1-1v-3l-4-1-1 2c-4.4-1.8-7.9-5.3-9.7-9.7L8 7 7 3Z'/%3E%3C/svg%3E");
}

.contacts-page__icon--email::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

.contacts-page__icon--telegram::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.7 3.4 18.5 19a1.5 1.5 0 0 1-2.3.9l-4.9-3.6-2.4 2.3c-.3.3-.5.5-1 .5l.4-5 9.1-8.2c.4-.4-.1-.6-.6-.3L5.6 12.7.8 11.2c-1-.3-1-1 .2-1.5L19.8 2.5c.9-.3 1.7.2 1.9.9Z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.7 3.4 18.5 19a1.5 1.5 0 0 1-2.3.9l-4.9-3.6-2.4 2.3c-.3.3-.5.5-1 .5l.4-5 9.1-8.2c.4-.4-.1-.6-.6-.3L5.6 12.7.8 11.2c-1-.3-1-1 .2-1.5L19.8 2.5c.9-.3 1.7.2 1.9.9Z'/%3E%3C/svg%3E");
}

.contacts-page__icon--max::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 720 720'%3E%3Cpath d='M350.4,9.6C141.8,20.5,4.1,184.1,12.8,390.4c3.8,90.3,40.1,168,48.7,253.7,2.2,22.2-4.2,49.6,21.4,59.3,31.5,11.9,79.8-8.1,106.2-26.4,9-6.1,17.6-13.2,24.2-22,27.3,18.1,53.2,35.6,85.7,43.4,143.1,34.3,299.9-44.2,369.6-170.3C799.6,291.2,622.5-4.6,350.4,9.6h0ZM269.4,504c-11.3,8.8-22.2,20.8-34.7,27.7-18.1,9.7-23.7-.4-30.5-16.4-21.4-50.9-24-137.6-11.5-190.9,16.8-72.5,72.9-136.3,150-143.1,78-6.9,150.4,32.7,183.1,104.2,72.4,159.1-112.9,316.2-256.4,218.6h0Z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 720 720'%3E%3Cpath d='M350.4,9.6C141.8,20.5,4.1,184.1,12.8,390.4c3.8,90.3,40.1,168,48.7,253.7,2.2,22.2-4.2,49.6,21.4,59.3,31.5,11.9,79.8-8.1,106.2-26.4,9-6.1,17.6-13.2,24.2-22,27.3,18.1,53.2,35.6,85.7,43.4,143.1,34.3,299.9-44.2,369.6-170.3C799.6,291.2,622.5-4.6,350.4,9.6h0ZM269.4,504c-11.3,8.8-22.2,20.8-34.7,27.7-18.1,9.7-23.7-.4-30.5-16.4-21.4-50.9-24-137.6-11.5-190.9,16.8-72.5,72.9-136.3,150-143.1,78-6.9,150.4,32.7,183.1,104.2,72.4,159.1-112.9,316.2-256.4,218.6h0Z'/%3E%3C/svg%3E");
}

.contacts-page__icon--clock::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.contacts-page__icon--location::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M12 2a8 8 0 0 0-8 8c0 5.6 8 12 8 12s8-6.4 8-12a8 8 0 0 0-8-8Zm0 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm0 2a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M12 2a8 8 0 0 0-8 8c0 5.6 8 12 8 12s8-6.4 8-12a8 8 0 0 0-8-8Zm0 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm0 2a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z'/%3E%3C/svg%3E");
}

.contacts-page__schedule-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 10px;
	color: var(--color-text-strong);
	font-size: clamp(1.15rem, 1.8vw, 1.35rem);
	line-height: 1.3;
}

.contacts-page__schedule-list {
	margin: 0;
	padding: 0;
}

.contacts-page__schedule-row {
	display: grid;
	grid-template-columns: minmax(80px, 0.45fr) minmax(0, 1fr);
	gap: 14px;
	padding: 11px 0;
	border-bottom: 1px solid var(--color-divider);
}

.contacts-page__schedule-row:last-child {
	border-bottom: 0;
}

.contacts-page__schedule-row dt,
.contacts-page__schedule-row dd {
	min-width: 0;
	margin: 0;
	overflow-wrap: anywhere;
}

.contacts-page__schedule-row dt {
	color: var(--color-text-muted);
}

.contacts-page__schedule-row dd {
	color: var(--color-text-strong);
	font-weight: 600;
	text-align: right;
}

.contacts-page__schedule-fallback {
	margin: 11px 0 0;
	color: var(--color-text-strong);
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.contacts-page__location {
	margin-top: clamp(22px, 2.5vw, 28px);
}

.contacts-page__location-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(20px, 3vw, 36px);
}

.contacts-page__location-copy {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-width: 0;
}

.contacts-page__location-copy > :last-child {
	min-width: 0;
}

.contacts-page__location-title {
	margin: 0 0 5px;
	color: var(--color-text-strong);
	font-size: clamp(1.18rem, 1.8vw, 1.4rem);
	line-height: 1.3;
}

.contacts-page__address {
	margin: 0;
	color: var(--color-text);
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.contacts-page__route-button {
	min-width: 190px;
	min-height: 50px;
	padding: 11px 20px;
	font-size: 0.98rem;
	flex: 0 0 auto;
}

.contacts-page__map {
	width: 100%;
	max-width: 100%;
	margin-top: 18px;
	overflow: hidden;
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-ui);
}

.contacts-page__map iframe {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 640px;
	border: 0;
}

@media (max-width: 780px) {
	.contacts-page__top {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 640px) {
	.contacts-page__panel,
	.contacts-page__location {
		padding: 17px;
	}

	.contacts-page__contact {
		padding-inline: 4px;
	}

	.contacts-page__schedule-row {
		grid-template-columns: max-content minmax(0, 1fr);
		align-items: center;
		gap: 12px;
	}

	.contacts-page__schedule-row dt,
	.contacts-page__schedule-row dd {
		white-space: nowrap;
	}

	.contacts-page__schedule-row dd {
		text-align: right;
	}

	.contacts-page__location {
		margin-top: 24px;
	}

	.contacts-page__location-header {
		align-items: stretch;
		flex-direction: column;
		gap: 16px;
	}

	.contacts-page__route-button {
		width: 100%;
		min-width: 0;
	}

	.contacts-page__map iframe {
		height: 310px;
	}
}

/* ========================================================================== 
   CONTACTS PAGE CONTENT — END
   ========================================================================== */

/* ========================================================================== 
   ABOUT PAGE CONTENT — START
   ========================================================================== */

.about-page__hero,
.about-page__production,
.about-page__delivery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: clamp(22px, 3vw, 34px);
	min-width: 0;
}

.about-page__hero-content,
.about-page__production-content,
.about-page__delivery-content {
	min-width: 0;
}

.about-page__hero-content > h2 {
	margin: 0;
	color: var(--color-text-strong);
	font-size: clamp(1.55rem, 2.8vw, 2.25rem);
	line-height: 1.15;
}

.about-page__lead {
	max-width: 780px;
	margin: 16px 0 0;
	color: var(--color-text);
	font-size: 1.02rem;
	line-height: 1.68;
}

.about-page .video-poster {
	aspect-ratio: 16 / 9;
}

.about-page__section {
	min-width: 0;
	margin-top: clamp(30px, 4vw, 42px);
}

.about-page__section > h2 {
	margin: 0 0 14px;
	color: var(--color-text-strong);
	font-size: clamp(1.4rem, 2.3vw, 1.8rem);
	line-height: 1.2;
}

.about-page__section > h2 + p {
	max-width: 860px;
	margin: 0;
}

.about-page__flow {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 20px;
}

.about-page__flow-item,
.about-page__info-card,
.about-page__audience {
	min-width: 0;
	padding: clamp(17px, 2vw, 21px);
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-card);
}

.about-page__flow-number {
	display: block;
	margin-bottom: 9px;
	color: var(--color-orange-dark);
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1;
}

.about-page__flow-item h3,
.about-page__info-card h3,
.about-page__audience h3 {
	margin: 0 0 8px;
	color: var(--color-text-strong);
	font-size: clamp(1.05rem, 1.6vw, 1.22rem);
	line-height: 1.3;
}

.about-page__flow-item > :last-child,
.about-page__info-card > :last-child,
.about-page__audience > :last-child {
	margin-bottom: 0;
}

.about-page__production {
	align-items: stretch;
}

.about-page__production-content {
	display: grid;
	align-content: start;
	gap: 14px;
}

.about-page__audiences {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.about-page__list {
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.about-page__list li {
	position: relative;
	padding-left: 23px;
}

.about-page__list li + li {
	margin-top: 7px;
}

.about-page__list li::before {
	position: absolute;
	top: 0.5em;
	left: 2px;
	width: 10px;
	height: 6px;
	border-bottom: 2px solid var(--color-orange-dark);
	border-left: 2px solid var(--color-orange-dark);
	content: "";
	transform: rotate(-45deg);
}

.about-page__delivery {
	align-items: stretch;
}

.about-page__delivery-map {
	min-width: 0;
	height: 320px;
	overflow: hidden;
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-ui);
}

.about-page__delivery-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.about-page__delivery-content {
	align-self: center;
}

.about-page__regions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.about-page__regions > * {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 11px;
	color: var(--color-text-strong);
	background: var(--color-orange-soft);
	border: 1px solid var(--color-border-card);
	border-radius: var(--radius-round);
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.2;
}

.about-page__address {
	margin: 18px 0 0;
	padding: 13px 15px;
	color: var(--color-text);
	background: var(--color-section-warm);
	border-left: 3px solid var(--color-orange);
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.about-page__address strong {
	color: var(--color-text-strong);
}

.about-page__documents {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.about-page__document {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-width: 0;
	min-height: 68px;
	padding: 14px 16px;
	color: var(--color-text-strong);
	background: var(--color-surface);
	border: 1px solid var(--color-border-card);
	border-radius: var(--radius-ui);
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.about-page__document::before {
	width: 34px;
	height: 34px;
	background: var(--color-orange-dark);
	content: "";
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2h8l4 4v16H6z'/%3E%3Cpath d='M14 2v5h5M9 13h6M9 17h6'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2h8l4 4v16H6z'/%3E%3Cpath d='M14 2v5h5M9 13h6M9 17h6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.about-page__document-title {
	min-width: 0;
}

.about-page__document-type {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 9px;
	color: var(--color-orange-dark);
	background: var(--color-orange-soft);
	border-radius: var(--radius-control);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
}

.about-page__document:hover {
	color: var(--color-orange-dark);
	background: var(--color-orange-soft);
	border-color: var(--color-border-card);
	text-decoration: none;
}

.about-page__document:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

@media (max-width: 900px) {
	.about-page__documents {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 800px) {
	.about-page__hero,
	.about-page__production,
	.about-page__delivery {
		grid-template-columns: minmax(0, 1fr);
	}

	.about-page__production,
	.about-page__delivery {
		gap: 20px;
	}

	.about-page__delivery-map {
		height: 310px;
	}
}

@media (max-width: 700px) {
	.about-page__flow,
	.about-page__audiences {
		grid-template-columns: minmax(0, 1fr);
	}

	.about-page__flow {
		margin-top: 17px;
	}
}

@media (max-width: 600px) {
	.about-page__section {
		margin-top: 28px;
	}

	.about-page__flow-item,
	.about-page__info-card,
	.about-page__audience {
		padding: 16px;
	}

	.about-page__documents {
		grid-template-columns: minmax(0, 1fr);
	}

	.about-page__document {
		min-height: 58px;
	}
}

/* ========================================================================== 
   ABOUT PAGE CONTENT — END
   ========================================================================== */

/* CATALOG SIDEBAR BENEFITS — START */

.catalog-benefits {
	margin: 0;
	padding: 20px;
}

.catalog-benefits__list {
	display: grid;
	margin: 0;
	padding: 0;
	list-style: none;
	grid-template-columns: minmax(0, 1fr);
}

.catalog-benefit {
	display: flex;
	align-items: flex-start;
	min-width: 0;
	gap: 11px;
	padding: 14px 0;
	border-bottom: 1px solid var(--color-divider);
}

.catalog-benefit:first-child {
	padding-top: 0;
}

.catalog-benefit:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.catalog-benefit__icon {
	display: grid;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	color: var(--color-orange-dark);
	place-items: center;
}

.catalog-benefit__icon svg {
	display: block;
	width: 28px;
	height: 28px;
}

.catalog-benefit__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}

.catalog-benefit__content strong {
	color: var(--color-text-strong);
	font-size: 0.9rem;
	line-height: 1.35;
}

.catalog-benefit__content > span {
	color: var(--color-text-muted);
	font-size: 0.78rem;
	line-height: 1.4;
}

/* CATALOG SIDEBAR BENEFITS — END */

.catalog-sidebar {
	min-width: 0;
	align-self: stretch;
}

.catalog-sidebar__sticky {
	min-width: 0;
}

.catalog-sidebar__disclosure {
	min-width: 0;
}

.catalog-sidebar__summary {
	display: none;
}

.catalog-sidebar__panel {
	display: grid;
	min-width: 0;
	gap: 14px;
}

.catalog-sidebar__search-card {
	padding: 20px;
}

.catalog-sidebar__categories-card {
	overflow: hidden;
}

.catalog-sidebar__search {
	display: flex;
	align-items: stretch;
	width: 100%;
	min-width: 0;
	margin: 0;
}

.catalog-sidebar__search-field {
	flex: 1 1 0;
	width: auto;
	min-width: 0;
	margin: 0;
	padding: 10px 13px;
	border-right: 0;
	border-radius: var(--radius-control) 0 0 var(--radius-control);
	font: inherit;
	font-size: 0.92rem;
	line-height: 1.2;
	appearance: none;
}

.catalog-sidebar__search-field:focus {
	position: relative;
	z-index: 1;
	border-color: var(--color-orange);
	box-shadow: inset 0 0 0 1px var(--color-orange);
	outline: none;
}

.catalog-sidebar__search-field:-webkit-autofill:focus {
	box-shadow:
		0 0 0 1000px var(--color-control-bg) inset,
		inset 0 0 0 1px var(--color-orange);
}

.catalog-sidebar__search-field::-webkit-search-cancel-button {
	margin-left: 6px;
}

.catalog-sidebar__search-submit {
	display: grid;
	width: 52px;
	height: 52px;
	margin: 0;
	padding: 0;
	flex: 0 0 52px;
	color: #fff;
	background: var(--color-orange);
	border: 1px solid var(--color-orange);
	border-radius: 0 var(--radius-control) var(--radius-control) 0;
	cursor: pointer;
	place-items: center;
	transition: background-color 0.18s ease, border-color 0.18s ease;
}

.catalog-sidebar__search-submit svg {
	display: block;
	width: 23px;
	height: 23px;
}

.catalog-sidebar__search-submit:hover {
	background: var(--color-orange-dark);
	border-color: var(--color-orange-dark);
}

.catalog-sidebar__search-submit:focus-visible {
	position: relative;
	z-index: 2;
	outline: 3px solid var(--color-orange-dark);
	outline-offset: 3px;
}

.catalog-sidebar__title,
.catalog-sidebar__help-title {
	margin: 0;
	color: var(--color-text-strong);
}

.catalog-sidebar__title {
	padding: 18px 20px;
	background: var(--color-section-warm);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.catalog-sidebar__navigation {
	min-width: 0;
	padding: 0 20px 16px;
}

.catalog-sidebar__terms {
	margin: 0;
	padding: 0;
	list-style: none;
}

.catalog-sidebar__terms .catalog-sidebar__terms {
	margin: 0 0 0 14px;
	padding-left: 10px;
	border-left: 1px solid var(--color-divider);
}

.catalog-sidebar__term + .catalog-sidebar__term {
	border-top: 1px solid var(--color-divider);
}

.catalog-sidebar__term > a {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 46px;
	padding: 8px 10px 8px 12px;
	color: var(--color-text);
	border-left: 3px solid transparent;
	border-radius: 0 var(--radius-control) var(--radius-control) 0;
	font-size: 0.94rem;
	font-weight: 400;
	line-height: 1.35;
	text-decoration: none;
	transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.catalog-sidebar__term-label {
	min-width: 0;
	overflow-wrap: anywhere;
}

.catalog-sidebar__term > a::after {
	width: 8px;
	height: 8px;
	margin-left: auto;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	flex: 0 0 8px;
	opacity: 0.65;
	transform: rotate(45deg);
}

.catalog-sidebar__term > a:hover,
.catalog-sidebar__term--branch > a {
	color: var(--color-text-strong);
	background: var(--color-orange-soft);
}

.catalog-sidebar__term--current > a,
.catalog-sidebar__term--current > a:hover,
.catalog-sidebar__term--current > a:focus-visible {
	color: var(--color-orange-dark);
	background: transparent;
	border-left-color: transparent;
	font-weight: 700;
}

.catalog-sidebar__term--current > a::after {
	color: var(--color-orange-dark);
	opacity: 1;
}

.catalog-sidebar__term > a:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 2px;
}

.catalog-sidebar__empty {
	margin: 0;
	color: var(--color-text-muted);
	font-size: 0.92rem;
	line-height: 1.5;
}

.catalog-sidebar__page-links {
	display: grid;
	gap: 10px;
}

.catalog-sidebar__page-links:empty {
	display: none;
}

.catalog-sidebar__page-link,
.catalog-sidebar__callback {
	min-height: 50px;
	padding: 10px 14px;
	font-size: 0.92rem;
	line-height: 1.25;
}

.catalog-sidebar__page-link {
	justify-content: flex-start;
	padding-inline: 16px;
	color: var(--color-orange-dark);
	background: var(--color-surface);
	border: 1px solid var(--color-orange);
}

.catalog-sidebar__page-link--wholesale {
	justify-content: center;
	color: #fff;
	background: var(--color-orange);
	border-color: var(--color-orange);
}

.catalog-sidebar__page-link--wholesale:hover {
	color: #fff;
	background: var(--color-orange-dark);
	border-color: var(--color-orange-dark);
}

.catalog-sidebar__page-link-icon {
	display: grid;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	place-items: center;
}

.catalog-sidebar__page-link-icon svg {
	display: block;
	width: 28px;
	height: 28px;
}

.catalog-sidebar__help {
	padding: 20px;
	background: var(--color-section-warm);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-panel);
}

.catalog-sidebar__help-title {
	font-size: 1.06rem;
	line-height: 1.3;
}

.catalog-sidebar__help p {
	margin: 10px 0 18px;
	color: var(--color-text-muted);
	font-size: 0.9rem;
	line-height: 1.5;
}

.catalog-sidebar__callback {
	width: 100%;
	box-sizing: border-box;
	border: 2px solid var(--color-orange);
}

.catalog-sidebar__summary:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.product-catalog__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
}

/* CATALOG ARCHIVE CONTENT — START */

.catalog-archive-content {
	width: 100%;
	margin-top: clamp(32px, 4vw, 48px);
	box-sizing: border-box;
	color: var(--color-text);
	font-size: 1rem;
	line-height: 1.7;
	overflow-wrap: anywhere;
}

.catalog-archive-content__body {
	max-width: 900px;
}

.catalog-archive-content.catalog-surface > h2 {
	margin: 0;
}

.catalog-archive-content > h2 + .collapsible__content {
	margin-top: 18px;
}

.catalog-archive-content__body > :first-child {
	margin-top: 0;
}

.catalog-archive-content__body > :last-child {
	margin-bottom: 0;
}

.catalog-archive-content p {
	margin: 0 0 1.1em;
}

.catalog-archive-content ul,
.catalog-archive-content ol {
	margin: 0 0 1.2em;
	padding-left: 1.4em;
}

.catalog-archive-content li + li {
	margin-top: 0.4em;
}

.catalog-archive-content a {
	color: var(--color-orange-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.catalog-archive-content a:hover {
	color: var(--color-text-strong);
}

.catalog-archive-content a:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.catalog-archive-content table {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 1.4em 0;
	overflow-x: auto;
	border-collapse: collapse;
	-webkit-overflow-scrolling: touch;
}

.catalog-archive-content th,
.catalog-archive-content td {
	padding: 10px 12px;
	border: 1px solid var(--color-divider);
	text-align: left;
	vertical-align: top;
}

.catalog-archive-content th {
	color: var(--color-text-strong);
	background: var(--color-section-warm);
	font-weight: 700;
}

.catalog-archive-content img,
.catalog-archive-content iframe {
	max-width: 100%;
}

/* CATALOG ARCHIVE CONTENT — END */

@media (min-width: 1200px) {
	.catalog-sidebar__sticky {
		position: sticky;
		top: var(--catalog-sidebar-sticky-top, 24px);
	}

	.catalog-sidebar__disclosure:not([open]) > .catalog-sidebar__panel {
		display: grid;
	}
}

@media (max-width: 1199px) {
	.catalog-sidebar__summary {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 52px;
		padding: 12px 16px;
		color: var(--color-text-strong);
		background: var(--color-surface);
		border: 1px solid var(--color-border-control);
		border-radius: var(--radius-control);
		font-weight: 700;
		cursor: pointer;
		list-style: none;
	}

	.catalog-sidebar__summary::-webkit-details-marker {
		display: none;
	}

	.catalog-sidebar__summary::after {
		content: "+";
		margin-left: 16px;
		color: var(--color-orange-dark);
		font-size: 1.35rem;
		font-weight: 400;
		line-height: 1;
	}

	.catalog-sidebar__disclosure[open] > .catalog-sidebar__summary::after {
		content: "−";
	}

	.catalog-sidebar__panel {
		margin-top: 10px;
	}

	.product-catalog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.catalog-sidebar {
		display: none;
	}
}

@media (max-width: 640px) {
	.catalog-sidebar__panel {
		gap: 12px;
	}

	.catalog-sidebar__search-card,
	.catalog-sidebar__help,
	.catalog-benefits {
		padding: 18px;
	}

	.catalog-sidebar__title {
		padding-inline: 18px;
	}

	.catalog-sidebar__navigation {
		padding-inline: 18px;
	}

	.catalog-archive-header,
	.catalog-archive-content {
		padding: 18px;
	}

	.product-catalog__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ========================================================================== 
   PRODUCT CATALOG — END
   ========================================================================== */

/* ========================================================================== 
   PRODUCT SINGLE — START
   ========================================================================== */

.product-single {
	width: 100%;
}

.product-single__main,
.product-single__card,
.product-single__top,
.product-single__gallery,
.product-single__info {
	min-width: 0;
}

.product-single__main {
	--product-single-gap: clamp(16px, 2vw, 24px);
}

.product-single__top {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
	gap: clamp(24px, 3vw, 38px);
	margin-top: clamp(22px, 2.5vw, 28px);
}

.product-gallery__stage {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-card);
}

.product-gallery__zoom {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: zoom-in;
}

.product-gallery__main-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.product-gallery__zoom-icon {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: grid;
	width: 44px;
	height: 44px;
	color: #fff;
	background: rgb(45 28 19 / 72%);
	border: 1px solid var(--color-border-dark);
	border-radius: var(--radius-round);
	pointer-events: none;
	place-items: center;
}

.product-gallery__zoom-icon svg {
	display: block;
	width: 21px;
	height: 21px;
}

.product-gallery__zoom:hover .product-gallery__zoom-icon {
	background: rgb(45 28 19 / 84%);
}

.product-gallery__zoom:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.product-gallery__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	max-width: calc(100% - 28px);
	padding: 7px 10px;
	color: #fff;
	background: var(--color-green);
	border-radius: var(--radius-control);
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.2;
}

.product-gallery__thumbnails {
	display: flex;
	width: 100%;
	max-width: 100%;
	gap: 10px;
	margin-top: 10px;
	padding: 2px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scrollbar-width: thin;
}

.product-gallery__thumbnail {
	display: block;
	width: 88px;
	height: 66px;
	margin: 0;
	padding: 2px;
	flex: 0 0 88px;
	overflow: hidden;
	background: var(--color-surface);
	border: 2px solid var(--color-border-control);
	border-radius: var(--radius-control);
	cursor: pointer;
}

.product-gallery__thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: calc(var(--radius-control) - 2px);
}

.product-gallery__thumbnail:hover,
.product-gallery__thumbnail.is-active {
	border-color: var(--color-orange);
}

.product-gallery__thumbnail:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 2px;
}

.product-single__excerpt {
	margin: 0;
	color: var(--color-text);
	font-size: 0.96rem;
	line-height: 1.6;
}

.product-attributes {
	display: grid;
	gap: 10px;
	margin: 22px 0 0;
}

.product-attributes__row {
	display: grid;
	align-items: end;
	min-width: 0;
	grid-template-columns: minmax(0, max-content) minmax(18px, 1fr) minmax(0, max-content);
	gap: 8px;
	font-size: 0.9rem;
	line-height: 1.45;
}

.product-attributes__row dt,
.product-attributes__row dd {
	min-width: 0;
	margin: 0;
	overflow-wrap: anywhere;
}

.product-attributes__row dt {
	font-weight: 600;
}

.product-attributes__leader {
	align-self: end;
	height: 0;
	min-width: 18px;
	border-bottom: 1px dotted var(--color-border-control);
}

.product-attributes__row dd {
	text-align: right;
}

.product-single__purchase {
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid var(--color-divider);
}

.product-single__price {
	margin: 0;
	color: var(--color-text-strong);
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	font-weight: 700;
	line-height: 1.2;
	text-align: end;
}

.product-single__primary-action {
	width: 100%;
	min-height: 50px;
	margin-top: 20px;
	padding: 11px 16px;
	box-sizing: border-box;
	border: 2px solid var(--color-orange);
	font-size: 0.94rem;
	line-height: 1.25;
}

.product-single__purchase .product-single__primary-action:first-child {
	margin-top: 0;
}

.product-single__promo-anchor {
	display: flex;
	justify-content: flex-end;
	width: fit-content;
	max-width: 100%;
	min-height: 44px;
	margin: 6px 0 0 auto;
	padding: 6px 0;
	text-align: right;
	text-decoration: underline;
	text-decoration-color: var(--color-orange);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	overflow-wrap: anywhere;
}

.product-single__promo-anchor:hover {
	text-decoration-thickness: 2px;
}

.product-single__promo-anchor:active {
	color: var(--color-orange);
}

.product-single__promo-anchor:first-child {
	margin-top: 0;
}

.product-single__promo-anchor + .product-single__primary-action {
	margin-top: 12px;
}

/* ========================================================================== 
   Product pricing
   ========================================================================== */

.product-single__section {
	min-width: 0;
	margin-top: clamp(26px, 3vw, 34px);
	padding-top: clamp(22px, 2.5vw, 30px);
	border-top: 1px solid var(--color-divider);
}

.product-single__section > .product-single__pricing-title {
	scroll-margin-top: 24px;
	overflow-wrap: anywhere;
	font-size: clamp(1.55rem, 2.2vw, 1.9rem);
	line-height: 1.2;
}

.product-single__section > h2,
.product-related__header h2 {
	margin: 0;
	color: var(--color-text-strong);
	font-size: clamp(1.65rem, 3vw, 2.35rem);
	line-height: 1.15;
}

.product-single__price-cards {
	display: grid;
	gap: clamp(22px, 3vw, 30px);
	margin-top: 20px;
}

.product-price-card {
	min-width: 0;
	overflow: hidden;
	background: var(--color-surface);
	border: 1px solid var(--color-border-card);
	border-radius: var(--radius-card);
}

.product-price-card--promo {
	scroll-margin-top: 24px;
}

.admin-bar .product-price-card--promo {
	scroll-margin-top: 70px;
}

.product-price-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-width: 0;
	padding: 15px 18px;
	background: var(--color-section-warm);
	border-bottom: 1px solid var(--color-border-card);
}

.product-price-card__label {
	min-width: 0;
	margin: 0;
	color: var(--color-text-strong);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
}

.product-price-card__profile {
	display: block;
	width: min(48%, 380px);
	height: 96px;
	max-width: 100%;
	margin-inline-start: auto;
	object-fit: contain;
	object-position: right center;
	flex: 0 0 auto;
}

.product-price-table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 24px;
}

.product-price-table:last-child {
	margin-bottom: 0;
}

.product-price-table__viewport {
	position: relative;
}

.product-price-table__scroll {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	border: 1px solid var(--color-border-card);
	border-radius: var(--radius-card) var(--radius-card) 0 0;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
}

.product-price-card .product-price-table {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.4;
}

.product-price-card .product-price-table__scroll {
	border: 0;
	border-radius: 0;
}

.product-price-table--promo .product-price-table__scroll tr:first-child > * {
	color: var(--color-text-strong);
	background: var(--color-section-warm);
	font-weight: 700;
}

.product-price-table--promo .product-price-table__scroll tr:not(:first-child) > *:nth-child(3) {
	color: var(--color-orange-dark);
	background: var(--color-orange-soft);
	font-weight: 700;
	text-align: center;
}

.product-price-table__swipe-hint {
	display: none;
	pointer-events: none;
}

@media (scripting: enabled) {
	.product-price-table--collapsible:not(.is-expanded) .product-price-table__overflow-row {
		display: none;
	}
}

.is-js .product-price-table--collapsible:not(.is-expanded) .product-price-table__overflow-row {
	display: none;
}

.product-price-table__toggle {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: calc(100% - 32px);
	min-height: 46px;
	margin: 16px;
	padding: 10px 15px;
	color: var(--color-orange-dark);
	background: var(--color-surface);
	border: 1px solid var(--color-orange);
	border-radius: var(--radius-ui);
	font: inherit;
	font-weight: 600;
	line-height: 1.25;
	text-align: left;
	cursor: pointer;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.is-js .product-price-table__toggle {
	display: flex;
}

.product-price-table__toggle:hover {
	color: var(--color-orange-dark);
	background: var(--color-orange-soft);
}

.product-price-table__toggle:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 2px;
}

.product-price-table__toggle-icon {
	width: 9px;
	height: 9px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 180ms ease;
	flex: 0 0 auto;
}

.product-price-table__toggle[aria-expanded="true"] .product-price-table__toggle-icon {
	transform: translateY(2px) rotate(225deg);
}

.product-price-table__scroll .table-promo tr:first-child > td {
	color: var(--color-text-strong);
	background: var(--color-section-warm);
	font-weight: 700;
}

.product-price-table__scroll .table-promo img {
	display: block;
	width: 100%;
	max-width: 450px;
	height: 59px;
	margin: 0 auto;
	object-fit: contain;
	transform: scale(1.8);
	transform-origin: center;
}

.product-price-table__scroll .table-promo tr:first-child > td:last-child {
	overflow: hidden;
	padding-top: 10px;
	padding-bottom: 10px;
}

/* Акции: первая строка — название товара + профиль */
.product-price-table__scroll .table-promo tr:first-child > td {
	vertical-align: middle;
}

/* Акции: выделение столбца «Скидка» */
.product-price-table__scroll .table-promo tr:not(:first-child) > td:nth-child(1) {
	color: var(--color-orange-dark);
	background: var(--color-orange-soft);
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
}

.product-price-table__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(18px, 3vw, 32px);
	padding: 18px 20px;
	background: var(--color-section-warm);
	border: 1px solid var(--color-border-card);
	border-top: 0;
	border-radius: 0 0 var(--radius-card) var(--radius-card);
}

.product-price-card .product-price-table__cta {
	border: 0;
	border-top: 1px solid var(--color-border-card);
	border-radius: 0;
}

.product-price-table__cta-copy {
	min-width: 0;
	flex: 1 1 auto;
}

.product-price-table__cta-text {
	min-width: 0;
	margin: 0;
	color: var(--color-text);
	line-height: 1.5;
	flex: 1 1 auto;
}

.product-price-table__cta-note {
	margin: 7px 0 0;
	color: var(--color-text-muted);
	font-size: 0.9rem;
	line-height: 1.5;
}

.product-price-table__cta-button {
	min-width: 172px;
	min-height: 48px;
	padding: 10px 18px;
	border: 2px solid var(--color-orange);
	font-size: 0.95rem;
	white-space: nowrap;
	flex: 0 0 auto;
}

.product-price-table__scroll table,
.product-single__body table {
	width: 100%;
	min-width: 620px;
	margin: 0;
	border-collapse: collapse;
}

body.page-slug-akczii-i-rasprodazhi .promotion-page__legacy-content .product-price-table__scroll .table-promo {
	table-layout: fixed;
}

.product-price-table__scroll th,
.product-price-table__scroll td,
.product-single__body th,
.product-single__body td {
	border: 1px solid var(--color-divider);
	text-align: left;
	vertical-align: top;
}

.product-price-table__scroll th,
.product-price-table__scroll td {
	padding: 9px 12px;
}

.product-single__body th,
.product-single__body td {
	padding: 12px 14px;
}

.product-price-table__scroll tr:first-child > * {
	border-top: 0;
}

.product-price-table__scroll tr:last-child > * {
	border-bottom: 0;
}

.product-price-table__scroll tr > *:first-child {
	border-left: 0;
}

.product-price-table__scroll tr > *:last-child {
	border-right: 0;
}

.product-price-table__scroll th,
.product-single__body th {
	color: var(--color-text-strong);
	background: var(--color-section-warm);
	font-weight: 700;
}

.product-price-table__scroll [colspan] {
	color: var(--color-text-strong);
	background: var(--color-section-warm);
	font-weight: 700;
}

/* Заголовки обычных прайсов товара */
.product-price-table--main .product-price-table__scroll table tr:first-child > td {
	color: var(--color-text-strong);
	background: var(--color-section-warm);
	font-weight: 700;
}

/* End Product pricing. */

.product-single__body {
	max-width: 900px;
	margin-top: 22px;
	overflow-x: auto;
	overflow-wrap: anywhere;
	color: var(--color-text);
	font-size: 1rem;
	line-height: 1.7;
}

.product-single__body > :first-child {
	margin-top: 0;
}

.product-single__body > :last-child {
	margin-bottom: 0;
}

.product-single__body h2,
.product-single__body h3 {
	color: var(--color-text-strong);
	line-height: 1.25;
}

.product-single__body h2 {
	margin: 1.6em 0 0.65em;
	font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.product-single__body h3 {
	margin: 1.4em 0 0.6em;
	font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.product-single__body ul,
.product-single__body ol {
	padding-left: 1.4em;
}

.product-single__body a {
	color: var(--color-orange-dark);
	text-underline-offset: 3px;
}

.product-single__body img,
.product-single__body iframe {
	max-width: 100%;
}

.product-single__body .wp-block-table {
	max-width: 100%;
	overflow-x: auto;
}

.product-related__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}

.product-related {
	margin-top: clamp(40px, 5vw, 64px);
}

.product-related__link {
	min-height: 44px;
	flex: 0 0 auto;
}

.product-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--product-single-gap);
}

body.product-gallery-modal-open {
	overflow: hidden;
}

.product-gallery-modal[hidden] {
	display: none;
}

.product-gallery-modal {
	position: fixed;
	z-index: 10000;
	inset: 0;
	display: grid;
	padding: clamp(16px, 3vw, 40px);
	background: rgb(0 0 0 / 84%);
	place-items: center;
}

.product-gallery-modal__dialog {
	position: relative;
	display: grid;
	width: min(100%, 1400px);
	height: min(100%, 900px);
	place-items: center;
}

.product-gallery-modal__image {
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.product-gallery-modal__close {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	display: grid;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	color: #fff;
	background: rgb(0 0 0 / 55%);
	border: 1px solid var(--color-border-dark);
	border-radius: var(--radius-round);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	place-items: center;
}

.product-gallery-modal__close:hover {
	background: rgb(0 0 0 / 75%);
}

.product-gallery-modal__close:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

@media (max-width: 900px) {
	.product-single__top {
		grid-template-columns: minmax(0, 1fr);
	}

	.product-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.product-price-table__swipe-hint {
		position: absolute;
		z-index: 3;
		top: 50%;
		left: 50%;

		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 6px;
		width: fit-content;
		max-width: calc(100% - 32px);
		padding: 12px 18px 14px;
		text-align: center;

		box-sizing: border-box;
		opacity: 0;
		visibility: hidden;
		color: var(--color-text);
		background: color-mix(in srgb, var(--color-section-warm) 94%, transparent);
		border: 1px solid var(--color-border-card);
		border-radius: var(--radius-ui);
		box-shadow: 0 4px 12px rgb(0 0 0 / 12%);
		font-size: 0.85rem;
		line-height: 1.35;
		transform: translate(-50%, calc(-50% + 8px));
		transition:
			opacity 190ms ease,
			transform 190ms ease,
			visibility 0s linear 190ms;
		pointer-events: none;
	}

	.product-price-table.is-swipe-hint-visible .product-price-table__swipe-hint {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, -50%);
		transition-delay: 0s;
	}

	.product-price-table__swipe-gesture {
		display: grid;
		width: 52px;
		height: 52px;
		color: var(--color-orange);
		place-items: center;
		flex: 0 0 auto;
	}

	.product-price-table.is-swipe-hint-visible .product-price-table__swipe-gesture {
		animation: product-price-swipe-gesture 2200ms ease-in-out 2;
	}

	.product-price-table__swipe-gesture img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.product-price-table__swipe-label {
		min-width: 0;
		max-width: none;
		line-height: 1.35;
		text-align: center;
		white-space: nowrap;
	}
}

@keyframes product-price-swipe-gesture {
	0%,
	100% {
		transform: translateX(0);
	}

	30% {
		transform: translateX(-8px);
	}

	65% {
		transform: translateX(8px);
	}
}

@media (max-width: 600px) {
	.product-single__card {
		padding: 18px;
	}

	.product-single__top {
		gap: 24px;
		margin-top: 22px;
	}

	.product-price-table__cta {
		align-items: stretch;
		flex-direction: column;
		gap: 16px;
		padding: 16px;
	}

	.product-price-table__cta-button {
		width: 100%;
		min-width: 0;
	}

	.product-price-card__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.product-price-card__profile {
		width: min(100%, 260px);
		max-height: 76px;
		margin-inline-start: 0;
	}

	.product-attributes {
		gap: 8px;
	}

	.product-attributes__row dt,
	.product-attributes__row dd {
		overflow-wrap: break-word;
		word-break: normal;
	}

	.product-gallery__stage {
		aspect-ratio: 4 / 3;
	}

	.product-gallery__thumbnail {
		width: 78px;
		height: 58px;
		flex-basis: 78px;
	}

	.product-related__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.product-related__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.product-gallery-modal {
		padding: 12px;
	}

	.product-gallery-modal__close {
		width: 44px;
		height: 44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.product-price-table__toggle,
	.product-price-table__toggle-icon {
		transition: none;
	}

	.product-price-table.is-swipe-hint-visible .product-price-table__swipe-gesture {
		animation: none;
	}
}

/* ========================================================================== 
   PRODUCT SINGLE — END
   ========================================================================== */
