/*
	Главные стили темы Natura. Подключены шрифты из Google Fonts и базовая сетка.
	Updated: 2025-12-18
*/

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&display=swap');

:root {
	--container-width-desktop: 93.75vw;
	--container-width-mobile: 89.744vw;
	--page-bg: #ffffff;
	--text-color: #111111;
	--font-family-base: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	--header-offset: 3.646vw;
}

html {
	width: 100%;
	overflow-x: clip;
	scrollbar-gutter: stable;
}

body {
	min-height: 100%;
	margin: 0;
	background-color: var(--page-bg);
	color: var(--text-color);
	font-family: var(--font-family-base);
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.01em;
	text-rendering: optimizeLegibility;
	width: 100%;
	max-width: 100vw;
	overflow-x: clip;
}

/* Улучшение читаемости текста (не заголовков) */
p,
span,
div,
li,
td,
th,
label,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select,
a:not(h1 a, h2 a, h3 a, h4 a, h5 a, h6 a) {
	letter-spacing: 0.02em;
	line-height: 1.7;
}

/* Заголовки используют свои стили из компонентов */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100vw;
	z-index: 100;
	background-color: transparent;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Скрываем нижний навбар на десктопе */
.site-header__bottom-nav {
	display: none !important;
}

/* Явно скрываем нижний навбар на десктопе */
@media (min-width: 1026px) {
	.site-header__bottom-nav {
		display: none !important;
	}
}

/* Мобильное меню открыто - только на мобильной версии */
@media (max-width: 1025px) {
	.site-header--menu-open {
		z-index: 999999 !important;
	}
}

/* На десктопе используем нормальный z-index - не переопределяем, оставляем базовый z-index: 100 */

/* Мобильное меню открыто - только на мобильной версии */
@media (max-width: 1025px) {
	.site-header--menu-open .site-header__hamburger {
		z-index: 1000000 !important;
	}
}

	.site-header__container {
		display: grid;
		grid-template-columns: 46.354vw calc(var(--container-width-desktop) - 46.354vw);
		gap: 0;
		align-items: center;
		width: var(--container-width-desktop);
		max-width: var(--container-width-desktop);
		margin-left: auto;
		margin-right: auto;
		padding: 1.25vw 0;
		box-sizing: border-box;
	}

.site-header__logo {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.site-header__logo-image {
	display: block;
	width: 10.417vw;
	height: auto;
	transition: opacity 0.25s ease;
}

.site-header__logo-image--dark {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

.site-header__left {
	display: flex;
	align-items: center;
	width: 46.354vw;
	gap: 3.646vw;
}

.site-header__catalog {
	margin-left: 0;
	padding: 0.729vw 2.604vw;
	border: 2px solid #ffffff;
	border-radius: 999px;
	background-color: #ffffff;
	color: #303030;
	font-family: var(--font-family-base);
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 1;
	letter-spacing: -0.03em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 0.052vw 0.573vw rgba(0, 0, 0, 0.16);
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* В дропдауне Меню пункт "Каталог" должен выглядеть как обычный пункт списка */
.site-header__dropdown .site-header__menu-item a.site-header__catalog {
	margin-left: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	background-color: transparent;
	color: rgba(48, 48, 48, 0.4); /* как и у остальных пунктов меню */
	box-shadow: none;
	display: block;
	width: 100%;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -0.03em;
}

.site-header__catalog:hover,
.site-header__catalog:focus-visible {
	background-color: transparent;
	border-color: #ffffff;
	color: #ffffff;
}

.site-header__hamburger {
	display: none;
}

.site-header__hamburger-icon {
	display: block;
	width: 100%;
	height: auto;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.site-header__hamburger-icon--menu {
	width: 1.615vw;
}

.site-header__hamburger-icon--close {
	position: absolute;
	left: 0;
	top: 0;
	width: 1.25vw;
	opacity: 0;
	visibility: hidden;
	z-index: 1000000 !important;
}

.site-header__hamburger-icon--light {
	opacity: 1;
	visibility: visible;
}

.site-header__hamburger-icon--dark {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
}

.site-header--menu-open .site-header__hamburger-icon--menu {
	opacity: 0;
	visibility: hidden;
}

.site-header--menu-open .site-header__hamburger-icon--close {
	opacity: 1;
	visibility: visible;
	z-index: 1000000 !important;
}

.site-header--scrolled .site-header__hamburger-icon--light {
	opacity: 0;
	visibility: hidden;
}

.site-header--scrolled .site-header__hamburger-icon--dark {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 1025px) {
	/* Добавляем отступ снизу для body только когда есть нижний навбар */
	/* На главной странице и /sales нет нижней панели, поэтому padding-bottom не нужен */
	body:has(.site-header--alt) {
		padding-bottom: 15.385vw;
	}
	
	/* На страницах без нижней панели убираем padding-bottom */
	body:not(:has(.site-header--alt)) {
		padding-bottom: 0;
	}

	/* На главной странице и sales используем нормальный z-index, как на десктопе */
	.site-header {
		z-index: 100;
	}

	/* Для страниц с alt-header (не главная и не sales) увеличиваем z-index */
	.site-header--alt {
		z-index: 1000005 !important;
	}

	.container {
		width: var(--container-width-mobile);
	}

	.site-header__container {
		display: flex;
		grid-template-columns: none;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		max-width: var(--container-width-mobile);
		margin-left: auto;
		margin-right: auto;
		padding: 5.333vw 0;
		height: auto;
		min-height: auto;
		box-sizing: border-box;
		position: relative;
		z-index: inherit;
	}

	/* Для страниц с alt-header увеличиваем z-index контейнера */
	.site-header--alt .site-header__container {
		z-index: 1000005 !important;
	}

	.site-header__left {
		display: flex;
		align-items: center;
		width: auto;
		gap: 0;
	}

	.site-header__catalog {
		margin-left: 3.646vw;
	}

	.site-header__logo {
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		height: auto;
		margin: 0;
		padding: 0;
		line-height: 1;
	}

	.site-header__logo-image {
		width: 26.667vw;
		height: auto;
		display: block;
		vertical-align: middle;
	}

	.site-header__left {
		display: flex !important;
		width: auto;
		gap: 0;
		overflow: visible !important;
		position: relative !important;
		height: auto !important;
		min-height: auto !important;
	}

	.site-header__catalog {
		display: none !important;
	}

	.site-header__contacts {
		display: none !important;
	}

	.site-header__right {
		display: none !important;
	}

	.site-header__hamburger {
		display: inline-flex;
		position: relative;
		align-items: center;
		justify-content: center;
		width: 8.267vw;
		height: 8.267vw;
		min-width: 8.267vw;
		min-height: 8.267vw;
		padding: 0;
		margin: 0;
		border: none;
		background: transparent;
		cursor: pointer;
		line-height: 1;
		vertical-align: middle;
		flex-shrink: 0;
		box-sizing: border-box;
		z-index: 10000000 !important;
	}

	.site-header--menu-open .site-header__hamburger {
		z-index: 1000000 !important;
		position: fixed !important;
		top: 5.333vw !important;
		right: 5.333vw !important;
		left: auto !important;
		bottom: auto !important;
	}

	/* Скрываем логотип когда меню открыто */
	.site-header--menu-open .site-header__logo {
		display: none !important;
	}

	.site-header__hamburger-icon {
		display: block;
		transition: opacity 0.25s ease, visibility 0.25s ease;
		pointer-events: none;
	}

	.site-header__hamburger-icon--menu {
		position: relative;
		width: 8.267vw;
		height: auto;
	}

	.site-header__hamburger-icon--close {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 6.4vw;
		height: auto;
		opacity: 0;
		visibility: hidden;
		z-index: 1000001 !important;
		pointer-events: auto !important;
		display: block !important;
	}

	.site-header__hamburger-icon--light {
		position: relative;
		opacity: 1;
		visibility: visible;
	}

	.site-header__hamburger-icon--dark {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 8.267vw;
		height: auto;
		opacity: 0;
		visibility: hidden;
	}

	.site-header--menu-open .site-header__hamburger-icon--menu {
		opacity: 0;
		visibility: hidden;
	}

	.site-header--menu-open .site-header__hamburger-icon--close {
		opacity: 1 !important;
		visibility: visible !important;
		z-index: 1000001 !important;
		pointer-events: auto !important;
		display: block !important;
		position: absolute !important;
		width: 6.4vw !important;
		height: auto !important;
		left: 50% !important;
		top: 50% !important;
		transform: translate(-50%, -50%) !important;
	}

	.site-header--scrolled .site-header__hamburger-icon--light {
		opacity: 0;
		visibility: hidden;
	}

	.site-header--scrolled .site-header__hamburger-icon--dark {
		opacity: 1;
		visibility: visible;
	}

	/* Для страниц с alt-header (кроме главной и sales) скрываем логотип и кнопку меню в мобильной версии */
	.site-header--alt .site-header__logo {
		display: none !important;
	}

	.site-header--alt .site-header__menu-button,
	.site-header--alt .site-header__dropdown-wrapper {
		display: none !important;
	}

	/* Показываем alt-actions (поиск) для alt-header */
	.site-header--alt .site-header__alt-actions {
		display: flex !important;
		align-items: center;
		gap: 0;
		width: 100%;
		flex: 1;
		position: relative !important;
		overflow: visible !important;
		z-index: 1000006 !important;
	}

	/* Когда меню открыто, скрываем поиск на страницах с alt-header */
	.site-header--alt.site-header--menu-open .site-header__alt-actions {
		display: none !important;
	}

	/* Когда меню открыто, результаты поиска должны быть ниже меню */
	.site-header--alt.site-header--menu-open .site-header__search-results {
		display: none !important;
	}

	/* Показываем поиск для alt-header */
	.site-header--alt .site-header__search-wrapper {
		display: flex !important;
		width: 71.795vw !important;
		flex: 0 0 71.795vw !important;
		margin-right: 2.667vw;
	}

	.site-header--alt .site-header__search-form {
		height: 10.667vw;
		width: 100%;
	}

	.site-header--alt .site-header__search-input {
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 600 !important;
		font-size: 3.59vw !important;
		line-height: 100% !important;
		letter-spacing: -0.03em !important;
		vertical-align: middle !important;
		padding: 0 3.2vw !important;
		padding-right: calc(3.2vw + 6.4vw + 1.333vw) !important;
		border-radius: 999px;
	}

	.site-header--alt .site-header__search-input::placeholder {
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 600 !important;
		font-size: 3.59vw !important;
		line-height: 100% !important;
		letter-spacing: -0.03em !important;
		vertical-align: middle !important;
	}

	/* iOS Safari: prevent auto-zoom on focus (font-size must be >= 16px) */
	.site-header__search-input,
	.site-header__search-input::placeholder,
	.site-header--alt .site-header__search-input,
	.site-header--alt .site-header__search-input::placeholder {
		font-size: 16px !important;
	}

	.site-header--alt .site-header__search-button {
		width: 6.4vw;
		height: 6.4vw;
		right: 1.333vw;
	}

	.site-header--alt .site-header__search-icon {
		width: 4.8vw;
		height: 4.8vw;
	}

	/* Адаптация выпадающего списка результатов поиска для мобильной версии */
	/* Используем position: fixed чтобы выпадающий список не влиял на высоту header */
	.site-header--alt .site-header__search-wrapper {
		position: relative !important;
		overflow: visible !important;
	}
	
	.site-header--alt .site-header__search-results,
	.site-header__search-results--in-body {
		position: fixed !important;
		/* Позиционирование будет установлено через JavaScript */
		width: 71.795vw !important;
		max-width: 71.795vw !important;
		padding: 2.667vw !important;
		border-radius: 1.282vw !important;
		border: 1px solid rgba(48, 48, 48, 0.2) !important;
		box-shadow: none !important;
		max-height: 50vh !important;
		/* z-index НИЖЕ мобильного меню/гамбургера, чтобы меню всегда перекрывало поиск */
		z-index: 1000004 !important;
		background-color: #ffffff !important;
		overflow-y: auto !important;
		overflow-x: hidden !important;
		-webkit-overflow-scrolling: touch !important;
		/* Fixed позиционирование выносит элемент из потока, не влияет на высоту header */
		-webkit-transform: translateZ(0) !important;
		transform: translateZ(0) !important;
		will-change: transform !important;
		-webkit-backface-visibility: hidden !important;
		backface-visibility: hidden !important;
		/* Специальные свойства для iOS Safari */
	}

	.site-header--alt .site-header__search-result-item,
	.site-header__search-results--in-body .site-header__search-result-item {
		padding: 2.667vw 0 !important;
		min-height: auto !important;
		gap: 2.667vw !important;
		align-items: center !important;
	}

	.site-header--alt .site-header__search-result-image,
	.site-header__search-results--in-body .site-header__search-result-image {
		width: 15.385vw !important;
		height: 8.205vw !important;
		min-height: 8.205vw !important;
		max-height: 8.205vw !important;
		border-radius: 1.282vw !important;
	}

	.site-header--alt .site-header__search-result-content,
	.site-header__search-results--in-body .site-header__search-result-content {
		flex: 1 !important;
		margin-left: 2.667vw !important;
		height: auto !important;
		min-height: auto !important;
		max-height: none !important;
	}

	.site-header--alt .site-header__search-result-title-wrapper,
	.site-header__search-results--in-body .site-header__search-result-title-wrapper {
		margin-bottom: 1.282vw !important;
	}

	.site-header--alt .site-header__search-result-title,
	.site-header--alt .site-header__search-result-unit,
	.site-header__search-results--in-body .site-header__search-result-title,
	.site-header__search-results--in-body .site-header__search-result-unit {
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 500 !important;
		font-size: 3.2vw !important;
		line-height: 100% !important;
		letter-spacing: -0.03em !important;
		vertical-align: middle !important;
	}

	.site-header--alt .site-header__search-result-price,
	.site-header__search-results--in-body .site-header__search-result-price {
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 500 !important;
		font-size: 3.2vw !important;
		line-height: 100% !important;
		letter-spacing: -0.03em !important;
		vertical-align: middle !important;
	}

	.site-header--alt .site-header__search-result-actions,
	.site-header__search-results--in-body .site-header__search-result-actions {
		width: auto !important;
		margin-top: 0 !important;
		flex-shrink: 0 !important;
	}

	/* Кнопка корзины для мобильной версии */
	.site-header--alt .site-header__search-result-cart-button,
	.site-header__search-results--in-body .site-header__search-result-cart-button {
		width: 10.667vw !important;
		height: 10.667vw !important;
		min-width: 10.667vw !important;
		min-height: 10.667vw !important;
		max-width: 10.667vw !important;
		max-height: 10.667vw !important;
		padding: 0 !important;
		border-radius: 50% !important;
		background-color: #4DBD56 !important;
		border: none !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		cursor: pointer !important;
		position: relative !important;
		flex-shrink: 0 !important;
	}

	.site-header--alt .site-header__search-result-cart-icon-wrapper,
	.site-header__search-results--in-body .site-header__search-result-cart-icon-wrapper {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		height: 100% !important;
	}

	.site-header--alt .site-header__search-result-cart-icon,
	.site-header__search-results--in-body .site-header__search-result-cart-icon {
		width: 5.333vw !important;
		height: 5.333vw !important;
		display: block !important;
	}

	/* Сообщение об отсутствии результатов поиска */
	.site-header--alt .site-header__search-result-empty,
	.site-header__search-results--in-body .site-header__search-result-empty {
		padding: 4vw 2.667vw !important;
		text-align: center !important;
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 600 !important;
		font-size: 3.59vw !important;
		line-height: 100% !important;
		letter-spacing: -0.03em !important;
		color: rgba(48, 48, 48, 0.4) !important;
		border: 1px solid rgba(48, 48, 48, 0.2) !important;
		border-radius: 1.282vw !important;
		background-color: #ffffff !important;
	}

	/* Скрываем контакты (телефон) в мобильной версии для alt-header */
	.site-header--alt .site-header__contacts {
		display: none !important;
	}


	.site-header--alt .site-header__right {
		display: none !important;
	}

	/* Показываем гамбургер для alt-header */
	.site-header--alt .site-header__hamburger {
		display: inline-flex !important;
	}

	/* Стили для кнопки аккаунта в мобильной версии alt-header */
	.site-header--alt .site-header__account-button {
		display: none !important;
	}

	/* Нижний навбар для мобильной версии alt-header */
	.site-header__bottom-nav {
		display: none;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 4vw;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100vw;
		height: 15.385vw;
		background-color: #ffffff;
		padding: 0 4vw;
		box-sizing: border-box;
		border-top: 1px solid rgba(48, 48, 48, 0.1);
		z-index: 10000003 !important;
		transform: none;
		margin: 0;
	}

	/* Показываем нижний навбар только в мобильной версии когда есть alt-header */
	body:has(.site-header--alt) .site-header__bottom-nav {
		display: grid !important;
	}

	.site-header__bottom-nav-item {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 10.667vw;
		height: 10.667vw;
		border: none;
		background: transparent;
		padding: 0;
		margin: 0;
		cursor: pointer;
		text-decoration: none;
		position: relative;
		flex-shrink: 0;
	}

	.site-header__bottom-nav-icon {
		width: 10.667vw;
		height: 10.667vw;
		display: block;
		object-fit: contain;
	}

	.site-header__bottom-nav-text {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.533vw;
		flex: 1;
		text-align: center;
	}

	.site-header__bottom-nav-text-line {
		display: block;
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
		font-weight: 500;
		font-size: 2.667vw;
		line-height: 1.2;
		letter-spacing: -0.02em;
		color: rgba(48, 48, 48, 0.6);
	}

	.site-header__bottom-nav-cart {
		position: relative;
		width: 10.667vw;
		height: 10.667vw;
		border-radius: 50%;
		background-color: #4DBD56;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		padding: 0;
		margin: 0;
		cursor: pointer;
		flex-shrink: 0;
	}

	.site-header__bottom-nav-cart-icon-wrapper {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}

	.site-header__bottom-nav-cart-icon {
		width: 5.333vw;
		height: 5.333vw;
		display: block;
	}

	.site-header__bottom-nav-cart-count {
		position: absolute;
		bottom: 0;
		right: 0;
		width: 4.267vw;
		height: 4.267vw;
		min-width: 4.267vw;
		min-height: 4.267vw;
		background-color: #ffffff;
		border: 1px solid #4DBD56;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: 'Inter', 'Inter Tight', sans-serif;
		font-weight: 400;
		font-size: 2.133vw;
		line-height: 100%;
		letter-spacing: 0;
		color: #000000;
		z-index: 10;
		box-sizing: border-box;
	}

	.site-header__bottom-nav-cart-count:empty {
		display: none;
	}

	.site-header__mobile-menu {
		display: block !important;
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100% !important;
		height: 100vh !important;
		height: 100dvh !important;
		max-height: 100vh !important;
		background-color: #FFFFFF !important;
		z-index: 999998 !important;
		transform: translateY(-100%);
		transition: transform 0.3s ease;
		overflow: hidden;
		visibility: visible !important;
		opacity: 1 !important;
		box-sizing: border-box;
		margin: 0;
		padding: 0;
	}

	/* Для страниц с alt-header мобильное меню должно быть выше поиска */
	.site-header--alt .site-header__mobile-menu {
		z-index: 1000001 !important;
	}

	.site-header__mobile-menu.is-active {
		transform: translateY(0) !important;
	}

	.site-header__mobile-menu-content {
		display: flex !important;
		flex-direction: column;
		justify-content: space-between;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		max-height: 100vh;
		max-height: 100dvh;
		padding: 5.333vw 0 5.333vw 5.333vw;
		box-sizing: border-box;
		overflow: hidden;
		position: relative;
		z-index: 999999 !important;
	}

	/* Для страниц с alt-header контент меню должен быть выше поиска */
	.site-header--alt .site-header__mobile-menu-content {
		z-index: 1000002 !important;
	}

	.site-header__nav {
		display: flex !important;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 0;
		margin: 0;
		width: 100%;
		flex: 1 1 auto;
		overflow: hidden;
		overflow-x: hidden;
	}

	.site-header__mobile-menu .site-header__nav {
		padding-left: 0;
		margin-left: 0;
	}

	.site-header__menu {
		display: flex !important;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		row-gap: 1.6vw;
		margin: 0;
		padding: 0;
		list-style: none;
		width: 100%;
	}

	.site-header__mobile-menu .site-header__menu {
		align-items: stretch;
		width: 100%;
		flex-wrap: wrap;
	}

	.site-header__mobile-menu .site-header__menu-item {
		position: relative;
		width: auto;
		flex-shrink: 0;
	}

	.site-header__mobile-menu .site-header__separator {
		width: 0.313vw;
		height: 0.313vw;
		background-image: url('../img/header/ellipse-dark.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		display: block;
		flex-shrink: 0;
		align-self: center;
	}

	.site-header__mobile-menu .site-header__menu-item a {
		display: flex !important;
		align-items: center;
		justify-content: flex-start;
		color: #303030 !important;
		font-family: var(--font-family-base) !important;
		font-weight: 500 !important;
		font-style: normal !important;
		font-size: 9.067vw !important;
		line-height: 100% !important;
		letter-spacing: -0.03em !important;
		text-decoration: none;
		transition: color 0.25s ease, background-color 0.25s ease;
		vertical-align: middle;
		white-space: nowrap;
		width: auto;
		margin: 0;
		padding: 0;
	}

	/* Специфичные стили для кнопки Каталог в мобильном меню - сбрасываем десктопные стили */
	.site-header__mobile-menu .site-header__menu-item a.site-header__catalog,
	.site-header--scrolled .site-header__mobile-menu .site-header__menu-item a.site-header__catalog,
	.site-header--not-home .site-header__mobile-menu .site-header__menu-item a.site-header__catalog {
		padding: 0 !important;
		border: none !important;
		border-radius: 0 !important;
		background-color: transparent !important;
		color: #303030 !important;
		font-size: 9.067vw !important;
		line-height: 100% !important;
		font-weight: 500 !important;
		margin: 0 !important;
		margin-left: 0 !important;
		box-shadow: none !important;
		display: flex !important;
		align-items: center;
		justify-content: flex-start;
		width: auto !important;
		min-width: 0 !important;
		height: auto !important;
		text-decoration: none !important;
		letter-spacing: -0.03em !important;
		cursor: pointer !important;
		transition: color 0.25s ease, background-color 0.25s ease !important;
	}

	/* Убираем иконку для неактивных пунктов */
	.site-header__mobile-menu .site-header__menu-item a::after {
		content: none !important;
		display: none !important;
	}


	.site-header__mobile-menu .site-header__menu-item a:hover,
	.site-header__mobile-menu .site-header__menu-item a:focus-visible {
		color: #303030;
	}

	/* Hover для Каталог в мобильном меню */
	.site-header__mobile-menu .site-header__menu-item a.site-header__catalog:hover,
	.site-header__mobile-menu .site-header__menu-item a.site-header__catalog:focus-visible {
		background-color: transparent !important;
		border: none !important;
		color: #303030 !important;
		padding: 0 !important;
	}

	/* Активный пункт - другой цвет и иконка */
	.site-header__mobile-menu .site-header__menu-item.is-active a,
	.site-header__mobile-menu .site-header__menu-item.current-menu-item a {
		color: #303030 !important;
	}

	/* Активный пункт Каталог - зеленый фон */
	.site-header__mobile-menu .site-header__menu-item.is-active a.site-header__catalog,
	.site-header__mobile-menu .site-header__menu-item.current-menu-item a.site-header__catalog,
	.site-header--scrolled .site-header__mobile-menu .site-header__menu-item.is-active a.site-header__catalog,
	.site-header--scrolled .site-header__mobile-menu .site-header__menu-item.current-menu-item a.site-header__catalog,
	.site-header--not-home .site-header__mobile-menu .site-header__menu-item.is-active a.site-header__catalog,
	.site-header--not-home .site-header__mobile-menu .site-header__menu-item.current-menu-item a.site-header__catalog {
		/* убираем зелёный фон и делаем как обычный активный пункт */
		background-color: transparent !important;
		color: #303030 !important;
		padding: 0 !important;
		border-radius: 0 !important;
		border: none !important;
		width: auto !important;
		display: inline-flex !important;
		box-shadow: none !important;
		margin: 0 !important;
		margin-left: 0 !important;
	}

	/* Убираем стрелки у активных пунктов */
	.site-header__mobile-menu .site-header__menu-item.is-active a::after,
	.site-header__mobile-menu .site-header__menu-item.current-menu-item a::after {
		content: none !important;
		display: none !important;
	}

	.site-header__mobile-contacts {
		display: flex !important;
		align-items: center;
		gap: 1.067vw;
		margin-top: 0;
		padding-top: 5.333vw;
		flex-shrink: 0;
		flex-grow: 0;
		width: 100%;
	}

	.site-header__mobile-contact {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 10.667vw;
		height: 10.667vw;
		flex-shrink: 0;
	}

	.site-header__mobile-contact img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		display: block;
	}

	.site-header__mobile-phones {
		display: flex;
		flex-direction: column;
		row-gap: 0.533vw;
		margin-left: 5.333vw;
	}

	.site-header__mobile-phones a {
		color: #30303099;
		font-family: var(--font-family-base);
		font-weight: 600;
		font-size: 3.733vw;
		line-height: 110%;
		letter-spacing: -0.03em;
		text-decoration: none;
		transition: color 0.25s ease;
		vertical-align: middle;
	}

	.site-header__mobile-phones a:hover,
	.site-header__mobile-phones a:focus-visible {
		color: #303030;
	}
}

.site-header__right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: calc(var(--container-width-desktop) - 46.354vw);
	margin-left: 0;
	gap: 0;
	overflow-x: hidden;
	overflow-y: visible !important;
	padding-top: 0.156vw;
	padding-bottom: 0.156vw;
	position: relative;
	z-index: 100;
}

.site-header__nav {
	margin-left: 0;
	padding: 0;
}

.site-header__menu {
	display: flex;
	align-items: center;
	column-gap: 0.729vw;
	row-gap: 0.729vw;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-header__contacts {
	margin-left: 2.604vw;
	margin-right: 0;
	display: flex;
	align-items: center;
	column-gap: 0.313vw;
	flex-shrink: 0;
	overflow: visible !important;
	padding-top: 0.156vw;
	padding-bottom: 0.156vw;
	position: relative;
	z-index: 100;
}

.site-header__account-button {
	margin-left: 0;
	margin-right: 0;
	padding: 0 3.281vw;
	border: 2px solid #4DBD56;
	border-radius: 999px;
	background-color: #4DBD56;
	color: #ffffff;
	font-family: var(--font-family-base);
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 1;
	letter-spacing: -0.03em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
	box-shadow: none;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	height: 2.604vw;
	min-width: auto;
}

.site-header__account-button-text {
	color: inherit;
	transition: color 0.3s ease;
}

.site-header__account-button:hover,
.site-header__account-button:focus-visible {
	background-color: transparent;
	color: #303030;
	border-color: currentColor;
}

.site-header__account-button:hover .site-header__account-button-text,
.site-header__account-button:focus-visible .site-header__account-button-text {
	color: #303030;
}

.site-header__cart-wrapper {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.site-header__contact {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.604vw;
	height: 2.604vw;
	border-radius: 50%;
	transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-decoration: none;
}

.site-header__cart-count {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 1.042vw;
	height: 1.042vw;
	min-width: 1.042vw;
	min-height: 1.042vw;
	background-color: #ffffff;
	border: 1px solid #4DBD56;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Inter', 'Inter Tight', sans-serif;
	font-weight: 400;
	font-size: 0.625vw;
	line-height: 100%;
	letter-spacing: 0;
	color: #000000;
	z-index: 10;
	box-sizing: border-box;
}

.site-header__cart-count:empty {
	display: none;
}

.site-header__cart-wrapper {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: visible !important;
}

.site-header__cart-notification {
	position: fixed;
	background-color: #ffffff;
	border: 1px solid rgba(48, 48, 48, 0.1);
	border-radius: 0.26vw;
	padding: 0.521vw;
	display: flex;
	align-items: center;
	gap: 0.625vw;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	z-index: 10000;
	box-sizing: border-box;
	min-width: 200px;
	box-shadow: none;
	pointer-events: none;
	white-space: nowrap;
}

.site-header__cart-notification.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.site-header__cart-notification-image {
	width: 3.906vw;
	height: 2.135vw;
	object-fit: contain;
	border-radius: 0.26vw;
	flex-shrink: 0;
}

.site-header__cart-notification-text {
	display: flex;
	flex-direction: column;
	gap: 0;
	flex: 1;
}

.site-header__cart-notification-text span {
	color: rgba(48, 48, 48, 0.4); /* #30303066 */
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
	display: block;
	white-space: normal;
	word-wrap: break-word;
}

/* Мобильная версия уведомления о добавлении в корзину */
@media (max-width: 1025px) {
	.site-header__cart-notification {
		position: fixed !important;
		top: auto !important;
		right: 4vw !important;
		left: auto !important;
		bottom: 16.667vw !important;
		width: 39.744vw !important;
		min-width: 39.744vw !important;
		max-width: 39.744vw !important;
		padding: 2.564vw !important;
		border-radius: 1.282vw !important;
		border: 1px solid rgba(48, 48, 48, 0.2) !important;
		box-shadow: none !important;
		gap: 2.564vw !important;
		z-index: 1000000 !important;
		display: flex !important;
		transform: none !important;
		margin: 0 !important;
		/* Убеждаемся, что позиционирование относительно viewport, а не родителя */
		position: fixed !important;
		inset: auto 4vw auto auto !important;
		bottom: 16.667vw !important;
	}
	
	/* Убираем влияние родительских элементов на позиционирование */
	.site-header .site-header__container .site-header__cart-notification,
	.site-header__container .site-header__cart-notification,
	.site-header .site-header__cart-notification,
	[data-cart-notification] {
		position: fixed !important;
		top: auto !important;
		right: 4vw !important;
		left: auto !important;
		bottom: 16.667vw !important;
		transform: none !important;
		margin: 0 !important;
		width: 39.744vw !important;
		min-width: 39.744vw !important;
		max-width: 39.744vw !important;
		padding: 2.564vw !important;
		border-radius: 1.282vw !important;
		border: 1px solid rgba(48, 48, 48, 0.2) !important;
		box-shadow: none !important;
		gap: 2.564vw !important;
		/* Принудительно позиционируем относительно viewport */
		position: fixed !important;
	}
	
	/* Убираем transform из родительских элементов, которые могут влиять */
	.site-header[style*="transform"] .site-header__cart-notification,
	.site-header__container[style*="transform"] .site-header__cart-notification {
		position: fixed !important;
		transform: none !important;
	}

	.site-header__cart-notification-image {
		width: 10.769vw !important;
		height: 5.641vw !important;
		border-radius: 1.282vw !important;
		flex-shrink: 0 !important;
		object-fit: contain !important;
	}

	.site-header__cart-notification-text {
		gap: 0 !important;
		flex: 1 !important;
	}

	.site-header__cart-notification-text span {
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 600 !important;
		font-size: 2.667vw !important;
		line-height: 100% !important;
		letter-spacing: -0.03em !important;
		vertical-align: middle !important;
		color: rgba(48, 48, 48, 0.4) !important;
	}
}

.site-header__contact:hover,
.site-header__contact:focus-visible {
	transform: translateY(-0.156vw);
	opacity: 0.85;
}

.site-header__contact:focus-visible {
	outline: 0.104vw solid rgba(255, 255, 255, 0.6);
	outline-offset: 0.104vw;
}

.site-header__contact-icon {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 50%;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.site-header__contact-icon--dark {
	opacity: 0;
	visibility: hidden;
}

.site-header__menu {
	display: flex;
	align-items: center;
	column-gap: 0.729vw;
	row-gap: 0.729vw;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-header__menu-item a {
	color: #ffffff;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 1;
	letter-spacing: -0.03em;
	text-decoration: none;
	transition: color 0.25s ease;
}

.site-header__menu-item a:hover,
.site-header__menu-item a:focus-visible {
	color: rgba(255, 255, 255, 0.7);
}

.site-header__separator {
	width: 0.313vw;
	height: 0.313vw;
	background-image: url('../img/header/ellipse-white.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	display: block;
}

.site-header__mobile-contacts {
	display: flex;
	align-items: center;
	gap: 1.067vw;
	margin-top: auto;
	padding-top: 5.333vw;
}

.site-header__mobile-contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 10.667vw;
	height: 10.667vw;
	flex-shrink: 0;
}

.site-header__mobile-contact img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.site-header__mobile-phones {
	display: flex;
	flex-direction: column;
	row-gap: 0.533vw;
	margin-left: 5.333vw;
}

.site-header__mobile-phones a {
	color: #30303099;
	font-family: var(--font-family-base);
	font-weight: 600;
	font-size: 3.733vw;
	line-height: 110%;
	letter-spacing: -0.03em;
	text-decoration: none;
	transition: color 0.25s ease;
	vertical-align: middle;
}

.site-header__mobile-phones a:hover,
.site-header__mobile-phones a:focus-visible {
	color: #303030;
}

.site-header--scrolled .site-header__logo-image--light {
	opacity: 0;
}

.site-header--scrolled .site-header__logo-image--dark {
	opacity: 1;
}

.site-header--scrolled {
	background-color: #ffffff;
	box-shadow: none;
	top: 0;
	transform: translateY(0);
	opacity: 1;
	filter: blur(0);
}

.site-header--scrolled .site-header__menu-item a {
	color: #30303099;
}

.site-header--scrolled .site-header__menu-item a:hover,
.site-header--scrolled .site-header__menu-item a:focus-visible {
	color: #303030;
}

.site-header--scrolled .site-header__separator {
	background-image: url('../img/header/ellipse-dark.svg');
}

.site-header--scrolled .site-header__catalog {
	background-color: #303030;
	color: #ffffff;
	border: 2px solid transparent;
	box-shadow: none;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.site-header--scrolled .site-header__catalog:hover,
.site-header--scrolled .site-header__catalog:focus-visible {
	background-color: transparent;
	color: #303030;
	border-color: #303030;
}

.site-header--scrolled .site-header__contact:focus-visible {
	outline: 0.104vw solid rgba(48, 48, 48, 0.4);
}

.site-header--scrolled .site-header__contact-icon--light {
	opacity: 0;
	visibility: hidden;
}

.site-header--scrolled .site-header__contact-icon--dark {
	opacity: 1;
	visibility: visible;
}

/* Styles for non-home pages */
.site-header--not-home {
	background-color: #ffffff;
	box-shadow: none;
}

.site-header--not-home .site-header__catalog {
	background-color: #4DBD56;
	color: #ffffff;
	border: 2px solid #4DBD56;
	box-shadow: none;
}

.site-header--not-home .site-header__catalog:hover,
.site-header--not-home .site-header__catalog:focus-visible {
	background-color: transparent;
	border-color: #4DBD56;
	color: #303030;
}

.site-header--not-home .site-header__menu-item a {
	color: rgba(48, 48, 48, 0.5); /* #30303080 */
}

.site-header--not-home .site-header__menu-item a:hover,
.site-header--not-home .site-header__menu-item a:focus-visible {
	color: #303030;
}

/* Альтернативный хедер для страниц кроме главной и /sales */
.site-header--alt .site-header__catalog {
	display: none;
}

.site-header__menu-button {
	margin-left: 0;
	padding: 0 1.719vw;
	border: 2px solid #4DBD56;
	border-radius: 999px;
	background-color: #4DBD56;
	color: #ffffff;
	font-family: var(--font-family-base);
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 1;
	letter-spacing: -0.03em;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.729vw;
	cursor: pointer;
	text-decoration: none;
	box-shadow: none;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	width: 8.542vw;
	height: 2.604vw;
	min-width: 8.542vw;
	min-height: 2.604vw;
	box-sizing: border-box;
}

.site-header__menu-button-text {
	color: inherit;
	transition: color 0.3s ease;
}

.site-header__menu-button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 0.677vw;
	height: 0.677vw;
	flex-shrink: 0;
}

.site-header__menu-button:hover,
.site-header__menu-button:focus-visible,
.site-header__dropdown-wrapper:focus-within .site-header__menu-button,
.site-header__dropdown-wrapper:hover .site-header__menu-button {
	background-color: transparent;
	color: #303030;
	border-color: currentColor;
}

.site-header__menu-button:hover .site-header__menu-button-text,
.site-header__menu-button:focus-visible .site-header__menu-button-text,
.site-header__dropdown-wrapper:hover .site-header__menu-button .site-header__menu-button-text {
	color: #303030;
}

.site-header__alt-actions {
	display: flex;
	align-items: center;
	gap: 1.823vw;
}

.site-header__dropdown-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.site-header__search-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 34.531vw;
	/* Z-index устанавливается для мобильной версии отдельно */
}

.site-header__search-form {
	display: flex;
	align-items: center;
	position: relative;
	height: 2.604vw;
	width: 100%;
	min-width: 0;
}

/* Custom Scrollbar Styles */
* {
	scrollbar-width: thin;
	/* Subtle, clean scrollbar colors (thumb / track) */
	scrollbar-color: rgba(48, 48, 48, 0.22) rgba(48, 48, 48, 0.04);
}

*::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

*::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 9999px;
	box-shadow: inset 0 0 0 1px rgba(48, 48, 48, 0.06);
}

*::-webkit-scrollbar-thumb {
	background-color: rgba(48, 48, 48, 0.22);
	border-radius: 9999px;
}

*::-webkit-scrollbar-thumb:hover {
	background-color: rgba(48, 48, 48, 0.32);
}

*::-webkit-scrollbar-corner {
	background: transparent;
}

.site-header__search-input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
	display: none;
}

.site-header__search-input::-ms-clear {
	display: none;
}

.site-header__search-input {
	width: 100%;
	height: 100%;
	padding: 0 1.042vw;
	padding-right: calc(1.042vw + 1.25vw + 0.5vw);
	border: 1px solid rgba(48, 48, 48, 0.2);
	border-radius: 999px;
	background-color: transparent;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: #303030;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.3s ease;
	vertical-align: middle;
}

.site-header__search-input::placeholder {
	color: rgba(48, 48, 48, 0.4);
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
}

.site-header__search-input:focus {
	border-color: #4DBD56;
}

.site-header__search-button {
	position: absolute;
	right: 1.042vw;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.25vw;
	height: 1.25vw;
	padding: 0;
	margin: 0;
	border: none;
	background: transparent;
	cursor: pointer;
}

.site-header__search-icon {
	width: 1.25vw;
	height: 1.25vw;
	display: block;
}

.site-header__search-button.has-text {
	display: none;
}

.site-header__search-clear {
	position: absolute;
	right: 1.042vw;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.25vw;
	height: 1.25vw;
	padding: 0;
	margin: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	z-index: 10;
}

.site-header__search-clear svg {
	width: 100%;
	height: 100%;
}

.site-header__search-clear:hover svg path {
	stroke: rgba(48, 48, 48, 0.6);
}

.site-header__search-results {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 0.521vw;
	width: 100%;
	background-color: #ffffff;
	border: 1px solid rgba(48, 48, 48, 0.2);
	border-radius: 0.26vw;
	padding: 1.042vw;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	z-index: 1000004;
	max-height: 60vh;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	display: none;
	box-shadow: none;
}

.site-header__search-results.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	display: block;
}

.site-header__search-result-item {
	display: flex;
	align-items: center;
	gap: 1.042vw;
	padding: 1.042vw 0;
	border-bottom: 1px solid rgba(48, 48, 48, 0.1);
	min-height: 3.125vw;
}

.site-header__search-result-item:last-child {
	border-bottom: none;
}

.site-header__search-result-image {
	width: 5.729vw;
	height: 3.125vw !important;
	min-height: 3.125vw !important;
	max-height: 3.125vw !important;
	object-fit: cover;
	border-radius: 0.26vw;
	flex-shrink: 0;
	display: block;
}

.site-header__search-result-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
	margin-left: 1.042vw;
	height: 3.125vw !important;
	min-height: 3.125vw !important;
	max-height: 3.125vw !important;
	justify-content: center;
	overflow: hidden;
	box-sizing: border-box;
}

.site-header__search-result-title-wrapper {
	display: flex;
	align-items: baseline;
	gap: 0;
	margin-bottom: 0.521vw;
	overflow: hidden;
	line-height: 100%;
	flex-wrap: wrap;
}

.site-header__search-result-title {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: baseline;
	color: #303030;
	margin: 0;
	padding: 0;
	display: inline;
}

.site-header__search-result-unit {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: baseline;
	color: rgba(48, 48, 48, 0.4); /* #30303066 */
	margin: 0;
	padding: 0;
	margin-left: 0;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Search dropdown: hide unit labels next to product title */
.site-header__search-results .site-header__search-result-unit,
.site-header__search-results--in-body .site-header__search-result-unit {
	display: none !important;
}

.site-header__search-result-price {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
	color: #303030;
	margin: 0;
	padding: 0;
}

.site-header__search-result-actions {
	display: flex;
	align-items: center;
	width: 13.802vw;
	flex-shrink: 0;
}

.site-header__search-result-actions .product-card__button-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 3.125vw !important;
	min-height: 3.125vw !important;
	max-height: 3.125vw !important;
}

.site-header__search-result-actions .add_to_cart_button {
	width: 100%;
	height: 3.125vw !important;
	min-height: 3.125vw !important;
	max-height: 3.125vw !important;
	padding: 0.521vw 1.042vw;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
	border: 1px solid rgba(48, 48, 48, 0.1);
	border-radius: 0.26vw;
	background: transparent;
	color: #303030;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	margin: 0;
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
}

.site-header__search-result-actions .product-card__quantity-wrapper {
	width: 100%;
	height: 3.125vw !important;
	min-height: 3.125vw !important;
	max-height: 3.125vw !important;
	padding: 0 0.521vw !important;
	display: none;
	align-items: center;
	justify-content: space-between;
	border: 1px solid rgba(48, 48, 48, 0.1);
	border-radius: 999px;
	background: transparent;
	box-sizing: border-box;
}

.site-header__search-result-actions .product-card__quantity-wrapper.show {
	display: flex;
}

.site-header__search-result-actions .product-card__button-wrapper:has(.product-card__quantity-wrapper.show) .add_to_cart_button,
.site-header__search-result-actions .product-card__button-wrapper:has(.product-card__quantity-wrapper[style*="display: flex"]) .add_to_cart_button {
	display: none;
}

.site-header__dropdown-icon {
	display: block;
	width: 0.677vw;
	height: 0.677vw;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0deg);
}

.site-header__dropdown-icon--default {
	opacity: 1;
	visibility: visible;
}

.site-header__dropdown-icon--hover {
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -50%) rotate(180deg);
}

.site-header__dropdown-wrapper:hover .site-header__dropdown-icon--default,
.site-header__dropdown-wrapper:focus-within .site-header__dropdown-icon--default {
	opacity: 0;
	visibility: hidden;
}

.site-header__dropdown-wrapper:hover .site-header__dropdown-icon--hover,
.site-header__dropdown-wrapper:focus-within .site-header__dropdown-icon--hover {
	opacity: 1;
	visibility: visible;
}

.site-header__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 0.521vw;
	background-color: #ffffff;
	border: 1px solid rgba(48, 48, 48, 0.1);
	border-radius: 0.26vw;
	box-shadow: none;
	padding: 1.563vw;
	width: 14.635vw;
	min-width: 14.635vw;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	z-index: 1000;
	box-sizing: border-box;
}

.site-header__dropdown-wrapper:hover .site-header__dropdown,
.site-header__dropdown-wrapper:focus-within .site-header__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-header__menu--dropdown {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

.site-header__menu--dropdown .site-header__menu-item {
	width: 100%;
	margin: 0;
	padding: 1.042vw 0;
	border-bottom: 1px solid rgba(48, 48, 48, 0.2); /* #30303033 */
}

.site-header__menu--dropdown .site-header__menu-item:first-child {
	padding-top: 0;
}

.site-header__menu--dropdown .site-header__menu-item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.site-header__menu--dropdown .site-header__menu-item a {
	color: rgba(48, 48, 48, 0.4); /* #30303066 */
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
	display: block;
	padding: 0;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease;
	width: 100%;
	box-sizing: border-box;
	text-align: left;
	border-radius: 0.26vw;
}

.site-header__menu--dropdown .site-header__menu-item a:hover,
.site-header__menu--dropdown .site-header__menu-item a:focus-visible {
	color: #303030;
}


.site-header--not-home .site-header__logo-image--light {
	opacity: 0;
}

.site-header--not-home .site-header__logo-image--dark {
	opacity: 1;
}

.site-header--not-home .site-header__contact-icon--light {
	opacity: 0;
	visibility: hidden;
}

.site-header--not-home .site-header__contact-icon--dark {
	opacity: 1;
	visibility: visible;
}

.site-header--not-home .site-header__hamburger-icon--light {
	opacity: 0;
	visibility: hidden;
}

.site-header--not-home .site-header__hamburger-icon--dark {
	opacity: 1;
	visibility: visible;
}

.site-header--not-home .site-header__separator {
	background-image: url('../img/header/ellipse-dark.svg');
}

/* Mobile header styles for non-home pages */
@media (max-width: 768px) {
	.site-header--not-home {
		background-color: #ffffff;
	}

	.site-header--not-home .site-header__mobile-menu {
		background-color: #ffffff !important;
	}

	.site-header--not-home .site-header__menu-item a {
		color: #303030 !important;
	}

	.site-header--not-home .site-header__menu-item a:hover,
	.site-header--not-home .site-header__menu-item a:focus-visible {
		color: #303030 !important;
	}

	.site-header--not-home .site-header__menu-item.is-active a,
	.site-header--not-home .site-header__menu-item.current-menu-item a {
		color: #303030 !important;
	}

	.site-header--not-home .site-header__hamburger-icon--menu.site-header__hamburger-icon--light {
		opacity: 0 !important;
		visibility: hidden !important;
	}

	.site-header--not-home .site-header__hamburger-icon--menu.site-header__hamburger-icon--dark {
		opacity: 1 !important;
		visibility: visible !important;
	}

	.site-header--not-home.site-header--menu-open .site-header__hamburger-icon--menu {
		opacity: 0 !important;
		visibility: hidden !important;
	}

	.site-header--not-home.site-header--menu-open .site-header__hamburger-icon--close {
		opacity: 1 !important;
		visibility: visible !important;
		z-index: 1000000 !important;
	}
}

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

.site-main {
	padding-top: 0;
	width: 100%;
	max-width: 100vw;
	overflow-x: visible;
}

.container {
	width: var(--container-width-desktop);
	margin-left: auto;
	margin-right: auto;
}

.site-footer {
	background-color: #F3F3F34D;
	padding: 3.125vw 0;
	height: 32.292vw;
	box-sizing: border-box;
	margin-top: 2.083vw;
}

.site-footer__container {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 4.167vw;
	height: 100%;
	width: var(--container-width-desktop);
	max-width: var(--container-width-desktop);
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

.site-footer__bottom {
	display: none;
}

.site-footer__scroll-top--mobile {
	display: none;
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.site-footer__logo img {
	display: block;
	width: 11.458vw;
	height: auto;
}

.site-footer__scroll-top {
	width: 3.646vw;
	height: 3.646vw;
	border: 2px solid transparent;
	border-radius: 50%;
	background-color: #303030;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	box-shadow: 0 0.052vw 0.573vw rgba(0, 0, 0, 0.16);
	transition: background-color 0.3s ease, border-color 0.3s ease;
	flex-shrink: 0;
}

.site-footer__scroll-top img {
	width: 0.99vw;
	height: auto;
	pointer-events: none;
	transition: filter 0.3s ease;
}

.site-footer__scroll-top:hover,
.site-footer__scroll-top:focus-visible {
	background-color: transparent;
	border-color: #303030;
}

.site-footer__scroll-top:hover img,
.site-footer__scroll-top:focus-visible img {
	filter: brightness(0); /* Делает иконку темной */
}

.site-footer__scroll-top:focus-visible {
	outline: 0.104vw solid rgba(255, 255, 255, 0.4);
	outline-offset: 0.104vw;
}

.site-footer__navigation {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	row-gap: 1.042vw;
	min-width: 11vw;
	height: 100%;
}

.site-footer__section--social {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	row-gap: 0;
	min-width: 11vw;
	height: auto;
}

.site-footer__section--social .site-footer__list {
	margin-top: 0.26vw; /* Уменьшенный отступ от заголовка */
}

.site-footer__contacts {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	row-gap: 0;
	margin-left: 0;
	min-width: 13vw;
	height: 100%;
}

.site-footer__contacts .site-footer__section {
	margin-bottom: 0;
}

.site-footer__contacts-content .site-footer__section {
	margin-bottom: 0;
}

.site-footer__contacts-content .site-footer__section--social {
	margin-top: 0;
	margin-bottom: 0;
}

.site-footer__contacts-content {
	display: flex;
	flex-direction: column;
	row-gap: 3.125vw;
}

.site-footer__company {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	row-gap: 0;
	max-width: 20vw;
	height: 100%;
}

.site-footer__company-content {
	display: flex;
	flex-direction: column;
	row-gap: 1.563vw;
}

.site-footer__section {
	display: flex;
	flex-direction: column;
	row-gap: 1.042vw;
	margin: 0;
}

.site-footer__text {
	margin: 0;
	color: #30303099;
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -3%;
	vertical-align: middle;
}

.site-footer__company-address {
	display: flex;
	flex-direction: column;
	row-gap: 0.26vw;
	margin: 0;
}

.site-footer__company-schedule {
	display: flex;
	flex-direction: column;
	row-gap: 0.26vw;
	margin: 0;
}

.site-footer__map {
	display: flex;
	align-items: center;
	gap: 0.313vw;
	margin: 0;
}

.site-footer__map-button {
	display: inline-flex;
	align-items: center;
	padding: 1.042vw 4.427vw;
	border-radius: 999px;
	border: 2px solid transparent;
	background-color: #303030;
	color: #FFFFFF;
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	font-size: 1.042vw;
	line-height: 1;
	letter-spacing: -0.02em;
	text-decoration: none;
	box-shadow: 0 0.052vw 0.573vw rgba(0, 0, 0, 0.16);
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.site-footer__map-icon {
	width: 3.125vw;
	height: 3.125vw;
	border-radius: 50%;
	border: 2px solid transparent;
	background-color: #303030;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 0.052vw 0.573vw rgba(0, 0, 0, 0.16);
	transition: background-color 0.3s ease, border-color 0.3s ease;
	flex-shrink: 0;
}

.site-footer__map-icon img {
	width: 0.99vw;
	height: 0.99vw;
	object-fit: contain;
	transition: filter 0.3s ease;
}

.site-footer__map-icon:hover img,
.site-footer__map-icon:focus-visible img {
	filter: brightness(0); /* Делает иконку темной */
}

.site-footer__map-button:hover,
.site-footer__map-button:focus-visible {
	background-color: transparent;
	border-color: #303030;
	color: #303030;
}

.site-footer__map-icon:hover,
.site-footer__map-icon:focus-visible {
	background-color: transparent;
	border-color: #303030;
}

.site-footer__title {
	margin: 0;
	color: #303030;
	font-family: var(--font-family-base);
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 1;
	letter-spacing: -0.03em;
}

.site-footer__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	row-gap: 0.26vw;
}

.site-footer__item {
	color: #30303099;
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -3%;
	vertical-align: middle;
}

.site-footer__link {
	color: #30303099;
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -3%;
	vertical-align: middle;
	text-decoration: none;
	transition: color 0.25s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
	color: #303030;
}

.site-footer__legal {
	color: #30303099;
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -3%;
	vertical-align: middle;
	text-decoration: none;
	transition: color 0.25s ease;
}

.site-footer__legal:hover,
.site-footer__legal:focus-visible {
	color: #303030;
}

.site-footer__copyright {
	display: flex;
	flex-direction: column;
	row-gap: 0.26vw;
}

/* Скрываем мобильные версии на десктопе */
.site-footer__scroll-top--mobile-top,
.site-footer__scroll-top--mobile-bottom,
.site-footer__mobile-top,
.site-footer__section--mobile-contacts,
.site-footer__company-mobile,
.site-footer__map-mobile,
.site-footer__map-button-mobile-bottom,
.site-footer__section--mobile-menu,
.site-footer__section--mobile-social,
.site-footer__map-arrow-mobile,
.site-footer__legal-mobile,
.site-footer__copyright-mobile,
.site-footer__bottom-mobile {
	display: none;
}

@media (max-width: 1025px) {
	.site-footer {
		padding: 10.667vw 0 0 0;
		height: auto;
		position: relative;
	}

	.site-footer__container {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 7.2vw;
		row-gap: 8vw;
		align-items: flex-start;
		height: auto;
		padding-bottom: 0;
		position: relative;
		width: 100%;
		max-width: var(--container-width-mobile);
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
	}

	/* Скрываем десктопные элементы на мобильных */
	.site-footer__navigation,
	.site-footer__contacts,
	.site-footer__company,
	.site-footer__brand .site-footer__scroll-top {
		display: none !important;
	}

	.site-footer__section--mobile-contacts,
	.site-footer__company-mobile,
	.site-footer__legal-mobile,
	.site-footer__copyright-mobile {
		display: block;
	}

	.site-footer__bottom-mobile {
		display: flex;
	}

	.site-footer__map-mobile {
		display: flex;
	}

	/* Логотип и колонки */
	.site-footer__brand {
		width: 100%;
		margin-bottom: 0;
		height: auto;
		grid-column: 1 / 2;
		grid-row: 1;
	}

	.site-footer__logo img {
		width: 32vw;
		max-width: 22.5rem;
	}

	.site-footer__section--mobile-menu,
	.site-footer__section--mobile-social,
	.site-footer__section--mobile-contacts {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.site-footer__section--mobile-menu {
		grid-column: 2 / 3;
		grid-row: 1;
	}

	.site-footer__section--mobile-social {
		grid-column: 1 / 2;
		grid-row: 2;
	}

	.site-footer__section--mobile-contacts {
		grid-column: 2 / 3;
		grid-row: 2;
	}

	.site-footer__section--mobile-menu .site-footer__title,
	.site-footer__section--mobile-social .site-footer__title,
	.site-footer__section--mobile-contacts .site-footer__title {
		font-size: 3.733vw;
		font-weight: 600;
		margin: 0 0 2.667vw 0;
	}

	.site-footer__section--mobile-menu .site-footer__list,
	.site-footer__section--mobile-social .site-footer__list,
	.site-footer__section--mobile-contacts .site-footer__list {
		row-gap: 1.6vw;
	}

	.site-footer__section--mobile-menu .site-footer__link,
	.site-footer__section--mobile-social .site-footer__link,
	.site-footer__section--mobile-contacts .site-footer__link {
		font-size: 3.2vw;
		font-weight: 500;
		color: #30303099;
	}

	.site-footer__section--mobile-contacts .site-footer__link {
		color: #303030;
	}

	/* Компанія */
	.site-footer__company-mobile {
		width: 100%;
		margin-top: 0;
		grid-column: 1 / -1;
	}

	.site-footer__company-mobile .site-footer__title {
		font-size: 3.733vw;
		font-weight: 600;
		margin-bottom: 2.667vw;
	}

	.site-footer__text--mobile {
		font-family: 'Inter Tight', sans-serif;
		font-weight: 500;
		font-size: 14px;
		line-height: 110%;
		letter-spacing: -3%;
		vertical-align: middle;
		color: #30303099;
		margin: 0;
	}

	.site-footer__company-address {
		display: flex;
		flex-direction: column;
		row-gap: 0.26vw;
		margin-bottom: 0;
	}

	.site-footer__company-schedule {
		display: flex;
		flex-direction: column;
		row-gap: 0.26vw;
		margin-top: 2.667vw;
	}


	/* Кнопки карты - стиль как у FAQ */
	.site-footer__map-mobile {
		display: flex;
		align-items: center;
		gap: 2.667vw;
		width: 100%;
		box-sizing: border-box;
		grid-column: 1 / -1;
	}

	.site-footer__map-button-mobile-bottom {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 1 1 0%;
		min-width: 0;
		padding: 4.533vw 0;
		border-radius: 999px;
		border: 2px solid transparent;
		background-color: #4DBD56;
		color: #ffffff;
		font-family: 'Inter Tight', sans-serif;
		font-weight: 600;
		font-size: 4.267vw;
		line-height: 1;
		letter-spacing: -0.02em;
		text-decoration: none;
		box-shadow: 0 0.052vw 0.573vw rgba(0, 0, 0, 0.16);
		transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
		box-sizing: border-box;
		cursor: pointer;
	}

	.site-footer__map-arrow-mobile {
		width: calc(4.533vw * 2 + 4.267vw * 1);
		height: calc(4.533vw * 2 + 4.267vw * 1);
		min-width: calc(4.533vw * 2 + 4.267vw * 1);
		max-width: calc(4.533vw * 2 + 4.267vw * 1);
		border-radius: 50%;
		border: 2px solid transparent;
		background-color: #4DBD56;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		box-shadow: 0 0.052vw 0.573vw rgba(0, 0, 0, 0.16);
		transition: background-color 0.3s ease, border-color 0.3s ease;
		flex-shrink: 0;
		box-sizing: border-box;
		cursor: pointer;
	}

	.site-footer__map-arrow-mobile img {
		width: 3.2vw;
		height: auto;
		object-fit: contain;
		transition: filter 0.3s ease;
		filter: brightness(0) invert(1);
	}

	.site-footer__map-button-mobile-bottom:hover,
	.site-footer__map-button-mobile-bottom:focus-visible {
		background-color: transparent;
		border-color: #4DBD56;
		color: #4DBD56;
	}

	.site-footer__map-arrow-mobile:hover,
	.site-footer__map-arrow-mobile:focus-visible {
		background-color: transparent;
		border-color: #4DBD56;
	}

	.site-footer__map-arrow-mobile:hover img,
	.site-footer__map-arrow-mobile:focus-visible img {
		filter: brightness(0);
	}

	/* Юридические ссылки - 40px от кнопок */
	.site-footer__legal-mobile {
		display: flex;
		flex-direction: column;
		row-gap: 1.6vw;
		width: 100%;
		margin-top: 10.667vw;
		grid-column: 1 / -1;
	}

	.site-footer__legal-mobile .site-footer__legal {
		font-size: 3.2vw;
		font-weight: 500;
		color: #30303099;
		text-decoration: none;
		transition: color 0.25s ease;
	}

	.site-footer__legal-mobile .site-footer__legal:hover,
	.site-footer__legal-mobile .site-footer__legal:focus-visible {
		color: #303030;
	}

	/* Нижняя строка с Copyright слева и кнопкой наверх справа - 40px от юридических ссылок */
	.site-footer__bottom-mobile {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		margin-top: 10.667vw;
		margin-bottom: 5.333vw;
		gap: 4vw;
		grid-column: 1 / -1;
	}

	.site-footer__copyright-mobile {
		flex: 0 1 auto;
		text-align: left;
		min-width: 0;
	}

	.site-footer__copyright-mobile .site-footer__text {
		font-family: 'Inter Tight', sans-serif;
		font-weight: 500;
		font-size: 14px;
		line-height: 110%;
		letter-spacing: -3%;
		vertical-align: middle;
		color: #30303099;
		margin: 0;
		display: block;
		white-space: normal;
	}

	/* Кнопка scroll-top справа внизу - параллельно copyright */
	.site-footer__scroll-top--mobile-bottom {
		width: calc(4.533vw * 2 + 4.267vw * 1);
		height: calc(4.533vw * 2 + 4.267vw * 1);
		min-width: calc(4.533vw * 2 + 4.267vw * 1);
		min-height: calc(4.533vw * 2 + 4.267vw * 1);
		border: 2px solid transparent;
		border-radius: 50%;
		background-color: #303030;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		padding: 0;
		box-shadow: 0 0.052vw 0.573vw rgba(0, 0, 0, 0.16);
		transition: background-color 0.3s ease, border-color 0.3s ease;
		flex-shrink: 0;
		flex-grow: 0;
		margin-left: auto;
		box-sizing: border-box;
	}

	.site-footer__scroll-top--mobile-bottom img {
		width: 3.2vw;
		height: auto;
		pointer-events: none;
		transition: filter 0.3s ease;
	}

	.site-footer__scroll-top--mobile-bottom:hover,
	.site-footer__scroll-top--mobile-bottom:focus-visible {
		background-color: transparent;
		border-color: #303030;
	}

	.site-footer__scroll-top--mobile-bottom:hover img,
	.site-footer__scroll-top--mobile-bottom:focus-visible img {
		filter: brightness(0);
	}

	/* Нижняя часть футера без бордера */
	.site-footer__bottom {
		display: none;
	}

	.site-footer__scroll-top--mobile {
		display: none !important;
	}
}

/* WooCommerce Single Product */
.single-product {
	padding-top: 0;
	margin-top: 8.333vw; /* отступ от верха страницы */
}

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

/* Убираем стандартные отступы WooCommerce */
.single-product #primary,
.single-product #main,
.single-product .content-area,
.single-product .site-main,
.single-product .woocommerce {
	margin: 0;
	padding: 0;
}

.single-product__container > * {
	margin-top: 0;
	margin-bottom: 0;
}

.single-product__container > *:first-child {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.521vw;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw; /* 18px / 1920 */
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
	margin: 0;
	padding: 0;
	margin-bottom: 2.083vw;
}

.woocommerce-breadcrumb__link {
	color: rgba(48, 48, 48, 0.4);
	text-decoration: none;
	transition: color 0.2s ease;
}

.woocommerce-breadcrumb__link:hover {
	color: #303030;
}

.woocommerce-breadcrumb__current {
	color: #303030;
}

.woocommerce-breadcrumb__separator {
	display: inline-flex;
	align-items: center;
	margin: 0;
}

.woocommerce-breadcrumb__icon {
	width: 0.5vw; /* было 0.625vw, уменьшили примерно на 20% */
	height: auto;
	display: block;
}

/* Shop Archive Hero Banner */
.shop-archive-hero {
	position: relative;
	width: 100%;
	margin: 8.854vw 0 0 0; /* отступ сверху по макету */
	padding: 0;
	overflow: hidden;
}

.shop-archive-hero__image-wrapper {
	width: var(--container-width-desktop);
	max-width: var(--container-width-desktop);
	margin: 0 auto; /* центрируем по сетке */
	height: 14.063vw; /* фиксированная высота баннера каталога по сетке */
	position: relative;
	border-radius: 0.26vw;
	overflow: hidden; /* чтобы скругление работало и для изображения */
}

.shop-archive-hero__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
	border-radius: 0.26vw; /* скругляем само изображение */
}

.shop-archive-hero__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 0 2.083vw 2.083vw 2.083vw; /* паддинги только для хлебных крошек внутри баннера */
	box-sizing: border-box;
}

.shop-archive-hero__breadcrumb {
	width: 100%;
}

.shop-archive-hero__breadcrumb .woocommerce-breadcrumb {
	color: #ffffff;
	margin-bottom: 0;
}

.shop-archive-hero__breadcrumb .woocommerce-breadcrumb__link {
	color: rgba(255, 255, 255, 0.8);
}

.shop-archive-hero__breadcrumb .woocommerce-breadcrumb__link:hover {
	color: #ffffff;
}

.shop-archive-hero__breadcrumb .woocommerce-breadcrumb__current {
	color: #ffffff;
}

.shop-archive-hero__breadcrumb .woocommerce-breadcrumb__icon {
	filter: brightness(0) invert(1);
}

.shop-archive-content {
	margin-top: 0;
	padding: 0;
	margin-bottom: 20px; /* отступ снизу каталога до футера на десктопе */
}

/* Левая колонка каталога (фильтры / категории) */
.shop-archive-layout .woocommerce-sidebar,
.shop-archive-layout aside,
.shop-archive-layout .widget-area {
	background-color: #ffffff;
	border-radius: 0.26vw;
	border: 1px solid rgba(48, 48, 48, 0.1); /* #3030301A */
	padding: 1.563vw;
	box-sizing: border-box;
}

/* Remove bottom padding specifically for the catalog sidebar */
.shop-archive-layout aside.shop-archive-sidebar {
	padding-bottom: 0;
}

.shop-archive-sidebar__title {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.875vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: rgba(48, 48, 48, 0.4); /* #30303066 */
	margin: 0 0 1.563vw 0;
}

.shop-archive-filters {
	list-style: none;
	margin: 0;
	padding: 0;
}

.shop-archive-filters__item {
	padding: 1.25vw 0;
	border-bottom: 1px solid rgba(48, 48, 48, 0.4); /* #30303066 */
}

.shop-archive-filters__item:last-child {
	border-bottom: none;
}

.shop-archive-filters__item:first-child {
	border-top: 1px solid rgba(48, 48, 48, 0.4); /* #30303066 */
}

.shop-archive-filters__item > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: rgba(48, 48, 48, 0.4); /* #30303066 */
	text-decoration: none;
}

.shop-archive-filters__item > a:hover,
.shop-archive-filters__item > a:focus-visible {
	color: #303030;
}

/* Активная категория */
.shop-archive-filters__item--active > a {
	color: #303030;
}

/* Иконка стрелки справа от категории */
.shop-archive-filters__item > a::after {
	content: '';
	display: inline-block;
	width: 1.563vw;
	height: 1.563vw;
	margin-left: 0.521vw;
	/* НЕактивное состояние фильтра */
	background-image: url('https://www.naturamarket.kiev.ua/wp-content/uploads/2025/12/2345.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	flex-shrink: 0;
}

/* Активный фильтр — стрелка как в макете (чёрная, без прозрачности) */
.shop-archive-filters__item--active > a::after {
	/* Active icon */
	background-image: url('https://www.naturamarket.kiev.ua/wp-content/uploads/2025/12/44.svg');
}

/* Если раскрыты подкатегории (мы внутри подкатегории), родитель тоже показываем как активный */
.shop-archive-filters__item--expanded > a::after {
	background-image: url('https://www.naturamarket.kiev.ua/wp-content/uploads/2025/12/44.svg');
}

/* ===== Subcategories: sidebar (desktop) ===== */
/* Плавный "аккордеон" без точек/линий — легкий отступ + более спокойный цвет/размер шрифта */

.shop-archive-filters__sublist {
	list-style: none;
	margin: 0;
	/* Без отступа: подкатегории выровнены по левому краю как и категории */
	padding: 0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transform: translateY(-0.26vw);
	pointer-events: none;
	transition:
		max-height 450ms cubic-bezier(0.4, 0, 0.2, 1),
		opacity 200ms ease,
		transform 450ms cubic-bezier(0.4, 0, 0.2, 1),
		margin-top 450ms cubic-bezier(0.4, 0, 0.2, 1);
	will-change: max-height, opacity, transform;
}

/* Subcategory scrollbar (desktop) */
.shop-archive-filters__sublist {
	scrollbar-width: thin; /* Firefox */
	/* Subtle, matches site neutrals */
	scrollbar-color: rgba(48, 48, 48, 0.22) rgba(48, 48, 48, 0.06); /* thumb track */
}

.shop-archive-filters__sublist::-webkit-scrollbar {
	width: 2px;
}

.shop-archive-filters__sublist::-webkit-scrollbar-track {
	background: transparent;
	box-shadow: inset 0 0 0 1px rgba(48, 48, 48, 0.06);
	border-radius: 9999px;
}

.shop-archive-filters__sublist::-webkit-scrollbar-thumb {
	background-color: rgba(48, 48, 48, 0.22);
	border-radius: 9999px;
}

.shop-archive-filters__sublist::-webkit-scrollbar-thumb:hover {
	background-color: rgba(48, 48, 48, 0.32);
}

.shop-archive-filters__item--expanded > .shop-archive-filters__sublist,
.shop-archive-filters__subitem--expanded > .shop-archive-filters__sublist,
/* Fallback/robust: если активна подкатегория, родитель всегда раскрыт */
.shop-archive-filters__item:has(.shop-archive-filters__subitem--active) > .shop-archive-filters__sublist,
.shop-archive-filters__subitem:has(.shop-archive-filters__subitem--active) > .shop-archive-filters__sublist {
	/* Subcategories: scroll if too long (desktop) */
	max-height: 12.5vw;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	margin-top: 0.521vw;
	overflow-y: auto;
	overflow-x: hidden;
}

/* Родитель подсвечиваем, если раскрыт (когда мы в подкатегории) */
.shop-archive-filters__item--expanded > a {
	color: #303030;
}

.shop-archive-filters__subitem {
	padding: 0;
}

/* Когда активна подкатегория — подсвечиваем родителя (и держим активную стрелку) */
.shop-archive-filters__item:has(.shop-archive-filters__subitem--active) > a {
	color: #303030;
}

.shop-archive-filters__item:has(.shop-archive-filters__subitem--active) > a::after {
	background-image: url('https://www.naturamarket.kiev.ua/wp-content/uploads/2025/12/44.svg');
}

.shop-archive-filters__sublink {
	display: block;
	padding: 0.625vw 0;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 0.833vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: rgba(48, 48, 48, 0.4);
	text-decoration: none;
}

.shop-archive-filters__sublink:hover,
.shop-archive-filters__sublink:focus-visible {
	color: #303030;
}

.shop-archive-filters__subitem--active > .shop-archive-filters__sublink,
.shop-archive-filters__subitem--expanded > .shop-archive-filters__sublink {
	color: #303030;
}

/* ========== MOBILE FILTER DRAWER ========== */

/* Mobile Filter Button (sticky, left side, egg-shaped) */
.shop-filter-mobile-button {
	display: none;
}

@media (max-width: 1025px) {
	.shop-filter-mobile-button {
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		z-index: 999999;
		width: 44px;
		height: 56px;
		/* Egg shape: rounded right, extends left off screen */
		border-radius: 0 22px 22px 0;
		background-color: rgba(255, 255, 255, 0.9);
		border: 1px solid rgba(48, 48, 48, 0.2);
		border-left: none;
		cursor: pointer;
		box-shadow: none;
		transition: all 0.3s ease;
		padding: 0;
		margin: 0;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	.shop-filter-mobile-button:hover,
	.shop-filter-mobile-button:focus-visible {
		background-color: rgba(255, 255, 255, 0.95);
		box-shadow: none;
		transform: translateY(-50%) translateX(2px);
	}

	.shop-filter-mobile-button__icon {
		width: 20px;
		height: 20px;
		flex-shrink: 0;
		object-fit: contain;
	}
}

/* Filter Drawer (slides from right, like mini-cart) */
.shop-filter-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100svh;
	z-index: 10000002 !important;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.shop-filter-drawer.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.shop-filter-drawer__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.shop-filter-drawer.is-open .shop-filter-drawer__overlay {
	opacity: 1;
}

.shop-filter-drawer__wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.shop-filter-drawer.is-open .shop-filter-drawer__wrapper {
	pointer-events: auto;
}

.shop-filter-drawer__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100svh;
	background-color: #ffffff;
	box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
	transform: translateX(-100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.shop-filter-drawer.is-open .shop-filter-drawer__content {
	transform: translateX(0);
}

.shop-filter-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid rgba(48, 48, 48, 0.1);
	flex-shrink: 0;
}

.shop-filter-drawer__title {
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: #303030;
	margin: 0;
	padding: 0;
}

.shop-filter-drawer__close {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #303030;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	transition: background-color 0.3s ease;
}

.shop-filter-drawer__close:hover {
	background-color: #1a1a1a;
}

.shop-filter-drawer__close svg {
	width: 16px;
	height: 16px;
}

.shop-filter-drawer__close svg path {
	stroke: #ffffff;
}

.shop-filter-drawer__body {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.shop-filter-section {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.shop-filter-section__title {
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: #303030;
	margin: 0;
	padding: 0;
}

.shop-filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.shop-filter-list__item {
	margin: 0;
	padding: 0;
}

.shop-filter-list__link {
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: rgba(48, 48, 48, 0.4);
	text-decoration: none;
	display: block;
	padding: 8px 0;
	transition: color 0.3s ease;
}

.shop-filter-list__link:hover {
	color: #303030;
}

.shop-filter-list__item--active > .shop-filter-list__link {
	color: #303030;
}

/* ===== Subcategories: mobile drawer ===== */
.shop-filter-list__sublist {
	list-style: none;
	margin: 4px 0 0;
	padding: 0 0 0 12px;
	border-left: 1px solid rgba(48, 48, 48, 0.12);
	display: none;
}

.shop-filter-list__item--expanded > .shop-filter-list__sublist {
	display: block;
}

/* Fallback/robust: если активна подкатегория, родитель всегда раскрыт */
.shop-filter-list__item:has(.shop-filter-list__item--active) > .shop-filter-list__sublist {
	display: block;
}

/* Родитель подсвечиваем, если раскрыт (когда мы в подкатегории) */
.shop-filter-list__item--expanded > .shop-filter-list__link {
	color: #303030;
}

.shop-filter-list__item:has(.shop-filter-list__item--active) > .shop-filter-list__link {
	color: #303030;
}

.shop-filter-list__link--child {
	font-size: 13px;
	color: rgba(48, 48, 48, 0.35);
	padding: 6px 0;
}

.shop-filter-list__link--child::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background-color: rgba(48, 48, 48, 0.2);
	display: inline-block;
	margin-right: 8px;
	vertical-align: middle;
}

.shop-filter-list__item--active > .shop-filter-list__link--child {
	color: #303030;
}

.shop-filter-list__item--active > .shop-filter-list__link--child::before {
	background-color: #303030;
}

.shop-filter-price {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.shop-filter-price__inputs {
	display: flex;
	align-items: center;
	gap: 8px;
}

.shop-filter-price__input {
	flex: 1;
	padding: 10px 12px;
	border: 1px solid rgba(48, 48, 48, 0.15);
	border-radius: 8px;
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #303030;
	background-color: #ffffff;
	transition: border-color 0.3s ease;
}

.shop-filter-price__input:focus {
	outline: none;
	border-color: #4DBD56;
}

.shop-filter-price__separator {
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: rgba(48, 48, 48, 0.4);
}

.shop-filter-price__apply {
	padding: 10px 20px;
	border: 2px solid #303030;
	border-radius: 999px;
	background-color: transparent;
	color: #303030;
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.shop-filter-price__apply:hover {
	background-color: #303030;
	color: #ffffff;
}

.shop-filter-drawer__footer {
	display: flex;
	gap: 12px;
	padding: 20px;
	border-top: 1px solid rgba(48, 48, 48, 0.1);
	flex-shrink: 0;
}

.shop-filter-drawer__reset,
.shop-filter-drawer__apply {
	flex: 1;
	padding: 12px 20px;
	border-radius: 999px;
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.shop-filter-drawer__reset {
	background-color: transparent;
	color: #303030;
	border: 2px solid #303030;
}

.shop-filter-drawer__reset:hover {
	background-color: rgba(48, 48, 48, 0.05);
}

.shop-filter-drawer__apply {
	background-color: #303030;
	color: #ffffff;
}

.shop-filter-drawer__apply:hover {
	background-color: #1a1a1a;
}

/* Hide desktop sidebar on mobile */
@media (max-width: 1025px) {
	.shop-archive-sidebar {
		display: none;
	}
}

/* ========== END MOBILE FILTER DRAWER ========== */

.shop-archive-layout {
	display: grid;
	grid-template-columns: 22.656vw 70.052vw;
	gap: 1.042vw; /* расстояние между колонками */
	align-items: start;
	margin-top: 2.083vw; /* отступ от hero-блока вниз */
}

/* Sticky sidebar (desktop) */
@media (min-width: 1026px) {
	.shop-archive-sidebar {
		/* Desktop: sidebar should NOT be sticky */
		position: static;
		top: auto;
		align-self: start;
		height: auto;
		max-height: none;
		overflow: visible;
	}
}

.shop-archive-products {
	width: 100%;
	transition: opacity 0.25s ease;
}

.shop-archive-products.is-loading {
	opacity: 0.5;
	pointer-events: none;
}

/* ==========================
   Checkout Page
   ========================== */

.checkout-page {
	margin: 0;
	padding-top: 8.333vw;
	padding-bottom: 4.167vw;
}

/* ==========================
   Thank you page (order received) – minimal
   ========================== */

@media (min-width: 769px) {
	.thankyou-page .thankyou-page__container {
		/* ~в 2 раза уже относительно стандартного container-width-desktop (93.75vw) */
		width: 46.875vw;
		max-width: 46.875vw;
		margin-left: auto;
		margin-right: auto;
	}
}

.thankyou-page__card {
	background-color: #ffffff;
	border-radius: 0.26vw;
	border: 1px solid rgba(48, 48, 48, 0.1);
	padding: 2.083vw;
	box-sizing: border-box;
}

.thankyou-page__card + .thankyou-page__card {
	margin-top: 1.563vw;
}

.thankyou-page__title {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 2.5vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: #303030;
	margin: 0 0 1.25vw 0;
}

.thankyou-page__subtitle {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.875vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: #303030;
	margin: 0 0 1.25vw 0;
}

.thankyou-page__text {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 1.25vw;
	line-height: 110%;
	letter-spacing: -0.02em;
	color: #303030;
	margin: 0;
}

.thankyou-page__text + .thankyou-page__text {
	margin-top: 0.833vw;
}

.thankyou-page__text--muted {
	color: rgba(48, 48, 48, 0.4);
}

.thankyou-page__form {
	margin-top: 1.25vw;
	display: flex;
	flex-direction: column;
	gap: 1.25vw;
}

.thankyou-page__field {
	display: flex;
	flex-direction: column;
	gap: 0.833vw;
}

.thankyou-page__label {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 1.25vw;
	line-height: 110%;
	letter-spacing: -0.02em;
	color: #30303099;
	margin: 0;
}

.thankyou-page__input {
	width: 100%;
	padding: 1.042vw;
	border: 1px solid rgba(48, 48, 48, 0.15);
	border-radius: 0.26vw;
	background-color: #F3F3F366;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 0.938vw;
	line-height: 110%;
	letter-spacing: -0.02em;
	color: #303030;
	box-sizing: border-box;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.thankyou-page__input:focus {
	outline: none;
	border-color: #4DBD56;
	box-shadow: 0 0 0 2px rgba(77, 189, 86, 0.1);
}

.thankyou-page__submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.thankyou-page__message {
	margin: 0;
	min-height: 1.1em;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 0.938vw;
	line-height: 110%;
	letter-spacing: -0.02em;
}

.thankyou-page__message--error {
	color: #d63638;
}

.thankyou-page__message--success {
	color: #4DBD56;
}

.thankyou-page__login-hint a {
	color: inherit;
	text-decoration: underline;
}

.checkout-page__container {
	width: var(--container-width-desktop);
	max-width: var(--container-width-desktop);
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	box-sizing: border-box;
}

.checkout-page .woocommerce-breadcrumb {
	margin-top: 0;
	margin-bottom: 2.083vw;
}

@media (max-width: 1025px) {
	/* КРИТИЧНО: Увеличиваем отступ между хлебными крошками и блоком ниже на 5% */
	.checkout-page .woocommerce-breadcrumb {
		margin-bottom: calc(30px * 1.05) !important; /* 30px + 5% = 31.5px */
	}
}

@media (max-width: 1025px) {
	/* КРИТИЧНО: Увеличиваем отступ между хлебными крошками и плашкой с инпутами на 5% */
	.checkout-page .woocommerce-breadcrumb {
		margin-bottom: calc(30px * 1.05) !important; /* 30px + 5% = 31.5px */
	}
}

.checkout-page__layout {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0;
}

.checkout-page__left,
.checkout-page__right {
	background-color: #ffffff;
	border-radius: 0.26vw;
	border: 1px solid rgba(48, 48, 48, 0.1);
	padding: 2.083vw;
	box-sizing: border-box;
	flex-shrink: 0;
}

.checkout-page__left {
	width: 45.833vw;
}

.checkout-page__right {
	width: 45.833vw;
}

.checkout-page__right {
	position: sticky;
	top: 6.533vw;
	max-height: calc(100vh - 6.533vw - 2.083vw);
	/* КРИТИЧНО: Убираем overflow-y: auto с самого блока - скроллиться будет только список товаров */
	overflow: hidden;
	/* КРИТИЧНО: Делаем flex контейнером для правильной работы скролла */
	display: flex;
	flex-direction: column;
}

.checkout-section {
	margin-bottom: 2.083vw;
}

.checkout-section:last-child {
	margin-bottom: 0;
}

.checkout-section__title {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.875vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: #303030;
	margin: 0 0 1.25vw 0;
	vertical-align: middle;
}

.checkout-summary {
	/* КРИТИЧНО: Делаем flex контейнером для правильной работы скролла */
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	overflow: hidden;
}

.checkout-summary__title {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.875vw;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #303030;
	margin: 0 0 1.25vw 0;
	/* КРИТИЧНО: Заголовок зафиксирован сверху, не скроллится */
	flex: 0 0 auto;
}

.checkout-summary__order-review {
	margin-top: 1.25vw;
	/* КРИТИЧНО: Делаем flex контейнером для правильной работы скролла */
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	overflow: hidden;
}

/* Checkout Form Fields Styles */
.checkout-page .woocommerce-checkout input[type="text"],
.checkout-page .woocommerce-checkout input[type="email"],
.checkout-page .woocommerce-checkout input[type="tel"],
.checkout-page .woocommerce-checkout input[type="number"],
.checkout-page .woocommerce-checkout input[type="password"],
.checkout-page .woocommerce-checkout input[type="date"],
.checkout-page .woocommerce-checkout textarea,
.checkout-page .woocommerce-checkout select,
.checkout-page .checkout-section input[type="text"],
.checkout-page .checkout-section input[type="email"],
.checkout-page .checkout-section input[type="tel"],
.checkout-page .checkout-section input[type="number"],
.checkout-page .checkout-section input[type="password"],
.checkout-page .checkout-section input[type="date"],
.checkout-page .checkout-section textarea,
.checkout-page .checkout-section select {
	width: 100%;
	padding: 1.042vw;
	border: 1px solid rgba(48, 48, 48, 0.15);
	border-radius: 0.26vw;
	background-color: #F3F3F366;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 0.938vw;
	line-height: 110%;
	letter-spacing: -0.02em;
	color: #303030;
	box-sizing: border-box;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.checkout-page .woocommerce-checkout input[type="text"]::placeholder,
.checkout-page .woocommerce-checkout input[type="email"]::placeholder,
.checkout-page .woocommerce-checkout input[type="tel"]::placeholder,
.checkout-page .woocommerce-checkout textarea::placeholder,
.checkout-page .checkout-section input[type="text"]::placeholder,
.checkout-page .checkout-section input[type="email"]::placeholder,
.checkout-page .checkout-section input[type="tel"]::placeholder,
.checkout-page .checkout-section textarea::placeholder {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 0.938vw;
	line-height: 110%;
	letter-spacing: -0.02em;
	color: #3030304D;
	vertical-align: middle;
}

.checkout-page .woocommerce-checkout input[type="text"]:focus,
.checkout-page .woocommerce-checkout input[type="email"]:focus,
.checkout-page .woocommerce-checkout input[type="tel"]:focus,
.checkout-page .woocommerce-checkout input[type="number"]:focus,
.checkout-page .woocommerce-checkout input[type="password"]:focus,
.checkout-page .woocommerce-checkout input[type="date"]:focus,
.checkout-page .woocommerce-checkout textarea:focus,
.checkout-page .woocommerce-checkout select:focus,
.checkout-page .checkout-section input[type="text"]:focus,
.checkout-page .checkout-section input[type="email"]:focus,
.checkout-page .checkout-section input[type="tel"]:focus,
.checkout-page .checkout-section input[type="number"]:focus,
.checkout-page .checkout-section input[type="password"]:focus,
.checkout-page .checkout-section input[type="date"]:focus,
.checkout-page .checkout-section textarea:focus,
.checkout-page .checkout-section select:focus {
	outline: none;
	border-color: #4DBD56;
	box-shadow: 0 0 0 2px rgba(77, 189, 86, 0.1);
}

/* Красная рамка при ошибке даже в фокусе - переопределяет зеленую */
.checkout-page .form-row--error input:focus,
.checkout-page .form-row--error select:focus,
.checkout-page .form-row--error textarea:focus,
.checkout-page .woocommerce-form-row--error input:focus,
.checkout-page .woocommerce-form-row--error select:focus,
.checkout-page .woocommerce-form-row--error textarea:focus,
.checkout-page input.woocommerce-invalid-required-field:focus,
.checkout-page select.woocommerce-invalid-required-field:focus,
.checkout-page textarea.woocommerce-invalid-required-field:focus,
.checkout-page input.woocommerce-invalid:focus,
.checkout-page select.woocommerce-invalid:focus,
.checkout-page textarea.woocommerce-invalid:focus {
	border-color: #ff0000 !important;
	box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1) !important;
}

.checkout-page .woocommerce-checkout textarea,
.checkout-page .checkout-section textarea {
	resize: vertical;
	min-height: 6.25vw;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
}

.checkout-page .woocommerce-checkout select,
.checkout-page .checkout-section select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23303030' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.042vw center;
	background-size: 0.833vw;
	padding-right: 3.125vw;
	/* За замовчуванням колір плейсхолдера, поки не вибрано значення */
	color: #3030304D;
}

	/* Стиль для селектів та інпутів з плейсхолдером на мобільному */
	.checkout-page .woocommerce-checkout select:invalid,
	.checkout-page .checkout-section select:invalid,
	.checkout-page .woocommerce-checkout select.is-placeholder,
	.checkout-page .checkout-section select.is-placeholder,
	.checkout-page .woocommerce-checkout input[type="date"].is-placeholder,
	.checkout-page .checkout-section input[type="date"].is-placeholder,
	.checkout-page .woocommerce-checkout select:not(.has-value),
	.checkout-page .checkout-section select:not(.has-value) {
		color: #3030304D !important;
	}

	.checkout-page .woocommerce-checkout select:valid,
	.checkout-page .checkout-section select:valid,
	.checkout-page .woocommerce-checkout select.has-value,
	.checkout-page .checkout-section select.has-value,
	.checkout-page .woocommerce-checkout input[type="date"].has-value,
	.checkout-page .checkout-section input[type="date"].has-value {
		color: #303030;
	}

	.checkout-page .woocommerce-checkout select option:first-child,
	.checkout-page .checkout-section select option:first-child {
		color: #3030304D;
	}

	.checkout-page .woocommerce-checkout select option:not(:first-child),
	.checkout-page .checkout-section select option:not(:first-child) {
		color: #303030;
	}

/* Стиль для селектів з плейсхолдером (коли вибрано перший option) */
.checkout-page .woocommerce-checkout select option:first-child,
.checkout-page .checkout-section select option:first-child {
	color: #3030304D;
}

/* Стиль для селектів та інпутів, коли вибрано значення за замовчуванням (плейсхолдер) */
.checkout-page .woocommerce-checkout select:invalid,
.checkout-page .checkout-section select:invalid,
.checkout-page .woocommerce-checkout select.is-placeholder,
.checkout-page .checkout-section select.is-placeholder,
.checkout-page .woocommerce-checkout input[type="date"].is-placeholder,
.checkout-page .checkout-section input[type="date"].is-placeholder,
.checkout-page .woocommerce-checkout select:not(.has-value),
.checkout-page .checkout-section select:not(.has-value) {
	color: #3030304D !important;
}

/* Стиль для селектів та інпутів з вибраним значенням */
.checkout-page .woocommerce-checkout select:valid,
.checkout-page .checkout-section select:valid,
.checkout-page .woocommerce-checkout select.has-value,
.checkout-page .checkout-section select.has-value,
.checkout-page .woocommerce-checkout input[type="date"].has-value,
.checkout-page .checkout-section input[type="date"].has-value {
	color: #303030;
}

/* Стиль для option з вибраним значенням (не плейсхолдер) */
.checkout-page .woocommerce-checkout select option:not(:first-child),
.checkout-page .checkout-section select option:not(:first-child) {
	color: #303030;
}

/* Checkout Labels */
.checkout-page .woocommerce-checkout label,
.checkout-page .checkout-section label,
.checkout-page form.checkout label {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 1.25vw;
	line-height: 110%;
	letter-spacing: -0.02em;
	color: #30303099;
	margin-bottom: 0.833vw;
	display: block;
	vertical-align: middle;
}


.checkout-page .required {
	color: #30303099;
}

/* КРИТИЧНО: Скрываем ВСЕ текстовые сообщения об ошибках - максимально агрессивно */
.checkout-page .woocommerce-error,
.checkout-page .woocommerce-error li,
.checkout-page .woocommerce-error-message,
.checkout-page .woocommerce-form-row--error .woocommerce-error,
.checkout-page .woocommerce-form-row--error .woocommerce-input-wrapper .woocommerce-error,
.checkout-page .woocommerce-form-row--error .woocommerce-error-message,
.checkout-page .form-row--error .woocommerce-error,
.checkout-page .form-row--error .woocommerce-error-message,
.checkout-page .form-row--error .woocommerce-input-wrapper .woocommerce-error,
.checkout-page .form-row--error .woocommerce-input-wrapper .woocommerce-error-message,
.checkout-page .woocommerce-billing-fields .woocommerce-error,
.checkout-page .woocommerce-shipping-fields .woocommerce-error,
.checkout-page .error,
.checkout-page .error-message,
.checkout-page p.woocommerce-error,
.checkout-page ul.woocommerce-error,
.checkout-page li.woocommerce-error,
.checkout-page .woocommerce-input-wrapper .woocommerce-error,
.checkout-page .woocommerce-input-wrapper .woocommerce-error-message,
.checkout-page .woocommerce-form-row--error .woocommerce-input-wrapper > .woocommerce-error,
.checkout-page .form-row--error .woocommerce-input-wrapper > .woocommerce-error,
/* Скрываем текстовые сообщения, которые могут быть прямо в .form-row (не в input-wrapper) */
.checkout-page .form-row--error > .woocommerce-error,
.checkout-page .form-row--error > .woocommerce-error-message,
.checkout-page .woocommerce-form-row--error > .woocommerce-error,
.checkout-page .woocommerce-form-row--error > .woocommerce-error-message,
/* Дополнительно: скрываем ВСЕ span с классом woocommerce-error */
.checkout-page span.woocommerce-error,
.checkout-page .form-row--error span.woocommerce-error,
.checkout-page .woocommerce-form-row--error span.woocommerce-error,
.checkout-page #billing_phone_field .woocommerce-error,
.checkout-page #billing_phone_field span.woocommerce-error,
/* КРИТИЧНО: Скрываем checkout-inline-error-message (текст под инпутом) */
.checkout-page .checkout-inline-error-message,
.checkout-page p.checkout-inline-error-message,
.checkout-page #billing_phone_description,
.checkout-page .form-row--error .checkout-inline-error-message,
.checkout-page .form-row--error p.checkout-inline-error-message,
.checkout-page .woocommerce-form-row--error .checkout-inline-error-message,
.checkout-page .woocommerce-form-row--error p.checkout-inline-error-message,
/* Скрываем блоки с ошибками вверху формы — ВИМКНЕНО: показуємо блок, щоб було видно помилку "Мінімальна сума замовлення" та інші загальні помилки */
/* .checkout-page .woocommerce-NoticeGroup,
.checkout-page .woocommerce-NoticeGroup-checkout,
.checkout-page .woocommerce-NoticeGroup ul.woocommerce-error, */

/* Блок повідомлень на checkout: структура .woocommerce-NoticeGroup > div[role=alert] > ul.woocommerce-error > li */
.checkout-page .woocommerce-NoticeGroup,
.checkout-page .woocommerce-NoticeGroup-checkout {
	display: block !important;
	visibility: visible !important;
	height: auto !important;
	overflow: visible !important;
	margin: 0 0 1.5em 0 !important;
	padding: 0 !important;
}
.checkout-page .woocommerce-NoticeGroup [role="alert"],
.checkout-page .woocommerce-NoticeGroup ul.woocommerce-error {
	display: block !important;
	visibility: visible !important;
	height: auto !important;
	overflow: visible !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	list-style: none !important;
	background: transparent !important;
}
/* Стилізуємо саме li всередині ul.woocommerce-error (у li немає класу woocommerce-error) */
.checkout-page .woocommerce-NoticeGroup ul.woocommerce-error li {
	display: block !important;
	visibility: visible !important;
	height: auto !important;
	overflow: visible !important;
	margin: 0 !important;
	padding: 1.25rem 1.5rem !important;
	font-size: 1.0625rem !important;
	line-height: 1.5 !important;
	font-weight: 600 !important;
	color: #1a1a1a !important;
	background: #fff5f5 !important;
	border: 2px solid #d32f2f !important;
	border-left-width: 6px !important;
	border-left-color: #b71c1c !important;
	border-radius: 8px !important;
	box-shadow: 0 2px 8px rgba(211, 47, 47, 0.15) !important;
}
.checkout-page .woocommerce-NoticeGroup ul.woocommerce-error li:last-child {
	margin-bottom: 0 !important;
}

/* Кошик: повідомлення про мінімальну суму — такий самий стиль, як на checkout */
.natura-cart-min-order-notice {
	display: block;
	margin: 0 0 1.5rem 0;
	padding: 1.25rem 1.5rem;
	font-size: 1.0625rem;
	line-height: 1.5;
	font-weight: 600;
	color: #1a1a1a;
	background: #fff5f5;
	border: 2px solid #d32f2f;
	border-left-width: 6px;
	border-left-color: #b71c1c;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(211, 47, 47, 0.15);
}
.natura-cart-min-order-notice__text {
	display: block;
}

/* Міні-кошик: те саме повідомлення про мінімальну суму, по ширині як .woocommerce-mini-cart (бокові відступи 2.083vw) */
.natura-mini-cart-min-order-notice,
.widget_shopping_cart_content .natura-mini-cart-min-order-notice {
	margin: 0 2.083vw 0.75rem 2.083vw;
	padding: 0.75rem 1rem;
	font-size: 0.9375rem;
}
.mini-cart-sidebar .natura-mini-cart-min-order-notice,
.mini-cart-sidebar .widget_shopping_cart_content .natura-mini-cart-min-order-notice {
	/* Та сама сітка, що й у .woocommerce-mini-cart (padding 0 2.083vw) */
	margin-left: 2.083vw;
	margin-right: 2.083vw;
	margin-bottom: 0.75rem;
	margin-top: 0;
}

/* Скрываем любые текстовые узлы с текстом об ошибках внутри .form-row */
.checkout-page .form-row--error:not(:has(input)):not(:has(select)):not(:has(textarea)),
.checkout-page .form-row--error *:not(input):not(select):not(textarea):not(label):not(.woocommerce-input-wrapper),
.checkout-page .woocommerce-form-row--error *:not(input):not(select):not(textarea):not(label):not(.woocommerce-input-wrapper) {
	color: transparent !important;
	font-size: 0 !important;
	line-height: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
	display: none !important;
	visibility: hidden !important;
}

/* АГРЕССИВНО скрываем ВСЕ текстовые сообщения внутри .form-row--error */
.checkout-page .form-row--error::after,
.checkout-page .woocommerce-form-row--error::after {
	display: none !important;
}

/* Скрываем все дочерние элементы кроме input, select, textarea, label и .woocommerce-input-wrapper */
.checkout-page .form-row--error > *:not(input):not(select):not(textarea):not(label):not(.woocommerce-input-wrapper),
.checkout-page .woocommerce-form-row--error > *:not(input):not(select):not(textarea):not(label):not(.woocommerce-input-wrapper) {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 0 !important;
	line-height: 0 !important;
	color: transparent !important;
}

/* Скрываем текст внутри .woocommerce-input-wrapper, кроме самого инпута */
.checkout-page .form-row--error .woocommerce-input-wrapper > *:not(input):not(select):not(textarea),
.checkout-page .woocommerce-form-row--error .woocommerce-input-wrapper > *:not(input):not(select):not(textarea) {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 0 !important;
	line-height: 0 !important;
	color: transparent !important;
}

/* Красная подсветка незаполненных обязательных полей - ТОЧНО как focus, только красным */
/* Красная подсветка ошибок - ТОЧНО как focus, только красным, с полным border */
/* Красная подсветка незаполненных обязательных полей - ТОЧНО как focus, только красным */
/* Красная подсветка ошибок - ТОЧНО как focus, только красным, с полным border */
/* Исключаем необязательные поля (order_comments) */
.checkout-page .woocommerce-checkout .form-row--error input[type="text"]:not(#order_comments),
.checkout-page .woocommerce-checkout .form-row--error input[type="email"],
.checkout-page .woocommerce-checkout .form-row--error input[type="tel"],
.checkout-page .woocommerce-checkout .form-row--error input[type="number"],
.checkout-page .woocommerce-checkout .form-row--error input[type="password"],
.checkout-page .woocommerce-checkout .form-row--error input[type="date"],
.checkout-page .woocommerce-checkout .form-row--error textarea:not(#order_comments),
.checkout-page .woocommerce-checkout .form-row--error select,
.checkout-page .checkout-section .form-row--error input[type="text"]:not(#order_comments),
.checkout-page .checkout-section .form-row--error input[type="email"],
.checkout-page .checkout-section .form-row--error input[type="tel"],
.checkout-page .checkout-section .form-row--error input[type="number"],
.checkout-page .checkout-section .form-row--error input[type="password"],
.checkout-page .checkout-section .form-row--error input[type="date"],
.checkout-page .checkout-section .form-row--error textarea:not(#order_comments),
.checkout-page .checkout-section .form-row--error select,
.checkout-page .woocommerce-checkout .woocommerce-form-row--error input[type="text"]:not(#order_comments),
.checkout-page .woocommerce-checkout .woocommerce-form-row--error input[type="email"],
.checkout-page .woocommerce-checkout .woocommerce-form-row--error input[type="tel"],
.checkout-page .woocommerce-checkout .woocommerce-form-row--error input[type="number"],
.checkout-page .woocommerce-checkout .woocommerce-form-row--error input[type="password"],
.checkout-page .woocommerce-checkout .woocommerce-form-row--error input[type="date"],
.checkout-page .woocommerce-checkout .woocommerce-form-row--error textarea:not(#order_comments),
.checkout-page .woocommerce-checkout .woocommerce-form-row--error select,
.checkout-page .woocommerce-checkout input[type="text"].woocommerce-invalid-required-field:not(#order_comments),
.checkout-page .woocommerce-checkout input[type="email"].woocommerce-invalid-required-field,
.checkout-page .woocommerce-checkout input[type="tel"].woocommerce-invalid-required-field,
.checkout-page .woocommerce-checkout input[type="number"].woocommerce-invalid-required-field,
.checkout-page .woocommerce-checkout input[type="password"].woocommerce-invalid-required-field,
.checkout-page .woocommerce-checkout input[type="date"].woocommerce-invalid-required-field,
.checkout-page .woocommerce-checkout textarea.woocommerce-invalid-required-field:not(#order_comments),
.checkout-page .woocommerce-checkout select.woocommerce-invalid-required-field,
.checkout-page .woocommerce-checkout input[type="text"].woocommerce-invalid:not(#order_comments),
.checkout-page .woocommerce-checkout input[type="email"].woocommerce-invalid,
.checkout-page .woocommerce-checkout input[type="tel"].woocommerce-invalid,
.checkout-page .woocommerce-checkout input[type="number"].woocommerce-invalid,
.checkout-page .woocommerce-checkout input[type="password"].woocommerce-invalid,
.checkout-page .woocommerce-checkout input[type="date"].woocommerce-invalid,
.checkout-page .woocommerce-checkout textarea.woocommerce-invalid:not(#order_comments),
.checkout-page .woocommerce-checkout select.woocommerce-invalid,
.checkout-page .checkout-section input[type="text"].woocommerce-invalid-required-field:not(#order_comments),
.checkout-page .checkout-section input[type="email"].woocommerce-invalid-required-field,
.checkout-page .checkout-section input[type="tel"].woocommerce-invalid-required-field,
.checkout-page .checkout-section input[type="number"].woocommerce-invalid-required-field,
.checkout-page .checkout-section input[type="password"].woocommerce-invalid-required-field,
.checkout-page .checkout-section input[type="date"].woocommerce-invalid-required-field,
.checkout-page .checkout-section textarea.woocommerce-invalid-required-field:not(#order_comments),
.checkout-page .checkout-section select.woocommerce-invalid-required-field,
.checkout-page .checkout-section input[type="text"].woocommerce-invalid:not(#order_comments),
.checkout-page .checkout-section input[type="email"].woocommerce-invalid,
.checkout-page .checkout-section input[type="tel"].woocommerce-invalid,
.checkout-page .checkout-section input[type="number"].woocommerce-invalid,
.checkout-page .checkout-section input[type="password"].woocommerce-invalid,
.checkout-page .checkout-section input[type="date"].woocommerce-invalid,
.checkout-page .checkout-section textarea.woocommerce-invalid:not(#order_comments),
.checkout-page .checkout-section select.woocommerce-invalid {
	outline: none !important;
	border: 1px solid #ff0000 !important;
	box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1) !important;
}

/* Убираем все стили с самого .form-row--error блока, рамка только на инпутах */
.checkout-page .woocommerce-checkout .form-row--error,
.checkout-page .checkout-section .form-row--error,
.checkout-page .woocommerce-form-row--error {
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	background: transparent !important;
}

/* Checkout Form Rows */
.checkout-page .woocommerce-checkout .form-row,
.checkout-page .checkout-section .form-row {
	margin-bottom: 0;
}

.checkout-page .woocommerce-checkout .form-row.hidden,
.checkout-page .checkout-section .form-row.hidden {
	display: none;
}

.checkout-page .woocommerce-checkout .form-row.form-row-first,
.checkout-page .woocommerce-checkout .form-row.form-row-last,
.checkout-page .checkout-section .form-row.form-row-first,
.checkout-page .checkout-section .form-row.form-row-last {
	width: 48%;
}

.checkout-page .woocommerce-checkout .form-row.form-row-wide,
.checkout-page .checkout-section .form-row.form-row-wide {
	width: 100%;
}

.checkout-page .woocommerce-checkout .form-row.form-row-first,
.checkout-page .checkout-section .form-row.form-row-first {
	float: left;
}

.checkout-page .woocommerce-checkout .form-row.form-row-last,
.checkout-page .checkout-section .form-row.form-row-last {
	float: right;
}

.checkout-page .woocommerce-checkout .form-row::after,
.checkout-page .checkout-section .form-row::after {
	content: "";
	display: table;
	clear: both;
}

/* Checkout Submit Button */
.checkout-section--submit {
	margin-top: 2.083vw;
	padding-top: 0;
}

.checkout-submit-button {
	width: 100%;
	padding: 1.042vw 2.604vw;
	border: 2px solid transparent;
	border-radius: 999px;
	background-color: #4DBD56;
	color: #ffffff;
	text-decoration: none;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	box-sizing: border-box;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
}

.checkout-submit-button:hover,
.checkout-submit-button:focus-visible {
	background-color: transparent;
	border-color: #4DBD56;
	color: #303030;
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
}

/* Payment Methods */
.checkout-section--payment .checkout-section__group {
	margin-top: 2.083vw;
}

.checkout-page .wc_payment_methods {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.521vw;
}

.checkout-page .wc_payment_methods li {
	margin: 0;
	padding: 0;
	border: none;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: visible;
}

.checkout-page .wc_payment_methods label {
	margin: 0 !important;
	margin-bottom: 0 !important;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 0.938vw;
	line-height: 1.031vw;
	letter-spacing: -0.02em;
	color: #30303099;
	white-space: nowrap;
}

.checkout-page .wc_payment_methods label img {
	display: none !important;
}

.checkout-page .wc_payment_methods label .payment-method-description {
	color: #3030304D;
}

.checkout-page .wc_payment_methods input[type="radio"] {
	margin: 0;
	margin-right: 0.719vw;
	width: 0.719vw;
	height: 0.719vw;
	min-width: 0.719vw;
	min-height: 0.719vw;
	max-width: 0.719vw;
	max-height: 0.719vw;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid #30303066;
	border-radius: 50%;
	background-color: transparent;
	cursor: pointer;
	flex-shrink: 0;
	flex-grow: 0;
	padding: 0;
	box-sizing: border-box;
	align-self: center;
}

.checkout-page .wc_payment_methods input[type="radio"]:checked {
	background-color: #4DBD56;
	border-color: #30303066;
}

.checkout-page .payment_box {
	margin-top: 0.833vw;
	padding: 1.042vw;
	background-color: #F3F3F366;
	border-radius: 8px;
	font-size: 0.938vw;
}

.checkout-page .payment_box p {
	margin: 0;
	font-size: 0.938vw;
}

/* Checkout Order Review Styles */
.checkout-order-review {
	margin: 0;
	padding: 0;
	/* КРИТИЧНО: Делаем flex контейнером для правильной работы скролла */
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	overflow: hidden;
}

.checkout-order-review__items {
	margin: 0;
	padding: 0;
	list-style: none;
	/* КРИТИЧНО: Список товаров скроллируется */
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.checkout-order-review__item {
	display: flex;
	align-items: flex-start;
	gap: 1.042vw;
	padding: 1.563vw 0;
	border-bottom: 1px solid rgba(48, 48, 48, 0.1);
}

.checkout-order-review__item:first-of-type {
	border-top: 1px solid rgba(48, 48, 48, 0.1);
}

/* Розділювач між товарами */
.checkout-order-review__item:not(:last-child) {
	border-bottom: 1px solid rgba(48, 48, 48, 0.1);
}

.checkout-order-review__item-image {
	flex-shrink: 0;
	width: 6.606vw;
	height: auto;
	border-radius: 0.26vw;
	overflow: hidden;
	background-color: #F3F3F3;
}

.checkout-order-review__item-image a {
	display: block;
	width: 100%;
	height: auto;
}

.checkout-order-review__item-image img,
.checkout-order-review__item-image .attachment-woocommerce_thumbnail,
.checkout-order-review__item-image .attachment-woocommerce_single,
.checkout-order-review__item-image .size-woocommerce_thumbnail,
.checkout-order-review__item-image .size-woocommerce_single,
.checkout-order-review__item-image .wp-post-image {
	width: 100% !important;
	height: auto !important;
	display: block;
}

.checkout-order-review__item-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.629vw;
	height: 3.594vw;
}

.checkout-order-review__item-name {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.042vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: #303030;
	vertical-align: middle;
}

.checkout-order-review__item-name a {
	color: #303030;
	text-decoration: none;
	line-height: inherit;
}

.checkout-order-review__item-unit {
	color: rgba(48, 48, 48, 0.6);
	font-weight: 400;
}

/* Hide unit labels in checkout order review */
.checkout-order-review .checkout-order-review__item-unit {
	display: none !important;
}

.checkout-order-review__item-price {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.042vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: #303030;
	vertical-align: middle;
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 0.3em;
}

.checkout-order-review__item-price::before {
	content: 'Вартість товару: ';
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.042vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: #30303066;
	vertical-align: baseline;
	display: inline-block;
}

/* Вирівнювання ціни та символу гривні на десктопі */
.checkout-order-review__item-price .woocommerce-Price-amount,
.checkout-order-review__item-price .woocommerce-Price-amount bdi {
	vertical-align: baseline;
	line-height: 100%;
}

.checkout-order-review__item-price .woocommerce-Price-currencySymbol {
	vertical-align: baseline;
	display: inline-block;
	line-height: 100%;
}

.checkout-order-review__totals {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid rgba(48, 48, 48, 0.1);
	/* КРИТИЧНО: Итоги зафиксированы внизу, не скроллятся */
	flex: 0 0 auto;
}

/* Приховати проміжний підсумок на десктопі */
.checkout-order-review__subtotal {
	display: none;
}

.checkout-order-review__total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.833vw;
}

.checkout-order-review__subtotal:last-child,
.checkout-order-review__total:last-child {
	margin-bottom: 0;
}

.checkout-order-review__subtotal-label,
.checkout-order-review__total-label {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-size: 0.938vw;
	color: rgba(48, 48, 48, 0.6);
}

.checkout-order-review__subtotal-value,
.checkout-order-review__total-value {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	color: #303030;
}

.checkout-order-review__total {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.checkout-order-review__total-label {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.875vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: #30303066;
	vertical-align: middle;
}

.checkout-order-review__total-value {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.875vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: #303030;
	vertical-align: middle;
}

/* Скрыть мобильную кнопку на десктопе */
.checkout-order-review__mobile-submit {
	display: none;
	/* КРИТИЧНО: На мобильных кнопка тоже зафиксирована внизу */
	flex: 0 0 auto;
}

.checkout-order-review__discount {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.833vw;
}

.checkout-order-review__discount-label,
.checkout-order-review__discount-value {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-size: 0.938vw;
	color: rgba(48, 48, 48, 0.6);
}

/* Coupon Section */
.checkout-order-review__coupon {
	margin-top: 3.125vw;
	padding-top: 0;
	border-top: none;
	/* КРИТИЧНО: Купон зафиксирован внизу, не скроллится */
	flex: 0 0 auto;
}

.checkout-order-review__coupon-label {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 1.25vw;
	line-height: 110%;
	letter-spacing: -0.02em;
	color: #30303099;
	vertical-align: middle;
	margin-bottom: 0.833vw;
	display: block;
}

.checkout-order-review__coupon-input-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 0;
}

.checkout-order-review__coupon-input {
	width: 21.615vw !important;
	min-width: 21.615vw !important;
	max-width: 21.615vw !important;
	flex: none !important;
	padding: 0.833vw 1.042vw;
	border: 1px solid rgba(48, 48, 48, 0.15) !important;
	border-radius: 999999px !important;
	background-color: #F3F3F366 !important;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
	font-weight: 500 !important;
	font-size: 0.938vw !important;
	color: #303030 !important;
	box-sizing: border-box;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.checkout-order-review__coupon-input::placeholder {
	color: rgba(48, 48, 48, 0.3);
}

.checkout-order-review__coupon-button {
	width: 19.531vw;
	flex: none;
	padding: 0.833vw 1.563vw;
	border: 2px solid transparent;
	border-radius: 99999999px;
	background-color: #303030;
	color: #ffffff;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 0.938vw;
	cursor: pointer;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	box-sizing: border-box;
}

.checkout-order-review__coupon-button:hover {
	background-color: transparent;
	border-color: #303030;
	color: #303030;
}

@media (max-width: 768px) {
	/* КРИТИЧНО: Уменьшаем отступ сверху еще на 15%: 34px - 15% = 28.9px ≈ 29px */
	.checkout-page {
		padding-top: 29px !important;
		padding-bottom: 10.667vw;
	}

	/* Thank you page (order received) – mobile */
	/* Более специфичный селектор для переопределения .checkout-page */
	.checkout-page.thankyou-page,
	.thankyou-page.checkout-page {
		/* Header is fixed; add top offset so content doesn't go under it */
		/* Отступ сверху = отступ до футера (10.667vw) + высота хедера (5.333vw * 2 = 10.666vw) + 5% + 8vw - 4vw */
		padding-top: calc((10.667vw + 10.666vw) * 1.05 + 8vw - 4vw) !important;
		margin-top: 0 !important;
	}

	.thankyou-page .thankyou-page__container {
		margin-top: 0;
	}

	/* Отступ сверху для первого блока на мобильных, чтобы не обрезался хедером */
	.thankyou-page__card:first-child {
		margin-top: 0 !important;
	}

	.thankyou-page__card {
		border-radius: 2.667vw;
		padding: 5.333vw;
	}

	.thankyou-page__card + .thankyou-page__card {
		margin-top: 5.333vw;
	}

	.thankyou-page__title {
		font-size: 6.4vw;
		margin-bottom: 4vw;
	}

	.thankyou-page__subtitle {
		font-size: 5.333vw;
		margin-bottom: 4vw;
	}

	.thankyou-page__text {
		font-size: 4vw;
	}

	.thankyou-page__text + .thankyou-page__text {
		margin-top: 3.2vw;
	}

	.thankyou-page__form {
		margin-top: 4vw;
		gap: 4vw;
	}

	.thankyou-page__field {
		gap: 3.2vw;
	}

	.thankyou-page__label {
		font-size: 4vw;
		margin-bottom: 0;
	}

	.thankyou-page__input {
		padding: 4vw;
		font-size: 4vw;
		border-radius: 2.667vw;
	}

	.thankyou-page__message {
		font-size: 4vw;
	}

	.thankyou-page .checkout-submit-button {
		padding: 4vw 8vw;
		font-size: 4vw;
		border-radius: 999999px;
	}

	/* КРИТИЧНО: Уменьшаем отступ сверху еще на 15%: 34px - 15% = 28.9px ≈ 29px */
	.checkout-page {
		padding-top: 29px !important;
	}

	.checkout-page__container {
		width: var(--container-width-mobile);
		max-width: var(--container-width-mobile);
		padding-left: 0;
		padding-right: 0;
		/* КРИТИЧНО: Уменьшаем отступ сверху еще на 15% */
		margin-top: 0 !important;
		padding-top: 0 !important;
	}

	.checkout-page__layout {
		display: flex;
		flex-direction: column;
		gap: 5.333vw;
	}

	.checkout-page__left,
	.checkout-page__right {
		position: static;
		width: 100% !important;
		max-width: 100% !important;
		max-height: none;
		overflow-y: visible;
		border-radius: 2.667vw;
		padding: 5.333vw;
		/* КРИТИЧНО: Ограничиваем padding и учитываем его в box-sizing */
		box-sizing: border-box !important;
		overflow-x: hidden !important;
	}

	.checkout-section__title,
	.checkout-summary__title {
		font-size: 5.333vw;
		margin-bottom: 4vw;
		/* КРИТИЧНО: Заголовок зафиксирован сверху на мобильных */
		flex: 0 0 auto !important;
	}

	.checkout-summary {
		/* КРИТИЧНО: На мобильных тоже flex контейнер */
		display: flex !important;
		flex-direction: column !important;
		flex: 1 !important;
		min-height: 0 !important;
		overflow: hidden !important;
	}

	.checkout-summary__order-review {
		/* КРИТИЧНО: На мобильных тоже flex контейнер */
		display: flex !important;
		flex-direction: column !important;
		flex: 1 !important;
		min-height: 0 !important;
		overflow: hidden !important;
		margin-top: 4vw !important;
	}

	/* Скрываем кнопку подтверждения в левой колонке на мобильном */
	.checkout-section--submit {
		display: none;
	}

	/* Checkout Form Fields Mobile */
	.checkout-page .woocommerce-checkout input[type="text"],
	.checkout-page .woocommerce-checkout input[type="email"],
	.checkout-page .woocommerce-checkout input[type="tel"],
	.checkout-page .woocommerce-checkout input[type="number"],
	.checkout-page .woocommerce-checkout input[type="password"],
	.checkout-page .woocommerce-checkout input[type="date"],
	.checkout-page .woocommerce-checkout select,
	.checkout-page .checkout-section input[type="text"],
	.checkout-page .checkout-section input[type="email"],
	.checkout-page .checkout-section input[type="tel"],
	.checkout-page .checkout-section input[type="number"],
	.checkout-page .checkout-section input[type="password"],
	.checkout-page .checkout-section input[type="date"],
	.checkout-page .checkout-section select {
		padding: 0 4vw !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		padding-left: 4vw !important;
		padding-right: 4vw !important;
		font-size: 4vw !important;
		border-radius: 2.667vw !important;
		/* КРИТИЧНО: Исправляем растягивание поля с датой */
		box-sizing: border-box !important;
		max-width: 100% !important;
		/* КРИТИЧНО: Одинаковая высота для всех полей */
		height: 13.333vw !important;
		min-height: 13.333vw !important;
		max-height: 13.333vw !important;
		/* КРИТИЧНО: Исправляем выравнивание текста по высоте и предотвращаем обрезание букв */
		line-height: 13.333vw !important;
		vertical-align: middle !important;
		/* КРИТИЧНО: Убираем центрирование - выравниваем по левому краю */
		text-align: left !important;
		/* КРИТИЧНО: Предотвращаем обрезание букв */
		overflow: visible !important;
		text-overflow: clip !important;
	}
	
	/* КРИТИЧНО: Дополнительные стили для select на мобильной версии */
	.checkout-page .woocommerce-checkout select,
	.checkout-page .checkout-section select {
		/* КРИТИЧНО: Учитываем иконку справа при padding-right */
		padding-right: 12vw !important;
		/* КРИТИЧНО: Исправляем выравнивание текста по высоте */
		line-height: 13.333vw !important;
		vertical-align: middle !important;
		/* КРИТИЧНО: Предотвращаем обрезание букв */
		overflow: visible !important;
		text-overflow: clip !important;
		/* КРИТИЧНО: Выравнивание по левому краю */
		text-align: left !important;
		text-align-last: left !important;
	}

	/* КРИТИЧНО: Textarea должна иметь большую высоту */
	.checkout-page .woocommerce-checkout textarea,
	.checkout-page .checkout-section textarea {
		padding: 4vw !important;
		font-size: 4vw !important;
		border-radius: 2.667vw !important;
		box-sizing: border-box !important;
		max-width: 100% !important;
		/* Textarea имеет свою высоту */
		height: auto !important;
		min-height: 24vw !important;
		line-height: 1.5 !important;
	}
	
	/* КРИТИЧНО: Дополнительно для поля с датой - предотвращаем растягивание */
	.checkout-page .woocommerce-checkout input[type="date"],
	.checkout-page .checkout-section input[type="date"],
	.checkout-page input[type="date"],
	.checkout-page #shipping_delivery_date,
	.checkout-page input#shipping_delivery_date {
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		flex-shrink: 1 !important;
		box-sizing: border-box !important;
		/* КРИТИЧНО: Убираем любые margin/padding, которые могут вызывать выход за границы */
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 0 4vw !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		padding-left: 4vw !important;
		padding-right: 4vw !important;
		/* КРИТИЧНО для iOS: Убираем нативные стили браузера */
		-webkit-appearance: none !important;
		-moz-appearance: none !important;
		appearance: none !important;
		/* КРИТИЧНО для iOS: Убираем внутренние отступы iOS */
		-webkit-padding-start: 4vw !important;
		-webkit-padding-end: 4vw !important;
		/* КРИТИЧНО: Одинаковая высота как у всех полей */
		height: 13.333vw !important;
		min-height: 13.333vw !important;
		max-height: 13.333vw !important;
		/* КРИТИЧНО: Исправляем выравнивание текста по высоте и предотвращаем обрезание букв */
		line-height: 13.333vw !important;
		vertical-align: middle !important;
		/* КРИТИЧНО: Убираем центрирование текста - выравниваем по левому краю */
		text-align: left !important;
		text-align-last: left !important;
		/* КРИТИЧНО для iOS: Принудительное выравнивание по левому краю */
		-webkit-text-align: left !important;
		/* КРИТИЧНО: Предотвращаем обрезание букв */
		overflow: visible !important;
		text-overflow: clip !important;
		/* КРИТИЧНО: Убираем любые стили, которые могут центрировать */
		justify-content: flex-start !important;
		align-items: center !important;
	}

	/* КРИТИЧНО: Дополнительные ограничения для контейнеров полей на мобильных */
	.checkout-page .woocommerce-checkout .form-row input[type="date"],
	.checkout-page .checkout-section .form-row input[type="date"] {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		/* КРИТИЧНО: Убираем float для мобильных */
		float: none !important;
		display: block !important;
	}

	/* КРИТИЧНО: Ограничиваем ширину всех input внутри form-row на мобильных */
	.checkout-page .woocommerce-checkout .form-row input,
	.checkout-page .checkout-section .form-row input {
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	/* КРИТИЧНО для iOS: Ограничиваем ширину контейнеров для поля date */
	.checkout-page .woocommerce-shipping-fields,
	.checkout-page .shipping_address,
	.checkout-page .woocommerce-shipping-fields__field-wrapper,
	.checkout-page #shipping_delivery_date_field,
	.checkout-page p#shipping_delivery_date_field,
	.checkout-page .woocommerce-input-wrapper {
		max-width: 100% !important;
		box-sizing: border-box !important;
		width: 100% !important;
		overflow: hidden !important;
	}

	/* КРИТИЧНО для iOS: Специфичные стили для wrapper поля date */
	.checkout-page #shipping_delivery_date_field .woocommerce-input-wrapper,
	.checkout-page p#shipping_delivery_date_field .woocommerce-input-wrapper {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		display: block !important;
		overflow: hidden !important;
	}

	/* КРИТИЧНО для iOS: Дополнительные ограничения для input внутри wrapper */
	.checkout-page .woocommerce-input-wrapper input[type="date"],
	.checkout-page .woocommerce-input-wrapper #shipping_delivery_date {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		margin: 0 !important;
		display: block !important;
	}

	/* Placeholders Mobile */
	.checkout-page .woocommerce-checkout input[type="text"]::placeholder,
	.checkout-page .woocommerce-checkout input[type="email"]::placeholder,
	.checkout-page .woocommerce-checkout input[type="tel"]::placeholder,
	.checkout-page .woocommerce-checkout textarea::placeholder,
	.checkout-page .checkout-section input[type="text"]::placeholder,
	.checkout-page .checkout-section input[type="email"]::placeholder,
	.checkout-page .checkout-section input[type="tel"]::placeholder,
	.checkout-page .checkout-section textarea::placeholder {
		font-size: 4vw;
	}
	
	/* КРИТИЧНО для iOS: Placeholder для input[type="date"] */
	.checkout-page .woocommerce-checkout input[type="date"].is-placeholder,
	.checkout-page .checkout-section input[type="date"].is-placeholder,
	.checkout-page input[type="date"].is-placeholder,
	.checkout-page #shipping_delivery_date.is-placeholder {
		color: transparent !important;
		opacity: 1 !important;
		/* КРИТИЧНО: Делаем текст прозрачным, чтобы показать псевдоэлемент на wrapper */
		-webkit-text-fill-color: transparent !important;
	}
	
	/* КРИТИЧНО для iOS: Обертка для позиционирования псевдоэлемента */
	.checkout-page #shipping_delivery_date_field .woocommerce-input-wrapper,
	.checkout-page p#shipping_delivery_date_field .woocommerce-input-wrapper {
		position: relative !important;
	}
	
	/* КРИТИЧНО для iOS: Псевдоэлемент для отображения placeholder "дд.мм.рррр" на wrapper */
	.checkout-page #shipping_delivery_date_field .woocommerce-input-wrapper.has-date-placeholder::before,
	.checkout-page p#shipping_delivery_date_field .woocommerce-input-wrapper.has-date-placeholder::before,
	.checkout-page .woocommerce-input-wrapper.has-date-placeholder::before {
		content: 'дд.мм.рррр' !important;
		position: absolute !important;
		left: 4vw !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		color: #3030304D !important;
		pointer-events: none !important;
		font-size: 4vw !important;
		line-height: 1 !important;
		white-space: nowrap !important;
		z-index: 1 !important;
	}
	
	/* КРИТИЧНО для iOS: Стили для выбранной даты */
	.checkout-page .woocommerce-checkout input[type="date"].has-value,
	.checkout-page .checkout-section input[type="date"].has-value,
	.checkout-page input[type="date"].has-value,
	.checkout-page #shipping_delivery_date.has-value {
		color: #303030 !important;
		-webkit-text-fill-color: #303030 !important;
		/* КРИТИЧНО: Убираем центрирование - выравниваем по левому краю */
		text-align: left !important;
		text-align-last: left !important;
		/* КРИТИЧНО для iOS: Принудительное выравнивание по левому краю */
		-webkit-text-align: left !important;
		/* КРИТИЧНО: Убираем любые стили, которые могут центрировать */
		justify-content: flex-start !important;
		align-items: center !important;
	}

	.checkout-page .woocommerce-checkout textarea,
	.checkout-page .checkout-section textarea {
		min-height: 24vw;
	}

	.checkout-page .woocommerce-checkout select,
	.checkout-page .checkout-section select {
		background-size: 3.2vw;
		padding-right: 12vw !important;
		background-position: right 4vw center;
		/* КРИТИЧНО: Одинаковая высота как у всех полей */
		height: 13.333vw !important;
		min-height: 13.333vw !important;
		max-height: 13.333vw !important;
		line-height: 1.5 !important;
		vertical-align: middle !important;
		/* КРИТИЧНО: Убираем нативные стили для одинакового отображения */
		-webkit-appearance: none !important;
		-moz-appearance: none !important;
		appearance: none !important;
	}

	/* Checkout Labels Mobile */
	.checkout-page .woocommerce-checkout label,
	.checkout-page .checkout-section label,
	.checkout-page form.checkout label {
		font-size: 4vw;
		margin-bottom: 3.2vw;
		vertical-align: middle;
	}


	/* Checkout Form Rows Mobile */
	.checkout-page .woocommerce-checkout .form-row,
	.checkout-page .checkout-section .form-row {
		margin-bottom: 5.333vw;
		/* КРИТИЧНО: Ограничиваем ширину, чтобы поля не выходили за границы */
		max-width: 100% !important;
		box-sizing: border-box !important;
		width: 100% !important;
		overflow: hidden !important;
	}

	.checkout-page .woocommerce-checkout .form-row.form-row-first,
	.checkout-page .woocommerce-checkout .form-row.form-row-last,
	.checkout-page .checkout-section .form-row.form-row-first,
	.checkout-page .checkout-section .form-row.form-row-last {
		width: 100% !important;
		float: none;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	/* КРИТИЧНО: Ограничиваем ширину контейнеров для полей */
	.checkout-section__group {
		max-width: 100% !important;
		box-sizing: border-box !important;
		overflow: hidden !important;
		width: 100% !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	/* КРИТИЧНО: Ограничиваем ширину секций checkout */
	.checkout-section {
		max-width: 100% !important;
		box-sizing: border-box !important;
		overflow: hidden !important;
		width: 100% !important;
		padding: 0 !important;
	}

	/* Payment Methods Mobile */
	.checkout-section--payment .checkout-section__group {
		margin-top: 5.333vw;
	}

	.checkout-page .wc_payment_methods li {
		margin-bottom: 4vw;
		padding: 0;
		/* КРИТИЧНО: Ограничиваем ширину элементов списка */
		max-width: 100% !important;
		box-sizing: border-box !important;
		overflow: hidden !important;
		word-wrap: break-word !important;
	}

	.checkout-page .wc_payment_methods label {
		font-size: 4vw;
		line-height: 120%;
		/* КРИТИЧНО: Разрешаем перенос текста на мобильных */
		white-space: normal !important;
		word-wrap: break-word !important;
		word-break: break-word !important;
		overflow-wrap: break-word !important;
		/* КРИТИЧНО: Ограничиваем ширину label */
		max-width: 100% !important;
		box-sizing: border-box !important;
		/* КРИТИЧНО: Убираем flex, чтобы текст мог переноситься */
		flex-wrap: wrap !important;
		display: flex !important;
		align-items: center !important;
	}

	/* КРИТИЧНО: Стили для описания метода оплаты на мобильных */
	.checkout-page .wc_payment_methods label .payment-method-description {
		/* КРИТИЧНО: Разрешаем перенос текста */
		white-space: normal !important;
		word-wrap: break-word !important;
		word-break: break-word !important;
		overflow-wrap: break-word !important;
		/* КРИТИЧНО: Позволяем элементу занимать всю доступную ширину для переноса */
		flex: 1 1 auto !important;
		min-width: 0 !important;
		max-width: 100% !important;
		display: inline-block !important;
		/* Додаємо пробіл перед описом */
		margin-left: 0.5em !important;
		/* Відцентровуємо відносно лейбла */
		vertical-align: middle !important;
		align-self: center !important;
	}

	/* Додаємо пробіл перед описом через ::before */
	.checkout-page .wc_payment_methods label .payment-method-description::before {
		content: " ";
		display: inline-block;
	}

	.checkout-page .wc_payment_methods input[type="radio"] {
		align-self: center !important;
		width: 5vw;
		height: 5vw;
		margin-right: 3vw;
		min-width: 5vw;
		min-height: 5vw;
		max-width: 5vw;
		max-height: 5vw;
	}

	.checkout-page .payment_box {
		margin-top: 3.2vw;
		padding: 4vw;
		font-size: 4vw;
		border-radius: 2.667vw;
	}

	.checkout-page .payment_box p {
		font-size: 4vw;
		/* КРИТИЧНО: Разрешаем перенос текста в payment_box */
		word-wrap: break-word !important;
		word-break: break-word !important;
		overflow-wrap: break-word !important;
		max-width: 100% !important;
	}

	/* Checkout Order Review Mobile */
	.checkout-order-review__item {
		gap: 4vw;
		padding: 5.333vw 0;
		align-items: center;
	}

	.checkout-order-review__item-image {
		width: 25vw;
		height: auto;
		border-radius: 2.667vw;
		overflow: hidden;
	}

	.checkout-order-review__item-image a {
		display: block;
		width: 100%;
		height: auto;
	}

	.checkout-order-review__item-details {
		height: auto;
		gap: 10px;
		justify-content: center;
	}

	.checkout-order-review__item-name {
		font-size: 12px;
		line-height: 100% !important;
	}

	.checkout-order-review__item-price {
		font-size: 12px;
		display: flex;
		align-items: baseline;
		gap: 0.3em;
	}

	.checkout-order-review__item-price::before {
		font-size: 12px;
		vertical-align: baseline;
		display: inline-block;
	}

	/* Вирівнювання ціни та символу гривні на мобільному */
	.checkout-order-review__item-price .woocommerce-Price-amount,
	.checkout-order-review__item-price .woocommerce-Price-amount bdi {
		vertical-align: baseline;
		line-height: 100%;
	}

	.checkout-order-review__item-price .woocommerce-Price-currencySymbol {
		vertical-align: baseline;
		display: inline-block;
		line-height: 100%;
	}

	.checkout-order-review {
		/* КРИТИЧНО: На мобильных тоже flex контейнер */
		display: flex !important;
		flex-direction: column !important;
		flex: 1 !important;
		min-height: 0 !important;
		overflow: hidden !important;
	}

	.checkout-order-review__items {
		/* КРИТИЧНО: Список товаров скроллируется на мобильных */
		flex: 1 1 auto !important;
		min-height: 0 !important;
		overflow-y: auto !important;
		overflow-x: hidden !important;
		-webkit-overflow-scrolling: touch !important;
	}

	.checkout-order-review__totals {
		margin-top: 2.667vw;
		padding-top: 2.667vw;
		/* КРИТИЧНО: Итоги зафиксированы внизу на мобильных */
		flex: 0 0 auto !important;
	}

	/* КРИТИЧНО: Скрываем промежуточный итог (subtotal) на мобильных */
	.checkout-order-review__subtotal {
		display: none !important;
	}

	.checkout-order-review__total {
		margin-top: 0;
		padding-top: 0;
		margin-bottom: 4vw;
	}

	.checkout-order-review__subtotal-label,
	.checkout-order-review__total-label {
		font-size: 5vw;
	}

	.checkout-order-review__subtotal-value,
	.checkout-order-review__total-value {
		font-size: 5vw;
	}

	.checkout-order-review__total {
		margin-top: 4vw;
		padding-top: 4vw;
	}

	.checkout-order-review__total-label {
		font-size: 5.333vw;
	}

	.checkout-order-review__total-value {
		font-size: 5.333vw;
	}

	.checkout-order-review__coupon {
		margin-top: 5.333vw;
		padding-top: 0;
		/* КРИТИЧНО: Купон зафиксирован внизу на мобильных */
		flex: 0 0 auto !important;
	}

	/* КРИТИЧНО: Скрываем надпись про купоны на мобильных */
	.checkout-order-review__coupon-label {
		display: none !important;
	}

	/* КРИТИЧНО: Скрываем ссылку "Натисніть тут, щоб ввести код купону знижки" на мобильных */
	.woocommerce-form-coupon-toggle,
	.woocommerce-info .showcoupon,
	a.showcoupon {
		display: none !important;
	}

	.checkout-order-review__coupon-input-wrapper {
		flex-direction: column;
		gap: 3.2vw;
		justify-content: flex-start;
	}

	.checkout-order-review__coupon-input {
		width: 100% !important;
		min-width: 100% !important;
		max-width: 100% !important;
		padding: 4vw;
		border-radius: 999999px;
		font-size: 4vw;
	}

	.checkout-order-review__coupon-button {
		width: 100%;
		padding: 4vw;
		border-radius: 99999999px;
		font-size: 4vw;
	}

	/* Кнопка подтверждения под ценой в правой колонке - только для мобильной версии */
	.checkout-order-review__mobile-submit {
		display: block;
		margin-top: 5.333vw;
		/* КРИТИЧНО: Кнопка зафиксирована внизу на мобильных */
		flex: 0 0 auto !important;
	}

	.checkout-order-review__mobile-submit .checkout-submit-button {
		width: 100%;
		padding: 4vw 8vw;
		font-size: 4vw;
		border-radius: 999999px;
	}
}
/* ---------- Пагинация каталога ---------- */

.woocommerce-pagination {
	margin-top: 2.083vw;
}

.woocommerce-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.417vw; /* ~8px на 1920px */
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-pagination .page-numbers li {
	margin: 0;
	padding: 0;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.708vw; /* ~52px на 1920px (на ~30% больше) */
	height: 2.708vw;    /* ~52px на 1920px (на ~30% больше) */
	padding: 0 0.813vw; /* ~15.6px на 1920px */
	border-radius: 999px;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 1.146vw; /* ~22px на 1920px */
	line-height: 1;
	letter-spacing: -0.03em;
	box-sizing: border-box;
}

.woocommerce-pagination .page-numbers a {
	color: rgba(48, 48, 48, 0.4);
	text-decoration: none;
	background-color: transparent;
}

.woocommerce-pagination .page-numbers span.current {
	background-color: #303030;
	color: #ffffff;
}

	.woocommerce-pagination .page-numbers .prev,
	.woocommerce-pagination .page-numbers .next {
		min-width: auto;
		padding-inline: 0;
		font-size: 11px;
	}

@media (max-width: 768px) {
	/* Пагинация каталога на мобильной версии */
	.woocommerce-pagination {
		margin-top: 5.333vw;
	}

	.woocommerce-pagination .page-numbers {
		gap: 2.133vw;
	}

	.woocommerce-pagination .page-numbers a,
	.woocommerce-pagination .page-numbers span {
		min-width: 10.667vw;
		height: 10.667vw;
		padding: 0 4.267vw;
		border-radius: 999px;
		font-size: 3.2vw;
	}
	.single-product {
		padding-top: 8.333vw;
		margin-top: 0;
	}
	
	.single-product__container {
		width: var(--container-width-mobile) !important;
		max-width: var(--container-width-mobile) !important;
		margin-left: auto !important;
		margin-right: auto !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box !important;
	}
	
	.woocommerce-breadcrumb {
		font-size: 3.2vw !important;
		gap: 1.067vw !important;
		margin-top: 21.333vw !important;
		margin-bottom: 2.667vw !important;
		line-height: 1.2 !important;
	}

	/* Отступ для контейнера с хлебными крошками на странице товара */
	.single-product .woocommerce-breadcrumb,
	.woocommerce .woocommerce-breadcrumb {
		margin-top: 21.333vw !important;
		margin-bottom: 2.667vw !important;
		font-size: 3.2vw !important;
		gap: 1.067vw !important;
	}
	
	.woocommerce-breadcrumb__icon {
		width: 1.5vw !important; /* было 2.133vw -> 1.7vw, сейчас еще ~10% меньше */
		height: auto !important;
	}
}

/* Single Product Layout */
.single-product__content {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: var(--container-width-desktop);
}

.single-product__layout {
	display: flex;
	gap: calc(var(--container-width-desktop) - 45.833vw - 45.833vw);
	align-items: stretch;
	margin: 0;
	padding: 0;
	margin-top: 2.344vw;
	margin-bottom: 2.083vw;
	margin-left: auto;
	margin-right: auto;
	width: var(--container-width-desktop);
	max-width: var(--container-width-desktop);
	box-sizing: border-box;
}

.single-product__image-wrapper {
	width: 45.833vw;
	height: 30.625vw;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	position: relative;
}

/* Бейдж "Акція" на странице товара - стили как на карточках */
.single-product__sale-badge-wrapper {
	position: absolute;
	top: 0.833vw;
	right: 0.833vw;
	z-index: 10;
	pointer-events: none;
}

.single-product__sale-badge-wrapper .onsale,
.single-product__image-wrapper .onsale,
.single-product__image-wrapper .woocommerce-product-gallery .onsale,
.single-product__image-wrapper span.onsale,
.single-product__content .onsale,
.single-product .single-product__image-wrapper .onsale,
.woocommerce .single-product__image-wrapper .onsale {
	position: relative !important;
	top: 0 !important;
	right: 0 !important;
	z-index: 10 !important;
	display: block !important;
	background-color: #C91114 !important;
	color: #ffffff !important;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
	font-weight: 600 !important;
	font-style: normal !important;
	font-size: 0.729vw !important;
	line-height: 100% !important;
	letter-spacing: -0.03em !important;
	padding: 0.625vw 1.042vw !important;
	margin: 0 !important;
	border-radius: 999px !important;
	text-transform: capitalize !important;
	box-sizing: border-box !important;
	border: none !important;
	text-decoration: none !important;
	pointer-events: none !important;
}

.single-product__image-wrapper .woocommerce-product-gallery {
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 0.26vw;
	background-color: rgba(243, 243, 243, 0.5);
}

/* Бейдж должен быть виден поверх галереи и не влиять на layout */
.single-product__image-wrapper .woocommerce-product-gallery .onsale {
	position: absolute !important;
	top: 0.833vw !important;
	right: 0.833vw !important;
	z-index: 100 !important;
	pointer-events: none !important;
	background-color: #C91114 !important;
}

.single-product__image-wrapper .woocommerce-product-gallery__wrapper {
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	overflow: hidden;
}

.single-product__image-wrapper .woocommerce-product-gallery__image {
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	overflow: hidden;
	position: relative;
}

.single-product__image-wrapper .woocommerce-product-gallery__image > a {
	display: block;
	width: 100%;
	height: 100%;
}

.single-product__image-wrapper .woocommerce-product-gallery__image img,
.single-product__image-wrapper img.wp-post-image {
	width: 100% !important;
	height: 100% !important;
	min-width: 100%;
	min-height: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: 0.26vw;
	display: block;
	flex-shrink: 0;
}

.single-product__summary {
	width: 45.833vw;
	flex-shrink: 0;
	margin-left: 0;
	padding: 0;
	min-width: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-self: stretch;
}

/* Stock Badge */
.single-product__stock-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.938vw;
	padding: 0.729vw 1.667vw 0.729vw 1.146vw;
	background-color: #4DBD56;
	border-radius: 9999px;
	margin: 0;
	margin-bottom: 2vw;
	line-height: 1;
	width: fit-content;
	align-self: flex-start;
}

/* Out of stock badge - grey style */
.single-product__stock-badge--outofstock {
	background-color: #e0e0e0;
}

.single-product__stock-badge--outofstock .single-product__stock-text {
	color: #757575;
}

/* Hide default WooCommerce out of stock text (we have custom badge) */
.single-product__summary p.stock.out-of-stock,
.single-product p.stock.out-of-stock {
	display: none !important;
}

/* Stock notification form */
.stock-notification-form {
	margin-top: 2.083vw;
}

.stock-notification {
	display: flex;
	flex-direction: column;
	gap: 1.042vw;
}

.stock-notification__field {
	width: 100%;
}

.stock-notification__input {
	width: 100%;
	padding: 1.042vw 2.604vw;
	border: 2px solid rgba(48, 48, 48, 0.1);
	border-radius: 999px;
	font-family: var(--font-family-base);
	font-size: 0.938vw;
	line-height: 1;
	letter-spacing: -0.02em;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
}

.stock-notification__input:focus {
	outline: none;
	border-color: #4DBD56;
}

.stock-notification__button {
	width: 100%;
	padding: 1.042vw 2.604vw;
	border: 2px solid transparent;
	border-radius: 999px;
	background-color: #4DBD56;
	color: #ffffff;
	font-family: var(--font-family-base);
	font-weight: 500;
	font-size: 0.938vw;
	line-height: 1;
	letter-spacing: -0.02em;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.stock-notification__button:hover {
	background-color: #43A047;
}

.stock-notification__button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.stock-notification__message {
	margin-top: 0.521vw;
	font-size: 0.833vw;
	line-height: 1.4;
}

.single-product__stock-badge span {
	line-height: 100% !important;
	letter-spacing: -0.03em !important;
	margin: 0 !important;
	padding: 0 !important;
}

.single-product__stock-icon {
	width: 0.625vw;
	height: 0.625vw;
	display: block;
	flex-shrink: 0;
	object-fit: contain;
	margin: 0;
	padding: 0;
	margin-right: 0;
	vertical-align: middle;
}

.single-product__stock-text {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw; /* 18px / 1920 */
	line-height: 100% !important;
	letter-spacing: -0.03em !important;
	vertical-align: middle;
	color: #FFFFFF;
	margin: 0 !important;
	padding: 0 !important;
	white-space: nowrap;
	display: inline-block;
}

@media (max-width: 1025px) {
	.single-product {
		padding-top: 0 !important;
		margin-top: 0 !important;
	}

	.single-product__container {
		width: var(--container-width-mobile) !important;
		max-width: var(--container-width-mobile) !important;
		margin-left: auto !important;
		margin-right: auto !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box !important;
	}

	.single-product__content {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.single-product__layout {
		display: flex !important;
		flex-direction: column !important;
		gap: 5.333vw !important;
		margin-top: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		align-items: stretch !important;
	}
	
	.single-product__image-wrapper {
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		order: 1 !important;
		position: relative !important;
		z-index: 1 !important;
		flex-shrink: 0 !important;
	}
	
	.single-product__image-wrapper .woocommerce-product-gallery {
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		aspect-ratio: 1 !important;
		position: relative !important;
	}
	
	.single-product__image-wrapper .woocommerce-product-gallery__wrapper {
		width: 100% !important;
		height: 100% !important;
		min-height: 0 !important;
		aspect-ratio: 1 !important;
	}
	
	.single-product__image-wrapper .woocommerce-product-gallery__image {
		width: 100% !important;
		height: 100% !important;
		min-height: 0 !important;
		aspect-ratio: 1 !important;
	}
	
	/* Бейдж "Акція" на странице товара - мобильная версия */
	.single-product__image-wrapper .onsale,
	.single-product__image-wrapper .woocommerce-product-gallery .onsale,
	.single-product__image-wrapper span.onsale,
	.single-product__content .onsale,
	.single-product .single-product__image-wrapper .onsale,
	.woocommerce .single-product__image-wrapper .onsale {
		position: absolute !important;
		top: 2.133vw !important;
		right: 2.133vw !important;
		z-index: 10 !important;
		display: block !important;
		background-color: #C91114 !important;
		color: #ffffff !important;
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 600 !important;
		font-style: normal !important;
		font-size: 2.8vw !important;
		line-height: 100% !important;
		letter-spacing: -0.03em !important;
		padding: 2.133vw 2.933vw !important;
		margin: 0 !important;
		border-radius: 999px !important;
		text-transform: capitalize !important;
		box-sizing: border-box !important;
		border: none !important;
		text-decoration: none !important;
	}

	.single-product__image-wrapper .woocommerce-product-gallery__image img,
	.single-product__image-wrapper img.wp-post-image {
		width: 100% !important;
		height: 100% !important;
		object-fit: contain !important;
		aspect-ratio: 1 !important;
	}
	
	.single-product__summary {
		margin-left: 0 !important;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		width: 100% !important;
		order: 2 !important;
		position: relative !important;
		z-index: 2 !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 0 !important;
		min-height: 0 !important;
		height: auto !important;
		box-sizing: border-box !important;
	}
	
	.single-product__stock-badge {
		gap: 2.667vw !important;
		padding: 2.667vw 4vw !important;
		margin: 0 !important;
		margin-bottom: 4vw !important;
		order: 1 !important;
		position: relative !important;
		z-index: 1 !important;
		width: fit-content !important;
		align-self: flex-start !important;
	}
	
	.single-product__stock-icon {
		width: 2.667vw !important;
		height: 2.667vw !important;
		margin-right: 0 !important;
		flex-shrink: 0 !important;
	}
	
	.single-product__stock-text {
		font-size: 3.2vw !important;
		line-height: 100% !important;
	}

	.single-product__title-price-wrapper {
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;
		gap: 2.667vw !important;
		width: 100% !important;
		margin: 0 !important;
		margin-top: 5.333vw !important;
		order: 2 !important;
		position: relative !important;
		z-index: 2 !important;
	}

	.single-product__title-price-wrapper .product_title.entry-title {
		font-size: 9.067vw !important;
		line-height: 100% !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		display: block !important;
		flex-direction: row !important;
		align-items: flex-start !important;
		gap: 2.667vw !important;
	}

	.single-product__title-price-wrapper .product_title.entry-title .product-title__unit {
		font-size: 4.8vw !important;
		line-height: 100% !important;
	}

	.single-product__title-price-wrapper .price {
		font-size: 6.4vw !important;
		line-height: 100% !important;
		align-self: flex-start !important;
		margin: 0 !important;
		padding: 0 !important;
		display: flex !important;
		align-items: baseline !important;
		gap: 0.35em !important;
		white-space: nowrap !important;
	}

	/* Цена со скидкой - новая цена (жирная, темная) на мобильных */
	.single-product__title-price-wrapper .price ins {
		text-decoration: none !important;
		font-weight: 600 !important;
		color: #303030 !important;
		display: inline !important;
		vertical-align: baseline !important;
	}

	/* Цена со скидкой - старая цена (зачеркнутая, серая) на мобильных */
	.single-product__title-price-wrapper .price del {
		opacity: 1 !important;
		font-weight: 400 !important;
		color: #999999 !important;
		text-decoration: line-through !important;
		margin-right: 0.35em !important;
		display: inline !important;
		vertical-align: baseline !important;
	}

	.single-product__summary .woocommerce-product-details__short-description {
		font-size: 3.2vw !important;
		line-height: 140% !important;
		margin: 0 !important;
		margin-top: 5.333vw !important;
		padding: 0 !important;
		width: 100% !important;
		order: 3 !important;
		position: relative !important;
		z-index: 3 !important;
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 600 !important;
		color: #303030 !important;
		letter-spacing: -0.03em !important;
	}

	.single-product__summary .woocommerce-product-details__short-description p {
		font-size: 3.2vw !important;
		line-height: 140% !important;
		margin: 0 !important;
		padding: 0 !important;
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 600 !important;
		color: #303030 !important;
		letter-spacing: -0.03em !important;
	}

	.single-product__summary .single-product__full-description {
		font-size: 3.2vw !important;
		line-height: 170% !important;
		margin: 0 !important;
		margin-top: 5.333vw !important;
		padding: 0 !important;
		width: 100% !important;
		order: 4 !important;
		position: relative !important;
		z-index: 4 !important;
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 600 !important;
		color: #303030 !important;
		letter-spacing: -0.03em !important;
	}

	.single-product__summary .single-product__full-description p {
		font-size: 3.2vw !important;
		line-height: 170% !important;
		margin: 0 !important;
		margin-bottom: 2.667vw !important;
		padding: 0 !important;
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 600 !important;
		color: #303030 !important;
		letter-spacing: -0.03em !important;
	}

	.single-product__summary .single-product__full-description p:last-child {
		margin-bottom: 0 !important;
	}

	.single-product__summary .single-product__full-description h2 {
		font-size: 3.2vw !important;
		line-height: 140% !important;
		margin: 0 !important;
		margin-bottom: 2.667vw !important;
		padding: 0 !important;
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 600 !important;
		color: #303030 !important;
		letter-spacing: -0.03em !important;
	}

	.single-product__summary form.cart {
		margin-top: 5.333vw !important;
		margin-bottom: 6.4vw !important;
		display: flex !important;
		flex-direction: row !important;
		justify-content: flex-start !important;
		align-items: stretch !important;
		gap: 2.667vw !important;
		width: 100% !important;
		order: 5 !important;
		position: relative !important;
		z-index: 5 !important;
		box-sizing: border-box !important;
		overflow: visible !important;
	}

	/* Отступ для блока связанных товаров на мобильной версии */
	.single-product__related-section,
	.related.products {
		margin-top: 6.4vw !important;
		margin-bottom: 6.4vw !important;
	}

	/* Контейнер связанных товаров */
	.single-product__related-section .container,
	.related.products .container,
	.sales-related-products .container {
		overflow-x: hidden !important;
		width: var(--container-width-mobile) !important;
		max-width: var(--container-width-mobile) !important;
		margin-left: auto !important;
		margin-right: auto !important;
		padding: 0 !important;
	}

	.single-product__summary form.cart .quantity-wrapper {
		width: calc((100% - 2.667vw) / 2) !important;
		flex: 0 0 calc((100% - 2.667vw) / 2) !important;
		height: 10.667vw !important;
		min-height: 10.667vw !important;
		max-height: 10.667vw !important;
		padding: 0 1.333vw !important;
		order: 1 !important;
		box-sizing: border-box !important;
		display: flex !important;
		align-items: center !important;
		overflow: visible !important;
		min-width: 0 !important;
		margin: 0 !important;
	}

	.single-product__summary form.cart .quantity-button {
		width: 8vw !important;
		height: 8vw !important;
		min-width: 8vw !important;
		min-height: 8vw !important;
		max-width: 8vw !important;
		max-height: 8vw !important;
		flex-shrink: 0 !important;
	}

	.single-product__summary form.cart .quantity-button__icon {
		width: 4.267vw !important;
		height: 4.267vw !important;
	}

	.single-product__summary form.cart input.qty {
		font-size: 3.2vw !important;
	}

	.single-product__summary form.cart .quantity-unit {
		font-size: 3.2vw !important;
	}

	.single-product__summary form.cart .single_add_to_cart_button {
		width: calc((100% - 2.667vw) / 2) !important;
		flex: 0 0 calc((100% - 2.667vw) / 2) !important;
		height: 10.667vw !important;
		min-height: 10.667vw !important;
		max-height: 10.667vw !important;
		padding: 0 5.333vw !important;
		font-size: 3.2vw !important;
		order: 2 !important;
		margin: 0 !important;
		margin-left: auto !important;
		box-sizing: border-box !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		overflow: visible !important;
		min-width: 0 !important;
		white-space: nowrap !important;
		text-overflow: ellipsis !important;
	}

	/* Stock notification form mobile */
	.stock-notification-form {
		margin-top: 4vw !important;
		order: 5 !important;
	}

	.stock-notification {
		gap: 2.667vw !important;
	}

	.stock-notification__input {
		padding: 2.667vw 5.333vw !important;
		font-size: 3.2vw !important;
		border-radius: 999px !important;
	}

	.stock-notification__button {
		padding: 2.667vw 5.333vw !important;
		font-size: 3.2vw !important;
		height: 10.667vw !important;
		min-height: 10.667vw !important;
	}

	.stock-notification__message {
		margin-top: 1.333vw !important;
		font-size: 2.667vw !important;
	}
}

/* Product Title and Price Container - same row */
.single-product__title-price-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	gap: 1vw;
	margin-top: 0;
}

.single-product__title-price-wrapper .product_title.entry-title {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 2.604vw; /* 50px / 1920 */
	line-height: 100%;
	letter-spacing: -0.03em; /* -3% */
	vertical-align: middle;
	color: #303030;
	margin: 0;
	padding: 0;
	flex: 1;
	display: block;
}

/* Единица измерения в заголовке */
.single-product__title-price-wrapper .product_title.entry-title .product-title__unit {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 1.25vw; /* 24px / 1920 */
	line-height: 100%;
	letter-spacing: -0.03em; /* -3% */
	vertical-align: top;
	color: rgba(48, 48, 48, 0.4); /* #30303066 */
	margin: 0;
	padding: 0;
	display: inline-block;
	white-space: nowrap;
}

/* Hide unit in single product title (keep units visible in checkout/mini-cart). */
.single-product .product-title__unit {
	display: none !important;
}

/* Product Price - same row as title, right aligned */
.single-product__title-price-wrapper .price {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 1.875vw;
	line-height: 100%;
	letter-spacing: -0.03em; /* -3% */
	vertical-align: bottom;
	color: #303030;
	margin: 0;
	padding: 0;
	flex-shrink: 0;
	align-self: flex-start;
	display: flex;
	align-items: baseline;
	gap: 0.35em;
	white-space: nowrap;
}

/* Цена со скидкой - новая цена (жирная, темная) */
.single-product__title-price-wrapper .price ins {
	text-decoration: none;
	font-weight: 600;
	color: #303030;
	display: inline;
	vertical-align: baseline;
}

/* Цена со скидкой - старая цена (зачеркнутая, серая) */
.single-product__title-price-wrapper .price del {
	opacity: 1;
	font-weight: 400;
	color: #999999;
	text-decoration: line-through;
	margin-right: 0.35em;
	display: inline;
	vertical-align: baseline;
}

/* Выравнивание внутренних элементов цен */
.single-product__title-price-wrapper .price ins .woocommerce-Price-amount,
.single-product__title-price-wrapper .price ins bdi,
.single-product__title-price-wrapper .price del .woocommerce-Price-amount,
.single-product__title-price-wrapper .price del bdi {
	vertical-align: baseline;
	line-height: inherit;
}

/* Product Short Description */
.single-product__summary .woocommerce-product-details__short-description {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 0.9375vw; /* 18px / 1920 */
	line-height: 100%;
	letter-spacing: -0.03em; /* -3% */
	vertical-align: middle;
	color: #303030;
	margin: 0;
	margin-top: 2.083vw;
	padding: 0;
	width: 34.375vw;
}

/* Full Product Description */
.single-product__summary .single-product__full-description {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 0.9375vw; /* 18px / 1920 */
	line-height: 160%;
	letter-spacing: -0.03em; /* -3% */
	vertical-align: middle;
	color: #303030;
	margin: 0;
	margin-top: 2.083vw;
	padding: 0;
	width: 37.8125vw;
}

.single-product__summary .single-product__full-description p {
	margin: 0;
	padding: 0;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.9375vw;
	line-height: 160%;
	letter-spacing: -0.03em;
	color: rgba(48, 48, 48, 0.6);
}

.single-product__summary .single-product__full-description h2 {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.9375vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	color: #303030;
	margin: 0;
	margin-bottom: 1.042vw;
	padding: 0;
}

/* Add to Cart Form - прижать к низу */
.single-product__summary form.cart {
	margin-top: auto;
	margin-bottom: 0;
	display: flex;
	align-items: stretch;
	gap: 0.521vw;
	width: 100%;
}

/* Quantity input wrapper */
.single-product__summary form.cart .quantity-wrapper {
	display: flex;
	align-items: center;
	gap: 0;
	background-color: transparent;
	border-radius: 999px;
	padding: 0 0.521vw;
	margin: 0;
	border: 1px solid rgba(48, 48, 48, 0.4); /* #30303066 */
	box-sizing: border-box;
	min-height: calc(1.042vw * 2 + 0.938vw); /* Высота как у кнопки (padding-top + padding-bottom + font-size) */
	height: 100%;
	align-self: stretch;
	width: 25.781vw;
	flex-shrink: 0;
}

/* Quantity buttons */
.single-product__summary form.cart .quantity-button {
	width: 2.083vw;
	height: 2.083vw;
	border-radius: 50%;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: background-color 0.3s ease;
	flex-shrink: 0;
	pointer-events: auto;
	z-index: 1;
}

/* Обе кнопки - серый фон в обычном состоянии */
.single-product__summary form.cart .quantity-button--minus,
.single-product__summary form.cart .quantity-button--plus {
	background-color: #F3F3F3;
}

/* Обе кнопки - зеленый фон при hover */
.single-product__summary form.cart .quantity-button--minus:hover,
.single-product__summary form.cart .quantity-button--plus:hover {
	background-color: #4DBD56;
}

.single-product__summary form.cart .quantity-button__icon {
	width: 1.146vw;
	height: 1.146vw;
	object-fit: contain;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.single-product__summary form.cart .quantity-button__icon--hover {
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* Обе кнопки - серые иконки в обычном состоянии */
.single-product__summary form.cart .quantity-button .quantity-button__icon--default {
	opacity: 1;
}

.single-product__summary form.cart .quantity-button .quantity-button__icon--hover {
	opacity: 0;
}

/* Обе кнопки - белые иконки при hover */
.single-product__summary form.cart .quantity-button:hover .quantity-button__icon--default {
	opacity: 0;
}

.single-product__summary form.cart .quantity-button:hover .quantity-button__icon--hover {
	opacity: 1;
}

/* Quantity input wrapper */
.single-product__summary form.cart .quantity-input-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.104vw;
	padding: 0 0.833vw;
	flex: 1;
	min-width: 0;
	white-space: nowrap;
	overflow: visible; /* Позволяем содержимому не обрезаться */
}

.single-product__summary form.cart input.qty {
	width: auto;
	min-width: 0; /* Убрано ограничение, чтобы input был компактным */
	max-width: 4ch; /* Достаточно для дробных значений (0.1, 0.3, 1.2 и т.д.) */
	flex: 0 0 auto;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 1;
	color: #4DBD56;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
	display: inline-block;
	overflow: visible; /* Позволяем тексту не обрезаться */
}

.single-product__summary form.cart input.qty::-webkit-outer-spin-button,
.single-product__summary form.cart input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.single-product__summary form.cart .quantity-unit {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 1;
	color: #4DBD56;
	flex-shrink: 0;
}

/* Add to Cart Button - справа */
.single-product__summary form.cart .single_add_to_cart_button {
	margin-left: 0;
	flex: 1;
	flex-shrink: 1;
	padding: 1.042vw 2.604vw;
	border: 2px solid transparent;
	border-radius: 999px;
	background-color: #4DBD56;
	color: #ffffff;
	text-decoration: none;
	font-family: var(--font-family-base);
	font-weight: 500;
	font-size: 0.938vw;
	line-height: 1;
	letter-spacing: -0.02em;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	box-sizing: border-box;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	min-width: 0;
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
}

/* На странице товара (single product) не показываем "Переглянути кошик / View cart" */
.single-product__summary form.cart .added_to_cart,
.woocommerce div.product form.cart .added_to_cart {
	display: none !important;
}

.single-product__summary form.cart .single_add_to_cart_button:hover,
.single-product__summary form.cart .single_add_to_cart_button:focus-visible {
	background-color: transparent;
	border-color: #4DBD56;
	color: #303030;
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
}

/* Related Products Section */
.single-product__related-section {
	width: 100%;
	margin-top: 90px;
	margin-bottom: 90px;
	padding: 0;
}

.single-product__related-section .container {
	width: var(--container-width-desktop);
	max-width: var(--container-width-desktop);
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

/* Header с заголовком и кнопками */
.single-product__related-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.single-product__related-section .single-product__related-heading {
	font-size: 2rem;
	font-weight: 600;
	margin: 0;
}

/* Кнопки навигации */
.single-product__related-nav {
	display: flex;
	gap: 0.5rem;
}

.single-product__related-prev,
.single-product__related-next {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1px solid rgba(48, 48, 48, 0.2);
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.single-product__related-prev:hover,
.single-product__related-next:hover {
	background: #303030;
	border-color: #303030;
}

.single-product__related-prev:hover img,
.single-product__related-next:hover img {
	filter: brightness(0) invert(1);
}

.single-product__related-prev.swiper-button-disabled,
.single-product__related-next.swiper-button-disabled {
	opacity: 0.3;
	cursor: default;
}

.single-product__related-prev img,
.single-product__related-next img {
	width: 1rem;
	height: 1rem;
}

.single-product__related-swiper {
	width: 100%;
	overflow: hidden;
	padding: 0;
}

/* Swiper работает на всех размерах экрана */
.single-product__related-section .swiper-wrapper {
	display: flex !important;
		list-style: none !important;
		margin: 0 !important;
		padding: 0 !important;
}

.single-product__related-section .swiper-wrapper li.product {
		flex-shrink: 0 !important;
		display: flex !important;
		flex-direction: column !important;
		height: auto !important;
}

/* Related Products Swiper - отключаем grid для swiper */
.single-product__related-section ul.products.swiper-wrapper,
.single-product__related-section .swiper-wrapper {
	display: flex !important;
	grid-template-columns: unset !important;
}

/* Мобильная версия: 2 товара */
@media (max-width: 768px) {
	.single-product__related-section ul.products.swiper-wrapper li.product,
	.single-product__related-section .swiper-wrapper li.product {
		width: calc((100% - 2.667vw) / 2) !important;
		flex-shrink: 0 !important;
	}

	.single-product__related-header {
		flex-direction: row;
		align-items: center;
		gap: 1rem;
	}
	
	.single-product__related-section .single-product__related-heading {
		font-size: 1.5rem;
	}

	.single-product__related-nav {
		display: flex;
	}
	
	.single-product__related-prev,
	.single-product__related-next {
		width: 2rem;
		height: 2rem;
	}
	
	.single-product__related-prev img,
	.single-product__related-next img {
		width: 0.9rem;
		height: 0.9rem;
	}
}

/* Десктопная версия: 4 товара */
@media (min-width: 769px) {
	.single-product__related-section ul.products.swiper-wrapper li.product,
	.single-product__related-section .swiper-wrapper li.product {
		width: calc((100% - 1.042vw * 3) / 4) !important;
		flex-shrink: 0 !important;
	}
}

.single-product__related-section .products li.product .single-product__related-slide {
	width: 100%;
	height: 100%;
}

/* Product Card Styles */
/* Products Grid Layout */
ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 1.042vw !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	box-sizing: border-box !important;
	opacity: 1 !important;
	visibility: visible !important;
}

ul.products.columns-4 li.product {
	/* В каталоге мы используем грид на 3 колонки, поэтому элемент продукта занимает всю ширину своей ячейки */
	width: 100% !important;
	flex-shrink: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	min-width: 0 !important;
	box-sizing: border-box !important;
	position: relative !important;
	opacity: 1 !important;
	visibility: visible !important;
}

/* Product Card Styles */
li.product {
	list-style: none;
	display: flex;
	flex-direction: column;
	height: 100%;
}

li.product .product-card,
.product-card {
	background-color: rgba(255, 255, 255, 0.4);
	border: 1px solid rgba(48, 48, 48, 0.1);
	border-radius: 0.26vw;
	padding: 1.563vw;
	display: flex !important;
	flex-direction: column !important;
	height: 100% !important;
	box-sizing: border-box !important;
	width: 100% !important;
	min-width: 0 !important;
	overflow: hidden !important;
	position: relative !important;
	will-change: auto;
	opacity: 1 !important;
	visibility: visible !important;
}

.product-card__image-wrapper {
	width: 100%;
	height: 10.625vw;
	overflow: hidden;
	border-radius: 0.26vw;
	margin-bottom: 2.083vw;
	flex-shrink: 0;
	position: relative;
	aspect-ratio: 1;
	background-color: rgba(243, 243, 243, 0.5);
	will-change: auto;
}

.product-card__image-wrapper a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.product-card__image-wrapper img,
.product-card__image-wrapper .attachment-woocommerce_thumbnail,
.product-card__image-wrapper .woocommerce-placeholder {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
	object-position: center;
	display: block;
	border-radius: 0.26vw;
}

.product-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 1.042vw;
	min-width: 0;
	overflow: hidden;
	min-height: 0; /* Allow flex shrinking */
}

.product-card__title-price-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	gap: 1vw;
	min-width: 0;
}

.product-card__title-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 0.521vw;
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.product-card__title-link {
	display: flex;
	align-items: flex-start;
	gap: 0.521vw;
	text-decoration: none;
	color: inherit;
	width: 100%;
	min-width: 0;
	overflow: hidden;
}

.product-card__title-link:hover {
	color: inherit;
	text-decoration: none;
}

.product-card__title-link .woocommerce-loop-product__title {
	display: inline;
	/* Глобально отключаем авто‑дефисы у заголовков товаров */
	word-wrap: normal !important;
	overflow-wrap: normal !important;
	word-break: normal !important;
	hyphens: none !important;
	-webkit-hyphens: none !important;
	-ms-hyphens: none !important;
}

.product-card__title-wrapper .woocommerce-loop-product__title {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.042vw;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: #303030;
	margin: 0;
	padding: 0;
	vertical-align: middle;
	display: block;
	/* Десктоп: не делим слова дефисами, переносим только по пробелам (жёстко отключаем авто‑перенос) */
	word-wrap: normal !important;
	overflow-wrap: normal !important;
	word-break: normal !important;
	hyphens: none !important;
	-webkit-hyphens: none !important;
	-ms-hyphens: none !important;
	min-width: 0;
}

.product-card__unit {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.042vw;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: rgba(48, 48, 48, 0.4);
	vertical-align: middle;
	flex-shrink: 0;
	white-space: nowrap;
	margin-left: 0.35em;
}

/* Hide unit labels in product cards (catalog / carousels / search). Keep markup intact. */
.product-card .product-card__unit {
	display: none !important;
}

.product-card__price-wrapper {
	flex-shrink: 0;
	align-self: flex-start;
	display: flex;
	align-items: baseline;
	gap: 0.35em;
	white-space: nowrap;
}

/* Desktop: price at bottom like mobile - align all prices on same level */
@media (min-width: 1026px) {
	.product-card__price-wrapper--desktop {
		display: none !important;
	}
	
	.product-card__price-wrapper--mobile {
		display: flex !important;
		flex-shrink: 0 !important;
		margin-top: auto !important;
		margin-bottom: 1.042vw !important;
		width: 100% !important;
		align-items: baseline !important;
		justify-content: flex-start !important;
	}
	
	.product-card__price-button-wrapper {
		display: flex !important;
		flex-direction: column !important;
		flex-shrink: 0 !important;
		margin-top: auto !important;
		width: 100% !important;
		gap: 0 !important;
	}
}

.product-card__price-wrapper .price {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.042vw;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: #303030;
	vertical-align: middle;
	margin: 0;
	padding: 0;
}

/* Цена со скидкой - новая цена (жирная, темная) */
.product-card__price-wrapper .price ins {
	text-decoration: none;
	font-weight: 600;
	color: #303030;
	display: inline;
	vertical-align: baseline;
}

/* Цена со скидкой - старая цена (зачеркнутая, серая) */
.product-card__price-wrapper .price del {
	opacity: 1;
	font-weight: 400;
	color: #999999;
	text-decoration: line-through;
	margin-right: 0.35em;
	display: inline;
	vertical-align: baseline;
}

/* Выравнивание внутренних элементов цен */
.product-card__price-wrapper .price ins .woocommerce-Price-amount,
.product-card__price-wrapper .price ins bdi,
.product-card__price-wrapper .price del .woocommerce-Price-amount,
.product-card__price-wrapper .price del bdi {
	vertical-align: baseline;
	line-height: inherit;
}

/* Prevent accidental scrollbars on price (some themes/plugins set overflow) */
.product-card__price-wrapper,
.product-card__price-wrapper .price,
.product-card__price-wrapper .woocommerce-Price-amount,
.product-card__price-wrapper .woocommerce-Price-amount bdi {
	overflow: visible !important;
}

/* If any overflow still sneaks in, hide scrollbars on price completely */
.product-card__price-wrapper {
	scrollbar-width: none;
}

.product-card__price-wrapper::-webkit-scrollbar,
.product-card__price-wrapper *::-webkit-scrollbar {
	width: 0;
	height: 0;
}

/* Ensure Woo price inner spans inherit line-height from .price (avoids global span{line-height:1.7}) */
.product-card__price-wrapper .woocommerce-Price-amount,
.product-card__price-wrapper .woocommerce-Price-amount bdi,
.product-card__price-wrapper .woocommerce-Price-currencySymbol {
	line-height: inherit !important;
}

.product-card__button-wrapper {
	width: 100%;
	margin-top: auto;
}

/* Desktop: Add spacing between title/price and button and fix button at bottom */
@media (min-width: 1026px) {
	.product-card__content {
		justify-content: space-between;
	}
	
	.product-card__button-wrapper {
		margin-top: 2.083vw;
		margin-bottom: 0;
		flex-shrink: 0;
	}
}

.product-card__button-wrapper a,
.product-card__button-wrapper .button,
.product-card__button-wrapper .add_to_cart_button,
.product-card__button-wrapper .ajax_add_to_cart,
.product-card__button-wrapper [class*="add_to_cart"],
.product-card__button-wrapper [class*="button"] {
	width: 100%;
	padding: 1.042vw 2.604vw;
	border: 2px solid transparent;
	border-radius: 999px;
	background-color: #4DBD56;
	color: #ffffff !important;
	text-decoration: none;
	font-family: var(--font-family-base);
	font-weight: 500;
	font-size: 0.938vw;
	line-height: 1;
	letter-spacing: -0.02em;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	box-sizing: border-box;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
}

.product-card__button-wrapper a:hover,
.product-card__button-wrapper .button:hover,
.product-card__button-wrapper .add_to_cart_button:hover,
.product-card__button-wrapper .ajax_add_to_cart:hover,
.product-card__button-wrapper [class*="add_to_cart"]:hover,
.product-card__button-wrapper [class*="button"]:hover {
	background-color: transparent;
	border-color: #4DBD56;
	color: #303030 !important;
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
}

/* Out of stock button - grey style */
.product-card__button-wrapper .button--outofstock,
.product-card__button-wrapper .button--outofstock:hover,
.product-card__button-wrapper .button--outofstock:focus {
	background-color: #e0e0e0 !important;
	border-color: #e0e0e0 !important;
	color: #757575 !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
}

/* Quantity wrapper in product cards */
.product-card__quantity-wrapper {
	display: none;
	align-items: center;
	gap: 0;
	background-color: #ffffff;
	border-radius: 999px;
	padding: 0 0.521vw;
	margin: 0;
	margin-top: 0.521vw;
	border: 1px solid rgba(48, 48, 48, 0.2);
	box-sizing: border-box;
	height: calc(1.042vw * 2 + 0.938vw + 4px);
	min-height: calc(1.042vw * 2 + 0.938vw + 4px);
	width: 100%;
	flex-shrink: 0;
	overflow: visible;
	position: relative;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card__quantity-wrapper[style*="display: flex"],
.product-card__quantity-wrapper.show {
	display: flex !important;
	opacity: 1;
	transform: scale(1);
}

.product-card__quantity-wrapper .quantity-button {
	width: 2.083vw !important;
	height: 2.083vw !important;
	min-width: 2.083vw !important;
	min-height: 2.083vw !important;
	border-radius: 50% !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	cursor: pointer;
	display: flex !important;
	align-items: center;
	justify-content: center;
	position: relative !important;
	transition: background-color 0.3s ease;
	flex-shrink: 0;
	pointer-events: auto;
	z-index: 2;
	overflow: hidden !important;
	background-color: transparent !important;
	box-sizing: border-box !important;
}

.product-card__quantity-wrapper .quantity-button--minus,
.product-card__quantity-wrapper .quantity-button--plus {
	background-color: #F3F3F3 !important;
}

.product-card__quantity-wrapper .quantity-button--minus:hover,
.product-card__quantity-wrapper .quantity-button--plus:hover {
	background-color: #4DBD56 !important;
}

.product-card__quantity-wrapper .quantity-button__icon {
	width: 1.146vw !important;
	height: 1.146vw !important;
	object-fit: contain !important;
	display: block !important;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	pointer-events: none !important;
	transition: opacity 0.3s ease;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	background: none !important;
}

.product-card__quantity-wrapper .quantity-button__icon--hover {
	opacity: 0;
}

.product-card__quantity-wrapper .quantity-button .quantity-button__icon--default {
	opacity: 1;
}

.product-card__quantity-wrapper .quantity-button .quantity-button__icon--hover {
	opacity: 0;
}

.product-card__quantity-wrapper .quantity-button:hover .quantity-button__icon--default {
	opacity: 0;
}

.product-card__quantity-wrapper .quantity-button:hover .quantity-button__icon--hover {
	opacity: 1;
}

.product-card__quantity-wrapper .quantity-input-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.104vw;
	padding: 0 0.833vw;
	flex: 1;
	min-width: 0;
	white-space: nowrap;
}

.product-card__quantity-wrapper .product-card__quantity-input,
.product-card__quantity-wrapper input.qty {
	width: auto;
	min-width: 0;
	max-width: 2ch;
	flex: 0 0 auto;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 1;
	color: #4DBD56;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
	display: inline-block;
}

.product-card__quantity-wrapper .product-card__quantity-input::-webkit-outer-spin-button,
.product-card__quantity-wrapper .product-card__quantity-input::-webkit-inner-spin-button,
.product-card__quantity-wrapper input.qty::-webkit-outer-spin-button,
.product-card__quantity-wrapper input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.product-card__quantity-wrapper .quantity-unit {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 1;
	color: #4DBD56;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
}

/* Бейдж "Акція" вверху справа на фото */
.product-card__badge-wrapper {
	position: absolute;
	top: 0.833vw;
	right: 0.833vw;
	z-index: 10;
	display: block;
	background-color: #C91114 !important;
	color: #ffffff !important;
	font-family: 'Inter Tight', sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 0.833vw; /* 16px / 1920 = 0.833vw */
	line-height: 100%;
	letter-spacing: -0.03em; /* -3% */
	vertical-align: middle;
	padding: 0.625vw 1.042vw;
	margin: 0;
	border-radius: 999px; /* Максимальное скругление */
	text-transform: capitalize !important;
	box-sizing: border-box;
}

.product-card__badge-wrapper * {
	background-color: transparent !important;
	color: inherit !important;
	font-family: inherit !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	font-style: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit !important;
	vertical-align: inherit !important;
	text-transform: inherit !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
}

.product-card__badge-wrapper .onsale {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.729vw; /* Уменьшен с 0.833vw */
	line-height: 100%;
	letter-spacing: -0.03em;
	padding: 0.625vw 1.042vw;
	margin: 0;
	background-color: #C91114 !important;
	color: #ffffff !important;
	border-radius: 0.26vw;
	text-transform: none !important; /* Без преобразования текста */
	display: inline-block;
	box-sizing: border-box;
	position: static;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto;
}

/* Mini Cart Sidebar */
.mini-cart-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100svh;
	z-index: 10000001 !important;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mini-cart-sidebar.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	/* Critical: ensure touch events work on mobile when open */
	touch-action: pan-y;
}

.mini-cart-sidebar__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mini-cart-sidebar.is-open .mini-cart-sidebar__overlay {
	opacity: 1;
}

.mini-cart-sidebar__content {
	position: absolute;
	top: 0;
	right: 0;
	width: 48.125vw;
	height: 100svh;
	background-color: #ffffff;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	/* Critical for iOS scrolling */
	-webkit-overflow-scrolling: touch;
	touch-action: pan-y;
	pointer-events: auto;
}

.mini-cart-sidebar.is-open .mini-cart-sidebar__content {
	transform: translateX(0);
}

.mini-cart-sidebar__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2.083vw;
	margin: 0;
	border-bottom: none;
	flex-shrink: 0;
	position: relative;
}

.mini-cart-sidebar__header::after {
	content: none;
}

.mini-cart-sidebar__title {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 5.208vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
	color: #303030;
	margin: 0;
	padding: 0;
}

.mini-cart-sidebar__close {
	width: 3.125vw;
	height: 3.125vw;
	border-radius: 50%;
	background-color: #303030;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	transition: background-color 0.3s ease;
}

.mini-cart-sidebar__close:hover {
	background-color: #1a1a1a;
}

.mini-cart-sidebar__close svg {
	width: 0.938vw;
	height: 0.938vw;
}

.mini-cart-sidebar__body {
	flex: 1;
	/* КРИТИЧНО: На десктопе overflow-y: auto, на мобильных будет переопределено в media query */
	/* КРИТИЧНО: Убрано overflow-y: auto из базовых стилей - может конфликтовать с media query */
	overflow: hidden; /* Базовое значение - на мобильных будет переопределено */
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.mini-cart-sidebar__body .widget_shopping_cart_content {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	/* КРИТИЧНО: На десктопе overflow: hidden, на мобильных будет переопределено */
	/* КРИТИЧНО: Убрано overflow: hidden - может конфликтовать с media query */
	overflow: visible; /* Позволяем контенту растягивать родителя */
}

/* WooCommerce Mini Cart Styles */
.mini-cart-sidebar .woocommerce-mini-cart {
	list-style: none;
	margin: 0;
	/* Горизонтальные отступы только для списка товаров */
	padding: 0 2.083vw 2.083vw 2.083vw;
	flex: 1;
	/* КРИТИЧНО: На десктопе overflow-y: auto, на мобильных будет переопределено в media query */
	overflow-y: auto; /* Для десктопа - скроллируется список */
	overflow-x: hidden;
	min-height: 0;
}

.mini-cart-sidebar .woocommerce-mini-cart-item {
	display: flex;
	align-items: center; /* выравниваем картинку, quantity и иконку удаления по одной линии по высоте */
	gap: 1.042vw;
	padding: 1.563vw 0;
	/* Линия-разделитель в мини-корзине: делаем более деликатной (20% opacity) */
	border-bottom: 1px solid rgba(48, 48, 48, 0.2);
	position: relative;
}

.mini-cart-sidebar .woocommerce-mini-cart-item:first-child {
	border-top: 1px solid rgba(48, 48, 48, 0.2);
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__image {
	flex-shrink: 0;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__image img {
	width: 10.417vw;
	height: 9.896vw;
	object-fit: contain;
	border-radius: 0.26vw;
	display: block;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.521vw;
	min-width: 0;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__controls-row {
	display: flex;
	align-items: center;
	gap: 1.042vw;
	min-width: 0;
}

/* В рядку керування: quantity займає весь доступний простір, remove не "стрибає" по висоті */
.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__controls-row .mini-cart-item__quantity-wrapper {
	flex: 1;
	width: auto;
	max-width: 100%;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__controls-row .mini-cart-item__remove {
	margin-left: 0; /* gap уже є */
	align-self: center;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__name {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.25vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
	color: #303030;
	display: inline-block;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__name a {
	color: inherit;
	text-decoration: none;
	display: inline;
}

/* Unit of measurement next to product name */
.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__name::after {
	content: ' (' attr(data-unit) ')';
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.25vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
	color: rgba(48, 48, 48, 0.4);
}

/* Hide unit label next to product name in mini-cart (keep unit next to quantity visible) */
.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__name::after {
	content: '' !important;
	display: none !important;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__quantity-unit {
	display: inline !important;
	color: inherit;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__quantity-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	background-color: transparent;
	border-radius: 999px;
	padding: 0 0.521vw;
	margin: 0;
	/* Рамка калькулятора количества — тоже более лёгкая линия (20% opacity) */
	border: 1px solid rgba(48, 48, 48, 0.2); /* #30303033 */
	width: 27.187vw;
	height: 3.125vw;
	min-height: 3.125vw;
	max-height: 3.125vw;
	box-sizing: border-box;
	align-self: center; /* выравниваем по центру относительно родителя */
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__quantity-button {
	width: 2.083vw;
	height: 2.083vw;
	min-width: 2.083vw;
	min-height: 2.083vw;
	border: none;
	background: #F3F3F3;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.146vw; /* размер иконки внутри */
	line-height: 1;
	color: #303030;
	transition: all 0.3s ease;
	padding: 0;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__quantity-button:hover {
	background-color: #4DBD56;
	color: #ffffff;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__quantity-value {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 1;
	color: #4DBD56;
	min-width: 3.125vw;
	text-align: center;
	padding: 0 0.833vw;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__price {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.25vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
	color: #303030;
	margin-top: calc(0.521vw + 6px);
	display: flex;
	align-items: center;
	gap: 0.35em;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__price-label {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.25vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
	color: rgba(48, 48, 48, 0.4);
}

/* Keep Woo price inner spans aligned with the label (global span line-height can otherwise shift baseline) */
.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__price .woocommerce-Price-amount,
.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__price .woocommerce-Price-amount bdi {
	line-height: inherit !important;
	vertical-align: baseline;
}

/* Вирівнювання символу гривні по цифрах */
.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__price .woocommerce-Price-currencySymbol {
	line-height: inherit !important;
	vertical-align: baseline;
	display: inline-block;
}

@media (max-width: 1025px) {
	/* На телефоне скрываем подпись "Вартість товару :" и поднимаем цену вправо от названия */
	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__price-label {
		display: none;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__content {
		position: relative;
		/* КРИТИЧНО: Уменьшаем отступ между названием, ценой, калькулятором и удалением */
		gap: 0.5vw !important;
		row-gap: 0.5vw !important;
		/* Выравниваем элементы по центру вертикально относительно фото */
		display: grid !important;
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
		align-items: baseline;
		align-content: center;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__name {
		grid-column: 1;
		grid-row: 1;
		align-self: start;
		margin: 0 !important;
		padding: 0 !important;
		line-height: 1 !important;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__price {
		grid-column: 2;
		grid-row: 1;
		position: static;
		/* Межстрочка в кошику 100% */
		line-height: 1 !important;
		/* Вирівнюємо ціну по центру первой строки названия */
		display: flex;
		align-items: center;
		gap: 0.2em;
		margin-left: 2vw;
		margin-top: 0.5vw !important;
		padding-top: 0 !important;
		align-self: baseline;
		vertical-align: baseline;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__controls-row {
		grid-column: 1 / -1;
		grid-row: 2;
		align-self: center;
	}

	/* Вирівнювання символу гривні на мобільному */
	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__price .woocommerce-Price-amount,
	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__price .woocommerce-Price-amount bdi {
		vertical-align: baseline;
		line-height: 100% !important;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__price .woocommerce-Price-currencySymbol {
		vertical-align: baseline;
		display: inline-block;
		line-height: 100% !important;
	}

	/* Контейнер с quantity + delete — база для выравнивания */
	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__controls-row {
		position: relative;
		display: flex;
		align-items: center;
		/* Quantity слева, delete прижат к правому углу ряда */
		justify-content: space-between;
		width: 100%;
		padding-right: 0;
	}

	/* Кнопка удаления в правом углу на одной линии по вертикали с quantity-wrapper, но внутри контейнера */
	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__controls-row .mini-cart-item__remove {
		position: static;
		transform: none;
		/* Легко смещаем внутрь ряда: отступ 3vw от правого края */
		margin: 0 3vw 0 0;
	}
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__remove {
	width: 3.125vw;
	height: 3.125vw;
	min-width: 3.125vw;
	min-height: 3.125vw;
	max-width: 3.125vw;
	max-height: 3.125vw;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #303030;
	text-decoration: none;
	transition: color 0.3s ease;
	margin: 0;
	margin-left: 1.042vw; /* fallback (если remove вне controls-row) */
	align-self: center;
	box-sizing: border-box;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__remove:hover {
	color: #4DBD56;
}

.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__remove-icon {
	width: 3.125vw;
	height: 3.125vw;
	display: block;
}

.mini-cart-sidebar .woocommerce-mini-cart__total {
	padding: 2.083vw;
	/* Линия над итогом в мини-корзине — 20% opacity */
	border-top: 1px solid rgba(48, 48, 48, 0.2);
	margin: 0;
	margin-top: auto;
	flex-shrink: 0;
	background-color: #F3F3F3;
	box-sizing: border-box;
}

.mini-cart-sidebar .mini-cart-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.042vw;
	width: 100%;
}

.mini-cart-sidebar .mini-cart-total__label {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.875vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
	color: rgba(48, 48, 48, 0.4); /* #30303066 */
}

.mini-cart-sidebar .mini-cart-total__price {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 1.875vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
	color: #303030;
	display: flex;
	align-items: baseline;
	gap: 0.2em;
}

/* Вирівнювання символу гривні в загальній сумі міні-корзини */
.mini-cart-sidebar .mini-cart-total__price .woocommerce-Price-amount,
.mini-cart-sidebar .mini-cart-total__price .woocommerce-Price-amount bdi {
	vertical-align: baseline;
}

.mini-cart-sidebar .mini-cart-total__price .woocommerce-Price-currencySymbol {
	vertical-align: baseline;
	display: inline-block;
}

.mini-cart-sidebar .woocommerce-mini-cart__buttons {
	margin: 0;
	padding: 0 2.083vw 2.083vw 2.083vw;
	flex-shrink: 0;
	background-color: #F3F3F3;
	box-sizing: border-box;
}

.mini-cart-sidebar .mini-cart-delivery {
	margin: 0;
	padding: 0 2.083vw 2.083vw 2.083vw;
	background-color: #F3F3F3;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625vw;
	text-align: center;
	box-sizing: border-box;
}

.mini-cart-sidebar .mini-cart-delivery__icon {
	width: 1.25vw;
	height: auto;
	flex-shrink: 0;
}

.mini-cart-sidebar .mini-cart-delivery__text {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	vertical-align: middle;
	color: rgba(48, 48, 48, 0.4); /* #30303066 */
}

.mini-cart-sidebar .woocommerce-mini-cart__buttons .button {
	width: 100%;
	padding: 1.042vw 2.604vw;
	border: 2px solid transparent;
	border-radius: 999px;
	background-color: #4DBD56;
	color: #ffffff;
	text-decoration: none;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 0.938vw;
	line-height: 100%;
	letter-spacing: -0.03em;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	box-sizing: border-box;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: none;
	margin-bottom: 0.521vw;
}

.mini-cart-sidebar .woocommerce-mini-cart__buttons .button:hover {
	background-color: transparent;
	border-color: #4DBD56;
	color: #303030;
}

.mini-cart-sidebar .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout) {
	display: none;
}

.mini-cart-sidebar .woocommerce-mini-cart__empty-message {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 1.042vw;
	line-height: 140%;
	color: rgba(48, 48, 48, 0.7);
	text-align: center;
	padding: 3.125vw 2.083vw;
	margin: 0 1.563vw;
	border: 1px solid rgba(48, 48, 48, 0.12);
	border-radius: 1.25vw;
	background: rgba(255, 255, 255, 0.6);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

/* Empty state: no products found (archive) */
.shop-archive-products .woocommerce-info,
.woocommerce .woocommerce-info {
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 1.042vw;
	line-height: 140%;
	letter-spacing: -0.03em;
	color: rgba(48, 48, 48, 0.7);
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(48, 48, 48, 0.12);
	border-radius: 1.25vw;
	padding: 1.563vw 1.563vw;
	margin: 1.563vw 0;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.shop-archive-products .woocommerce-info::before,
.woocommerce .woocommerce-info::before {
	display: none;
}

@media (max-width: 1025px) {
	.mini-cart-sidebar .woocommerce-mini-cart__empty-message {
		font-size: 4.103vw;
		border-radius: 5.128vw;
		padding: 8.205vw 5.128vw;
		margin: 0 5.128vw;
	}

	.shop-archive-products .woocommerce-info,
	.woocommerce .woocommerce-info {
		font-size: 4.103vw;
		border-radius: 5.128vw;
		padding: 5.128vw;
		margin: 5.128vw 0;
	}
}

/* Smooth interactions */
.shop-archive-filters__item a,
.shop-filter-list__link,
.product-card__button-wrapper .button,
.product-card__button-wrapper .add_to_cart_button,
.product-card__quantity-wrapper,
.product-card__quantity-wrapper .quantity-button,
.mini-cart-item__quantity-button,
.mini-cart-item__remove,
.single-product__summary form.cart .quantity-button,
.single-product__summary form.cart .single_add_to_cart_button {
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card__quantity-wrapper.show,
.product-card__quantity-wrapper[style*="display: flex"] {
	transition: opacity 0.25s ease, transform 0.25s ease;
	transform: translateY(0);
}

.product-card__button-wrapper .product-card__quantity-wrapper:not(.show):not([style*="display: flex"]) {
	transform: translateY(4px);
}

/* Page scroll is locked via JS while mini-cart is open (prevents layout shift on single product page) */

/* Prevent scroll chaining to the page; keep scroll inside the mini-cart */
.mini-cart-sidebar__content,
.mini-cart-sidebar__body,
.mini-cart-sidebar .woocommerce-mini-cart {
	overscroll-behavior: contain;
}

/* Smooth inner scrolling on iOS - только для десктопа */
/* На мобильных будет переопределено в media query */
@media (min-width: 1026px) {
	.mini-cart-sidebar .woocommerce-mini-cart {
		-webkit-overflow-scrolling: touch;
		touch-action: pan-y;
	}
}

@media (max-width: 1025px) {
	/* КРИТИЧНО: Блокируем скролл сайта при открытии корзины на мобильных */
	/* Но скролл внутри корзины должен работать */
	html.mini-cart-open {
		position: fixed !important;
		width: 100% !important;
		height: 100% !important;
		overflow: hidden !important;
	}
	body.mini-cart-open {
		position: fixed !important;
		width: 100% !important;
		height: 100% !important;
		overflow: hidden !important;
		/* КРИТИЧНО: НЕ блокируем touch-action на body - это блокирует скролл внутри корзины! */
		pointer-events: auto !important;
	}
	/* КРИТИЧНО: Разрешаем touch-action только внутри корзины */
	body.mini-cart-open .mini-cart-sidebar__body,
	body.mini-cart-open .mini-cart-sidebar__content,
	body.mini-cart-open .widget_shopping_cart_content,
	body.mini-cart-open .woocommerce-mini-cart {
		touch-action: pan-y !important;
		pointer-events: auto !important;
	}

	/* Mobile: корзина всегда 100svh - полная высота экрана */
	.mini-cart-sidebar__content {
		position: fixed !important;
		top: 0 !important;
		right: 0 !important;
		left: 0 !important;
		width: 100% !important;
		/* КРИТИЧНО: display: flex для правильной работы flex дочерних элементов */
		display: flex !important;
		flex-direction: column !important;
		/* КРИТИЧНО: Всегда 100svh - полная высота экрана */
		height: 100svh !important;
		max-height: 100svh !important;
		bottom: 0 !important;
	}

	/* Mobile: add bottom padding to checkout button so it doesn't stick to bottom nav */
	/* КРИТИЧНО: padding-bottom должен быть больше высоты нижней панели (15.385vw) чтобы кнопка была видна */
	.mini-cart-sidebar .woocommerce-mini-cart__buttons {
		padding-bottom: 18vw !important; /* Высота нижней панели (15.385vw) + отступ */
	}

	/* Mobile: the items list must scroll, footer must stay pinned to the bottom */
	/* КРИТИЧНО: footer находится внутри widget_shopping_cart_content, но ВНЕ woocommerce-mini-cart */
	/* Поэтому footer зафиксирован внизу через flex, а скроллируется только woocommerce-mini-cart */
	.mini-cart-sidebar .mini-cart-footer {
		flex: 0 0 auto !important; /* КРИТИЧНО: footer не растягивается, зафиксирован внизу */
		margin-top: auto !important; /* КРИТИЧНО: прижимает footer к низу */
		position: relative;
		/* КРИТИЧНО: z-index должен быть выше чем у нижней панели навигации (10000003) */
		z-index: 10000004 !important;
		background-color: #F3F3F3;
		width: 100%;
	}

	/* КРИТИЧНО: Правильная структура - body НЕ скроллируется, скроллируется woocommerce-mini-cart */
	.mini-cart-sidebar.is-open .mini-cart-sidebar__body,
	.mini-cart-sidebar__body {
		/* КРИТИЧНО: body НЕ скроллируется - это flex контейнер */
		flex: 1 !important;
		overflow: hidden !important; /* НЕ скроллируется */
		padding: 0 !important;
		display: flex !important;
		flex-direction: column !important;
		min-height: 0 !important;
		pointer-events: auto !important;
		touch-action: pan-y !important;
	}

	.mini-cart-sidebar__body .widget_shopping_cart_content {
		/* КРИТИЧНО: widget_shopping_cart_content - flex контейнер для списка и footer */
		display: flex !important;
		flex-direction: column !important;
		flex: 1 1 0% !important; /* КРИТИЧНО: 0% для правильной работы flex с overflow */
		min-height: 0 !important;
		overflow: hidden !important; /* НЕ скроллируется - скроллируется дочерний элемент */
		position: relative;
		width: 100% !important;
		pointer-events: auto !important;
		touch-action: pan-y !important;
	}

	.mini-cart-sidebar .woocommerce-mini-cart {
		/* КРИТИЧНО: woocommerce-mini-cart - скроллируемый список товаров */
		flex: 1 1 0% !important; /* КРИТИЧНО: 0% для правильной работы flex с overflow */
		min-height: 0 !important;
		/* КРИТИЧНО: Ограничиваем высоту чтобы список не растягивался на всю высоту */
		max-height: 100% !important;
		/* КРИТИЧНО: Делаем список скроллируемым - КРИТИЧНО для iOS использовать scroll вместо auto */
		overflow-y: scroll !important; /* scroll вместо auto для iOS */
		overflow-x: hidden !important;
		position: relative !important;
		pointer-events: auto !important;
		/* КРИТИЧНО для iOS скролла - ВСЕ эти свойства обязательны */
		-webkit-overflow-scrolling: touch !important;
		touch-action: pan-y !important;
		-webkit-transform: translateZ(0) !important;
		transform: translateZ(0) !important;
		will-change: scroll-position !important;
		overscroll-behavior-y: contain !important;
		/* КРИТИЧНО: Убираем все что может блокировать touch на iOS */
		-webkit-user-select: none !important;
		user-select: none !important;
		-webkit-tap-highlight-color: transparent !important;
		-webkit-touch-callout: none !important;
		/* КРИТИЧНО: Гарантируем что элемент может получать touch-события */
		-webkit-touch-callout: none !important;
		/* КРИТИЧНО: Убираем pointer-events: none если он был установлен где-то выше */
		pointer-events: auto !important;
		/* КРИТИЧНО: Гарантируем что элемент имеет правильный z-index для получения событий */
		z-index: 1 !important;
	}

	/* Remove extra margin under the checkout button on mobile */
	.mini-cart-sidebar .woocommerce-mini-cart__buttons .button {
		margin-bottom: 0 !important;
	}

	/* Mobile: hide delivery notice block in mini-cart */
	.mini-cart-sidebar .mini-cart-delivery {
		display: none !important;
	}

	.mini-cart-sidebar__close {
		width: 10.256vw;
		height: 10.256vw;
	}

	.mini-cart-sidebar__close svg {
		width: 5.333vw;
		height: 5.333vw;
	}

	.mini-cart-sidebar__title {
		font-size: 8.718vw;
	}

	/* Мини-корзина на мобильных: на весь экран и с большими внутренними отступами */
	.mini-cart-sidebar__content {
		width: 100vw;
		display: flex;
		flex-direction: column;
		/* Critical for iOS: use fixed positioning to prevent gap when page is scrolled */
		position: fixed !important;
		top: 0 !important;
		right: 0 !important;
		left: 0 !important;
		/* height and bottom will be set by body:has(.site-header--alt) rule if bottom nav exists */
		/* Default: full height if no bottom nav */
		height: 100svh;
		max-height: 100svh;
		bottom: 0;
	}

	.mini-cart-sidebar__header {
		padding: 5.128vw;
	}

	.mini-cart-sidebar .woocommerce-mini-cart {
		padding: 0 5.128vw 5.128vw 5.128vw;
	}

	.mini-cart-sidebar .woocommerce-mini-cart__total {
		padding: 5.128vw;
	}

	.mini-cart-sidebar .woocommerce-mini-cart__buttons,
	.mini-cart-sidebar .mini-cart-delivery {
		padding: 0 5.128vw 5.128vw 5.128vw;
	}

	/* Товары в мини-корзине — увеличенные размеры под палец */
	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__image img {
		width: 25.641vw;
		height: 24.103vw;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__name {
		/* На мобильном уменьшаем шрифт на ~2px относительно предыдущего значения */
		font-size: 3.1vw;
		line-height: 1.15 !important;
		/* Prevent overlap with absolutely positioned price */
		display: block;
		/* КРИТИЧНО: Уменьшаем padding-right, чтобы дать больше места для названия */
		padding-right: 15vw;
	}
	
	/* КРИТИЧНО: Убеждаемся, что ссылка внутри названия наследует line-height */
	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__name a {
		line-height: inherit !important;
		display: inline;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__name::after {
		font-size: 3.1vw;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__controls-row {
		/* Делаем кнопку удаления ближе к калькулятору количества */
		gap: 3.333vw;
		padding-right: 0;
		margin-top: 16px;
	}

	/* На мобильном quantity слева, delete справа, оба внутри ширины ряда */
	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__controls-row .mini-cart-item__quantity-wrapper {
		/* Делаем калькулятор ещё шире (~80% ряда), чтобы почти прилегал к кнопке удаления */
		flex: 0 1 80%;
		width: auto;
		max-width: 80%;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__quantity-wrapper {
		/* Keep enough space for the remove button so controls don't overlap */
		width: auto;
		flex: 0 1 80%;
		height: 10.256vw;
		min-height: 10.256vw;
		max-height: 10.256vw;
		padding: 0 2.051vw;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__quantity-button {
		width: 8.205vw;
		height: 8.205vw;
		min-width: 8.205vw;
		min-height: 8.205vw;
		font-size: 4.1vw;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__quantity-value {
		font-size: 3.2vw;
		min-width: 8vw;
		padding: 0 2.051vw;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__price,
	.mini-cart-sidebar .mini-cart-total__price {
		/* На мобильном уменьшаем шрифт на ~2px */
		font-size: 3.1vw;
		line-height: 100% !important;
	}

	.mini-cart-sidebar .mini-cart-total__label {
		font-size: 3.59vw;
	}

	.mini-cart-sidebar .woocommerce-mini-cart__buttons .button {
		font-size: 3.5vw;
		padding: 3.077vw 5.128vw;
	}

	.mini-cart-sidebar .mini-cart-delivery__icon {
		width: 4.102vw;
	}

	.mini-cart-sidebar .mini-cart-delivery__text {
		font-size: 3.2vw;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__remove {
		width: 10.256vw;
		height: 10.256vw;
	}

	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__remove-icon {
		width: 10.256vw;
		height: 10.256vw;
	}

	/* Shop Archive Hero Banner Mobile */
	.shop-archive-hero {
		position: relative;
		width: var(--container-width-mobile);
		max-width: var(--container-width-mobile);
		margin: 23.077vw auto 0 auto; /* отступ от верха и выравнивание по сетке */
		padding: 0; /* ширина контейнера уже учитывает "паддинги" сетки */
		overflow: hidden;
	}
	
	.shop-archive-hero__image-wrapper {
		width: 100%;
		height: 47.436vw; /* высота блока с фоткой */
		position: relative;
		margin: 0;
		padding: 0;
		overflow: hidden;
		border-radius: 1.333vw;
	}
	
	.shop-archive-hero__image {
		width: 100%;
		height: 100%;
		display: block;
		object-fit: cover;
		object-position: center center;
	}

	.shop-archive-hero__content {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		/* Контейнер полностью перекрывает изображение, хлебные крошки прижаты к самому низу */
		display: flex;
		align-items: flex-end;
		justify-content: flex-start;
		/* Без дополнительного отступа снизу — текст прямо у края изображения */
		padding: 0 5.333vw 0 5.333vw;
		box-sizing: border-box;
	}

	.shop-archive-hero__content .container {
		width: 100%;
		max-width: 100%;
		padding: 0;
	}

	.shop-archive-hero__breadcrumb {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.shop-archive-hero__breadcrumb .woocommerce-breadcrumb {
		color: #ffffff;
		margin-bottom: 0;
		font-size: 3.2vw;
		gap: 1.067vw;
	}

	.shop-archive-hero__breadcrumb .woocommerce-breadcrumb__link {
		color: rgba(255, 255, 255, 0.8);
	}

	.shop-archive-hero__breadcrumb .woocommerce-breadcrumb__link:hover {
		color: #ffffff;
	}

	.shop-archive-hero__breadcrumb .woocommerce-breadcrumb__current {
		color: #ffffff;
	}

	.shop-archive-hero__breadcrumb .woocommerce-breadcrumb__icon {
		filter: brightness(0) invert(1);
		width: 1.5vw; /* было 2.133vw -> 1.7vw, сейчас еще ~10% меньше */
		height: auto;
	}

	.shop-archive-content {
		margin-top: 0;
		padding: 0;
		margin-bottom: 20px; /* меньший отступ снизу каталога до футера на телефоне */
	}

	.shop-archive-layout {
		display: flex;
		gap: 0;
		flex-direction: column;
		/* минимальный отступ под hero на телефоне, как в карточке товара */
		margin-top: 5.128vw;
	}

	.shop-archive-layout .woocommerce-sidebar,
	.shop-archive-layout aside,
	.shop-archive-layout .widget-area {
		display: none;
	}

	.shop-archive-layout .woocommerce-products-header {
		display: none;
	}

	/* Скрываем стандартные хлебные крошки WooCommerce на странице каталога */
	.shop-archive-content .woocommerce-breadcrumb {
		display: none;
	}

	/* Mobile Product Card Styles */
	ul.products {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important; /* 2 товара в ряд */
		gap: 2.667vw !important;
		list-style: none !important;
		margin: 0 !important;
		padding: 0 !important;
		width: 100% !important;
		box-sizing: border-box !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	ul.products.columns-4 li.product {
		width: calc((100% - 2.667vw) / 2) !important;
		margin: 0 !important;
		padding: 0 !important;
		min-width: 0 !important;
		box-sizing: border-box !important;
		position: relative !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	/* Product cards grid - 2 columns - правильная сетка для всех страниц */
	ul.products:not(.single-product__related-wrapper):not(.swiper-wrapper) {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 2.667vw !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important; /* как в .single-product__related-wrapper */
		padding: 0 !important;
		list-style: none !important;
		box-sizing: border-box !important;
		overflow-x: hidden !important;
		overflow-y: visible !important;
	}

	/* Контейнер для товаров - ограничиваем ширину как на главной */
	.woocommerce .container ul.products:not(.single-product__related-wrapper):not(.swiper-wrapper),
	.woocommerce-page .container ul.products:not(.single-product__related-wrapper):not(.swiper-wrapper),
	.container ul.products:not(.single-product__related-wrapper):not(.swiper-wrapper) {
		max-width: 100% !important;
		width: 100% !important;
		margin: 0 !important;
		overflow-x: hidden !important;
	}

	/* Отступы для родительских контейнеров товаров */
	.woocommerce .site-main > .container,
	.woocommerce-page .site-main > .container,
	.woocommerce .content-area > .container,
	.woocommerce-page .content-area > .container {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	/* Отступы для контейнера перед товарами */
	.woocommerce .site-main > .container > *:first-child:not(ul.products),
	.woocommerce-page .site-main > .container > *:first-child:not(ul.products),
	.woocommerce .content-area > .container > *:first-child:not(ul.products),
	.woocommerce-page .content-area > .container > *:first-child:not(ul.products) {
		margin-bottom: 0 !important;
	}

	/* Отступы для контейнера после товаров */
	.woocommerce .site-main > .container > ul.products:not(.single-product__related-wrapper):not(.swiper-wrapper) + *,
	.woocommerce-page .site-main > .container > ul.products:not(.single-product__related-wrapper):not(.swiper-wrapper) + *,
	.woocommerce .content-area > .container > ul.products:not(.single-product__related-wrapper):not(.swiper-wrapper) + *,
	.woocommerce-page .content-area > .container > ul.products:not(.single-product__related-wrapper):not(.swiper-wrapper) + * {
		margin-top: 0 !important;
	}

	/* Правильная ширина для сетки 2 колонки */
	ul.products:not(.single-product__related-wrapper):not(.swiper-wrapper).columns-4 li.product,
	ul.products:not(.single-product__related-wrapper):not(.swiper-wrapper).columns-2 li.product,
	ul.products:not(.single-product__related-wrapper):not(.swiper-wrapper).columns-3 li.product {
		/* Карточка должна занимать 100% своей колонки грида */
		width: 100% !important;
	}

	/* Убираем ограничения ширины у контейнеров для товаров */
	.woocommerce .site-main,
	.woocommerce .content-area,
	.woocommerce-page .site-main,
	.woocommerce-page .content-area {
		width: 100% !important;
		max-width: 100vw !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		overflow-x: hidden !important;
	}

	.woocommerce .container,
	.woocommerce-page .container {
		width: var(--container-width-mobile) !important;
		max-width: var(--container-width-mobile) !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		margin-left: auto !important;
		margin-right: auto !important;
		box-sizing: border-box !important;
		overflow-x: hidden !important;
	}

	/* Контейнер каталога под hero без дополнительных внутренних отступов */
	.shop-archive-content > .container {
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box !important;
	}

	ul.products:not(.single-product__related-wrapper):not(.swiper-wrapper) li.product {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		box-sizing: border-box !important;
		overflow-x: hidden !important;
	}

	li.product .product-card,
	.product-card {
		padding: 2.667vw !important;
		border: 1px solid rgba(48, 48, 48, 0.1) !important;
		border-radius: 1.333vw !important;
		background-color: rgba(255, 255, 255, 0.4) !important;
		box-sizing: border-box !important;
		width: 100% !important;
		max-width: 100% !important;
		height: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		position: relative !important;
		overflow: visible !important;
		overflow-x: hidden !important;
		overflow-y: visible !important;
		min-width: 0 !important;
	}

	.product-card__image-wrapper {
		width: 100% !important;
		/* Прямоугольные фото: высота ~21.867vw, ширина 100%, без обрезания */
		height: 21.867vw !important;
		min-height: 21.867vw !important;
		max-height: 21.867vw !important;
		margin-top: 0 !important;
		margin-bottom: 5.333vw !important;
		border-radius: 1.333vw !important;
		position: relative !important;
		background-color: rgba(243, 243, 243, 0.5) !important;
		will-change: auto;
		order: 1 !important;
		flex-shrink: 0 !important;
		z-index: 1 !important;
		overflow: hidden !important;
	}

	.product-card__image-wrapper img,
	.product-card__image-wrapper .attachment-woocommerce_thumbnail {
		width: 100% !important;
		height: 100% !important;
		/* Не обрезаем фото, просто вписываем внутрь прямоугольника */
		object-fit: contain !important;
		border-radius: 1.333vw !important;
		display: block !important;
	}

	.product-card__image-wrapper .onsale {
		display: none;
	}

	/* Бейдж "Акція" вверху справа на фото (мобильная версия) */
	.product-card__badge-wrapper {
		position: absolute !important;
		top: 2.133vw !important;
		right: 2.133vw !important;
		z-index: 10 !important;
		display: block !important;
		margin: 0 !important;
		order: 0 !important;
		width: auto !important;
		background-color: #C91114 !important;
		color: #ffffff !important;
		font-family: 'Inter Tight', sans-serif;
		font-weight: 500;
		font-style: normal;
		font-size: 2.4vw; /* ~9px на мобильных */
		line-height: 100%;
		letter-spacing: -0.03em; /* -3% */
		vertical-align: middle;
		padding: 1.067vw 1.6vw; /* Чуть больше: ~4px сверху/снизу, ~6px по бокам */
		border-radius: 999px; /* Максимальное скругление */
		text-transform: capitalize !important;
		box-sizing: border-box;
	}

	.product-card__badge-wrapper * {
		background-color: transparent !important;
		color: inherit !important;
		font-family: inherit !important;
		font-size: inherit !important;
		font-weight: inherit !important;
		font-style: inherit !important;
		line-height: inherit !important;
		letter-spacing: inherit !important;
		vertical-align: inherit !important;
		text-transform: inherit !important;
		padding: 0 !important;
		margin: 0 !important;
		border: none !important;
	}

	.product-card__badge-wrapper .onsale {
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
		font-weight: 600;
		font-size: 2.8vw; /* Уменьшен с 3.2vw */
		line-height: 100%;
		letter-spacing: -0.03em;
		padding: 2.133vw 2.933vw;
		margin: 0;
		background-color: #C91114 !important;
		color: #ffffff !important;
		border-radius: 0.8vw;
		text-transform: none !important; /* Без преобразования текста */
		display: inline-block;
		box-sizing: border-box;
		position: static;
	}

	.product-card__content {
		padding: 0 !important;
		gap: 0 !important;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		min-width: 0 !important;
		overflow: visible !important;
		overflow-x: hidden !important;
		overflow-y: visible !important;
		order: 3 !important;
		position: relative !important;
		z-index: 3 !important;
		width: 100% !important;
		max-width: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		flex: 1 !important;
		justify-content: flex-start !important; /* Изменено с space-between на flex-start для правильной работы margin-top: auto */
		min-height: 0 !important;
		height: 100% !important; /* КРИТИЧНО: Для правильной работы margin-top: auto */
	}

	/* Убираем горизонтальный скролл у всех элементов карточки */
	.product-card * {
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	.product-card__title-wrapper,
	.product-card__price-wrapper,
	.product-card__button-wrapper {
		overflow-x: hidden !important;
		overflow-y: visible !important; /* Prevent vertical scrolling on price wrapper */
		max-width: 100% !important;
		touch-action: manipulation !important; /* Prevent touch scrolling on price */
	}

	.product-card__title-price-wrapper {
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;
		gap: 0 !important;
		margin-bottom: 0 !important; /* Убираем margin-bottom, отступ будет через gap или margin-top цены */
		min-width: 0;
		flex: 1 1 0% !important; /* КРИТИЧНО: flex: 1 1 0% вместо auto для правильной работы margin-top: auto */
		order: 1 !important;
		min-height: 0 !important; /* Allow shrinking */
	}

	.product-card__title-wrapper {
		flex: 1;
		min-width: 0;
		overflow: hidden;
	}

	.product-card__title-wrapper .woocommerce-loop-product__title {
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
		font-weight: 600;
		/* На мобильных уменьшаем размер до ~11.5px (при ширине 390px это примерно 2.95vw) */
		font-size: 2.95vw !important;
		line-height: 1.2;
		letter-spacing: -0.03em;
		vertical-align: middle;
		color: #303030;
		margin: 0;
		margin-bottom: 0 !important;
		padding: 0;
		display: block;
		/* Мобайл: тоже не делим слова дефисами, перенос только по пробелам (жёстко отключаем авто‑перенос) */
		word-wrap: normal !important;
		overflow-wrap: normal !important;
		word-break: normal !important;
		hyphens: none !important;
		-webkit-hyphens: none !important;
		-ms-hyphens: none !important;
		min-width: 0;
	}

	.product-card__unit {
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
		font-weight: 600;
		font-size: 2.667vw !important;
		line-height: 1.2;
		letter-spacing: -0.03em;
		vertical-align: middle;
		color: rgba(48, 48, 48, 0.4);
		white-space: nowrap;
	}

	/* Скрываем цену для мобильных внутри title-price-wrapper */
	.product-card__title-price-wrapper .product-card__price-wrapper--desktop {
		display: none !important; /* Скрываем на мобильных */
	}
	
	/* Дополнительно скрываем десктопную цену на мобильных */
	.product-card__price-wrapper--desktop {
		display: none !important; /* Скрываем на мобильных */
	}
	
	/* Объединяем цену и кнопку в один контейнер для фиксации внизу */
	.product-card__price-button-wrapper {
		display: flex !important;
		flex-direction: column !important;
		flex-shrink: 0 !important;
		margin-top: auto !important; /* КРИТИЧНО: Прижимаем цену и кнопку вниз */
		width: 100% !important;
		order: 2 !important; /* После названия */
		gap: 0 !important;
	}
	
	/* Показываем цену на уровне content для мобильных */
	.product-card__price-wrapper--mobile {
		flex-shrink: 0 !important;
		margin-top: 5.333vw !important; /* Отступ от названия до цены */
		margin-bottom: 5.333vw !important; /* Отступ от цены до кнопки */
		margin-left: 0 !important;
		margin-right: 0 !important;
		text-align: left !important;
		width: 100% !important;
		display: flex !important;
		align-items: baseline !important;
		justify-content: flex-start !important;
		gap: 1.6vw !important;
		white-space: nowrap;
		/* Prevent scrolling on price wrapper */
		overflow: visible !important;
		/* КРИТИЧНО: Разрешаем pan-y для скролла корзины */
		touch-action: pan-y !important; /* Разрешаем вертикальный скролл корзины */
		-webkit-overflow-scrolling: auto !important;
	}
	
	/* КРИТИЧНО: В корзине ВСЕ элементы должны разрешать pan-y для скролла */
	.mini-cart-sidebar .product-card__price-wrapper,
	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__price,
	.mini-cart-sidebar .woocommerce-mini-cart-item .mini-cart-item__price-wrapper {
		touch-action: pan-y !important; /* Разрешаем вертикальный скролл корзины */
	}

	.product-card__title-wrapper {
		order: 1 !important;
		width: 100% !important;
	}

	.product-card__price-wrapper .price {
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
		font-weight: 600;
		font-size: 4.8vw !important;
		line-height: 100%;
		letter-spacing: -0.03em;
	}

	/* Цена со скидкой - новая цена (жирная, темная) - мобильная */
	.product-card__price-wrapper .price ins {
		text-decoration: none;
		font-weight: 600;
		color: #303030;
		display: inline;
		vertical-align: baseline;
	}

	/* Цена со скидкой - старая цена (зачеркнутая, серая) - мобильная */
	.product-card__price-wrapper .price del {
		opacity: 1;
		font-weight: 400;
		color: #999999;
		text-decoration: line-through;
		margin-right: 0.35em;
		display: inline;
		vertical-align: baseline;
	}

	/* Выравнивание внутренних элементов цен - мобильная */
	.product-card__price-wrapper .price ins .woocommerce-Price-amount,
	.product-card__price-wrapper .price ins bdi,
	.product-card__price-wrapper .price del .woocommerce-Price-amount,
	.product-card__price-wrapper .price del bdi {
		vertical-align: baseline;
		line-height: inherit;
	}

	.product-card__description {
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif;
		font-weight: 600;
		font-size: 3.2vw;
		line-height: 100%;
		letter-spacing: -0.03em;
		vertical-align: middle;
		color: #303030;
		margin: 0;
		padding: 0;
	}

	.product-card__button-wrapper {
		margin-top: 0 !important; /* Отступ уже задан через margin-bottom цены */
		margin-bottom: 0 !important;
		width: 100% !important;
		order: 1 !important; /* Внутри price-button-wrapper */
		position: relative !important;
		z-index: 4 !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 0 !important;
		flex-shrink: 0 !important;
	}

	/* Кнопка в карточке товара (в т.ч. "Читати далі") - как на странице товара */
	.product-card__button-wrapper a,
	.product-card__button-wrapper .button {
		width: 100% !important;
		height: 10.667vw !important;
		min-height: 10.667vw !important;
		max-height: 10.667vw !important;
		padding: 2.667vw 5.333vw !important;
		font-size: 3.2vw !important;
		margin: 0 !important;
		box-sizing: border-box !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.product-card__button-wrapper .add_to_cart_button {
		width: 100% !important;
		height: 10.667vw !important;
		min-height: 10.667vw !important;
		max-height: 10.667vw !important;
		padding: 2.667vw 5.333vw !important;
		font-size: 3.2vw !important;
		margin: 0 !important;
		box-sizing: border-box !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
	}

	/* Скрываем кнопку когда показывается quantity-wrapper */
	.product-card__button-wrapper .add_to_cart_button[style*="display: none"] {
		display: none !important;
	}

	.product-card__button-wrapper:has(.product-card__quantity-wrapper.show) .add_to_cart_button,
	.product-card__button-wrapper:has(.product-card__quantity-wrapper[style*="display: flex"]) .add_to_cart_button {
		display: none !important;
	}

	/* Скрываем "Переглянути кошик / View cart" когда показан quantity-wrapper */
	.product-card__button-wrapper:has(.product-card__quantity-wrapper.show) .added_to_cart,
	.product-card__button-wrapper:has(.product-card__quantity-wrapper[style*="display: flex"]) .added_to_cart {
		display: none !important;
	}

	/* Всегда скрываем "Переглянути кошик / View cart" в карточке товара (заменяем на quantity selector) */
	.product-card__button-wrapper .added_to_cart {
		display: none !important;
	}

	/* Убеждаемся, что quantity-wrapper скрыт по умолчанию */
	.product-card__button-wrapper .product-card__quantity-wrapper:not(.show):not([style*="display: flex"]) {
		display: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
	}

	.product-card__quantity-wrapper {
		width: 100% !important;
		min-height: 10.667vw !important;
		height: 10.667vw !important;
		padding: 0 1.333vw !important;
		box-sizing: border-box !important;
		display: none !important;
		align-items: center !important;
		opacity: 0 !important;
		visibility: hidden !important;
	}

	.product-card__quantity-wrapper.show,
	.product-card__quantity-wrapper[style*="display: flex"] {
		display: flex !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	.product-card__button-wrapper .add_to_cart_button {
		display: flex !important;
	}

	.product-card__button-wrapper .add_to_cart_button[style*="display: none"] {
		display: none !important;
	}

	.product-card__quantity-wrapper .quantity-button {
		width: 8vw !important;
		height: 8vw !important;
		min-width: 8vw !important;
		min-height: 8vw !important;
		max-width: 8vw !important;
		max-height: 8vw !important;
		flex-shrink: 0 !important;
	}

	.product-card__quantity-wrapper .quantity-input-wrapper {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		padding: 0 1.333vw !important;
		gap: 0.267vw !important;
		flex: 1 !important;
		min-width: 0 !important;
		white-space: nowrap !important;
	}

	.product-card__quantity-wrapper .quantity-button__icon {
		width: 4.267vw !important;
		height: 4.267vw !important;
	}

	.product-card__quantity-wrapper .product-card__quantity-input,
	.product-card__quantity-wrapper input.qty {
		width: auto !important;
		min-width: 0 !important;
		max-width: 3ch !important;
		flex: 0 0 auto !important;
		border: none !important;
		background: transparent !important;
		padding: 0 !important;
		margin: 0 !important;
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 600 !important;
		font-size: 3.2vw !important;
		line-height: 1 !important;
		color: #4DBD56 !important;
		text-align: center !important;
		-moz-appearance: textfield !important;
		appearance: textfield !important;
		display: inline-block !important;
	}

	.product-card__quantity-wrapper input.qty::-webkit-outer-spin-button,
	.product-card__quantity-wrapper input.qty::-webkit-inner-spin-button {
		-webkit-appearance: none !important;
		margin: 0 !important;
	}

	.product-card__quantity-wrapper .quantity-unit {
		font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
		font-weight: 600 !important;
		font-size: 3.2vw !important;
		line-height: 1 !important;
		color: #4DBD56 !important;
		margin: 0 !important;
		padding: 0 !important;
		white-space: nowrap !important;
		flex-shrink: 0 !important;
	}
}

/* Убираем тень у всех кнопок добавления в корзину */
.add_to_cart_button,
.ajax_add_to_cart,
[class*="add_to_cart"],
a.add_to_cart_button,
a.ajax_add_to_cart,
.button.add_to_cart_button,
.button.ajax_add_to_cart {
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
}

.add_to_cart_button:hover,
.ajax_add_to_cart:hover,
[class*="add_to_cart"]:hover,
a.add_to_cart_button:hover,
a.ajax_add_to_cart:hover,
.button.add_to_cart_button:hover,
.button.ajax_add_to_cart:hover,
.add_to_cart_button:focus,
.ajax_add_to_cart:focus,
[class*="add_to_cart"]:focus,
a.add_to_cart_button:focus,
a.ajax_add_to_cart:focus,
.button.add_to_cart_button:focus,
.button.ajax_add_to_cart:focus {
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
}

/* Переопределение бейджа "Акція" на странице товара - максимальная специфичность */
body.woocommerce .single-product__sale-badge-wrapper {
	position: absolute !important;
	top: 0.833vw !important;
	right: 0.833vw !important;
	z-index: 10 !important;
	pointer-events: none !important;
}

body.woocommerce .single-product__sale-badge-wrapper .onsale,
body.woocommerce .single-product__image-wrapper .onsale,
body.woocommerce .single-product__image-wrapper .woocommerce-product-gallery .onsale,
body.woocommerce .single-product__image-wrapper span.onsale,
body.woocommerce .single-product__content .onsale,
body.woocommerce .single-product .single-product__image-wrapper .onsale,
.woocommerce .single-product__image-wrapper .onsale,
.single-product__image-wrapper .woocommerce-product-gallery .onsale {
	position: relative !important;
	top: 0 !important;
	right: 0 !important;
	z-index: 10 !important;
	display: block !important;
	background-color: #C91114 !important;
	color: #ffffff !important;
	font-family: 'Inter Tight', 'Inter', 'Segoe UI', Roboto, sans-serif !important;
	font-weight: 600 !important;
	font-style: normal !important;
	font-size: 0.729vw !important;
	line-height: 100% !important;
	letter-spacing: -0.03em !important;
	padding: 0.625vw 1.042vw !important;
	margin: 0 !important;
	border-radius: 999px !important;
	text-transform: capitalize !important;
	box-sizing: border-box !important;
	border: none !important;
	text-decoration: none !important;
	pointer-events: none !important;
}

@media (max-width: 1025px) {
	body.woocommerce .single-product__image-wrapper .onsale,
	body.woocommerce .single-product__image-wrapper .woocommerce-product-gallery .onsale,
	body.woocommerce .single-product__image-wrapper span.onsale,
	body.woocommerce .single-product__content .onsale,
	body.woocommerce .single-product .single-product__image-wrapper .onsale,
	.woocommerce .single-product__image-wrapper .onsale,
	.single-product__image-wrapper .woocommerce-product-gallery .onsale {
		top: 2.133vw !important;
		right: 2.133vw !important;
		font-size: 2.8vw !important;
		padding: 2.133vw 2.933vw !important;
	}

	body.woocommerce .single-product__sale-badge-wrapper {
		top: 2.133vw !important;
		right: 2.133vw !important;
	}
}



