/*
Theme Name: ИНФО-ЛАБ
Theme URI: https://inf-lab.ru/
Author: КОМБО
Author URI: https://inf-lab.ru/
Description: Кастомная тема типографии КОМБО (Жуковский и Раменский район). Каталог услуг, карточка товара с модалкой «Купить».
Version: 0.8.6
License: GPL-2.0-or-later
Text Domain: inf-lab
*/

/* =================================================================
   1. ДИЗАЙН-ТОКЕНЫ
   ================================================================= */
:root {
	--color-primary:        #0077b6;
	--color-primary-dark:   #005f92;
	--color-primary-light:  #e8f4fb;
	--color-accent:         #f26522;
	--color-accent-dark:    #d4511a;
	--color-accent-light:   #fff3ec;
	--color-neutral-900:    #1a1a1a;
	--color-neutral-700:    #4a4a4a;
	--color-neutral-400:    #9e9e9e;
	--color-neutral-200:    #e8e8e8;
	--color-neutral-100:    #f5f5f5;
	--color-surface:        #ffffff;
	--color-surface-alt:    #f5f5f5;
	--color-text:           #1a1a1a;
	--color-text-muted:     #6b6b6b;
	--color-text-on-dark:   #ffffff;
	--color-success:        #2ecc71;
	--color-error:          #e74c3c;

	--font-heading: 'Nunito', 'Arial Rounded MT Bold', Arial, sans-serif;
	--font-body:    'Nunito', Arial, sans-serif;
	--text-h1:    clamp(28px, 5vw, 40px);
	--text-h2:    clamp(22px, 4vw, 32px);
	--text-h3:    clamp(18px, 3vw, 24px);
	--text-h4:    clamp(16px, 2.5vw, 20px);
	--text-body:  16px;
	--text-small: 14px;
	--text-xs:    12px;
	--lh-heading: 1.2;
	--lh-body:    1.6;
	--fw-regular:    400;
	--fw-semibold:   600;
	--fw-bold:       700;
	--fw-extrabold:  800;

	--container-max:   1200px;
	--container-pad:   clamp(16px, 4vw, 40px);
	--space-4: 4px; --space-8: 8px; --space-12: 12px; --space-16: 16px;
	--space-20: 20px; --space-24: 24px; --space-32: 32px; --space-40: 40px;
	--space-48: 48px; --space-64: 64px; --space-80: 80px;
	--section-pad-y:  clamp(40px, 8vw, 80px);
	--grid-gap:        16px;
	--grid-gap-lg:     24px;
	--inflab-grid-cols-desktop: 4;
	--inflab-grid-cols-tablet:  3;
	--inflab-grid-cols-mobile:  3;

	--radius-sm:      4px;
	--radius-card:    12px;
	--radius-block:   16px;
	--radius-btn:     8px;
	--radius-input:   8px;
	--radius-modal:   16px;

	--shadow-card:        0 2px 12px rgba(0, 0, 0, 0.10);
	--shadow-card-hover:  0 6px 24px rgba(0, 0, 0, 0.18);
	--shadow-modal:       0 8px 40px rgba(0, 0, 0, 0.24);
	--shadow-btn:         0 2px 8px rgba(242, 101, 34, 0.30);
	--shadow-header:      0 2px 8px rgba(0, 0, 0, 0.08);

	--transition-fast: 150ms ease;
	--transition-base: 250ms ease;
	--transition-slow: 400ms ease;

	--z-header:     100;
	--z-drawer-bg:  150;
	--z-drawer:     160;
	--z-modal-bg:   200;
	--z-modal:      210;

	--header-h-desktop: 64px;
	--header-h-mobile:  56px;
}

/* =================================================================
   2. RESET + БАЗОВОЕ
   ================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--text-body);
	line-height: var(--lh-body);
	color: var(--color-text);
	background: var(--color-surface);
}
body.is-no-scroll { overflow: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-dark); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: var(--lh-heading); margin: 0 0 var(--space-16); color: var(--color-text); }
h1 { font-size: var(--text-h1); font-weight: var(--fw-extrabold); }
h2 { font-size: var(--text-h2); font-weight: var(--fw-bold); }
h3 { font-size: var(--text-h3); font-weight: var(--fw-bold); }
h4 { font-size: var(--text-h4); font-weight: var(--fw-semibold); }
p { margin: 0 0 var(--space-16); }
ul, ol { padding-left: 1.5em; margin: 0 0 var(--space-16); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding-left: var(--container-pad);
	padding-right: var(--container-pad);
}

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

/* =================================================================
   3. КНОПКИ
   ================================================================= */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: var(--space-8);
	padding: 12px 24px;
	font-family: inherit;
	font-size: var(--text-body);
	font-weight: var(--fw-semibold);
	line-height: 1;
	border: 1.5px solid transparent;
	border-radius: var(--radius-btn);
	background: transparent;
	color: var(--color-text);
	cursor: pointer;
	transition: background var(--transition-fast), color var(--transition-fast),
	            border-color var(--transition-fast), box-shadow var(--transition-fast),
	            transform var(--transition-fast);
	text-decoration: none;
}
.btn:hover { color: var(--color-text-on-dark); }
.btn--primary { background: var(--color-primary); color: var(--color-text-on-dark); }
.btn--primary:hover { background: var(--color-primary-dark); color: var(--color-text-on-dark); }
.btn--accent { background: var(--color-accent); color: var(--color-text-on-dark); box-shadow: var(--shadow-btn); }
.btn--accent:hover { background: var(--color-accent-dark); color: var(--color-text-on-dark); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary); color: var(--color-text-on-dark); }
.btn--lg { padding: 16px 32px; font-size: 17px; }
.btn--sm { padding: 10px 18px; font-size: var(--text-small); }
.btn--full { width: 100%; }

/* =================================================================
   4. ШАПКА
   ================================================================= */
.site-header {
	position: sticky; top: 0; left: 0; right: 0;
	z-index: var(--z-header);
	background: var(--color-surface);
	transition: box-shadow var(--transition-base);
}
.site-header--sticky { box-shadow: var(--shadow-header); }
.site-header--open { z-index: var(--z-drawer); }
.site-header__inner {
	display: flex;
	align-items: center;
	gap: var(--space-16);
	min-height: var(--header-h-desktop);
	flex-wrap: nowrap;
}
.site-header__start {
	display: flex;
	align-items: center;
	gap: var(--space-12);
	flex-shrink: 0;
}
.site-header__right {
	display: flex;
	align-items: center;
	gap: var(--space-16);
	margin-left: auto;
	min-width: 0;
	flex-shrink: 1;
}
.site-header__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	font-family: var(--font-heading);
	font-weight: var(--fw-extrabold);
	font-size: 22px;
	color: var(--color-primary);
	letter-spacing: 0.5px;
	white-space: nowrap;
}
.site-header__logo:hover { color: var(--color-primary-dark); }
.site-header__logo-img { display: block; height: 44px; width: auto; }
@media (max-width: 768px) { .site-header__logo-img { height: 36px; } }
.site-header__contacts {
	display: flex;
	align-items: center;
	gap: var(--space-12);
	flex-shrink: 1;
	min-width: 0;
}
.site-header__catalog {
	white-space: nowrap;
	flex-shrink: 0;
}
.site-header__call {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: var(--radius-btn);
	background: var(--color-accent);
	color: var(--color-text-on-dark);
	box-shadow: var(--shadow-btn);
	transition: background var(--transition-fast), transform var(--transition-fast);
}
.site-header__call:hover {
	background: var(--color-accent-dark);
	color: var(--color-text-on-dark);
	transform: translateY(-1px);
}
.site-header__call svg { display: block; width: 20px; height: 20px; }
.site-header__mail {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: var(--radius-btn);
	background: transparent;
	color: var(--color-text);
	box-shadow: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font: inherit;
	transition: background var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
}
.site-header__mail:hover {
	background: var(--color-neutral-100);
	color: var(--color-primary);
	transform: translateY(-1px);
}
.site-header__mail svg { display: block; width: 20px; height: 20px; }
.site-header__mail--mobile { display: none; }
.site-header__mail--desktop {
	display: inline-flex;
	width: 32px;
	height: 32px;
	position: relative;
}
.site-header__mail-toast {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	min-width: 168px;
	padding: 8px 12px;
	border-radius: var(--radius-card);
	background: var(--color-neutral-900);
	color: var(--color-text-on-dark);
	box-shadow: var(--shadow-card);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
	z-index: calc(var(--z-header) + 1);
	text-align: center;
}
.site-header__mail-toast.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
.site-header__mail-toast-title {
	display: block;
	font-size: 12px;
	font-weight: var(--fw-bold);
	line-height: 1.3;
}
.site-header__mail-toast-email {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	opacity: 0.85;
	line-height: 1.3;
	word-break: break-all;
}
.site-header__phone {
	font-weight: var(--fw-bold);
	color: var(--color-text);
	white-space: nowrap;
	font-size: clamp(13px, 1.05vw, 16px);
	letter-spacing: -0.01em;
}
.site-header__phone:hover { color: var(--color-primary); }
.site-header__socials { display: flex; gap: var(--space-8); flex-shrink: 1; min-width: 0; }
.site-header__social-link {
	width: 32px; height: 32px;
	flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	transition: transform var(--transition-fast);
}
.site-header__social-link:hover { transform: translateY(-2px); }
.site-header__social-link img,
.site-header__social-link svg { width: 28px; height: 28px; display: block; }

@media (max-width: 1100px) {
	.site-header__catalog {
		padding: 10px 16px;
		font-size: var(--text-small);
	}
}
@media (max-width: 1024px) {
	.site-header__phone { display: none; }
	.site-header__call { display: inline-flex; }
	.site-header__mail--desktop { display: none; }
	.site-header__mail--mobile { display: inline-flex; }
}
@media (max-width: 768px) {
	.site-header {
		padding-top: env(safe-area-inset-top, 0px);
	}
	.site-header::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 100%;
		height: 100vh;
		background: var(--color-surface);
		pointer-events: none;
	}
	.site-header__inner {
		flex-wrap: nowrap;
		align-items: center;
	}
	.site-header__right { display: contents; }
	.site-header__start { order: 1; min-width: 0; }
	.site-header__contacts {
		order: 2;
		margin-left: auto;
		gap: 6px;
		max-width: calc(100vw - var(--container-pad) - var(--container-pad) - 168px);
		overflow: hidden;
	}
	.site-header__catalog {
		padding: 10px 14px;
		font-size: 13px;
	}
	.site-header__call {
		width: 32px;
		height: 32px;
	}
	.site-header__call svg { width: 18px; height: 18px; }
	.site-header__mail {
		width: 32px;
		height: 32px;
	}
	.site-header__mail svg { width: 18px; height: 18px; }
	.site-header__socials { gap: 4px; }
	.site-header__social-link { width: 28px; height: 28px; }
	.site-header__social-link img,
	.site-header__social-link svg { width: 22px; height: 22px; }
}
@media (max-width: 640px) {
	.site-header__inner { min-height: var(--header-h-mobile); gap: var(--space-8); }
}

/* WP admin bar: шапка не отстаёт от верха при прокрутке */
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
@media screen and (min-width: 783px) {
	body.admin-bar .site-header { top: 32px; }
}

/* =================================================================
   5. ПОДВАЛ
   ================================================================= */
.site-footer {
	background: var(--color-neutral-900);
	color: var(--color-text-on-dark);
	padding-top: var(--grid-gap-lg);
	margin-top: 0;
}
.site-footer a { color: var(--color-text-on-dark); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer .offices {
	padding: 0 0 var(--grid-gap-lg);
	background: transparent;
}
.site-footer .offices__heading {
	color: var(--color-text-on-dark);
	margin-bottom: var(--grid-gap-lg);
	text-align: center;
}
.site-footer .offices__grid {
	gap: var(--grid-gap-lg);
}
.site-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: var(--grid-gap-lg) 0;
}
.site-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--grid-gap-lg);
	flex-wrap: wrap;
}
.site-footer__bottom-left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-12) var(--space-24);
}
.site-footer__copy { color: var(--color-neutral-400); font-size: var(--text-small); }
.site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-12) var(--space-20);
}
.site-footer__nav-link {
	color: var(--color-neutral-200);
	font-weight: var(--fw-semibold);
	text-decoration: none;
	font-size: var(--text-small);
	white-space: nowrap;
	transition: color var(--transition-fast);
}
.site-footer__nav-link:hover { color: var(--color-accent); }
.site-footer__bottom-actions {
	display: flex;
	align-items: center;
	gap: var(--grid-gap-lg);
	flex-wrap: wrap;
}
.site-footer__catalog-btn { flex-shrink: 0; }
.site-footer__catalog-link {
	color: var(--color-neutral-200);
	text-decoration: none;
	font-weight: var(--fw-semibold);
	font-size: var(--text-small);
	white-space: nowrap;
	transition: color var(--transition-fast);
}
.site-footer__catalog-link:hover { color: var(--color-accent); }
.site-footer__socials { display: flex; gap: var(--grid-gap-lg); align-items: center; }
.site-footer__socials a {
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	transition: transform var(--transition-fast);
}
.site-footer__socials a:hover { transform: translateY(-2px); }
.site-footer__socials img,
.site-footer__socials svg { width: 28px; height: 28px; display: block; }
.site-footer__legal {
	border-top: 1px solid rgba(255,255,255,0.06);
	padding: var(--space-12) 0 var(--space-16);
}
.site-footer__disclaimer {
	margin: 0;
	color: var(--color-neutral-500);
	font-size: 11px;
	line-height: 1.45;
	text-align: center;
	max-width: 920px;
	margin-inline: auto;
}

@media (max-width: 640px) {
	.site-footer__bottom-inner {
		flex-direction: column;
		align-items: stretch;
		gap: var(--space-16);
	}
	.site-footer__bottom-actions {
		display: none;
	}
	.site-footer__bottom-left {
		flex-direction: column;
		width: 100%;
		gap: var(--space-16);
		align-items: stretch;
	}
	.site-footer__nav {
		order: 1;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		gap: var(--space-12) var(--space-20);
	}
	.site-footer__nav-link {
		text-align: center;
	}
	.site-footer__copy {
		order: 2;
		width: 100%;
		text-align: center;
	}
}

.site-footer__inner {
	display: none;
}
.site-footer__logo,
.site-footer__tagline,
.site-footer__heading,
.site-footer__link { display: none; }

body:not(.home) .site-footer {
	margin-top: var(--space-32);
}

/* =================================================================
   6. КАРТОЧКИ КАТЕГОРИЙ И ТОВАРОВ
   ================================================================= */
.cat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--grid-gap);
}
@media (min-width: 1025px) { .cat-grid { gap: var(--grid-gap-lg); } }

.cat-card {
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
	min-height: 280px;
	background: var(--color-primary);
	color: #fff;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.cat-card__link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	min-height: inherit;
	padding: var(--space-24) var(--space-20);
	color: #fff;
	text-decoration: none;
	gap: var(--space-12);
}
.cat-card__title {
	display: block;
	font-family: var(--font-heading);
	font-weight: var(--fw-bold);
	font-size: clamp(20px, 2.4vw, 28px);
	text-align: center;
	color: #fff;
	line-height: var(--lh-heading);
}
.cat-card__desc {
	display: block;
	font-size: var(--text-small);
	text-align: center;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.4;
}

.cat-card--digital-print { background: #0077b6; }
.cat-card--wide-format   { background: #005f92; }
.cat-card--outdoor       { background: #f26522; }
.cat-card--branding      { background: #d4511a; }
.cat-card--canvas        { background: #2ecc71; }
.cat-card--uv-print      { background: #9b59b6; }
.cat-card--web           { background: #34495e; }

.product-grid,
.product-grid--home {
	display: grid;
	grid-template-columns: repeat(var(--inflab-grid-cols-desktop, 4), 1fr);
	gap: var(--grid-gap-lg);
}
@media (max-width: 1024px) {
	.product-grid,
	.product-grid--home {
		grid-template-columns: repeat(var(--inflab-grid-cols-tablet, 3), 1fr);
	}
}
@media (max-width: 640px) {
	.product-grid,
	.product-grid--home {
		grid-template-columns: repeat(var(--inflab-grid-cols-mobile, 3), 1fr);
		gap: var(--grid-gap);
	}
}

.product-card {
	background: var(--color-surface);
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.product-card__link { display: flex; flex-direction: column; height: 100%; color: var(--color-text); }
.product-card__img-wrap { aspect-ratio: 3/2; overflow: hidden; }
.product-card__img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: var(--space-20); display: flex; flex-direction: column; gap: var(--space-8); flex: 1; }
.product-card__title { font-size: var(--text-h4); margin: 0; }
.product-card__excerpt { color: var(--color-text-muted); font-size: var(--text-small); margin: 0; flex: 1; }
.product-card__cta {
	color: var(--color-primary);
	font-weight: var(--fw-semibold);
	font-size: var(--text-small);
	margin-top: var(--space-8);
}

.product-grid--js .product-card[data-batch-hidden="1"] { display: none; }

.product-card--reveal { animation: product-card-fade-in 0.32s ease-out both; }
@keyframes product-card-fade-in {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

.product-card--skeleton {
	background: var(--color-surface);
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	pointer-events: none;
}
.product-card__skeleton-img {
	aspect-ratio: 3/2;
	background: linear-gradient(110deg, #ececec 25%, #f7f7f7 50%, #ececec 75%);
	background-size: 200% 100%;
	animation: product-skeleton-shimmer 1.4s linear infinite;
}
.product-card__skeleton-body {
	padding: var(--space-20);
	display: flex;
	flex-direction: column;
	gap: var(--space-12);
}
.product-card__skeleton-line {
	height: 14px;
	border-radius: var(--radius-sm);
	background: linear-gradient(110deg, #ececec 25%, #f7f7f7 50%, #ececec 75%);
	background-size: 200% 100%;
	animation: product-skeleton-shimmer 1.4s linear infinite;
}
.product-card__skeleton-line--title { height: 22px; width: 70%; }
.product-card__skeleton-line--text  { width: 100%; }
.product-card__skeleton-line--short { width: 45%; }

@keyframes product-skeleton-shimmer {
	0%   { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
	.product-card__skeleton-img,
	.product-card__skeleton-line { animation: none; }
	.product-card--reveal { animation: none; }
}

.product-grid__sentinel {
	grid-column: 1 / -1;
	height: 1px;
	margin: 0;
}

/* =================================================================
   7. СТРАНИЦА ТОВАРА
   ================================================================= */
.main { padding: var(--space-32) 0 var(--space-48); }

.breadcrumbs { font-size: var(--text-small); color: var(--color-text-muted); margin-bottom: var(--space-24); }
.breadcrumbs__list { display: flex; flex-wrap: wrap; gap: var(--space-8); list-style: none; padding: 0; margin: 0; }
.breadcrumbs__item { display: inline-flex; align-items: center; gap: var(--space-8); }
.breadcrumbs__item + .breadcrumbs__item::before { content: "/"; color: var(--color-neutral-400); }
.breadcrumbs__item a { color: var(--color-text-muted); }
.breadcrumbs__item a:hover { color: var(--color-primary); }
.breadcrumbs__item--current { color: var(--color-text); }

.main--sitemap { padding-bottom: var(--space-48); }
.sitemap-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--grid-gap-lg);
	margin-bottom: var(--space-48);
}
.sitemap-section__title {
	margin: 0 0 var(--space-16);
	font-size: clamp(18px, 2vw, 22px);
}
.sitemap-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--space-8);
}
.sitemap-list a {
	color: var(--color-text);
	text-decoration: none;
	font-weight: var(--fw-semibold);
}
.sitemap-list a:hover { color: var(--color-primary); }
.sitemap-list ul {
	list-style: none;
	margin: var(--space-8) 0 0;
	padding-left: var(--space-16);
	border-left: 2px solid var(--color-neutral-200);
	display: grid;
	gap: var(--space-6);
}
.sitemap-list__group > a { color: var(--color-primary-dark); }
@media (max-width: 1024px) {
	.sitemap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
	.sitemap-grid { grid-template-columns: 1fr; }
}

.product-hero { margin-bottom: var(--space-32); }
.product-hero__title { margin: 0 0 var(--space-16); }
.product-hero__lead { font-size: clamp(16px, 2vw, 18px); color: var(--color-text-muted); max-width: 680px; }

.product-video { margin-bottom: var(--space-40); }
.product-video__embed { aspect-ratio: 16/9; border-radius: var(--radius-card); overflow: hidden; background: var(--color-neutral-100); }
.product-video__embed iframe { width: 100%; height: 100%; border: 0; }
.product-video__caption { color: var(--color-text-muted); font-size: var(--text-small); margin-top: var(--space-8); }

.product-gallery { margin-bottom: var(--space-40); }
.product-gallery__heading { font-size: var(--text-h3); margin: 0 0 var(--space-16); }
.product-gallery__strip {
	display: flex;
	gap: var(--grid-gap);
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding-bottom: var(--space-8);
	scrollbar-width: thin;
	scrollbar-color: var(--color-primary-light) transparent;
}
.product-gallery__strip::-webkit-scrollbar { height: 6px; }
.product-gallery__strip::-webkit-scrollbar-thumb { background: var(--color-primary-light); border-radius: 3px; }
.product-gallery__item {
	flex: 0 0 clamp(200px, 72vw, 320px);
	scroll-snap-align: start;
	margin: 0;
	cursor: zoom-in;
	border-radius: var(--radius-card);
	overflow: hidden;
	aspect-ratio: 4/3;
}
.product-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.product-gallery__item:hover img { transform: scale(1.04); }

.product-description { margin-bottom: var(--space-40); }
.product-description__text { line-height: var(--lh-body); }
.product-description__text .wp-block-table,
.product-description__text figure:has(table) {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
	margin: var(--space-24) 0;
}
.product-description__text table {
	width: 100%;
	min-width: 480px;
	border-collapse: collapse;
	margin: 0;
	font-size: var(--text-small);
}
.product-description__text th,
.product-description__text td {
	padding: var(--space-12);
	border: 1px solid var(--color-neutral-200);
	text-align: left;
}
.product-description__text th { background: var(--color-primary-light); font-weight: var(--fw-bold); }
.product-description__text tbody tr:nth-child(even) { background: var(--color-neutral-100); }

.product-cta {
	background: var(--color-primary-light);
	border-radius: var(--radius-block);
	padding: var(--space-40);
}
.product-cta__inner { display: flex; justify-content: space-between; align-items: center; gap: var(--space-24); flex-wrap: wrap; }
.product-cta__heading { margin: 0 0 var(--space-8); }
.product-cta__sub { margin: 0; color: var(--color-text-muted); }
@media (max-width: 640px) {
	.product-cta { padding: var(--space-24); }
	.product-cta__inner { flex-direction: column; align-items: stretch; }
	.product-cta__inner .btn { width: 100%; }
}

/* =================================================================
   8. МОДАЛКА
   ================================================================= */
.modal-overlay {
	position: fixed; inset: 0;
	background: rgba(0,0,0,0.55);
	z-index: var(--z-modal-bg);
	display: flex; align-items: center; justify-content: center;
	padding: var(--space-16);
	opacity: 0; pointer-events: none;
	transition: opacity var(--transition-base);
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal {
	position: relative;
	background: var(--color-surface);
	border-radius: var(--radius-modal);
	padding: var(--space-32);
	max-width: 480px; width: 100%;
	box-shadow: var(--shadow-modal);
	z-index: var(--z-modal);
	transform: scale(0.95);
	transition: transform var(--transition-base);
	max-height: calc(100vh - 32px);
	overflow-y: auto;
}
.modal-overlay.is-open .modal { transform: scale(1); }
.modal__close {
	position: absolute; top: 12px; right: 12px;
	width: 32px; height: 32px;
	background: transparent; border: 0;
	font-size: 24px; line-height: 1;
	color: var(--color-text-muted);
	border-radius: 50%;
	transition: background var(--transition-fast), color var(--transition-fast);
}
.modal__close:hover { background: var(--color-neutral-100); color: var(--color-text); }
.modal__title { font-size: var(--text-h3); margin: 0 0 var(--space-20); padding-right: 32px; }

.modal-form__group { margin-bottom: var(--space-16); }
.modal-form__label { display: block; font-size: var(--text-small); font-weight: var(--fw-semibold); margin-bottom: var(--space-8); }
.modal-form__input {
	width: 100%;
	padding: var(--space-12) var(--space-16);
	font-family: inherit;
	font-size: var(--text-body);
	color: var(--color-text);
	background: var(--color-surface);
	border: 1.5px solid var(--color-neutral-200);
	border-radius: var(--radius-input);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.modal-form__input:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px var(--color-primary-light);
}
.modal-form__textarea { resize: vertical; min-height: 80px; }
.modal-form__privacy { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: var(--space-12); margin-bottom: 0; }
.modal-form__status { padding: var(--space-12); border-radius: var(--radius-sm); margin-top: var(--space-16); font-size: var(--text-small); display: none; }
.modal-form__status.is-success { display: block; background: rgba(46,204,113,0.12); color: var(--color-success); }
.modal-form__status.is-error   { display: block; background: rgba(231,76,60,0.12); color: var(--color-error); }

/* =================================================================
   9. LIGHTBOX
   ================================================================= */
.lightbox {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	max-width: 100vw;
	max-height: 100vh;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(0,0,0,0.92);
}
.lightbox[open] {
	display: flex;
	align-items: center;
	justify-content: center;
}
.lightbox::backdrop { background: rgba(0,0,0,0.85); }
.lightbox__img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-card); display: block; object-fit: contain; }
.lightbox__close {
	position: fixed; top: 20px; right: 20px;
	width: 44px; height: 44px;
	background: rgba(255,255,255,0.15); color: #fff;
	border: 0; border-radius: 50%;
	font-size: 24px; line-height: 1;
	cursor: pointer;
}
.lightbox__close:hover { background: rgba(255,255,255,0.3); }
.lightbox__nav {
	position: fixed;
	top: 50%; transform: translateY(-50%);
	width: 48px; height: 48px;
	background: rgba(255,255,255,0.15); color: #fff;
	border: 0; border-radius: 50%;
	font-size: 28px; line-height: 1;
	cursor: pointer;
}
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__nav:hover { background: rgba(255,255,255,0.3); }

/* =================================================================
   10. ГЛАВНАЯ - HERO И БЛОКИ
   ================================================================= */
.section { padding: var(--section-pad-y) 0; }
.section--alt { background: var(--color-surface-alt); }
.section__heading { text-align: center; margin-bottom: var(--space-40); }

.hero {
	padding: var(--space-48) 0 var(--space-32);
}
.hero__title { font-size: var(--text-h1); margin: 0 0 var(--space-16); }
.hero__lead { font-size: clamp(16px, 2vw, 18px); color: var(--color-text-muted); max-width: 720px; margin: 0; }

.other-products {
	background: var(--color-surface-alt);
	border-radius: var(--radius-block);
	padding: var(--space-24) var(--space-32);
	display: flex; justify-content: space-between; align-items: center;
	gap: var(--space-16); flex-wrap: wrap;
	margin: var(--space-32) 0;
}
.other-products__title { font-size: var(--text-h3); margin: 0; }

.features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--grid-gap-lg);
}
@media (max-width: 640px) { .features { grid-template-columns: 1fr; } }
.feature {
	display: flex; gap: var(--space-20);
	background: var(--color-surface);
	border-radius: var(--radius-block);
	padding: var(--space-24);
	box-shadow: var(--shadow-card);
}
.feature__icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-primary-light);
	color: var(--color-primary);
	border-radius: 50%;
}
.feature__icon svg { width: 32px; height: 32px; }
.feature__icon img { width: 100%; height: 100%; object-fit: contain; }
.feature__title { font-size: var(--text-h4); margin: 0 0 var(--space-8); }
.feature__text { color: var(--color-text-muted); font-size: var(--text-small); margin: 0; }

.main--home {
	padding: 0;
}
.main--catalog {
	padding: 0;
}
.main--catalog .container {
	padding-top: var(--grid-gap);
}
.main--catalog .product-grid {
	gap: var(--grid-gap);
}
.main--home .home-products.section {
	padding-top: var(--grid-gap);
	padding-bottom: var(--grid-gap);
}
.main--home .home-features.section {
	padding-top: var(--grid-gap);
	padding-bottom: var(--grid-gap);
	margin-bottom: 0;
}
.main--home .home-features .section__heading {
	margin-bottom: var(--grid-gap-lg);
}
.main--home .product-grid--home {
	gap: var(--grid-gap);
}
.main--home .features {
	gap: var(--grid-gap);
}

@media (max-width: 640px) {
	body.inflab-grid-mobile-compact .product-grid .product-card__body {
		padding: var(--space-8);
	}
	body.inflab-grid-mobile-compact .product-grid .product-card__title {
		font-size: 11px;
		line-height: 1.25;
	}
	body.inflab-grid-mobile-compact .product-grid .product-card__excerpt {
		display: none;
	}

	.main {
		padding: var(--grid-gap) 0 var(--space-24);
	}
	.main--home {
		padding: 0;
	}
	.main--catalog {
		padding: 0;
	}
	.main--catalog .container {
		padding-top: var(--grid-gap);
	}

	.product-grid {
		gap: var(--grid-gap);
	}
	.product-card__body {
		padding: var(--grid-gap);
		gap: var(--space-8);
	}
	.product-card__skeleton-body {
		padding: var(--grid-gap);
		gap: var(--space-8);
	}

	.main--home .home-products.section,
	.main--home .home-features.section {
		padding-top: var(--grid-gap);
		padding-bottom: var(--grid-gap);
	}
	.main--home .home-features .section__heading {
		margin-bottom: var(--grid-gap);
	}
	.main--home .feature {
		padding: var(--grid-gap);
		gap: var(--grid-gap);
	}
	.main--home .feature__icon {
		width: 48px;
		height: 48px;
	}
	.main--home .feature__icon svg {
		width: 24px;
		height: 24px;
	}
	.main--home .feature__title {
		margin-bottom: var(--space-4);
	}

	.site-footer {
		padding-top: var(--grid-gap);
	}
	.site-footer .offices {
		padding-bottom: var(--grid-gap);
	}
	.site-footer .offices__heading {
		margin-bottom: var(--grid-gap);
	}
	.site-footer .offices__grid {
		gap: var(--grid-gap);
	}
	.site-footer__bottom {
		padding: var(--grid-gap) 0;
	}
	.site-footer__bottom-inner {
		gap: var(--space-16);
	}
	.office-card__body {
		padding: var(--grid-gap);
	}
	.office-card__meta {
		margin-bottom: var(--grid-gap);
		gap: var(--space-8);
	}
}

/* =================================================================
   11. ГЛАВНАЯ - КАРТОЧКИ КАТЕГОРИЙ С ФОТО-ОБЛОЖКАМИ
   ================================================================= */

.hero--compact {
	min-height: auto;
	display: flex;
	align-items: center;
	padding: var(--space-48) 0 var(--space-32);
}
.hero--compact .hero__inner {
	display: flex;
	align-items: center;
}
.hero--compact .hero__content {
	max-width: 680px;
}
.hero--compact .hero__lead {
	margin-bottom: var(--space-24);
}
@media (max-width: 640px) {
	.hero--compact {
		padding: var(--space-32) 0 var(--space-24);
	}
}

.home-categories__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--grid-gap-lg);
}
@media (max-width: 1024px) {
	.home-categories__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--grid-gap);
	}
}
@media (max-width: 640px) {
	.home-categories__grid {
		grid-template-columns: 1fr;
		gap: var(--grid-gap);
	}
}

.cat-card--image {
	background: var(--color-neutral-900);
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	aspect-ratio: 4 / 3;
	min-height: 220px;
	transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.cat-card--image:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-4px);
}
@media (max-width: 640px) {
	.cat-card--image {
		aspect-ratio: 4 / 3;
		transform: none !important;
	}
	.cat-card--image:hover {
		transform: none;
	}
}

.cat-card--image .cat-card__link {
	display: block;
	position: absolute;
	inset: 0;
	color: var(--color-text-on-dark);
	text-decoration: none;
	padding: 0;
	gap: 0;
	-webkit-tap-highlight-color: rgba(0,0,0,0.1);
}
.cat-card--image .cat-card__link:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: -4px;
}

.cat-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform var(--transition-slow);
	will-change: transform;
}
.cat-card--image:hover .cat-card__bg {
	transform: scale(1.05);
}
@media (max-width: 640px) {
	.cat-card--image:hover .cat-card__bg {
		transform: none;
	}
}

.cat-card__bg--placeholder {
	background: var(--color-neutral-700);
	display: flex;
	align-items: center;
	justify-content: center;
}
.cat-card--no-image.cat-card--digital-print .cat-card__bg--placeholder { background: #0077b6; }
.cat-card--no-image.cat-card--wide-format   .cat-card__bg--placeholder { background: #005f92; }
.cat-card--no-image.cat-card--outdoor       .cat-card__bg--placeholder { background: #f26522; }
.cat-card--no-image.cat-card--branding      .cat-card__bg--placeholder { background: #d4511a; }
.cat-card--no-image.cat-card--canvas        .cat-card__bg--placeholder { background: #2ecc71; }
.cat-card--no-image.cat-card--uv-print      .cat-card__bg--placeholder { background: #9b59b6; }

.cat-card__placeholder-icon {
	width: 64px;
	height: 64px;
	color: rgba(255,255,255,0.3);
	flex-shrink: 0;
}

.cat-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.88) 0%,
		rgba(0, 0, 0, 0.70) 35%,
		rgba(0, 0, 0, 0.30) 65%,
		rgba(0, 0, 0, 0.05) 100%
	);
	transition: background var(--transition-base);
	pointer-events: none;
}
.cat-card--image:hover .cat-card__overlay {
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.92) 0%,
		rgba(0, 0, 0, 0.78) 40%,
		rgba(0, 0, 0, 0.38) 70%,
		rgba(0, 0, 0, 0.10) 100%
	);
}

.cat-card__body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: var(--space-20) var(--space-24);
	display: flex;
	flex-direction: column;
	gap: var(--space-8);
}
@media (max-width: 640px) {
	.cat-card__body {
		padding: var(--space-16) var(--space-16);
	}
}

.cat-card--image .cat-card__title {
	font-family: var(--font-heading);
	font-weight: var(--fw-bold);
	font-size: clamp(18px, 2.2vw, 26px);
	color: var(--color-text-on-dark);
	line-height: var(--lh-heading);
	text-align: left;
	text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.cat-card--image .cat-card__desc {
	font-size: var(--text-small);
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.35;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	text-shadow: 0 1px 3px rgba(0,0,0,0.55);
	max-height: 2.7em;
}
@media (max-width: 640px) {
	.cat-card--image .cat-card__desc {
		display: none;
	}
}

.cat-card__arrow {
	display: inline-flex;
	align-items: center;
	font-size: var(--text-small);
	font-weight: var(--fw-semibold);
	color: var(--color-accent-light);
	margin-top: var(--space-4);
	transition: transform var(--transition-fast);
}
.cat-card--image:hover .cat-card__arrow {
	transform: translateX(4px);
}

/* =================================================================
   12. ВАЛИДАЦИЯ И УТИЛИТЫ
   ================================================================= */
.modal-form__input:invalid:not(:placeholder-shown) {
	border-color: var(--color-error);
}

/* =================================================================
   13. СТРАНИЦА КАТЕГОРИИ - Hero, Галерея, Landing, Lightbox
   ================================================================= */

/* ---- Cat Hero ---- */
.cat-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 180px;
	border-radius: var(--radius-block);
	background: var(--color-primary-light);
	margin-bottom: var(--space-40);
	overflow: hidden;
}

.cat-hero--photo {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: clamp(180px, 40vh, 380px);
}

.cat-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.65) 100%);
	pointer-events: none;
}

.cat-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: var(--space-20);
}
@media (min-width: 641px) {
	.cat-hero__content { padding: var(--space-32); }
}
@media (min-width: 1025px) {
	.cat-hero__content { padding: var(--space-48); }
}

.cat-hero__title {
	font-size: var(--text-h1);
	font-weight: var(--fw-extrabold);
	margin-bottom: var(--space-8);
	color: var(--color-text);
}
.cat-hero--photo .cat-hero__title {
	color: var(--color-text-on-dark);
	text-shadow: 0 2px 8px rgba(0,0,0,0.40);
}

.cat-hero__lead {
	font-size: var(--text-body);
	line-height: var(--lh-body);
	color: var(--color-text-muted);
}
.cat-hero--photo .cat-hero__lead {
	color: rgba(255,255,255,0.90);
	text-shadow: 0 1px 4px rgba(0,0,0,0.30);
}
.cat-hero__lead p { margin: 0; }

@media (min-width: 641px) {
	.cat-hero--photo { min-height: 280px; }
}
@media (min-width: 1025px) {
	.cat-hero--photo { min-height: 380px; }
}

/* ---- Cat Products ---- */
.cat-products {
	margin-bottom: var(--space-48);
}

/* ---- Cat Works ---- */
.cat-works {
	margin-top: var(--space-48);
}

.cat-works__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--grid-gap);
	margin-top: var(--space-24);
}
@media (min-width: 641px) {
	.cat-works__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1025px) {
	.cat-works__grid { grid-template-columns: repeat(4, 1fr); }
}

.cat-works__item {
	margin: 0;
	border-radius: var(--radius-card);
	overflow: hidden;
	cursor: zoom-in;
	box-shadow: var(--shadow-card);
	transition: box-shadow var(--transition-base), transform var(--transition-base);
	aspect-ratio: 3 / 2;
}
.cat-works__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--transition-slow);
}
.cat-works__item:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-2px);
}
.cat-works__item:hover img {
	transform: scale(1.04);
}

/* ---- Cat Landing ---- */
.cat-landing {
	display: grid;
	gap: var(--space-40);
	margin-bottom: var(--space-48);
}
@media (min-width: 1025px) {
	.cat-landing {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}

.cat-landing__description {
	font-size: var(--text-body);
	line-height: var(--lh-body);
	color: var(--color-text);
}
.cat-landing__description p:last-child { margin-bottom: 0; }

.cat-landing__calc {
	background: var(--color-surface-alt);
	border-radius: var(--radius-block);
	padding: var(--space-32);
}
@media (max-width: 640px) {
	.cat-landing__calc { padding: var(--space-20); }
}

.cat-landing__calc-heading {
	font-size: var(--text-h3);
	font-weight: var(--fw-bold);
	margin-bottom: var(--space-24);
}

/* ---- Calc Form ---- */
.calc-form {
	display: flex;
	flex-direction: column;
	gap: var(--space-16);
}

.calc-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-16);
}
@media (max-width: 640px) {
	.calc-form__row { grid-template-columns: 1fr; }
}

.calc-form__group {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.calc-form__label {
	font-size: var(--text-small);
	font-weight: var(--fw-semibold);
	color: var(--color-text-muted);
}

.calc-form__input {
	width: 100%;
	padding: 10px 14px;
	font-family: inherit;
	font-size: var(--text-body);
	color: var(--color-text);
	background: var(--color-surface);
	border: 1.5px solid var(--color-neutral-200);
	border-radius: var(--radius-input);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
	outline: none;
	box-sizing: border-box;
}
.calc-form__input:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(0,119,182,0.15);
}
.calc-form__input:invalid:not(:placeholder-shown) {
	border-color: var(--color-error);
}

.calc-form__textarea {
	resize: vertical;
	min-height: 100px;
}

/* ---- Cat Lightbox ---- */
.cat-lightbox {
	position: fixed;
	inset: 0;
	margin: 0;
	padding: 0;
	background: rgba(0,0,0,0.92);
	border: none;
	box-shadow: var(--shadow-modal);
	z-index: var(--z-modal);
	width: 100vw;
	height: 100vh;
	max-width: 100vw;
	max-height: 100vh;
	display: none;
	overflow: hidden;
}
.cat-lightbox[open] {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cat-lightbox::backdrop {
	background: rgba(0,0,0,0.75);
	backdrop-filter: blur(2px);
}

.cat-lightbox__close {
	position: absolute;
	top: var(--space-12);
	right: var(--space-16);
	z-index: 1;
	background: rgba(0,0,0,0.55);
	color: var(--color-text-on-dark);
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition-fast);
	padding: 0;
}
.cat-lightbox__close:hover {
	background: rgba(0,0,0,0.85);
}

@media (max-width: 640px) {
	.cat-lightbox {
		height: 100dvh;
	}
	.cat-lightbox__close {
		top: var(--space-16);
		right: var(--space-16);
		width: 44px;
		height: 44px;
		font-size: 24px;
	}
}

.cat-lightbox__figure {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: var(--space-48) var(--space-24) var(--space-24);
	max-width: 100%;
	max-height: 100%;
}
@media (max-width: 640px) {
	.cat-lightbox__figure {
		padding: 64px var(--space-16) var(--space-16);
	}
}

.cat-lightbox__img {
	display: block;
	max-width: 90vw;
	max-height: 80vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius-sm);
}
@media (max-width: 640px) {
	.cat-lightbox__img {
		max-height: calc(100dvh - 140px);
		max-width: 100vw;
	}
}

.cat-lightbox__caption {
	margin-top: var(--space-12);
	font-size: var(--text-small);
	color: rgba(255,255,255,0.70);
	text-align: center;
	min-height: 1em;
}

/* ---- Recent Works ---- */
.recent-works {
}

.recent-works__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--grid-gap);
	margin-top: var(--space-24);
}
@media (min-width: 641px) {
	.recent-works__grid { grid-template-columns: repeat(3, 1fr); }
}

.recent-works__item {
	margin: 0;
	border-radius: var(--radius-card);
	overflow: hidden;
	cursor: zoom-in;
	box-shadow: var(--shadow-card);
	transition: box-shadow var(--transition-base), transform var(--transition-base);
	aspect-ratio: 3 / 2;
}
.recent-works__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--transition-slow);
}
.recent-works__item:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-2px);
}
.recent-works__item:hover img {
	transform: scale(1.04);
}

.recent-works__more {
	text-align: center;
	margin-top: var(--space-32);
	margin-bottom: 0;
}
[hidden] { display: none !important; }

/* =================================================================
   14. КАЛЬКУЛЯТОР СТОИМОСТИ (single-product)
   ================================================================= */

.js-hide { display: none !important; }

.product-calc {
	background: var(--color-surface-alt);
	border-radius: var(--radius-block);
	padding: var(--space-40);
	margin-bottom: var(--space-40);
}
@media (max-width: 640px) {
	.product-calc { padding: var(--space-24) var(--space-20); }
}

.product-calc__heading {
	font-size: var(--text-h2);
	font-weight: var(--fw-bold);
	margin: 0 0 var(--space-32);
}

.product-calc__form {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-24);
	margin-bottom: var(--space-32);
}
@media (min-width: 641px) {
	.product-calc__form {
		grid-template-columns: 1fr 1fr;
	}
	.product-calc__field--full,
	.product-calc__form .product-calc__field:has(.product-calc__options),
	.product-calc__form .product-calc__field:has(.product-calc__addons) {
		grid-column: 1 / -1;
	}
	.product-calc__form .product-calc__field:last-child {
		grid-column: 1 / -1;
	}
}

.product-calc__field {
	display: flex;
	flex-direction: column;
	gap: var(--space-8);
	min-width: 0;
}

.product-calc__field--full {
	width: 100%;
}

.product-calc__label {
	font-size: var(--text-small);
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--color-text-muted);
}

.product-calc__options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr));
	gap: var(--space-8);
	width: 100%;
	align-items: stretch;
}
.product-calc__addons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
	gap: var(--space-8);
	width: 100%;
	align-items: stretch;
}
@media (min-width: 641px) {
	.product-calc__options {
		grid-template-columns: repeat(var(--calc-tile-cols, 4), minmax(0, 1fr));
	}
	.product-calc__addons {
		grid-template-columns: repeat(var(--calc-tile-cols, 2), minmax(0, 1fr));
	}
}

.product-calc__option {
	display: flex;
	flex-direction: column;
	cursor: pointer;
	user-select: none;
	min-width: 0;
	height: 100%;
}
.product-calc__option input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}
.product-calc__option-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	min-height: 44px;
	height: 100%;
	width: 100%;
	padding: var(--space-8) var(--space-12);
	background: var(--color-surface);
	border: 1.5px solid var(--color-neutral-200);
	border-radius: var(--radius-btn);
	font-size: var(--text-small);
	font-weight: var(--fw-semibold);
	color: var(--color-text);
	transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
	white-space: normal;
	text-align: center;
	line-height: 1.3;
	box-sizing: border-box;
	gap: 2px;
}
.product-calc__option-meta {
	display: block;
	font-weight: var(--fw-regular);
	font-size: var(--text-xs);
	opacity: 0.85;
}
.product-calc__option input[type="radio"]:checked + .product-calc__option-label .product-calc__option-meta {
	opacity: 0.92;
	color: inherit;
}
.product-calc__option:hover .product-calc__option-label {
	border-color: var(--color-primary);
	color: var(--color-primary);
}
.product-calc__option input[type="radio"]:checked + .product-calc__option-label {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-text-on-dark);
}
.product-calc__option input[type="radio"]:focus-visible + .product-calc__option-label {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.product-calc__select {
	width: 100%;
	max-width: 280px;
	padding: 10px 14px;
	font-family: inherit;
	font-size: var(--text-body);
	color: var(--color-text);
	background: var(--color-surface);
	border: 1.5px solid var(--color-neutral-200);
	border-radius: var(--radius-input);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
	outline: none;
	cursor: pointer;
	appearance: auto;
}
.product-calc__select:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

.product-calc__input {
	width: 100%;
	padding: 10px 14px;
	font-family: inherit;
	font-size: var(--text-body);
	color: var(--color-text);
	background: var(--color-surface);
	border: 1.5px solid var(--color-neutral-200);
	border-radius: var(--radius-input);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
	outline: none;
}
.product-calc__input:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

.product-calc__textarea {
	width: 100%;
	padding: 10px 14px;
	font-family: inherit;
	font-size: var(--text-body);
	color: var(--color-text);
	background: var(--color-surface);
	border: 1.5px solid var(--color-neutral-200);
	border-radius: var(--radius-input);
	resize: vertical;
	min-height: 80px;
	margin-bottom: var(--space-12);
	outline: none;
}
.product-calc__textarea:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

.product-calc__dims {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: end;
	gap: var(--space-12);
}
.product-calc__dim-x {
	font-size: 1.5rem;
	color: var(--color-text-muted);
	padding-bottom: 12px;
	user-select: none;
}
.product-calc__area-display {
	margin-top: var(--space-8);
	font-size: var(--text-small);
	color: var(--color-text-muted);
}
.product-calc__area-display strong {
	color: var(--color-text);
}

/* ===========  17. БЛОК ОФИСОВ  =========== */
.offices { padding: var(--space-48) 0; }
.offices__heading { margin-bottom: var(--space-12); }
.offices__lead {
	font-size: clamp(16px, 2vw, 18px);
	color: var(--color-text-muted);
	max-width: 720px;
	margin: 0 0 var(--space-32);
}
.offices__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--grid-gap-lg);
}
@media (max-width: 900px) {
	.offices__grid { grid-template-columns: 1fr; gap: var(--grid-gap); }
}

.office-card {
	background: var(--color-surface);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.office-card__map { line-height: 0; }
.office-card__iframe {
	display: block;
	width: 100%;
	height: 320px;
	border: 0;
}
@media (max-width: 640px) {
	.office-card__iframe { height: 240px; }
}
.office-card__body { padding: var(--space-20) var(--space-24); }
@media (max-width: 640px) {
	.office-card__body { padding: var(--space-16); }
}
.office-card__title {
	font-family: var(--font-heading);
	font-weight: var(--fw-bold);
	font-size: clamp(18px, 2.2vw, 24px);
	margin: 0 0 var(--space-16);
	line-height: var(--lh-heading);
}
.office-card__brand {
	display: inline-block;
	font-weight: var(--fw-regular);
	color: var(--color-text-muted);
	font-size: 0.85em;
	margin-left: var(--space-8);
}
.office-card__meta {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--space-20);
	display: flex;
	flex-direction: column;
	gap: var(--space-8);
}
.office-card__meta-item {
	display: flex;
	align-items: flex-start;
	gap: var(--space-12);
	font-size: var(--text-body);
	color: var(--color-text);
	line-height: 1.4;
}
.office-card__meta-item a {
	color: var(--color-primary);
	text-decoration: none;
}
.office-card__meta-item a:hover { text-decoration: underline; }
.office-card__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--color-primary);
	margin-top: 1px;
}
.office-card__route-btn {
	display: inline-flex;
	align-items: center;
	gap: var(--space-8);
	width: 100%;
	justify-content: center;
	text-decoration: none;
}
@media (min-width: 641px) {
	.office-card__route-btn { width: auto; }
}
.office-card__route-icon { width: 18px; height: 18px; }

.product-calc__inquiry {
	padding: var(--space-16) var(--space-20);
	margin-bottom: var(--space-20);
	background: var(--color-neutral-50, #f7f9fc);
	border-radius: var(--radius-card);
}

.product-calc__addon {
	display: flex;
	align-items: flex-start;
	gap: var(--space-8);
	min-height: 44px;
	height: 100%;
	padding: var(--space-8) var(--space-12);
	background: var(--color-surface);
	border: 1.5px solid var(--color-neutral-200);
	border-radius: var(--radius-btn);
	cursor: pointer;
	user-select: none;
	font-size: var(--text-small);
	color: var(--color-text);
	line-height: 1.35;
	box-sizing: border-box;
	transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}
.product-calc__addon:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}
.product-calc__addon:has(input[type="checkbox"]:checked) {
	border-color: var(--color-primary);
	background: var(--color-primary-light);
	color: var(--color-primary-dark);
}
.product-calc__addon input[type="checkbox"] {
	width: 18px;
	height: 18px;
	border: 1.5px solid var(--color-neutral-200);
	border-radius: var(--radius-sm);
	accent-color: var(--color-primary);
	cursor: pointer;
	flex-shrink: 0;
}

.product-calc__result {
	background: var(--color-surface);
	border: 1.5px solid var(--color-neutral-200);
	border-radius: var(--radius-card);
	padding: var(--space-20) var(--space-24);
	margin-bottom: var(--space-24);
}

.product-calc__amount-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: var(--space-16);
	flex-wrap: wrap;
	margin-bottom: var(--space-8);
}

.product-calc__amount-label {
	font-size: var(--text-body);
	font-weight: var(--fw-semibold);
	color: var(--color-text-muted);
}

.product-calc__amount {
	font-size: var(--text-h1);
	font-weight: var(--fw-extrabold);
	color: var(--color-accent);
	font-family: var(--font-heading);
	transition: color var(--transition-fast);
}

.product-calc__note {
	font-size: var(--text-xs);
	color: var(--color-text-muted);
}

.product-calc__cta {
	display: block;
	width: 100%;
	margin-bottom: var(--space-32);
}
@media (min-width: 641px) {
	.product-calc__cta {
		display: inline-flex;
		width: auto;
	}
}

.product-calc__order-form {
	background: var(--color-surface);
	border: 1.5px solid var(--color-neutral-200);
	border-radius: var(--radius-card);
	padding: var(--space-24);
}
@media (max-width: 640px) {
	.product-calc__order-form { padding: var(--space-20); }
}

.product-calc__form-heading {
	font-size: var(--text-h3);
	font-weight: var(--fw-bold);
	margin: 0 0 var(--space-20);
}

.product-calc__form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-12);
	margin-bottom: var(--space-16);
}
@media (min-width: 641px) {
	.product-calc__form-grid {
		grid-template-columns: 1fr 1fr;
	}
	.product-calc__form-grid input[type="email"] {
		grid-column: 1 / -1;
	}
}

.product-calc__order-form input[type="text"],
.product-calc__order-form input[type="tel"],
.product-calc__order-form input[type="email"] {
	width: 100%;
	padding: 10px 14px;
	font-family: inherit;
	font-size: var(--text-body);
	color: var(--color-text);
	background: var(--color-surface);
	border: 1.5px solid var(--color-neutral-200);
	border-radius: var(--radius-input);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
	outline: none;
	box-sizing: border-box;
}
.product-calc__order-form input:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}
.product-calc__order-form input:invalid:not(:placeholder-shown) {
	border-color: var(--color-error);
}

.product-calc__order-form button[type="submit"] {
	display: block;
	width: 100%;
	margin-bottom: var(--space-12);
}
@media (min-width: 641px) {
	.product-calc__order-form button[type="submit"] {
		display: inline-flex;
		width: auto;
	}
}

.product-calc__form-result {
	font-size: var(--text-small);
	min-height: 1em;
}

.product-calc__success {
	background: rgba(46, 204, 113, 0.12);
	color: var(--color-success);
	padding: var(--space-16) var(--space-20);
	border-radius: var(--radius-card);
	font-size: var(--text-body);
	font-weight: var(--fw-semibold);
}

/* =================================================================
   15. FILE-INPUT В МОДАЛКЕ ЗАЯВКИ
   ================================================================= */

.modal-form__file {
	display: block;
	width: 100%;
	padding: 9px 12px;
	font-family: inherit;
	font-size: var(--text-small);
	color: var(--color-text);
	background: var(--color-surface);
	border: 1.5px solid var(--color-neutral-200);
	border-radius: var(--radius-input);
	cursor: pointer;
	transition: border-color var(--transition-fast);
	box-sizing: border-box;
}
.modal-form__file:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
	border-color: var(--color-primary);
}
.modal-form__file::file-selector-button {
	font-family: inherit;
	font-size: var(--text-small);
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
	background: transparent;
	border: none;
	padding: 0 var(--space-8) 0 0;
	margin-right: var(--space-8);
	cursor: pointer;
}

.modal-form__label-hint {
	font-weight: var(--fw-normal);
	color: var(--color-text-muted);
	font-size: var(--text-xs);
}

.modal-form__file-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-8);
	margin-top: var(--space-8);
	min-height: 0;
}

.modal-form__file-chip {
	display: inline-flex;
	align-items: center;
	gap: var(--space-4);
	padding: 4px 10px;
	background: var(--color-primary);
	color: var(--color-text-on-dark);
	border-radius: 999px;
	font-size: var(--text-xs);
	font-weight: var(--fw-semibold);
	max-width: 220px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.modal-form__file-chip-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	background: rgba(255, 255, 255, 0.3);
	border: none;
	border-radius: 50%;
	color: inherit;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	transition: background var(--transition-fast);
}
.modal-form__file-chip-remove:hover {
	background: rgba(255, 255, 255, 0.55);
}

/* =================================================================
   16. ЧЕКБОКС СОГЛАСИЯ НА ОБРАБОТКУ ПДн
   ================================================================= */

.modal-form__field--agree { margin: var(--space-12) 0; }
.modal-form__agree { display: flex; align-items: flex-start; gap: var(--space-8); cursor: pointer; font-size: var(--text-small); }
.modal-form__agree-checkbox { margin-top: 3px; flex-shrink: 0; }
.modal-form__agree-text a { color: var(--color-primary); text-decoration: underline; }

.product-calc__agree-row { margin: var(--space-12) 0; }
.product-calc__agree { display: flex; align-items: flex-start; gap: var(--space-8); cursor: pointer; font-size: var(--text-small); }
.product-calc__agree a { color: var(--color-primary); text-decoration: underline; }

/* Скрепка в формах калькулятора */
.product-calc__file-field {
	margin: var(--space-12) 0 var(--space-16);
}
.product-calc__file-input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}
.product-calc__file-btn {
	display: inline-flex;
	align-items: center;
	gap: var(--space-8);
	padding: var(--space-8) var(--space-12);
	min-height: 36px;
	font-family: inherit;
	font-size: var(--text-small);
	font-weight: var(--fw-semibold);
	color: var(--color-text-muted);
	background: var(--color-surface);
	border: 1.5px dashed var(--color-neutral-200);
	border-radius: var(--radius-input);
	cursor: pointer;
	transition: border-color var(--transition-fast), color var(--transition-fast);
}
.product-calc__file-btn:hover,
.product-calc__file-btn:focus-visible {
	border-color: var(--color-primary);
	color: var(--color-primary);
	outline: none;
}
.product-calc__file-btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
.product-calc__file-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-8);
	margin-top: var(--space-8);
}
.product-calc__file-chip {
	display: inline-flex;
	align-items: center;
	gap: var(--space-4);
	padding: 4px 10px;
	background: var(--color-primary-light);
	color: var(--color-primary-dark);
	border-radius: 999px;
	font-size: var(--text-xs);
	font-weight: var(--fw-semibold);
	max-width: 220px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.product-calc__file-chip-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	background: rgba(0, 95, 146, 0.12);
	border: none;
	border-radius: 50%;
	color: inherit;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}
.product-calc__file-hint {
	margin: var(--space-8) 0 0;
	font-size: var(--text-xs);
	color: var(--color-text-muted);
}

@media (max-width: 640px) {
	.product-calc__select {
		max-width: none;
	}
}

/* ===========  КОНТАКТЫ (страница)  =========== */
.main--contacts .product-hero--compact {
	margin-bottom: var(--space-24);
}
.contacts-info__heading {
	margin-bottom: var(--space-24);
}
.contacts-info__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--grid-gap-lg);
	margin-bottom: var(--space-32);
}
@media (max-width: 768px) {
	.contacts-info__grid { grid-template-columns: 1fr; }
}
.contacts-info__card {
	background: var(--color-surface);
	border: 1px solid var(--color-neutral-200);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	padding: var(--space-24);
	display: flex;
	flex-direction: column;
	gap: var(--space-16);
}
.contacts-info__title {
	font-family: var(--font-heading);
	font-size: clamp(18px, 2.2vw, 22px);
	font-weight: var(--fw-bold);
	margin: 0;
	line-height: var(--lh-heading);
}
.contacts-info__brand {
	font-weight: var(--fw-regular);
	color: var(--color-text-muted);
	font-size: 0.9em;
}
.contacts-info__meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-12);
	flex: 1;
}
.contacts-info__meta-item {
	display: flex;
	align-items: flex-start;
	gap: var(--space-12);
	font-size: var(--text-body);
	line-height: 1.45;
}
.contacts-info__meta-item a {
	color: var(--color-primary);
	font-weight: var(--fw-semibold);
	text-decoration: none;
}
.contacts-info__meta-item a:hover {
	text-decoration: underline;
}
.contacts-info__icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--color-primary);
}
.contacts-info__route {
	align-self: flex-start;
}
.contacts-info__reach {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-32);
	padding: var(--space-24);
	background: var(--color-primary-light);
	border-radius: var(--radius-card);
}
.contacts-info__reach-label {
	display: block;
	font-size: var(--text-xs);
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--color-text-muted);
	margin-bottom: var(--space-8);
}
.contacts-info__email {
	display: block;
	font-size: var(--text-body);
	font-weight: var(--fw-semibold);
	color: var(--color-primary-dark);
	text-decoration: none;
}
.contacts-info__email:hover {
	text-decoration: underline;
}
.contacts-info__socials {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-12);
}
.contacts-info__socials a {
	display: inline-flex;
	transition: transform var(--transition-fast);
}
.contacts-info__socials a:hover {
	transform: translateY(-2px);
}

/* =================================================================
   SEO: гео-лендинги, зона обслуживания, FAQ
   ================================================================= */
.service-area {
	margin: var(--space-32) 0;
	padding: var(--space-24);
	background: var(--color-surface-alt);
	border-radius: var(--radius-md);
}
.service-area__lead {
	margin: 0 0 var(--space-16);
	color: var(--color-text-muted);
	max-width: 720px;
}
.service-area__list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-8) var(--space-16);
	margin: 0;
	padding: 0;
	list-style: none;
}
.service-area__item {
	padding: var(--space-8) var(--space-12);
	background: var(--color-surface);
	border: 1px solid var(--color-neutral-200);
	border-radius: var(--radius-sm);
	font-size: 14px;
}

.geo-services {
	margin: var(--space-32) 0;
}
.geo-services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: var(--space-12);
	margin: 0;
	padding: 0;
	list-style: none;
}
.geo-services__link {
	display: block;
	padding: var(--space-12) var(--space-16);
	background: var(--color-primary-light);
	color: var(--color-primary-dark);
	border-radius: var(--radius-sm);
	text-decoration: none;
	font-weight: 600;
	transition: background var(--transition-fast);
}
.geo-services__link:hover {
	background: var(--color-accent-light);
}
.geo-services__more {
	margin-top: var(--space-16);
}

.geo-links {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.geo-links__list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-8) var(--space-16);
	margin: var(--space-16) 0 0;
	padding: 0;
	list-style: none;
}
.geo-links__list a {
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: none;
}
.geo-links__list a:hover {
	text-decoration: underline;
}

.product-faq {
	margin: var(--space-32) 0;
}
.product-faq__list {
	display: grid;
	gap: var(--space-12);
}
.product-faq__item {
	border: 1px solid var(--color-neutral-200);
	border-radius: var(--radius-sm);
	padding: var(--space-12) var(--space-16);
	background: var(--color-surface);
}
.product-faq__question {
	cursor: pointer;
	font-weight: 700;
	list-style: none;
}
.product-faq__question::-webkit-details-marker {
	display: none;
}
.product-faq__answer {
	margin: var(--space-12) 0 0;
	color: var(--color-text-muted);
}

.product-related {
	margin: var(--space-24) 0 var(--space-32);
}
.product-related__list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-8) var(--space-16);
	margin: var(--space-16) 0 0;
	padding: 0;
	list-style: none;
}
.product-related__list a {
	color: var(--color-primary);
	font-weight: 600;
}

.site-footer__geo {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.site-footer__geo-nav {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-8) var(--space-20);
}
.site-footer__geo-link {
	color: inherit;
	font-size: 14px;
	text-decoration: none;
}

@media (max-width: 640px) {
	.geo-services__grid {
		grid-template-columns: 1fr 1fr;
	}
}
