/**
 * Geory — основной статический CSS.
 * Montserrat: статические начертания из Vigbo build_cms_front.css (fontspack), локальные woff.
 * Подключены 300 (Light), 400 (Regular), 700 (Bold), алиас Vigbo «Montserrat Bold» → тот же bold-woff. Начертания 500/600 браузер подбирает к 400/700.
 * Отдельное семейство «Montserrat Regular» (только 400) — как у Vigbo: меню с font-weight: bold даёт синтетический жирный, визуально ближе к geory.ru, чем глифный Montserrat 700.
 *
 * UI-kit: CSS-переменные сведены с публичных стилей geory.ru
 * (Vigbo: custom.css, custom-shop.css — токены --DE-common__*, --DE-menu__*, --DE-shop__*, --DE-form-settings__*).
 */

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url('../fonts/fontspack/montserrat-light/montserrat-light-webfont.woff') format('woff');
}

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/fontspack/montserrat-regular/montserrat-regular-webfont.woff') format('woff');
}

@font-face {
	font-family: 'Montserrat Regular';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/fontspack/montserrat-regular/montserrat-regular-webfont.woff') format('woff');
}

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/fontspack/montserrat-bold/montserrat-bold-webfont.woff') format('woff');
}

@font-face {
	font-family: 'Montserrat Bold';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/fontspack/montserrat-bold/montserrat-bold-webfont.woff') format('woff');
}

/* -------------------------------------------------------------------------- */
/* UI kit — дизайн-токены (geory.ru / Vigbo)                                   */
/* -------------------------------------------------------------------------- */

:root {
	/* Базовые цвета */
	--geory-color-navy-900: #202a44;
	--geory-color-navy-800: #212b47;
	--geory-color-blue-accent: #051f7d;
	--geory-color-gray-400: #bbbcbc;
	--geory-color-gray-350: #b3b3b3;
	--geory-color-gray-600: #3d3d3d;
	--geory-color-gray-650: #4d4d4d;
	--geory-color-gold: #cabfa5;
	--geory-color-white: #ffffff;
	--geory-color-line: #ebebeb;

	/* RGB для rgba() в кастомных слоях */
	--geory-rgb-navy: 32, 42, 68;
	--geory-rgb-white: 255, 255, 255;

	/* Семантика: текст и фон */
	--geory-color-text: rgb(var(--geory-rgb-navy));
	--geory-color-text-muted: rgba(var(--geory-rgb-navy), 0.7);
	--geory-color-text-inverse: var(--geory-color-white);
	--geory-color-surface: var(--geory-color-white);
	--geory-color-surface-muted: #fafafa;
	--geory-color-border-strong: var(--geory-color-text);
	--geory-color-border-subtle: var(--geory-color-line);

	/* Ссылки, акценты, интерактив */
	--geory-color-link: var(--geory-color-blue-accent);
	--geory-color-link-hover: var(--geory-color-text);
	--geory-color-accent: var(--geory-color-blue-accent);
	--geory-color-accent-secondary: var(--geory-color-gold);
	--geory-color-focus-ring: var(--geory-color-blue-accent);

	/* Шапка / меню */
	--geory-color-header-bg: var(--geory-color-white);
	--geory-color-header-text: var(--geory-color-text);
	--geory-color-header-hover: var(--geory-color-blue-accent);
	--geory-color-submenu-bg: rgba(var(--geory-rgb-white), 0.51);
	--geory-color-nav-muted: var(--geory-color-gray-400);
	--geory-color-nav-active-mobile: var(--geory-color-gray-400);

	/* Подвал, второстепенный текст */
	--geory-color-footer-text: var(--geory-color-gray-350);
	--geory-color-social: var(--geory-color-gray-600);
	--geory-color-social-hover: var(--geory-color-gray-650);

	/* Слайдер / стрелки */
	--geory-color-slider-control: var(--geory-color-white);
	--geory-color-slider-control-hover: #d9d9d9;

	/* Магазин (каталог, карточка, корзина) */
	--geory-color-price: var(--geory-color-text);
	--geory-color-price-discount: var(--geory-color-accent);
	--geory-color-catalog-overlay: rgba(187, 188, 188, 0.9);
	--geory-color-cart-border: var(--geory-color-gold);
	--geory-color-breadcrumb: var(--geory-color-navy-800);
	--geory-color-breadcrumb-hover: var(--geory-color-blue-accent);
	--geory-color-cart-btn-bg: var(--geory-color-white);
	--geory-color-cart-btn-bg-hover: var(--geory-color-text);
	--geory-color-cart-btn-icon: var(--geory-color-text);
	--geory-color-cart-btn-icon-hover: var(--geory-color-white);
	--geory-color-lightbox-backdrop: var(--geory-color-gray-400);

	/* Типографика */
	--geory-font-family: 'Montserrat Regular', 'Montserrat', system-ui, sans-serif;
	--geory-font-family-body: var(--geory-font-family);
	--geory-font-family-ui: var(--geory-font-family);
	--geory-font-weight-vigbo-emphasis: bold;
	--geory-font-family-bold-named: var(--geory-font-family);
	--geory-font-weight-regular: 400;
	--geory-font-weight-medium: 500;
	--geory-font-weight-semibold: 600;
	--geory-font-weight-bold: 700;
	--geory-font-size-2xs: 10px;
	--geory-font-size-xs: 12px;
	--geory-font-size-sm: 14px;
	--geory-font-size-base: 16px;
	--geory-font-size-md: 18px;
	--geory-font-size-lg: 20px;
	--geory-font-size-xl: 22px;
	--geory-font-size-2xl: 26px;
	--geory-line-height-tight: 1.16;
	--geory-line-height-snug: 1.3;
	--geory-line-height-body: 1.5;
	--geory-letter-spacing-wide: 0.1em;
	--geory-letter-spacing-ui: 0.05em;
	--geory-line-height-menu: 16px;

	/*
	 * Layout — geory.ru / Vigbo (build_cms_front.css + /css/custom.css :root).
	 * .l-header__wrapper padding LR: desktop 65px, tablet 40px, mobile 20px.
	 * .adaptive-desktop .l-header__row margin ±45px + .l-header__col padding 45px.
	 * .adaptive-tablet/mobile .l-header__row margin ±12.5px + .l-header__col padding 12.5px.
	 * --DE-common__site-width-pixels-editor: 1200px; --DE-common__site-width-percents-editor: 100%.
	 */
	--geory-layout-gutter-x: 65px;
	--geory-layout-header-row-outdent-x: 45px;
	--geory-layout-header-row-compensate-x: 45px;
	--geory-layout-header-row-pull-x: 12.5px;
	--geory-layout-content-max-width: 1200px;

	/* Vigbo .l-header__wrapper: padding-top/bottom 30px (desktop); mobile 15px — см. медиазапросы */
	--geory-header-padding-y: 40px;
	--geory-header-bar-gap-bottom: 36px;
	--geory-menu-item-gap: 60px;
	/* Иконки шапки / моб. панели (единый размер) */
	--geory-header-icon-size: 16px;
	--geory-header-icon-stroke: 1.2;
	--geory-submenu-font-size: 12px;
	--geory-space-1: 4px;
	--geory-space-2: 8px;
	--geory-space-3: 12px;
	--geory-space-4: 16px;
	--geory-space-5: 20px;
	--geory-space-6: 24px;
	--geory-space-8: 32px;
	--geory-space-10: 40px;
	--geory-space-12: 48px;
	--geory-space-15: 60px;

	/* Радиусы (формы Vigbo — «квадратная» кнопка; мало скругления) */
	--geory-radius-sm: 2px;
	--geory-radius-md: 4px;

	/* Кнопки (primary) */
	--geory-btn-bg: var(--geory-color-text);
	--geory-btn-bg-hover: var(--geory-color-gold);
	--geory-btn-color: var(--geory-color-white);
	--geory-btn-color-hover: var(--geory-color-text);
	--geory-btn-font-size: var(--geory-font-size-sm);
	--geory-btn-font-weight: var(--geory-font-weight-regular);
	--geory-btn-letter-spacing: var(--geory-letter-spacing-ui);
	--geory-btn-padding-x: 40px;
	--geory-btn-border-width: 1px;
	--geory-btn-border-color: transparent;

	/* Поля форм */
	--geory-form-field-gap: 20px;
	--geory-form-button-top-gap: 30px;
	--geory-form-input-bg: var(--geory-color-white);
	--geory-form-input-border-width: 1px;
	--geory-form-input-border-color: var(--geory-color-text);
	--geory-form-input-color: var(--geory-color-text);
	--geory-form-input-font-size: var(--geory-font-size-xs);
	--geory-form-label-font-size: var(--geory-font-size-xs);
	--geory-form-placeholder-color: var(--geory-color-text);

	/* Типографика магазина (заголовки блоков / карточка) */
	--geory-shop-product-title-size: var(--geory-font-size-2xl);
	--geory-shop-product-price-size: var(--geory-font-size-base);
	--geory-shop-product-discount-size: 20px;
	--geory-shop-cart-heading-size: 22px;
}

@media (max-width: 1023px) {
	:root {
		--geory-layout-gutter-x: 40px;
	}
}

@media (max-width: 767px) {
	:root {
		--geory-layout-gutter-x: 20px;
	}
}

html {
	box-sizing: border-box;
	margin: 0;
    font-size: 16px;
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	margin: 0;
	font-family: var(--geory-font-family-body);
	font-weight: var(--geory-font-weight-regular);
	font-size: var(--geory-font-size-base);
    font-variant: normal;
	line-height: var(--geory-line-height-body);
	color: var(--geory-color-text);
	background-color: var(--geory-color-surface);
}

body.geory-mobile-nav-open {
	overflow: hidden;
}

button,
input,
textarea,
select {
	font-family: inherit;
}

.hidden {
	display: none;
}

/* Доступность: подписи иконок в шапке */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* -------------------------------------------------------------------------- */
/* БЭМ: layout-shell / layout-content (полная ширина + inset, max-width контента) */
/* -------------------------------------------------------------------------- */

.layout-shell {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	padding-left: var(--geory-layout-gutter-x);
	padding-right: var(--geory-layout-gutter-x);
}

.layout-content {
	box-sizing: border-box;
	width: 100%;
}

.layout-content--max {
	max-width: var(--geory-layout-content-max-width);
	margin-left: auto;
	margin-right: auto;
}

/* -------------------------------------------------------------------------- */
/* БЭМ: announcement-bar, header, mobile-nav, search-overlay                  */
/* -------------------------------------------------------------------------- */

.announcement-bar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ff2929;
	color: var(--geory-color-white);
	padding: 20px var(--geory-layout-gutter-x);
	text-align: center;
}

.announcement-bar.hidden,
.announcement-bar[hidden] {
	display: none !important;
}

.announcement-bar__close {
	position: absolute;
	right: max(var(--geory-layout-gutter-x), var(--geory-space-4));
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--geory-space-2);
	margin: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.announcement-bar__close-icon {
	display: block;
}

.announcement-bar__inner {
	width: 100%;
}

.announcement-bar__text {
	margin: 0;
	font-size: var(--geory-font-size-sm);
	letter-spacing: 0.125em;
	line-height: var(--geory-line-height-tight);
	color: var(--geory-color-text);
}

.site-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* --- header --- */

.header {
	background: var(--geory-color-header-bg);
	color: var(--geory-color-header-text);
}

/* Горизонтальные отступы — .layout-shell; вертикаль — как .l-header__wrapper Vigbo */
.header__wrapper {
	box-sizing: border-box;
	width: 100%;
	padding-top: var(--geory-header-padding-y);
	padding-bottom: var(--geory-header-padding-y);
}

@media (max-width: 767px) {
	.header__wrapper {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

.header__bar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: start;
	gap: var(--geory-space-4);
}

@media (min-width: 1024px) {
	.header__bar,
	.header__nav {
		margin-left: calc(-1 * var(--geory-layout-header-row-outdent-x));
		margin-right: calc(-1 * var(--geory-layout-header-row-outdent-x));
		padding-left: var(--geory-layout-header-row-compensate-x);
		padding-right: var(--geory-layout-header-row-compensate-x);
	}
}

.header__bar-slot {
	display: flex;
	align-items: center;
}

.header__bar-slot--start {
	justify-content: flex-start;
	min-height: var(--geory-header-icon-size);
}

.header__bar-slot--center {
	justify-content: center;
}

.header__bar-slot--end {
	justify-content: flex-end;
	gap: var(--geory-space-5);
	align-self: flex-start;
	padding-top: 4px;
}

.header__icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--geory-header-icon-size);
	height: var(--geory-header-icon-size);
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	line-height: 1;
}

.header__icon {
	display: inline-block;
	vertical-align: middle;
	z-index: 2;
	position: relative;
	width: 100%;
	height: 100%;
	stroke-width: var(--geory-header-icon-stroke);
}

.header__icon-btn:focus-visible {
	outline: 2px solid var(--geory-color-focus-ring);
	outline-offset: 2px;
}

.header__logo {
	display: flex;
    align-items: center;
	line-height: 0;
    justify-content: flex-start;
}

.header__logo-img {
	height: auto;
	max-width: 100%;
    max-height: 170px;
	width: auto;
}

.header__cart {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: inherit;
	font-size: var(--geory-font-size-sm);
	font-weight: var(--geory-font-weight-bold);
	letter-spacing: var(--geory-letter-spacing-ui);
}

.header__cart-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--geory-header-icon-size);
	height: var(--geory-header-icon-size);
	flex-shrink: 0;
}

.header__cart-icon {
	display: block;
	width: 100%;
	height: 100%;
	stroke-width: var(--geory-header-icon-stroke);
}

.header__cart-count {
	line-height: 1;
	font-size: var(--geory-font-size-sm);
}

.header__cart-count:empty {
	display: none;
}

.header__cart-widget {
	position: relative;
}

.shop-cart-widget-amount {
	position: relative;
	min-width: 16px;
	text-align: center;
}

.shop-cart-widget-amount.is-loading {
	color: transparent;
}

.shop-cart-widget-amount.is-loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	margin: -7px 0 0 -7px;
	border: 1.5px solid rgba(var(--geory-rgb-navy), 0.18);
	border-top-color: var(--geory-color-text);
	border-radius: 50%;
	animation: geory-cart-spin 0.65s linear infinite;
}

.header-mini-cart {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	z-index: 40;
	width: min(347px, calc(100vw - 24px));
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	pointer-events: none;
}

.header-mini-cart.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.header-mini-cart__inner {
	background: var(--geory-color-surface);
	border: 1px solid rgba(var(--geory-rgb-navy), 0.12);
	box-shadow: 0 16px 36px rgba(var(--geory-rgb-navy), 0.18);
	padding: 22px 22px 24px;
}

.header-mini-cart__header,
.header-mini-cart__meta,
.header-mini-cart__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.header-mini-cart__header {
	margin-bottom: 18px;
}

.header-mini-cart__title,
.header-mini-cart__total {
	margin: 0;
	font-size: var(--geory-shop-cart-heading-size);
	font-weight: var(--geory-font-weight-regular);
	line-height: 1.2;
	color: var(--geory-color-text);
}

.header-mini-cart__total {
	font-size: 16px;
}

.header-mini-cart__close,
.header-mini-cart__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--geory-color-text);
	text-decoration: none;
}

.header-mini-cart__close-icon {
	width: 20px;
	height: 20px;
}

.header-mini-cart__items {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin: 0;
	padding: 0 0 22px;
	list-style: none;
	border-bottom: 1px solid rgba(var(--geory-rgb-navy), 0.12);
}

.header-mini-cart__item {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 16px;
	gap: 12px;
	align-items: start;
}

.header-mini-cart__image-link {
	display: block;
	width: 52px;
}

.header-mini-cart__image {
	display: block;
	width: 100%;
	height: auto;
}

.header-mini-cart__content {
	min-width: 0;
}

.header-mini-cart__name {
	display: block;
	margin-bottom: 12px;
	color: var(--geory-color-text);
	text-decoration: none;
	font-size: var(--geory-font-size-lg);
	line-height: 1.2;
	font-size: 14px;
}

.header-mini-cart__quantity,
.header-mini-cart__price,
.header-mini-cart__empty {
	font-size: var(--geory-font-size-base);
	line-height: 1.35;
	color: var(--geory-color-text);
}

.header-mini-cart__quantity {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.header-mini-cart__quantity-control {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.header-mini-cart__quantity-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	line-height: 1;
	cursor: pointer;
}

.header-mini-cart__quantity-button:disabled {
	opacity: 0.4;
	cursor: default;
}

.header-mini-cart__quantity-value {
	min-width: 1ch;
	text-align: center;
}

.header-mini-cart__remove-icon {
	width: 14px;
	height: 16px;
}

.header-mini-cart__footer {
	flex-direction: column;
	align-items: stretch;
	padding-top: 18px;
}

.header-mini-cart__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 22px;
	background: var(--geory-color-text);
	color: var(--geory-color-surface);
	text-decoration: none;
	font-size: var(--geory-font-size-base);
	letter-spacing: var(--geory-letter-spacing-ui);
}

.header-mini-cart__button:hover,
.header-mini-cart__button:focus-visible {
	background: rgba(var(--geory-rgb-navy), 0.92);
}

.header__burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: var(--geory-header-icon-size);
	height: var(--geory-header-icon-size);
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	position: relative;
	top: +3px;
}

.header__burger-icon {
	display: block;
	width: 100%;
	height: 100%;
	stroke-width: var(--geory-header-icon-stroke);
}

.header__burger:focus-visible {
	outline: 2px solid var(--geory-color-focus-ring);
	outline-offset: 2px;
}

.header__nav-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: var(--geory-menu-item-gap);
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
}

.header__nav-item {
	position: relative;
	margin: 0;
}

.header__nav-link {
	display: inline-block;
	text-decoration: none;
	color: var(--geory-color-header-text);
	font-family: var(--geory-font-family-ui);
	font-size: 14px;
	font-weight: var(--geory-font-weight-vigbo-emphasis);
	line-height: 16px;
	letter-spacing: var(--geory-letter-spacing-wide);
	text-transform: uppercase;
	position: relative;
	transition: color 0.2s ease;
}

.header__nav-link::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -7px;
	height: 2px;
	background-color: currentColor;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.header__nav-link:hover,
.header__nav-link:focus-visible {
	color: var(--geory-color-header-hover);
}

.header__nav-link:hover::after,
.header__nav-link:focus-visible::after {
	transform: scaleX(1);
}

.header__submenu {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 100%;
	display: block;
	padding-top: 15px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	transform-origin: top center;
	z-index: 20;
}

.header__nav-item--has-children:hover .header__submenu,
.header__nav-item--has-children:focus-within .header__submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%);
}

.header__submenu--center {
	left: 50%;
	right: auto;
}

.header__submenu-list {
	position: relative;
	margin: 0;
	margin-left: -25px;
	padding: 0;
	list-style: none;
	background: transparent;
	box-shadow: none;
	border: 0;
}

.header__submenu-list--center {
	margin-right: -25px;
	margin-left: -25px;
	text-align: center;
}

.header__submenu-list--center .header__submenu-link {
	text-align: center;
}

.header__submenu-item {
	display: block;
	width: 236px; /* «КОНФИДЕНЦИАЛЬНОСТИ» одним словом должно влезать */
	height: auto;
	margin-bottom: 1px;
	text-align: left;
	background: #fff;
}

.header__submenu-item:last-child {
	margin-bottom: 0;
}

.header__submenu-link {
	display: block;
	width: 100%;
	height: 100%;
	padding: 13px 22px 15px 25px;
	overflow-wrap: normal;
	hyphens: manual;
	font-size: var(--geory-submenu-font-size);
	letter-spacing: var(--geory-letter-spacing-ui);
	text-decoration: none;
	color: var(--geory-color-text);
	text-transform: uppercase;
	line-height: 1.25em;
	background: #fff;
}

.header__submenu-link:hover,
.header__submenu-link:focus-visible {
	color: var(--geory-color-header-hover);
}

@media (max-width: 1023px) {
	.header__bar,
	.header__nav {
		margin-left: calc(-1 * var(--geory-layout-header-row-pull-x));
		margin-right: calc(-1 * var(--geory-layout-header-row-pull-x));
		padding-left: var(--geory-layout-header-row-pull-x);
		padding-right: var(--geory-layout-header-row-pull-x);
	}

	.header__nav {
		display: none;
	}

	.header__burger {
		display: inline-flex;
	}

	.header__bar {
		display: flex;
		align-items: center;
		margin-bottom: 0;
		gap: var(--geory-space-5);
	}

	.header__bar-slot--center {
		order: 1;
		justify-content: flex-start;
		flex: 0 1 auto;
		margin-right: auto;
	}

	.header__bar-slot--start {
		order: 2;
		justify-content: flex-end;
		flex: 0 0 auto;
	}

	.header__bar-slot--end {
		order: 3;
		flex: 0 0 auto;
		align-self: center;
		padding-top: 0;
	}

	.header__logo-img {
		max-width: 100%;
	}

	.header__cart {
		order: 1;
	}

	.header__burger {
		order: 2;
	}

}

@media (max-width: 767px) {
	.header__bar {
		gap: var(--geory-space-4);
	}

	.header__bar-slot--end {
		gap: var(--geory-space-4);
	}

	.header__logo-img {
		width: 106px;
		height: 80px;
		max-width: none;
	}
}

/* --- mobile-nav --- */

.mobile-nav:not([hidden]) {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 200;
	overflow: auto;
	pointer-events: auto;
	background: #ececec;
}

.mobile-nav:not([hidden])::before {
	content: none;
}

.mobile-nav:not([hidden]).mobile-nav--open {
	pointer-events: auto;
}

.mobile-nav:not([hidden]).mobile-nav--open::before {
	opacity: 1;
}

.mobile-nav__panel {
	min-height: 100%;
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	padding: 24px var(--geory-layout-gutter-x) 40px;
	background: transparent;
	transform: none;
	transition: none;
	will-change: auto;
}

.mobile-nav--open .mobile-nav__panel {
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.mobile-nav__panel {
		transition: none;
	}

	.mobile-nav__item {
		transform: none;
		transition: opacity 0.01s linear;
	}
}

.admin-bar .mobile-nav:not([hidden]) {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .mobile-nav:not([hidden]) {
		top: 46px;
	}
}

.admin-bar .search-overlay:not([hidden]) {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .search-overlay:not([hidden]) {
		top: 46px;
	}
}

.mobile-nav__toolbar {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 36px;
}

.mobile-nav__close {
	margin-left: auto;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.mobile-nav__close-icon {
	width: 24px;
	height: 24px;
}

.mobile-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav__item {
	margin-bottom: 26px;
	opacity: 0;
	transform: translateX(-22px);
	transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
	will-change: transform, opacity;
}

.mobile-nav--open .mobile-nav__item {
	opacity: 1;
	transform: translateX(0);
}

.mobile-nav--open .mobile-nav__item:nth-child(1) {
	transition-delay: 0.06s;
}

.mobile-nav--open .mobile-nav__item:nth-child(2) {
	transition-delay: 0.12s;
}

.mobile-nav--open .mobile-nav__item:nth-child(3) {
	transition-delay: 0.18s;
}

.mobile-nav--open .mobile-nav__item:nth-child(4) {
	transition-delay: 0.24s;
}

.mobile-nav--open .mobile-nav__item:nth-child(5) {
	transition-delay: 0.30s;
}

.mobile-nav--open .mobile-nav__item:nth-child(6) {
	transition-delay: 0.36s;
}

.mobile-nav__link {
	display: block;
	padding: 0;
	text-decoration: none;
	color: var(--geory-color-text);
	font-family: var(--geory-font-family-ui);
	font-weight: var(--geory-font-weight-vigbo-emphasis);
	letter-spacing: var(--geory-letter-spacing-wide);
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1;
}

/* Подменю в мобильном меню: раскрывается по «+» */
.mobile-nav__group {
	margin: 0;
}

.mobile-nav__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	cursor: pointer;
}

.mobile-nav__summary::-webkit-details-marker {
	display: none;
}

.mobile-nav__summary .mobile-nav__link {
	flex: 1 1 auto;
}

.mobile-nav__toggle {
	position: relative;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	margin-left: 12px;
}

.mobile-nav__toggle::before,
.mobile-nav__toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 1px;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav__toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.mobile-nav__group[open] .mobile-nav__toggle::after {
	transform: translate(-50%, -50%) rotate(0deg);
	opacity: 0;
}

.mobile-nav__sublist {
	list-style: none;
	margin: 14px 0 0;
	padding: 0 0 0 14px;
	border-left: 1px solid rgba(32, 42, 68, 0.15);
}

.mobile-nav__subitem {
	margin: 0 0 12px;
}

.mobile-nav__sublink {
	display: block;
	font-family: var(--geory-font-family-ui);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--geory-color-text);
	text-decoration: none;
	opacity: 0.85;
}

/* Vigbo: .md-menu--mobile .md-menu__li-l1 .md-menu__href-l1 — при совпадении разметки с Vigbo */
.md-menu__li-l1 .md-menu__href-l1,
.md-menu--mobile .md-menu__li-l1 .md-menu__href-l1 {
	font-family: var(--geory-font-family-ui);
	font-weight: var(--geory-font-weight-vigbo-emphasis);
}

/* --- search-overlay --- */

.search-overlay {
	position: fixed;
	inset: 0;
	z-index: 300;
	background: #fff;
	color: var(--geory-color-text);
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.26s ease, visibility 0s linear 0.26s;
}

.search-overlay__scroll {
	height: 100%;
	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.search-overlay__scroll::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.search-overlay.search-overlay--open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.26s ease;
}

.search-overlay__form {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	max-width: 1100px;
	margin: 0 auto;
	padding-top: 62px;
	padding-bottom: 62px;
	padding-left: 65px;
	padding-right: 65px;
	min-height: 100vh;
	width: 100%;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.24s ease, transform 0.24s ease, padding-top 0.3s ease;
}

.search-overlay.search-overlay--open .search-overlay__form {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

.search-overlay__head {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	border: 0;
}

.popup-overlay__close {
	position: fixed;
	z-index: 10;
	top: 30px;
	right: 30px;
	border: 0;
	background: transparent;
	color: var(--geory-color-text);
	display: block;
	cursor: pointer;
	-webkit-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	-moz-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.admin-bar .popup-overlay__close {
	top: 62px;
}

@media screen and (max-width: 782px) {
	.admin-bar .popup-overlay__close {
		top: 54px;
	}
}

.search-overlay__close-icon {
	width: 18px;
	height: 18px;
}

.search-overlay__field {
	position: relative;
	width: 100%;
}

.search-overlay__input {
	width: 100%;
	box-sizing: border-box;
	padding: 22px 0;
	border: 0;
	border-bottom: 1px solid rgba(var(--geory-rgb-navy), 0.7);
	background: transparent;
	color: rgba(var(--geory-rgb-navy), 1);
	font-family: var(--geory-font-family-ui);
	font-size: 17px;
	line-height: 21px;
	letter-spacing: 1.1px;
	outline: none;
}
.search-overlay__input:focus {
	outline: none;
}

.search-overlay__input::placeholder {
	color: var(--geory-color-text);
	opacity: 0.7;
}

.search-overlay__submit {
	position: absolute;
	right: 0;
	bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(var(--geory-rgb-navy), 1);
	cursor: pointer;
}

.search-overlay__submit-icon {
	display: block;
	width: 26px;
	height: 26px;
}
/* Тело результатов поиска */
.search-overlay__body {
	display: none;
	flex: 1;
	min-height: 0;
	box-sizing: border-box;
	max-width: 1100px;
	width: 100%;
	margin: 120px auto 40px;
	padding: 0 0 65px;
}

.search-overlay--has-results .search-overlay__body {
	display: block;
}

.search-overlay__tabs {
	display: flex;
	gap: var(--geory-space-6);
	margin-bottom: var(--geory-space-6);
}

.search-overlay__tab {
	padding: 0 0 var(--geory-space-4);
	margin: 0;
	border: 0;
	background: transparent;
	color: rgb(32, 42, 68);
	font-family: var(--geory-font-family-ui);
	font-size: 13px;
	line-height: 1em;
	cursor: pointer;
	opacity: 0.6;
}

.search-overlay__tab--active {
	color: rgb(32, 42, 68);
	border-bottom-color: rgb(32, 42, 68);
	opacity: 1;
}

.search-overlay__tab-count:empty {
	display: none;
}

.search-overlay__loader {
	display: flex;
	gap: 6px;
	justify-content: center;
	padding: var(--geory-space-6);
}

.search-overlay__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(var(--geory-rgb-navy), 0.5);
	animation: geory-search-pulse 1s ease-in-out infinite;
}

.search-overlay__dot:nth-child(2) {
	animation-delay: 0.15s;
}

.search-overlay__dot:nth-child(3) {
	animation-delay: 0.3s;
}

@keyframes geory-search-pulse {
	0%,
	100% {
		opacity: 0.35;
	}
	50% {
		opacity: 1;
	}
}

.search-overlay__panel[hidden] {
	display: none !important;
}

.search-overlay__panel-inner {
	min-height: 64px;
}

.search-overlay__panel-inner .searchresult__item-element {
	padding: 0 0 18px;
	margin: 0 0 18px;
}

.search-overlay__panel-inner .searchresult__item-element:last-child {
	margin-bottom: 0;
	border-bottom: 0;
}

.search-overlay__panel-inner .searchresult__blog-title,
.search-overlay__panel-inner .searchresult__item-link {
	color: var(--geory-color-text);
	font-family: var(--geory-font-family-ui);
	font-size: 18px;
	text-decoration: none;
	transition: .6s cubic-bezier(.165,.84,.44,1);
}

.search-overlay__panel-inner .searchresult__item-link:hover {
	opacity: 0.7;
}

.search-overlay__panel-inner .searchresult__blog-date,
.search-overlay__panel-inner .searchresult__result-count,
.search-overlay__panel-inner .searchform__result-count {
	color: rgba(var(--geory-rgb-navy), 0.7);
	font-size: 12px;
}

.search-overlay__panel-inner .searchresult__item-element p {
	color: rgba(var(--geory-rgb-navy), 0.7);
	font-size: 14px;
	line-height: 1.4;
}

.search-overlay__panel-inner .searchresult__item-element mark {
	font-weight: 700;
	background: none;
	color: inherit;
	padding: 0;
}

.search-overlay__pagination-loader {
	display: flex;
	gap: 6px;
	justify-content: center;
	padding: var(--geory-space-5) 0 var(--geory-space-8);
}

.search-overlay__message {
	margin: var(--geory-space-4) 0 0;
	font-size: 14px;
	color: rgba(var(--geory-rgb-navy), 0.7);
}

.search-overlay__products-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--geory-space-4);
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 480px) {
	.search-overlay__products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 720px) {
	.search-overlay__products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.search-overlay__load-more {
	display: inline-block;
	margin-top: var(--geory-space-5);
	padding: 8px 24px;
	border: 1px solid rgba(var(--geory-rgb-navy), 0.4);
	background: transparent;
	color: rgba(var(--geory-rgb-navy), 0.9);
	font-family: var(--geory-font-family-ui);
	font-size: 12px;
	letter-spacing: var(--geory-letter-spacing-wide);
	text-transform: uppercase;
	cursor: pointer;
}

.search-overlay__load-more[hidden] {
	display: none !important;
}

.search-overlay__load-more:disabled {
	opacity: 0.5;
	cursor: default;
}

.search-overlay__load-more:focus-visible {
	outline: 2px solid var(--geory-color-focus-ring);
	outline-offset: 2px;
}

.search-overlay--has-results .search-overlay__head {
	min-height: auto;
}

.search-overlay--has-results .search-overlay__form {
	max-width: 980px;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-top: 0;
	padding-bottom: 0;
	transform: none;
	min-height: calc(100vh - 40px);
}

.search-overlay--has-results .search-overlay__body {
	max-width: none;
	overflow: visible;
}

body.geory-search-open {
	overflow: hidden;
}

@media (max-width: 767px) {
	.popup-overlay__close {
		right: 8px;
		top: 8px;
	}

	.search-overlay__field {
		width: min(680px, 92%);
	}
}

/* -------------------------------------------------------------------------- */
/* БЭМ: footer (geory.ru / Vigbo)                                               */
/* -------------------------------------------------------------------------- */

.footer {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	width: 100%;
	padding-top: 40px;
	padding-bottom: 0;
	background-color: var(--geory-color-surface);
}

.footer__to-top {
	position: fixed;
	right: 7px;
	bottom: 40px;
	z-index: 90;
	box-sizing: border-box;
	width: 65px;
	padding: 10px;
	margin: 0;
	border: 0;
	background: transparent;
	transform: rotate(-90deg);
	cursor: pointer;
	color: #626262;
}

.footer__to-top-icon {
	display: block;
	width: 9px;
	height: 13px;
}

.footer__to-top--hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.footer__to-top:focus-visible {
	outline: 2px solid var(--geory-color-focus-ring);
	outline-offset: 2px;
}

.footer__to-top-icon:hover {
	opacity: 0.7;
}

.footer__inner {
	padding-bottom: 0;
}

.footer__top {
	padding-bottom: 0;
}

.footer__grid {
	display: grid;
	grid-template-columns: 7fr 2fr 7fr 2fr 6fr;
	align-items: stretch;
	gap: 0;
	width: 100%;
}

.footer__col--brand {
	max-width: 100%;
}

.footer__brand-link {
	display: inline-block;
	max-width: 98%;
	line-height: 0;
}

.footer__brand-img {
	display: block;
	height: auto;
	max-width: 100%;
	max-height: 183px;
	width: auto;
	object-fit: contain;
	object-position: left center;
}

.footer__col--divider {
	min-width: 4px;
	min-height: 120px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='9' viewBox='0 0 4 9'%3E%3Cpath fill='none' stroke='%23bbbbbb' stroke-width='1' d='M0,0H1V9H0V0ZM0,0H1V9H0V0Z'/%3E%3C/svg%3E")
		center center repeat-y;
}

.footer__contacts-inner {
	font-family: var(--geory-font-family-body);
	font-size: 16px;
	font-weight: var(--geory-font-weight-regular);
	line-height: 2.4;
	letter-spacing: 0.25em;
    text-align: center;
}

.footer__contact-line {
	margin: 0 0 10px;
	padding: 0;
}

.footer__contact-line:last-of-type {
	margin-bottom: 0;
}

.footer__contact-link {
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer__contact-link--accent {
	font-family: var(--geory-font-family-ui);
	font-size: 20px;
	font-weight: var(--geory-font-weight-vigbo-emphasis);
	color: #000033;
	letter-spacing: 0.1em;
}

.footer__contact-link--accent:hover,
.footer__contact-link--accent:focus-visible {
	color: var(--geory-color-link);
}

.footer__contact-link:focus-visible {
	outline: 2px solid var(--geory-color-focus-ring);
	outline-offset: 2px;
}

.footer__spacer {
	height: 10px;
}

.footer__cta-wrap {
	margin: 0;
	padding: 0;
}

.footer__multilink {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 5px 0;
	border: 0;
	background: transparent;
	font-family: var(--geory-font-family-bold-named);
	font-size: 20px;
	font-weight: var(--geory-font-weight-bold);
	letter-spacing: 0.2em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--geory-color-navy-900);
	transition: color 0.2s ease;
}

.footer__multilink:hover,
.footer__multilink:focus-visible {
	color: var(--geory-color-link);
}

.footer__multilink:focus-visible {
	outline: 2px solid var(--geory-color-focus-ring);
	outline-offset: 2px;
}

.footer__social-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: -20px -10px 0;
	padding: 0;
	list-style: none;
}

.footer__social-item {
	margin: 20px 10px 0;
	padding: 0;
}

.footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--geory-color-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
	color: var(--geory-color-link);
}

.footer__social-link:focus-visible {
	outline: 2px solid var(--geory-color-focus-ring);
	outline-offset: 2px;
}

.footer__social-svg {
	display: block;
	width: 32px;
	height: 32px;
}

.footer__badge {
	margin-top: 20px;
	text-align: center;
}

.footer__badge-frame {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	border: 0;
}

.footer__tagline {
	margin: 24px 0 16px;
	font-family: var(--geory-font-family-body);
	font-size: 14px;
	font-weight: var(--geory-font-weight-regular);
	line-height: 2.4;
	letter-spacing: 0.1em;
	text-align: center;
	color: var(--geory-color-text);
}

.footer__rule {
	width: 100%;
	height: 9px;
	margin: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1' height='9' viewBox='0 0 1 9'%3E%3Cpath fill='none' stroke='%23ededed' stroke-width='1' d='M0,4.5L1,4.5'/%3E%3C/svg%3E")
		center center repeat-x;
}

.footer__bottom {
	padding: 20px 0 40px;
	text-align: center;
}

.footer__nav-wrap,
.footer__legal-wrap {
	margin-bottom: 12px;
}

.footer__menu,
.footer__menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__menu a {
	font-family: var(--geory-font-family-body);
	font-size: 12px;
	font-weight: var(--geory-font-weight-bold);
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--geory-color-text);
	transition: color 0.2s ease;
}

.footer__menu a:hover,
.footer__menu a:focus-visible {
	color: var(--geory-color-link);
}

@media (max-width: 1023px) {
	.footer__grid {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 24px;
	}

	.footer__col--divider {
		display: none;
	}

	.footer__contacts-inner {
		text-align: center;
	}

	.footer__tagline,
	.footer__bottom,
	.footer {
		text-align: center;
	}

	.footer__brand-img {
		margin-left: auto;
		margin-right: auto;
		object-position: center;
	}

	.footer__brand-link {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 767px) {
	.footer__to-top {
		bottom: 24px;
		right: 12px;
		width: 56px;
		padding: 8px;
	}
}

body.admin-bar .footer__to-top {
	bottom: 72px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .footer__to-top {
		bottom: 88px;
	}
}

/* --------------------------------------------------------------------------
   Product card — каталог, поиск в шапке и др. (везде, где есть разметка)
   -------------------------------------------------------------------------- */

.product-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.product-card__media {
	position: relative;
	overflow: hidden;
	background: #ffffff; /* прозрачные PNG товаров не должны показывать серую подложку */
	-webkit-transition: background .8s;
	-moz-transition: background .8s;
	transition: background .8s;
}

.product-card__media img {
	margin-bottom: 0 !important;
}

.product-card__hover-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 6;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.4s ease-out;
	-moz-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out;
}

.product-card__hover-icon {
	display: block;
	width: 27px;
	height: 47px;
	color: rgba(32, 42, 68, 1);
	fill: currentColor;
	position: relative;
	z-index: 1;
	-webkit-transition: color .8s;
	-moz-transition: color .8s;
	transition: color .8s;
}

.product-card__hover-icon-wrap {
	border-radius: 50%;
	width: 47px;
	height: 47px;
	background: #c6d6d6;
	opacity: .7;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 38px;
	cursor: pointer;
	-webkit-transition: background .8s;
	-moz-transition: background .8s;
	transition: background .8s;
}

.product-card__link:hover .product-card__hover-icon-wrap,
.product-card__link:focus-visible .product-card__hover-icon-wrap {
	background: rgba(32, 42, 68, 1);
}

.product-card__link:hover .product-card__hover-icon,
.product-card__link:focus-visible .product-card__hover-icon {
	color: #fff;
}

.product-card__link:hover img,
.product-card__link:focus-visible img {
	opacity: 0.8;
}
.product-card__link:hover .product-card__hover-overlay,
.product-card__link:focus-visible .product-card__hover-overlay {
	opacity: 1;
}

.product-card__media img {
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition: opacity .8s;
	-moz-transition: opacity .8s;
	transition: opacity .8s;
}

.product-card__badge {
	position: absolute;
	top: 3px;
	right: 3px;
	z-index: 2;
	box-sizing: border-box;
	margin: 0 auto;
	font-family: var(--geory-font-family);
	font-size: 10px;
	letter-spacing: 0.2em;
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-right: 3px;
	padding-left: 3px;
	max-width: calc(100% - 6px);
	background-color: rgba(187, 188, 188, 1);
	color: rgba(0, 0, 0, 1);
	font-style: italic;
	border: 1px rgba(255, 255, 255, 1) solid;
}

.product-card__badge--sale {
	font-size: 10px;
	background-color: rgba(202, 191, 165, 1);
	color: rgba(0, 0, 0, 1);
	font-style: italic;
	border: 1px rgba(187, 188, 188, 1) solid;
}

.product-card__content {
	padding-top: 10px;
}

.product-card__title {
	margin: 0 0 6px;
	font-family: var(--geory-font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: rgba(32, 42, 68, 1);
}

.product-card__price {
	font-family: var(--geory-font-family);
	font-size: 16px;
	line-height: 1.3;
	color: rgba(32, 42, 68, 1);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.product-card__price del {
	order: 1;
	margin-right: 0;
	color: rgba(32, 42, 68, 1);
	opacity: 1;
}

.product-card__price ins {
	order: 2;
	text-decoration: none;
	color: rgba(5, 31, 125, 1);
}

.product-card__price .woocommerce-Price-amount {
	display: block;
}

/* «от 6 350 руб.» у товаров с разной ценой по размерам — одной строкой */
.product-card__price ins,
.product-card__price .price-from + .woocommerce-Price-amount {
	display: inline;
	white-space: nowrap;
}

.geory-checkout-consent {
	margin-top: 16px;
}

.geory-checkout-consent .woocommerce-form__label {
	line-height: 1.4;
}

.geory-checkout-consent a {
	text-decoration: underline;
}

.wc-block-cart .wc-block-cart__submit-button,
.wc-block-cart .wc-block-components-button.wp-element-button.wc-block-cart__submit-button,
.wc-block-checkout .wc-block-components-checkout-place-order-button,
.wc-block-checkout .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	padding: 12px 24px;
	border: 1px solid var(--geory-color-text);
	border-radius: var(--geory-radius-sm);
	background: var(--geory-btn-bg);
	color: var(--geory-btn-color);
	font-family: var(--geory-font-family-ui);
	font-size: 16px;
	line-height: 1;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wc-block-cart .wc-block-cart__submit-button .wc-block-components-button__text,
.wc-block-cart .wc-block-components-button.wp-element-button.wc-block-cart__submit-button .wc-block-components-button__text,
.wc-block-checkout .wc-block-components-checkout-place-order-button .wc-block-components-button__text,
.wc-block-checkout .wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text,
.wc-block-checkout .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button .wc-block-components-button__text,
.wc-block-checkout .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
}

.wc-block-cart .wc-block-cart__submit-button:hover,
.wc-block-cart .wc-block-cart__submit-button:focus-visible,
.wc-block-cart .wc-block-components-button.wp-element-button.wc-block-cart__submit-button:hover,
.wc-block-cart .wc-block-components-button.wp-element-button.wc-block-cart__submit-button:focus-visible,
.wc-block-checkout .wc-block-components-checkout-place-order-button:hover,
.wc-block-checkout .wc-block-components-checkout-place-order-button:focus-visible,
.wc-block-checkout .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button:hover,
.wc-block-checkout .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button:focus-visible {
	border-color: var(--geory-color-gold);
	background: var(--geory-btn-bg-hover);
	color: var(--geory-btn-color-hover);
}

.page .site-main h1,
.page .site-main h2,
.single-post .site-main h1,
.single-post .site-main h2 {
	font-weight: 500;
}

.page .site-main,
.single-post .site-main {
	box-sizing: border-box;
	padding-left: var(--geory-layout-gutter-x);
	padding-right: var(--geory-layout-gutter-x);
}

/* Cookie Notice: приводим к визуалу темы Geory. */
#cookie-notice.cn-position-bottom {
	left: var(--geory-layout-gutter-x);
	right: auto;
	bottom: var(--geory-space-4);
	min-width: 0;
	width: min(700px, calc(100% - (var(--geory-layout-gutter-x) * 2)));
	max-width: 700px;
	margin: 0;
	background: var(--geory-color-surface) !important;
	border: 1px solid rgba(var(--geory-rgb-navy), 0.08);
	border-radius: var(--geory-radius-md);
	box-shadow: 0 12px 28px rgba(var(--geory-rgb-navy), 0.14);
}

/* Плагин скрывает только контейнер; убираем весь блок, чтобы не оставалась полоса. */
#cookie-notice.cookie-notice-hidden {
	display: none !important;
}

#cn-close-notice {
	display: none;
}

#cookie-notice .cookie-notice-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--geory-space-3);
	padding: 12px 16px;
	color: var(--geory-color-text) !important;
}

#cookie-notice #cn-notice-text {
	flex: 1 1 360px;
	font-family: var(--geory-font-family-body);
	font-size: var(--geory-font-size-sm);
	line-height: var(--geory-line-height-body);
	color: var(--geory-color-text);
	text-align: left;
}

#cookie-notice #cn-notice-text a {
	color: var(--geory-color-link);
	text-decoration: underline;
	text-underline-offset: 2px;
}

#cookie-notice #cn-notice-buttons {
	display: flex;
	align-items: center;
}

#cookie-notice .cn-button.cn-set-cookie {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 10px 22px;
	border: 1px solid var(--geory-color-text);
	border-radius: var(--geory-radius-sm);
	background: var(--geory-btn-bg) !important;
	color: var(--geory-btn-color) !important;
	font-family: var(--geory-font-family-body);
	font-size: var(--geory-font-size-sm);
	font-weight: var(--geory-font-weight-regular);
	letter-spacing: var(--geory-btn-letter-spacing);
	line-height: 1;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#cookie-notice .cn-button.cn-set-cookie:hover,
#cookie-notice .cn-button.cn-set-cookie:focus-visible {
	background: var(--geory-btn-bg-hover) !important;
	color: var(--geory-btn-color-hover) !important;
	border-color: var(--geory-color-gold);
}

#cookie-notice .cn-close-icon {
	position: relative;
	margin-left: auto;
	width: 20px;
	min-width: 20px;
	height: 20px;
	opacity: 1;
}

#cookie-notice .cn-close-icon:before,
#cookie-notice .cn-close-icon:after {
	top: 9px;
	left: 2px;
	width: 16px;
	height: 1.5px;
	background: rgba(var(--geory-rgb-navy), 0.6);
}

@keyframes geory-cart-spin {
	to {
		transform: rotate(360deg);
	}
}

.wp-block-gutsliders-any-content .gutslider-content-inner {
	padding: 0 !important;
}

.gutslider-content-inner img {
	width: 100% !important;
}

.wp-block-gutsliders-any-content .swiper-button-next, .wp-block-gutsliders-any-content .swiper-button-prev {
	background: none !important;
	color: #000 !important;
}

.wp-block-gutsliders-any-content .swiper-button-next svg, .wp-block-gutsliders-any-content .swiper-button-prev svg {
	fill: #000 !important;
}

.wp-block-gutsliders-any-content .gutslider-content-inner {
	max-width: 100% !important;
}

.wp-block-embed iframe {
	width: 100% !important;
	height: 484px;
}

/*
 * Стиль блока «Колонки» → «Ряд изображений (равная высота)» (Vigbo preview__img).
 */
.page .site-main .wp-block-columns.is-style-geory-equal-image-row,
.single-post .site-main .wp-block-columns.is-style-geory-equal-image-row,
.editor-styles-wrapper .wp-block-columns.is-style-geory-equal-image-row {
	align-items: stretch;
}

.page .site-main .wp-block-columns.is-style-geory-equal-image-row > .wp-block-column .wp-block-image,
.single-post .site-main .wp-block-columns.is-style-geory-equal-image-row > .wp-block-column .wp-block-image,
.editor-styles-wrapper .wp-block-columns.is-style-geory-equal-image-row > .wp-block-column .wp-block-image {
	margin: 0;
	width: 100%;
	aspect-ratio: 1000 / 1311;
	overflow: hidden;
}

.page .site-main .wp-block-columns.is-style-geory-equal-image-row > .wp-block-column .wp-block-image a,
.single-post .site-main .wp-block-columns.is-style-geory-equal-image-row > .wp-block-column .wp-block-image a,
.editor-styles-wrapper .wp-block-columns.is-style-geory-equal-image-row > .wp-block-column .wp-block-image a {
	display: block;
	height: 100%;
}

.page .site-main .wp-block-columns.is-style-geory-equal-image-row > .wp-block-column .wp-block-image img,
.single-post .site-main .wp-block-columns.is-style-geory-equal-image-row > .wp-block-column .wp-block-image img,
.editor-styles-wrapper .wp-block-columns.is-style-geory-equal-image-row > .wp-block-column .wp-block-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

/* h1 страниц и разделов каталога: как первый абзац-капс в вёрстке Vigbo */
.page-title {
	margin: 0 0 1em;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: inherit;
}
.product-archive__title {
	margin: 1.5rem 0 1rem;
	text-align: center;
	font-size: 0.85rem;
	letter-spacing: 0.2em;
}
