	@charset "UTF-8";

	/*
	* Стили для новой версии хедера
	* Header v2 Styles
	*/


	.get-result-button {
		display: none;
	}



	.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading::after {
		top: 13px !important;
	}
	.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.added::after {
		margin-left: -1px !important;
	}



	/* ============================================
		ОБЩИЕ СТИЛИ HEADER
		============================================ */

	.header {
		overflow: visible;
		position: relative;
		width: 100%;
		position: absolute;
		z-index: 1000;
	}
	@media (max-width: 767px) {
		.header {
			position: static;
		}
	}

	/* ============================================
		Подгон страниц других под шапку
		============================================ */

	.page-template-template-page .bareadcrumbs, .archive .breadcrumbs, .single .breadcrumbs {
		padding-top: 95px !important;
	}

	.single .breadcrumbs { 
		padding-top: 65px !important;
	}

	.single .content-page img {
		max-width: 100% !important;
		height: auto !important;
	}
	
	/* Переопределение для single-product - хлебные крошки от шапки 23px */
	body.single-product .breadcrumbs,
	body.single-product .woocommerce-breadcrumb,
	body.single-product nav.woocommerce-breadcrumb {
		padding-top: 65px !important;
	}
	
	/* Переопределение для search - хлебные крошки */
	body.search section.bareadcrumbs,
	body.blog section.bareadcrumbs,
	body.category section.bareadcrumbs,
	body.tag section.bareadcrumbs,
	body.date section.bareadcrumbs,
	body.author section.bareadcrumbs {
		padding-top: 130px !important;
	}
	.archive .header + .breadcrumbs {
		padding-top: 130px !important;
	}
	.archive .container .breadcrumbs {
		padding-top: 23px !important;
	}
	@media (max-width: 767px) {
		.page-template-template-page .bareadcrumbs, .archive .breadcrumbs, .single .breadcrumbs,
		body.blog section.bareadcrumbs,
		body.category section.bareadcrumbs,
		body.tag section.bareadcrumbs,
		body.date section.bareadcrumbs,
		body.author section.bareadcrumbs {
			padding-top: 0px !important;
		}
		
		/* Для single-product показываем breadcrumbs даже на мобильных */
		body.single-product .woocommerce-breadcrumb {
			display: flex !important;
			padding-top: 23px !important;
		}
	}


	/* ============================================
		UTILITY BAR - Верхняя утилитарная панель
		============================================ */

	.header .header-utility-bar {
		padding: 10px 0;
		overflow: visible;
		width: 100%;
	}

	@media (max-width: 767px) {
		.header .header-utility-bar {
			display: none;
		}
	}


	.header .header-utility-bar .container {
		width: 100%;
		max-width: 1280px;
		margin: 0 auto;
		padding: 0 20px;
		box-sizing: border-box;
	}

	.header .utility-bar-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
		overflow: visible;
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}

	.header .utility-bar-left {
		display: flex;
		align-items: center;
		gap: 20px;
		overflow: visible;
	}

	.header .utility-bar-right {
		display: flex;
		align-items: center;
		gap: 20px;
	}


	/* ============================================
		LOCATION SELECTOR - Селектор города
		============================================ */

	.header .location_selector {
		position: relative;
		display: flex;
		align-items: center;
		overflow: visible;
	}

	.header .city_selector_btn {
		display: flex;
		align-items: center;
		gap: 8px;
		background: none;
		border: none;
		padding: 0;
		cursor: pointer;
		font-family: inherit;
		font-size: 18px;
		color: #000;
		transition: opacity 0.2s ease;
	}

	.header .city_selector_btn:hover {
		opacity: 0.8;
	}

	.header .location_icon {
		width: 18px;
		height: 18px;
		display: block;
	}

	.header .current_city {
		font-size: 16px;
		line-height: 100%;
		color: #000;
		font-weight: 600;
		font-family: Nunito, sans-serif;
	}

	.header .city_selector_btn .chevron_icon {
		width: 12px;
		height: 10px;
	}

	/*
	.city_selector_btn.active .chevron_icon {
		transform: rotate(180deg);
	}
	*/

	/* Выпадающее меню городов */
	.header .city_dropdown {
		position: absolute;
		top: 100%;
		left: 0;
		width: 106px;
		opacity: 0;
		visibility: hidden;
		transform: translateY(0);
		transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
		z-index: 10000;
		overflow: visible;
		padding-top: 8px;
		margin-top: 0;
	}

	.header .city_dropdown.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.header .city_list {
		list-style: none;
		margin: 0;
		padding: 20px;
		background-color: #fff;
		border-radius: 8px;
		box-shadow: 0 0px 6px rgba(0, 0, 0, 0.15);
		display: flex;
		flex-direction: column;
		gap: 25px;
	}

	.header .city_link {
		display: block;
		padding: 0;
		color: #1B1C1E;
		text-decoration: none;
		font-size: 16px;
		font-weight: 600;
		font-family: Nunito, sans-serif;
		line-height: 100%;
		transition: background-color 0.2s ease;
	}

	/*
	.city_link_current {
		display: block;
		padding: 12px 20px;
		color: #000;
		font-size: 18px;
		line-height: 1.4;
		cursor: default;
	}
	*/

	.header .city_item.active .city_link,
	.header .city_item.active .city_link_current {
		font-weight: 600;
	}


	/* ============================================
		UTILITY NAVIGATION - Утилитарная навигация
		============================================ */

	.header .utility-nav {
		display: flex;
		align-items: center;
		gap: 15px;
		margin-left: 100px;
	}

	.header .utility_nav_list {
		display: flex;
		align-items: center;
		gap: 30px;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.header .utility_nav_list li {
		margin: 0;
		padding: 0;
	}

	.header .utility_nav_list a {
		color: #000000;
		text-decoration: none;
		font-size: 14px;
		font-weight: 400;
		font-family: Nunito, sans-serif;
		line-height: 100%;
		letter-spacing: 0%;
		transition: opacity 0.2s ease;
	}

	.header .utility_nav_list li.sale a {
		color: #FA820A;
	}

	.header .utility_nav_list li.sale a::after {
		content: '';
		display: inline-block;
		width: 16px;
		height: 16px;
		background-image: url('/wp-content/themes/rcld/assets/images/percent.svg');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-left: 8px;
		vertical-align: middle;
	}


	/* ============================================
		LANGUAGE SELECTOR - Переключатель языков
		============================================ */

	.header .language_selector {
		position: relative;
		display: flex;
		align-items: center;
		overflow: visible;
		padding-left: 20px;
		border-left: 1px solid #149FA4;
		height: 20px;
	}

	.header .language_selector_btn {
		display: flex;
		align-items: center;
		gap: 5px;
		background: none;
		border: none;
		padding: 0;
		cursor: pointer;
	}

	.header .language_selector_btn .current_language {
		color: #3c959a;
		font-family: Nunito, sans-serif;
		font-size: 14px;
		font-weight: 600;
		line-height: 100%;
		letter-spacing: 0%;
	}

	/* Выпадающее меню языков */
	.header .language_dropdown {
		position: absolute;
		top: 100%;
		right: 0;
		opacity: 0;
		visibility: hidden;
		transform: translateY(0);
		transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
		z-index: 10000;
		overflow: visible;
		padding-top: 8px;
		margin-top: 0;
	}

	.header .language_dropdown.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.header .language_list {
		list-style: none;
		margin: 0;
		padding: 10px;
		background-color: #fff;
		border-radius: 8px;
		box-shadow: 0 0px 6px rgba(0, 0, 0, 0.15);
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.header .language_item {
		margin: 0;
	}

	.header .language_link {
		display: block;
		padding: 0;
		color: #149FA4; /* Figma green */
		text-decoration: none;
		font-family: Nunito, sans-serif;
		font-weight: 600; /* SemiBold */
		font-size: 14px;
		line-height: 100%;
		letter-spacing: 0;
	}


	/* ============================================
		PHONE INFO - Информация о телефоне
		============================================ */

	.header .phone-info {
		display: flex;
	}

	.header .phone-info span {
		color: #000000;
		font-family: Nunito, sans-serif;
		font-weight: 300;
		font-size: 14px;
		line-height: 15px;
		text-align: right;
		vertical-align: middle;
	}

	.header .phone-info a {
		color: #000;
		font-family: Nunito, sans-serif;
		font-weight: 800;
		font-size: 20px;
		line-height: 100%;
		letter-spacing: 0%;
		text-align: right;
		vertical-align: middle;
		text-decoration: none;
		margin-left: 10px;
		display: flex;
		align-items: center;
	}


	/* ============================================
		MAIN NAVIGATION - Основная навигационная панель
		============================================ */

	.header .header-main-nav {
		padding: 15px 0;
		width: 100%;
		background-color: #fff;
		position: relative;
	}

	@media (max-width: 767px) {
		.header .header-main-nav {
			padding: 8px 0;
		}
	}

	.header .header-main-nav .container {
		display: flex;
		width: 100%;
		max-width: 1280px;
		margin: 0 auto;
		padding: 0 20px;
		box-sizing: border-box;
	}

	@media (max-width: 767px) {
		.header .header-main-nav .container {
			padding: 0 10px;
		}
	}

	.header .main-nav-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 61px;
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}

	.header .main-nav-left {
		display: flex;
		align-items: center;
		gap: 15px;
	}

	.header .main-nav-center {
		flex: 1;
		max-width: 600px;
	}

	.header .main-nav-right {
		display: flex;
		align-items: center;
		gap: 20px;
		flex: 1;
		justify-content: space-between;
	}


	/* ============================================
		LOGO - Логотип
		============================================ */

	.header .logo-brand {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.header .logo-image {
		height: 44px;
		width: auto;
	}

	.header .logo-image-mobile {
		height: 42px;
		width: auto;
		display: none;
	}
	@media (max-width: 767px) {
		.header .logo-image-mobile {
			display: block;
		}
		.header .logo-image {
			display: none;
		}
	}


	/* ============================================
		SEARCH BAR - Поисковая строка
		============================================ */

	.header .search-bar {
		flex: 1;
		min-width: 0;
		max-width: 600px;
		margin: 0 auto;
	}

	header .serch-block {
		position: relative;
		width: 100%;
		background: none;
		padding: 0px;
	}

	header .serch-field {
		position: relative;
		width: 100%;
		border: none;
		padding: 0px;
	}

	header .serch-field input {
		border-radius: 800px;
		padding: 10px 14px 10px 14px;
		background-color: #eef8f8;
		font-family: 'Nunito', sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 16px;
		line-height: 100%;
		letter-spacing: 0;
		color: #1B1C1E;
		vertical-align: middle;
		height: 44px;
	}

	@media (max-width: 767px) {
		.header .serch-field input {
			height: 36px;
			padding: 10px 13px 10px 13px;
			font-size: 14px;
			font-weight: 300;
		}
	}

	/* Скрытие крестика при hover и focus */
	header .serch-field input:hover::-webkit-search-cancel-button,
	header .serch-field input:focus::-webkit-search-cancel-button {
		display: none;
		-webkit-appearance: none;
	}

	header .serch-field input:hover::-ms-clear,
	header .serch-field input:focus::-ms-clear {
		display: none;
	}

	.serch-field > img {
		width: 18px;
		height: 18px;
		background: none;
		margin-right: 12px;
		margin-top: 7px;
		cursor: pointer;
	}

	@media (max-width: 767px) {
		.serch-field > img {
			margin-right: 2px;
			margin-top: 4px;
		}
	}


	/* ============================================
		QUICK SEARCH RESULTS - Быстрые результаты поиска (AJAX)
		============================================ */

	#search-results {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		opacity: 0;
		visibility: hidden;
		transform: translateY(0);
		transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
		z-index: 10000;
		overflow: visible;
		padding-top: 8px;
		margin-top: 10px;
	}

	@media (max-width: 550px) {
		#search-results {
			box-sizing: border-box;
		}
		
		#search-results:not(:empty) {
			box-sizing: border-box;
		}
	}

	#search-results:not(:empty) {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		list-style: none;
		margin: 0;
		padding: 10px 0px 15px 0px;
		background-color: #fff;
		border-radius: 8px;
		box-shadow: 0 0px 6px rgba(0, 0, 0, 0.15);
		display: flex;
		flex-direction: column;
		gap: 0;
		margin-top: 10px;
		width: 100%;
		box-sizing: border-box;
		z-index: 999;
	}

	.suggestion {
		padding: 8px 20px;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.suggestion-type {
		display: inline-block;
		padding: 0px 10px;
		background-color: #149FA4;
		color: #fff;
		font-family: 'Nunito', sans-serif;
		font-size: 11px;
		font-weight: 600;
		border-radius: 800px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		white-space: nowrap;
		flex-shrink: 0;
	}

	/* Прозрачность 70% для фона меток типов в быстром поиске */
	.suggestion-type-page,
	.suggestion-type-post {
		background-color: rgba(20, 159, 164, 0.7) !important;
	}

	.suggestion-type-product {
		background-color: #149FA4;
	}

	.suggestion > a {
		color: #1B1C1E;
		text-decoration: none;
		font-size: 16px;
		font-family: 'Nunito', sans-serif;
		font-weight: 400;
		line-height: 1.4;
		transition: color 0.2s ease;
		flex: 1;
	}

	.suggestion > a:hover {
		color: #149FA4;
	}

	.suggestion.no-results {
		padding: 20px;
		text-align: center;
		color: #666;
		font-family: 'Nunito', sans-serif;
		font-size: 14px;
	}

	@media (max-width: 767px) {
		.suggestion>a {
			font-size: 14px;
		}
	}


	/* ============================================
		HEADER ACTIONS - Действия в хедере (Login, Cart)
		============================================ */

	.header .header-actions {
		display: flex;
		align-items: center;
		gap: 20px;
	}

	.header .login-button,
	.header .get-result-button,
	.header .cart-icon {
		min-width: 42px;
		min-height: 42px;
		position: relative;
	}

	@media (max-width: 767px) {
		.header .login-button,
		.header .get-result-button,
		.header .cart-icon {
			min-width: 36px;
			min-height: 36px;
		}
	}

	.header .cart-icon a {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px 0px !important;
	}

	@media (max-width: 767px) {
		.header .cart-icon a {
			padding: 6px !important;
		}
	}

	.header .cart-icon img {
		height: 22px !important;
		width: auto !important;
	}

	header .login_btn {
		display: flex;
		align-items: center;
		gap: 10px;
		color: #1B1C1E;
		text-decoration: none;
		font-size: 16px;
		font-family: 'Nunito', sans-serif;
		font-weight: 400;
		line-height: 100%;
		letter-spacing: 0;
		padding: 10px 20px;
		border-radius: 800px;
		border: 1px solid #149FA433; /* 20% opacity of #149FA4 is 0.2 in alpha = #149FA433 */
	}

	@media (max-width: 767px) {
		.header .login_btn {
			padding: 6px !important;
		}
	}

	header .login_btn img {
		height: 22px;
		width: auto;
	}

	header .cart-link {
		align-items: center;
		padding: 10px 20px;
		border-radius: 800px;
		border: 1px solid #149FA433; /* 20% opacity of #149FA4 is 0.2 in alpha = #149FA433 */
	}

	header .cart-link img {
		height: 22px !important;
		width: auto !important;
	}

	.header .cart-count {
		position: absolute;
		top: 25px;
		right: 4px;
		width: 14px;
		height: 14px;
		background-color: #FA820A;
		border-radius: 50%;
		text-align: center;
		padding: 0px;
		color: #fff;
		font-size: 8px;
		font-family: 'Nunito', sans-serif;
		font-weight: 400;
		line-height: 1.8em !important;
	}

	@media (max-width: 767px) {
		.header .cart-count {
			top: 21px;
		}
	}


	/* ============================================
		MEGA MENU - Мегаменю
		============================================ */

	.header .mega_menu_dropdown {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		box-sizing: border-box;
		background: linear-gradient(360deg, rgba(60, 149, 154, 0.1) 0%, rgba(60, 149, 154, 0) 33.24%), #FFFFFF;
		border-top: 1px solid rgba(0, 0, 0, 0.03);
		border-radius: 0px 0px 40px 40px;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: all 0.3s ease;
		z-index: 1000;
		max-height: 0;
		overflow: hidden;
	}

	.header .mega_menu_dropdown.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		max-height: 1000px;
		overflow: visible;
	}

	.header .mega_menu_content {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 30px;
		padding: 40px 0;
	}

	.header .mega_menu_column {
		display: flex;
		flex-direction: column;
	}

	.header .mega_menu_title {
		font-family: 'Nunito', sans-serif;
		font-size: 20px;
		font-weight: 600;
		line-height: 30px;
		color: #149FA4;
		margin: 0 0 15px 0;
		padding-bottom: 7px;
		border-bottom: 0.9px solid rgba(20, 159, 164, 0.8);
	}

	.header .mega_menu_list {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.header .mega_menu_list li {
		margin-bottom: 12px;
	}

	.header .mega_menu_list a {
		display: block;
		color: #1B1C1E;
		text-decoration: none;
		font-family: 'Nunito', sans-serif;
		font-size: 16px;
		font-weight: 500;
		font-style: normal;
		line-height: 1;
		letter-spacing: 0;
		vertical-align: middle;
		transition: color 0.2s ease;
	}

	.header .mega_menu_list a:hover {
		color: #37383C;
	}

	.header .mega_menu_list .sale a {
		color: #FA820A;
	}

	.header .mega_menu_list .sale a::after {
		content: '';
		display: inline-block;
		width: 16px;
		height: 16px;
		background-image: url(/wp-content/themes/rcld/assets/images/percent.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-left: 8px;
		vertical-align: middle;
	}

	/* Social Icons in Mega Menu */
	.header .mega_menu_social {
		display: flex;
		gap: 20px;
		margin-top: 5px;
	}

	.header .social_icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		background: #149FA4;
		color: #fff;
		transition: all 0.3s ease;
		text-decoration: none;
	}

	/* Адаптивные стили для Шапки */
	@media (max-width: 1240px) {
		/* Исправление обрезания шапки на узких экранах */

		.header .mega_menu_content {
			padding-left: 20px;
			padding-right: 20px;
		}
	}

	@media (max-width: 1280px) {
		.header .mega_menu_content {
			grid-template-columns: repeat(3, 1fr);
		}
	}

	@media (max-width: 975px) {
		.header .main-nav-content {
			gap: 20px;
		}
	}

	@media (max-width: 945px) {
		.header .main-nav-right {
			gap: 10px;
		}
		.header .header-actions {
			gap: 10px;
		}
		.header .utility-nav {
			margin-left: 50px;
		}
	}

	@media (max-width: 900px) {
		.header .login_btn span {
			display: none;
		}
		.header .get_result span {
			display: none;
		}
		header .login_btn {
			padding: 10px;
		}
		header .get_result {
			min-width: 0px;
		}
		header .get_result>img {
			margin-left: 0px;
		}
		header .get_result {
			padding: 10px 10px;
		}
	}

	@media (max-width: 860px) {
		.header .utility-nav {
			margin-left: 20px;
		}
	}

	@media (max-width: 815px) {
		.header .utility-nav {
			margin-left: 5px;
		}
	}

	@media (max-width: 800px) {
		.header .utility-nav {
			margin-left: 5px;
		}
		.header .utility_nav_list {
			gap: 15px;
		}
	}

	@media (max-width: 767px) {
		.header .main-nav-content {
			gap: 10px;
		}
		header .get_result {
			padding: 6px;
		}
	}


	/* ============================================
		MENU TOGGLE - Кнопка переключения меню
		============================================ */

	@media (max-width: 767px) {
		.header .menu-button {
			display: none;
		}
	}

	.header .menu_toggle {
		display: flex;
		align-items: center;
		gap: 10px;
		background: none;
		border: 1px solid #149FA4;
		background-color: #149FA4;
		color: #fff;
		padding: 10px 20px;
		border-radius: 800px;
		font-size: 14px;
		font-weight: 400;
		cursor: pointer;
		transition: none;
		width: fit-content;
		height: fit-content;
	}

	.header .menu_toggle img {
		transition: none;
	}



	/* ============================================
		MOBILE MENU ICON - Иконка мобильного меню
		============================================ */


	.header .mobile-menu-icon {
		display: none;
	}
	@media (max-width: 767px) {
		.header .mobile-menu-icon {
			display: flex;
			align-items: center;
			justify-content: center;
		}
		.header .mobile-menu-icon button {
			border: none !important;
			padding: 0px !important;
			background: none !important;
		}
	}


	/* ============================================
		SEARCH RESULTS PAGE - Страница результатов поиска
		============================================ */

	.search-results-page {
		padding: 40px 0;
	}

	.search-results-page .container {
		max-width: 1280px;
		margin: 0 auto;
		padding: 0 20px;
	}

	.search-results-title {
		font-family: 'Nunito', sans-serif;
		font-size: 32px;
		font-weight: 700;
		color: #1B1C1E;
		margin-bottom: 30px;
		line-height: 1.2;
	}

	.search-results-list {
		display: flex;
		flex-direction: column;
		gap: 30px;
		margin-bottom: 40px;
	}

	.search-result-item {
		padding: 25px;
		background-color: #f8f9fa;
		border-radius: 8px;
		border: 1px solid #e9ecef;
		transition: box-shadow 0.3s ease;
	}

	.search-result-item:hover {
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

	.search-result-type {
		display: inline-block;
		padding: 0px 10px;
		background-color: #149FA4;
		color: #fff;
		font-family: 'Nunito', sans-serif;
		font-size: 12px;
		font-weight: 600;
		border-radius: 800px;
		margin-bottom: 12px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	/* Прозрачность 70% для фона меток типов на странице результатов поиска */
	.search-results-page .search-result-type-page,
	.search-results-page .search-result-type-post {
		background-color: rgba(20, 159, 164, 0.7) !important;
	}

	.search-results-page .search-result-type-product {
		background-color: #149FA4;
	}

	.search-result-title {
		font-family: 'Nunito', sans-serif;
		font-size: 24px;
		font-weight: 600;
		color: #1B1C1E;
		margin: 0 0 12px 0;
		line-height: 1.3;
	}

	.search-result-title a {
		color: #1B1C1E;
		text-decoration: none;
		transition: color 0.3s ease;
	}

	.search-result-title a:hover {
		color: #149FA4;
	}

	.search-result-excerpt {
		font-family: 'Nunito', sans-serif;
		font-size: 16px;
		line-height: 1.6;
		color: #666;
		margin-bottom: 15px;
	}

	.search-result-link {
		display: inline-block;
		color: #149FA4;
		font-family: 'Nunito', sans-serif;
		font-size: 14px;
		font-weight: 600;
		text-decoration: none;
		transition: opacity 0.3s ease;
	}

	.search-result-link:hover {
		opacity: 0.8;
		text-decoration: underline;
	}

	.no-search-results {
		padding: 40px 20px;
		text-align: center;
	}

	.no-search-results p {
		font-family: 'Nunito', sans-serif;
		font-size: 18px;
		color: #666;
		margin: 0;
	}

	/* Pagination Styles */
	.search-results-page .wp-pagenavi,
	.search-results-page .pagination {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
		margin-top: 40px;
	}

	.search-results-page .page-numbers {
		display: inline-block;
		padding: 8px 16px;
		font-family: 'Nunito', sans-serif;
		font-size: 16px;
		color: #1B1C1E;
		text-decoration: none;
		border: 1px solid #e9ecef;
		border-radius: 800px;
		transition: all 0.3s ease;
		min-width: 13px;
		text-align: center;
	}

	.search-results-page .page-numbers:hover,
	.search-results-page .page-numbers.current {
		background-color: #149FA4;
		color: #fff;
		border-color: #149FA4;
	}

	/* ============================================
		BLOG ARCHIVE — стрічка блогу (сітка карток)
		============================================ */

	.blog-archive-page {
		
	}

	.blog-archive-page .container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 20px;
	}

	.blog-archive-title {
		font-family: 'Nunito', sans-serif;
		font-size: 40px;
		font-weight: 700;
		color: #1B1C1E;
		margin-bottom: 30px;
		line-height: 1.3em;
	}

	.blog-archive-description {
		font-family: 'Nunito', sans-serif;
		font-size: 16px;
		line-height: 1.6;
		color: #666;
		margin-bottom: 30px;
		max-width: 720px;
	}

	.blog-archive-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
		margin-bottom: 40px;
	}

	.blog-card {
		display: flex;
		flex-direction: column;
		padding: 0;
		overflow: hidden;
		background-color: #ffffff;
		border-radius: 14px;
		border: none;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
		transition: box-shadow 0.3s ease;
	}

	.blog-card-media-link {
		display: block;
		text-decoration: none;
		color: inherit;
	}

	.blog-card-media {
		position: relative;
		aspect-ratio: 16 / 10;
		overflow: hidden;
		background-color: #e8ecef;
	}

	.blog-card-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	.blog-card-media-placeholder {
		width: 100%;
		height: 100%;
		min-height: 120px;
		background: linear-gradient(135deg, #e8ecef 0%, #dde3e6 100%);
	}

	.blog-card-body {
		padding: 22px 24px 20px;
		display: flex;
		flex-direction: column;
		flex: 1;
		gap: 12px;
	}

	.blog-card-footer {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		margin-top: auto;
		padding-top: 4px;
		gap: 12px;
	}

	.blog-card-date {
		font-family: 'Nunito', sans-serif;
		font-size: 13px;
		font-weight: 400;
		color: #b0b0b0;
	}

	.blog-card-title {
		font-family: 'Nunito', sans-serif;
		font-size: 20px;
		font-weight: 700;
		color: #333333;
		margin: 0;
		line-height: 1.35;
	}

	.blog-card-title a {
		color: #333333;
		text-decoration: none;
		transition: color 0.3s ease;
	}

	.blog-card-excerpt {
		font-family: 'Nunito', sans-serif;
		font-size: 15px;
		line-height: 1.55;
		color: #666666;
		margin: 0;
		flex: 1;
	}

	.blog-card-readmore {
		flex-shrink: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		border-radius: 50%;
		border: 2px solid #4fb0ae;
		color: #4fb0ae;
		text-decoration: none;
		transition: background-color 0.25s ease, color 0.25s ease;
	}

	.blog-card-readmore-icon::before {
		content: '\2192';
		font-size: 17px;
		font-weight: 500;
		line-height: 1;
		display: block;
	}

	.blog-archive-empty {
		padding: 40px 20px;
		text-align: center;
	}

	.blog-archive-empty p {
		font-family: 'Nunito', sans-serif;
		font-size: 18px;
		color: #666;
		margin: 0;
	}

	.blog-archive-page .wp-pagenavi,
	.blog-archive-page .pagination {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
		margin-top: 40px;
	}

	.blog-archive-page .page-numbers {
		display: inline-block;
		padding: 8px 16px;
		font-family: 'Nunito', sans-serif;
		font-size: 16px;
		color: #1B1C1E;
		text-decoration: none;
		border: 1px solid #e9ecef;
		border-radius: 800px;
		transition: all 0.3s ease;
		min-width: 13px;
		text-align: center;
	}

	.blog-archive-page .page-numbers:hover,
	.blog-archive-page .page-numbers.current {
		background-color: #149FA4;
		color: #fff;
		border-color: #149FA4;
	}

	@media (max-width: 991px) {
		.blog-archive-grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media (max-width: 575px) {
		.blog-archive-grid {
			grid-template-columns: 1fr;
		}

		.blog-archive-title {
			font-size: 30px;
		}
	}


	/* ============================================
		BREADCRUMBS - Хлебные крошки
		============================================ */

	section.breadcrumbs,
	section.bareadcrumbs {
		padding-top: 50px;
	}

	/* ============================================
		Main Page Styles
		============================================ */

	/* Общая обертка для слайдера и других секций */
	.home-hero-section {
		padding-top: 139px;
		padding-bottom: 50px;
		background: linear-gradient(180deg, rgba(60, 149, 154, 0.08), #fff), #FFFFFF;
	}
	@media (max-width: 767px) {
		.home-hero-section {
			padding-top: 15px;
			padding-bottom: 50px;
		}
	}

	/* Общая обертка для нижних секций */
	.home-bottom-section {
		padding-top: 50px;
		padding-bottom: 50px;
		background-color: #eef8f7;
	}
	@media (max-width: 767px) {
		.home-bottom-section {
			padding-top: 30px;
			padding-bottom: 30px;
		}
	}

	.home .slider_block {
		height: auto;
	}
	.home .slider_block .slider-wrap {
			max-width: 1280px;
			margin: 0 auto;
			padding-left: 15px;
			padding-right: 15px;
			box-sizing: border-box;
	}
	/* .home .slider_block - padding и background перенесены на .home-hero-section */

	.home .slider_block .main-info-slide {
		padding-right:20px;
		padding-left:20px;
		border-radius: 10px;
	}
	.home .slider_block .main-info-slide {
		padding-right: 20px;
		padding-left: 20px;
		border-radius: 10px;
	}
	.home .slider_block .no-image-slide {
		border-radius: 10px;
	}
	.home .slider_block img {
		border-radius: 10px;
		width: 100%;
		height: auto;
		display: block;
	}

	/* Стили для Splide.js слайдера */
	.home .slider_block .splide {
		width: 100%;
	}

	.home .slider_block .splide__track {
		width: 100%;
	}

	.home .slider_block .splide__list {
		width: 100%;
	}

	.home .slider_block .splide__slide {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		aspect-ratio: 1696 / 624;
		overflow: hidden;
		border-radius: 10px;
	}

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

	/* Стили для ссылки слайда */
	.home .slider_block .splide__slide-link {
		display: block;
		width: 100%;
		height: 100%;
		text-decoration: none;
		cursor: pointer;
	}

	.home .slider_block .splide__slide-link img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	/* Стили для стрелок слайдера */
	.home .slider_block .splide__arrow {
		width: 60px;
		height: 60px;
		flex: none;
		flex-grow: 0;
		background: rgba(255, 255, 255, 0.9);
		border: 1px solid rgba(20, 159, 164, 0.3);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 1;
		transition: all 0.3s ease;
	}

	.home .slider_block .splide__arrow:hover {
		background: rgba(255, 255, 255, 1);
		border-color: rgba(20, 159, 164, 0.5);
	}

	.home .slider_block .splide__arrow--prev {
		order: 0;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
	}

	.home .slider_block .splide__arrow--next {
		order: 1;
		right: 20px;
		top: 55%;
		transform: translateY(-50%);
	}

	.home .slider_block .splide__arrow svg {
		fill: #149FA4;
		width: 24px;
		height: 24px;
	}

	/* Скрытие стрелок на мобильных устройствах */
	@media (max-width: 767px) {
		.home .slider_block .splide__arrows {
			display: none !important;
		}
	}


	/* ============================================
		INFO BLOCK - Секция "О нас"
		============================================ */

	.info_block {
		padding: 50px 0;
	}

	.info_block .container {
		max-width: 1280px;
		margin: 0 auto;
		padding: 0 20px;
		box-sizing: border-box;
	}

	.info_block_container {
		display: grid;
		grid-template-columns: 1fr auto;
		grid-template-areas: 
			"content image"
			"button image";
		align-items: start;
		gap: 25px;
		max-width: 100%;
	}

	.info_block_content {
		grid-area: content;
		display: flex;
		flex-direction: column;
		gap: 30px;
		max-width: 100%;
		min-width: 0;
	}

	.info_block_button_wrapper {
		grid-area: button;
		display: flex;
		align-items: flex-start;
		margin-top: -30px;
	}

	.info_block_title {
		max-width: 483px;
		width: 100%;
		height: auto;
		font-family: 'Nunito', sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		line-height: 130%;
		display: flex;
		align-items: center;
		color: #149FA4;
		flex: none;
		order: 0;
		flex-grow: 0;
		margin: 0;
	}

	.info_block_columns {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		gap: 0;
		max-width: 100%;
	}

	.info_block_text {
		flex: 1;
		min-width: 0;
		height: auto;
		font-family: 'Nunito', sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 16px;
		line-height: 22px;
		color: #1B1C1E;
		margin: 0;
		box-sizing: border-box;
	}

	.info_block_text_1 {
		border-right: 1px solid rgba(20, 159, 164, 0.2);
		padding-right: 30px;
	}

	.info_block_text_2 {
		border-right: 1px solid rgba(20, 159, 164, 0.2);
		padding-left: 30px;
		padding-right: 30px;
	}

	.info_block_text_3 {
		padding-right: 0;
		padding-left: 30px;
	}

	.info_block_image_wrapper {
		grid-area: image;
		position: relative;
		flex-shrink: 0;
		width: 495px;
		height: 270px;
	}

	.info_block_square {
		position: absolute;
		background: #149FA4;
		opacity: 0.3;
		border-radius: 10px;
	}

	.info_block_square_left {
		width: 171px;
		height: 206px;
		left: -3px;
		top: 12px;
	}

	.info_block_square_right {
		width: 171px;
		height: 206px;
		left: 327px;
		top: 52px;
	}

	.info_block_image {
		position: absolute;
		width: 460px;
		height: 206px;
		left: 17px;
		top: 32px;
		border-radius: 10px;
		object-fit: cover;
		z-index: 1;
	}

	.info_block_button {
		box-sizing: border-box;
		display: flex;
		flex-direction: row;
		align-items: center;
		padding: 10px 20px;
		gap: 10px;
		width: 195px;
		height: 42px;
		border: 1px solid #149FA4;
		border-radius: 800px;
		flex: none;
		flex-grow: 0;
		text-decoration: none;
		color: #149FA4;
		font-family: 'Nunito', sans-serif;
		font-style: normal;
		font-weight: 500;
		font-size: 16px;
		justify-content: center;
		transition: all 0.3s ease;
	}

	/*
	.info_block_button:hover {
		background: #149FA4;
		color: #FFFFFF;
	}
	*/

	@media (max-width: 1280px) {
		.info_block_button_wrapper {
			margin-top: 0px;
		}
	}

	@media (max-width: 1100px) {
		.info_block_button_wrapper {
			margin-top: 0px;
		}
		.info_block_container {
			display: flex;
			flex-direction: column;
			gap: 30px;
			align-items: center;
		}
	}

	@media (max-width: 767px) {
		.info_block {
			padding: 30px 0;
		}

		.info_block_container {
			display: flex;
			flex-direction: column;
			gap: 30px;
		}

		.info_block_content {
			width: 100%;
			grid-area: auto;
			align-items: center;
		}

		.info_block_image_wrapper {
			grid-area: auto;
			width: 100%;
			max-width: 385px;
		}

		.info_block_button_wrapper {
			grid-area: auto;
			width: 100%;
			display: flex;
			justify-content: center;
		}

		.info_block_title {
			max-width: 385px;
			height: auto;
			font-size: 20px;
			line-height: 130%;
		}

		.info_block_columns {
			flex-direction: column;
			gap: 0;
		}

		.info_block_text {
			max-width: 385px;
			width: 100%;
			height: auto;
			font-size: 14px;
			line-height: 19px;
			padding-right: 0;
			border-right: none;
			border-bottom: 1px solid rgba(20, 159, 164, 0.2);
			padding-bottom: 15px;
			margin-bottom: 15px;
			padding-left: 0;

		}

		.info_block_text_3 {
			border-bottom: none;
			margin-bottom: 0;
			padding-bottom: 0;
		}

		.info_block_image_wrapper {
			width: 340px;
			height: 166px;
			margin: 0 auto;
		}

		.info_block_square_left {
			width: 115.98px;
			height: 138.78px;
			left: 0px;
			top: -0.27px;
		}

		.info_block_square_right {
			width: 115.98px;
			height: 138.78px;
			left: 224.02px;
			top: 27.49px;
		}

		.info_block_image {
			width: 312.24px;
			height: 138.78px;
			left: 13.88px;
			top: 13.61px;
		}

		.info_block_button {
			width: 220px;
			justify-content: center;
		}
	}

	/* ============================================
		BUTTON BLOCK - Секция кнопок
		============================================ */

	.button_block {
		width: 100%;
		padding: 40px 0;
	}

	.button_block .container {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0;
		max-width: 1180px;
		margin: 0 auto;
		padding: 0 20px;
	}

	.button_block_grid {
		display: grid;
		grid-template-columns: repeat(3, 380px);
		grid-template-rows: auto;
		gap: 20px;
		width: 100%;
		justify-content: center;
	}

	.button_block_item {
		box-sizing: border-box;
		display: flex;
		flex-direction: row;
		align-items: center;
		padding: 35px 20px;
		gap: 20px;
		width: 380px;
		height: 100px;
		background: rgba(20, 159, 164, 0.1);
		box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
		border-radius: 30px;
		flex: none;
		order: 0;
		flex-grow: 0;
		text-decoration: none;
		transition: all 0.3s ease;
		margin-bottom: 0;
	}

	.button_block_item_icon {
		flex: none;
		order: 0;
		flex-grow: 0;
		width: auto;
		height: auto;
		max-width: 50px;
		max-height: 50px;
		object-fit: contain;
	}

	.button_block_item_text {
		width: auto;
		height: 14px;
		font-family: 'Nunito', sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		leading-trim: both;
		text-edge: cap;
		display: flex;
		align-items: center;
		color: #1B1C1E;
		flex: none;
		order: 1;
		flex-grow: 0;
		white-space: nowrap;
	}

	.button_block_item_arrow {
		margin-left: auto;
		flex: none;
		order: 1;
		flex-grow: 0;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.button_block_arrow_wrapper {
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		border-radius: 50%;
		background: transparent;
		border: 1px solid #149FA4;
	}

	.button_block_arrow_default,
	.button_block_arrow_hover {
		width: 16px;
		height: 8px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		display: block;
	}

	.button_block_arrow_hover {
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.button_block_item:hover {
		background: rgba(20, 159, 164, 0.2);
	}

	.button_block_item:hover .button_block_arrow_wrapper {
		border-color: #149FA4;
		background: #149FA4;
	}

	.button_block_item:hover .button_block_arrow_default {
		opacity: 0;
	}

	.button_block_item:hover .button_block_arrow_hover {
		opacity: 1;
	}

	@media (max-width: 1280px) {
		.button_block_grid {
			grid-template-columns: repeat(2, 380px);
		}
	}

	@media (max-width: 815px) {
		.button_block_grid {
			grid-template-columns: repeat(2, 1fr);
		}
		
		.button_block_item {
			width: 100%;
		}
	}

	@media (max-width: 767px) {
		.button_block {
			padding: 30px 0;
		}

		.button_block_grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 20px;
			width: 100%;
		}

		.button_block_item {
			width: 100%;
			max-width: 100%;
			height: auto;
			min-height: auto;
			padding: 20px 32px;
			justify-content: center;
			align-items: center;
			margin-bottom: 0;
		}

		.button_block_item_icon {
			max-width: 40px;
			max-height: 40px;
		}

		.button_block_item_text {
			width: 96px;
			height: 29px;
			font-family: 'Nunito', sans-serif;
			font-style: normal;
			font-weight: 600;
			font-size: 14px;
			line-height: 19px;
			leading-trim: both;
			text-edge: cap;
			display: flex;
			align-items: center;
			text-align: center;
			color: #1B1C1E;
			flex: none;
			order: 1;
			flex-grow: 0;
			white-space: normal;
		}

		.button_block_item_arrow {
			display: none;
		}
	}

	@media (max-width: 500px) {
		.button_block_item {
			flex-direction: column;
			gap: 10px;
		}

		.button_block_item_icon {
			order: 0;
		}

		.button_block_item_text {
			order: 1;
			width: auto;
			justify-content: center;
		}
	}

	/* ============================================
		MOBILE MENU - Мобильное меню
		============================================ */

	@media (max-width: 767px) {
		.header .mobile_menu_dropdown {
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			box-sizing: border-box;
			background: linear-gradient(360deg, rgba(60, 149, 154, 0.1) 0%, rgba(60, 149, 154, 0) 33.24%), #FFFFFF;
			border-top: 1px solid rgba(0, 0, 0, 0.03);
			border-radius: 0px 0px 40px 40px;
			opacity: 0;
			visibility: hidden;
			transform: translateY(-10px);
			transition: all 0.3s ease;
			z-index: 1000;
			max-height: 0;
			overflow: hidden;
		}

		.header .mobile_menu_dropdown.active {
			opacity: 1;
			visibility: visible;
			transform: translateY(0);
			max-height: 2000px;
			overflow: visible;
		}

		.header .mobile_menu_content {
			position: relative;
			padding: 10px;
			padding-top: 40px;
			padding-bottom: 119px;
			margin: 0;
			max-width: 100%;
			box-sizing: border-box;
			overflow-y: auto;
			max-height: calc(100vh - 100px);
		}

		/* Phone and Social Section */
		.header .mobile_menu_top {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 40px;
		}

		.header .mobile_menu_phone {
			display: flex;
			flex-direction: column;
			gap: 8px;
		}

		.header .mobile_phone_label {
			color: #1B1C1E;
			font-family: Nunito, sans-serif;
			font-weight: 300;
			font-size: 12px;
			line-height: 15px;
		}

		.header .mobile_phone_number {
			color: #000;
			font-family: Nunito, sans-serif;
			font-weight: 800;
			font-size: 24px;
			line-height: 100%;
			letter-spacing: 0%;
			text-decoration: none;
			margin-top: -8px;
		}

		.header .mobile_menu_social {
			display: flex;
			gap: 12px;
			align-items: center;
		}

		.header .mobile_social_icon {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 30px;
			height: 30px;
			border-radius: 50%;
			background: #149FA4;
			color: #fff;
			transition: all 0.3s ease;
			text-decoration: none;
		}

		/* Location and Language Selectors */
		.header .mobile_menu_selectors {
			display: flex;
			gap: 10px;
			margin-bottom: 20px;
			justify-content: space-between;
		}

		.header .mobile_location_selector,
		.header .mobile_language_selector {
			position: relative;
		}

		.header .mobile_city_selector_btn,
		.header .mobile_language_selector_btn {
			display: flex;
			align-items: center;
			gap: 8px;
			background: #fff;
			border: none;
			border-radius: 800px;
			padding: 10px 10px;
			cursor: pointer;
			font-family: inherit;
			font-size: 14px;
			color: #000;
			width: auto;
			justify-content: space-between;
			transition: opacity 0.2s ease;

			/* lang */
			box-sizing: border-box;
			
			/* Auto layout */
			display: flex;
			flex-direction: row;
			justify-content: center;
			align-items: center;
			padding: 10px;
			gap: 10px;
		
			margin: 0 auto;
		
			/* white */
			background: #FFFFFF;
			box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
			border-radius: 10px;
		
			/* Inside auto layout */
			flex: none;
			order: 1;
			flex-grow: 0;
		}

		.header .mobile_city_selector_btn:hover,
		.header .mobile_language_selector_btn:hover {
			opacity: 0.8;
		}

		.header .mobile_location_icon {
			width: 18px;
			height: 18px;
			display: block;
		}

		.header .mobile_current_city,
		.header .mobile_current_language {
			font-size: 14px;
			line-height: 100%;
			color: #000;
			font-weight: 600;
			font-family: Nunito, sans-serif;
		}

			.header .mobile_current_language {
				color: #149FA4;
			}

		/* Dropdowns for selectors */
		.header .mobile_city_dropdown,
		.header .mobile_language_dropdown {
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			background: #fff;
			opacity: 0;
			visibility: hidden;
			transform: translateY(0);
			transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
			z-index: 10001;
			overflow: visible;
			padding-top: 8px;
			margin-top: 4px;
		}

		.header .mobile_language_dropdown {
			margin-top: 0px;
		}

		.header .mobile_city_dropdown.active,
		.header .mobile_language_dropdown.active {
			opacity: 1;
			visibility: visible;
			transform: translateY(0);
		}

		.header .mobile_city_list,
		.header .mobile_language_list {
			list-style: none;
			margin: 0;
			padding: 20px;
			background-color: #fff;
			border-radius: 8px;
			box-shadow: 0 0px 6px rgba(0, 0, 0, 0.15);
			display: flex;
			flex-direction: column;
			gap: 20px;
		}

		.header .mobile_city_link,
		.header .mobile_language_link {
			display: block;
			padding: 0;
			color: #1B1C1E;
			text-decoration: none;
			font-size: 14px;
			font-weight: 600;
			font-family: Nunito, sans-serif;
			line-height: 100%;
			transition: background-color 0.2s ease;
		}

		.header .mobile_language_link {
			color: #149FA4;
		}

		/* Menu Sections with Accordion */
		.header .mobile_menu_sections {
			display: flex;
			flex-direction: column;
			gap: 0;
			margin-left: 20px;
			margin-right: 20px;
		}

		.header .mobile_menu_section {
			border-bottom: 1px solid rgba(20, 159, 164, 0.3);
		}

		.header .mobile_menu_section:last-child {
			border-bottom: none;
		}

		.header .mobile_menu_section_title {
			display: flex;
			justify-content: space-between;
			align-items: center;
			width: 100%;
			background: none;
			border: none;
			padding: 15px 0;
			cursor: pointer;
			font-family: 'Nunito', sans-serif;
			font-size: 20px;
			font-weight: 600;
			line-height: 30px;
			color: #149FA4;
			text-align: left;
			transition: color 0.2s ease;
		}

		.header .mobile_menu_chevron {
			width: 18px;
			height: 8px;
			transition: transform 0.3s ease;
			flex-shrink: 0;
			margin-left: 10px;
		}

		.header .mobile_menu_chevron_up {
			transform: rotate(180deg);
		}

		.header .mobile_menu_section_content {
			max-height: 0;
			overflow: hidden;
			transition: max-height 0.3s ease, padding 0.3s ease;
			padding: 0;
		}

		.header .mobile_menu_section_content_active {
			max-height: 1000px;
			padding: 0 0 15px 0;
		}

		.header .mobile_menu_list {
			list-style: none;
			margin: 0;
			padding: 0;
			display: flex;
			flex-direction: column;
			gap: 12px;
		}

		.header .mobile_menu_list li {
			margin: 0;
			padding: 0;
		}

		.header .mobile_menu_list a {
			display: block;
			color: #1B1C1E;
			text-decoration: none;
			font-family: 'Nunito', sans-serif;
			font-size: 16px;
			font-weight: 500;
			font-style: normal;
			line-height: 1.4;
			letter-spacing: 0;
			vertical-align: middle;
			transition: color 0.2s ease;
			padding: 4px 0;
		}

		.header .mobile_menu_list a:hover {
			color: #37383C;
		}

		.header .mobile_menu_list .sale a {
			color: #FA820A;
		}

		.header .mobile_menu_list .sale a::after {
			content: '';
			display: inline-block;
			width: 16px;
			height: 16px;
			background-image: url(/wp-content/themes/rcld/assets/images/percent.svg);
			background-size: contain;
			background-repeat: no-repeat;
			background-position: center;
			margin-left: 8px;
			vertical-align: middle;
		}
	}

	/* Скрытие мобильного меню на десктопе */
	@media (min-width: 768px) {
		.header .mobile_menu_dropdown {
			display: none !important;
		}
	}


	/* ============================================
		FOOTER - Подвал сайта
		============================================ */

	.footer {
		width: 100%;
		background: linear-gradient(0deg, rgba(20, 159, 164, 0.15), rgba(20, 159, 164, 0.15)), #FFFFFF;
		padding: 50px 0 0px 0;
		box-sizing: border-box;
		border: none;
		margin-top: 100px;
	}
	.home .footer {
		margin-top: 0px !important;
	}	

	.footer .container {
		width: 100%;
		max-width: 1280px;
		margin: 0 auto;
		padding: 0 20px;
		box-sizing: border-box;
	}

	/* Основная часть подвала - 4 колонки */
	.footer_main_content {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 40px;
		padding-bottom: 50px;
	}

	/* Колонки подвала */
	.footer_column {
		display: flex;
		flex-direction: column;
	}

	/* Заголовки колонок */
	.footer_column_title {
		font-family: 'Nunito', sans-serif;
		font-style: normal;
		font-weight: 700;
		font-size: 20px;
		line-height: 27px;
		display: flex;
		align-items: center;
		color: #149FA4;
		text-shadow: 0px 0px 0px #000000;
		flex: none;
		order: 0;
		flex-grow: 0;
		margin-bottom: 20px;
	}

	/* Контактная секция */
	.footer_phone_section {
		display: flex;
		flex-direction: column;
		gap: 8px;
		margin-bottom: 20px;
	}

	.footer_phone_label {
		color: #1B1C1E;
		font-family: 'Nunito', sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 16px;
		line-height: 22px;
		opacity: 0.5;
	}

	.footer_phone_number {
		color: #37383C;
		text-shadow: 0px 0px 0px #000000;
		font-family: 'Nunito', sans-serif;
		font-weight: 800;
		text-decoration: none;
		transition: opacity 0.2s ease;
		font-style: normal;
		font-size: 30px;
		line-height: 41px;
		margin-top: -10px;

	}

	/* Секция соц. сетей */
	.footer_social_section {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.footer_social_label {
		color: #1B1C1E;
		font-family: 'Nunito', sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 16px;
		line-height: 22px;
		opacity: 0.5;
	}

	.footer_social_icons {
		display: flex;
		gap: 20px;
		align-items: center;
		margin-top: -5px;
	}

	.footer_social_icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		background: #149FA4;
		color: #fff;
		transition: all 0.3s ease;
		text-decoration: none;
	}

	/* Меню подвала */
	.footer_menu_list {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.footer_menu_list li {
		margin: 0;
		padding: 0;
	}

	.footer_menu_list a {
		display: block;
		color: #1B1C1E;
		text-decoration: none;
		font-family: 'Nunito', sans-serif;
		font-size: 16px;
		font-weight: 500;
		font-style: normal;
		line-height: 22px;
		letter-spacing: 0;
		transition: color 0.2s ease;
	}

	.footer_menu_list a:hover {
		color: #37383C;
	}

	/* Нижняя часть подвала */
	.footer_bottom {
		width: 100%;
		border-top: 1px solid rgba(0, 0, 0, 0.1);
		padding-top: 20px;
		padding-bottom: 20px;
		box-sizing: border-box;
	}

	.footer_bottom .container {
		width: 100%;
		max-width: 1280px;
		margin: 0 auto;
		padding: 0 20px;
		box-sizing: border-box;
	}

	.footer_bottom_content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.footer_logo_section {
		display: flex;
		align-items: center;
	}

	.footer_logo_link {
		text-decoration: none;
		display: flex;
		align-items: center;
	}

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

	.footer_logo_image {
		height: auto;
		max-width: 200px;
	}

	.footer_copyright {
		display: flex;
		align-items: center;
	}

	.footer_copyright span {
		color: #1B1C1E;
		font-family: 'Nunito', sans-serif;
		font-size: 14px;
		font-style: normal;
		font-weight: 300;
		line-height: 19px;
		opacity: 0.5;
	}

	/* Адаптивные стили для подвала */
	@media (max-width: 1024px) {
		.footer_main_content {
			grid-template-columns: repeat(2, 1fr);
			gap: 50px;
		}
	}

	@media (max-width: 767px) {
		.footer_social_icons {
			justify-content: center !important;
		}

		.footer {
			padding: 30px 0 0 0;

		}

		.footer_social_label {
			font-weight: 500 !important;
		}

		.footer_phone_label {
			text-align: center !important;
			font-weight: 500;
		}

		.footer_main_content {
			grid-template-columns: 1fr 1fr;
			gap: 30px 20px;
			margin-bottom: 0px;
			padding-bottom: 40px;
		}

		/* Первая колонка (контакты) - на всю ширину */
		.footer_contacts {
			grid-column: 1 / -1;
			margin-bottom: 0;
			align-items: center !important;
			margin-bottom: 20px;
		}

		/* Вторая и третья колонки (Послуги и Про лабораторію) - по 50% */
		.footer_services {
			grid-column: 1;
		}

		.footer_about {
			grid-column: 2;
		}

		/* Четвертая колонка (Інформація) - на пол ширины */
		.footer_info {
			grid-column: 1;
			margin-top: 15px;
		}

		/* Выравнивание колонок */
		.footer_column {
			align-items: flex-start;
		}

		.footer_column_title {
			font-size: 20px;
			margin-bottom: 10px;
			align-items: center !important;
			font-weight: 700;
			line-height: 27px;
			font-style: normal;
		}

		.footer_phone_number {
			font-size: 20px;
			line-height: 27px;

			font-weight: 700;
			font-size: 40px;
			line-height: 55px;
		}

		.footer_phone_section {
			margin-bottom: 15px;
		}

		.footer_social_section {
			margin-top: 0;
		}

		.footer_menu_list {
			gap: 10px;
		}

		.footer_menu_list a {
			font-size: 14px;
		}

		.footer_bottom_content {
			flex-direction: column;
			gap: 20px;
			align-items: flex-start;
		}

		/* Скрыть логотип на мобильных */
		.footer_logo_section {
			display: none;
		}

		.footer_copyright {
			width: 100%;
			justify-content: center;
		}

		.footer_logo_image {
			max-width: 150px;
		}

		.footer_bottom {
			padding-bottom: 37px !important;
			padding-top: 0px !important;
			border-top: none !important;
		}
	}

	/* ============================================
		ADVANTAGES BLOCK - Секция "Наші переваги"
		============================================ */

	.advantages_block {
		padding: 50px 0;
	}

	.advantages_block .container {
		max-width: 1280px;
		margin: 0 auto;
		padding: 0 20px;
		box-sizing: border-box;
	}

	.advantages_title {
		font-family: 'Nunito', sans-serif;
		font-weight: 700;
		font-style: normal;
		font-size: 40px;
		line-height: 130%;
		letter-spacing: 0%;
		vertical-align: middle;
		color: #000000;
		margin: 0 0 40px 0;
		text-align: left;
	}

	.advantages_grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 40px 20px;
		width: 100%;
	}

	.advantage_item {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		gap: 20px;
	}

	.advantage_icon_wrapper {
		width: 70px;
		height: 70px;
		border-radius: 20px;
		border: 1px solid rgba(0, 0, 0, 0.1);
		background-color: #FFFFFF;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 15px;
		box-sizing: border-box;
		flex-shrink: 0;
	}

	.advantage_content {
		display: flex;
		flex-direction: column;
		flex: 1;
		min-width: 0;
	}

	.advantage_icon {
		width: 40px;
		height: 40px;
		object-fit: contain;
		display: block;
	}

	.advantage_title {
		font-family: 'Nunito', sans-serif;
		font-weight: 600;
		font-style: normal;
		font-size: 20px;
		line-height: 30px;
		letter-spacing: 0%;
		vertical-align: middle;
		color: #000000;
		margin: 0 0 10px 0;
	}

	.advantage_description {
		font-family: 'Nunito', sans-serif;
		font-weight: 300;
		font-style: normal;
		font-size: 16px;
		line-height: 20px;
		letter-spacing: 0%;
		vertical-align: middle;
		color: #000000;
		margin: 0;
	}

	@media (max-width: 910px) and (min-width: 768px) {
		.advantages_grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media (max-width: 767px) {
		.advantages_block {
			padding: 30px 0;
		}

		.advantages_title {
			font-family: 'Nunito', sans-serif;
			font-weight: 700;
			font-style: normal;
			font-size: 30px;
			line-height: 130%;
			letter-spacing: 0%;
			text-align: center;
			vertical-align: middle;
			margin: 0 0 30px 0;
		}

		.advantages_grid {
			display: flex;
			flex-direction: column;
			gap: 40px;
		}

		.advantage_item {
			display: grid;
			grid-template-columns: 50px 1fr;
			grid-template-rows: auto auto;
			gap: 0px 10px;
			align-items: start;
		}

		.advantage_icon_wrapper {
			grid-column: 1;
			grid-row: 1 / 3;
			width: 50px;
			height: 50px;
			border-radius: 10px;
			border: 1px solid rgba(0, 0, 0, 0.1);
			padding: 10px;
			margin: 0;
		}

		.advantage_icon {
			width: 30px;
			height: 30px;
		}

		.advantage_content {
			grid-column: 2;
			grid-row: 1 / 3;
			display: contents;
		}

		.advantage_title {
			grid-column: 2;
			grid-row: 1;
			font-family: 'Nunito', sans-serif;
			font-weight: 700;
			font-style: normal;
			font-size: 18px;
			line-height: 1.3em;
			letter-spacing: 0%;
			margin: 0 0 10px 0;
			max-width: 180px;
		}

		.advantage_description {
			grid-column: 1 / 3;
			grid-row: 2;
			font-family: 'Nunito', sans-serif;
			font-weight: 400;
			font-style: normal;
			font-size: 14px;
			line-height: 20px;
			letter-spacing: 0%;
			vertical-align: middle;
			margin: 0;
		}
}

/* Numbers block */
.numbers_block {
	padding: 60px 0;
	padding-top: 20px;
	padding-bottom: 40px;
}

.numbers_block .container {
	max-width: 1280px;
	padding: 0 20px;
}

.numbers_wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 80px;
	max-width: 1240px;
	margin: 0 auto;
	padding: 40px;
	background: rgba(20, 159, 164, 0.05);
	border-radius: 20px;
	box-sizing: border-box;
}

.number_item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.number_value {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 40px;
	line-height: 130%;
	color: #149FA4;
	display: flex;
	align-items: center;
}

.number_description {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #1B1C1E;
	display: flex;
	align-items: center;
}

@media (max-width: 900px) {
	.numbers_block {
		padding: 40px 0;
	}

	.numbers_wrapper {
		flex-direction: column;
		align-items: flex-start;
		gap: 80px;
		max-width: 100%;
		padding: 40px 20px;
	}

	.number_item {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.numbers_block {
		padding-top: 20px;
	}
}

/* ============================================
	INFO BLOCK 2 - Секция с описанием
	============================================ */

.info_block_2 {
	padding: 50px 0;
	padding-top: 0px;
}

.info_block_2 .container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.info_block_2_container {
	display: flex;
	align-items: flex-start;
	padding: 40px;
	gap: 50px;
	width: 1240px;
	height: auto;
	min-height: 250px;
	background: #149FA4;
	border-radius: 20px;
	flex: none;
	align-self: stretch;
	flex-grow: 0;
	margin: 0 auto;
	box-sizing: border-box;
}

.info_block_2_text {
	width: 100%;
	height: auto;
	font-family: 'Nunito', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	leading-trim: both;
	text-edge: cap;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color: #FFFFFF;
	flex: none;
	order: 1;
	flex-grow: 0;
	box-sizing: border-box;
	max-width: calc(100% - 220px);
}

.info_block_2_text p {
	margin: 0;
	margin-bottom: 20px;
}

.info_block_2_text p:last-child {
	margin-bottom: 0;

}

.info_block_2_image_wrapper {
	flex: none;
	order: 0;
	flex-grow: 0;
	flex-shrink: 0;
	width: 168px;
	height: auto
}

.info_block_2_image {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 1280px) {
	.info_block_2_container {
		width: 100%;
		max-width: 1180px;
	}
}

@media (max-width: 767px) {
	.info_block_2 {
		padding: 10px 0px 50px 0px;
	}

	.info_block_2_container {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 20px;
		gap: 20px;
		width: 100%;
		height: auto;
		margin: 0 auto;
	}

	.info_block_2_text {
		width: 100%;
		max-width: 100%;
		height: auto;
		font-family: 'Nunito', sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 16px;
		line-height: 20px;
		leading-trim: both;
		text-edge: cap;
		display: flex;
		align-items: flex-start;
		color: #FFFFFF;
		flex: none;
		order: 1;
		align-self: stretch;
		flex-grow: 0;
	}

	.info_block_2_image_wrapper {
		width: 167px;
		height: auto;
		order: 0;
	}
}


/* ============================================
	WOOCOMMERCE - Стили для WooCommerce - категория
	============================================ */

.tax-product_cat .page-title {
		width: auto;
		text-align: left;
		padding: 0px;
}
.tax-product_cat .content_category {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		padding: 0px;
		justify-content: space-between;
}
.tax-product_cat .page-title {
	margin: 0px;
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	font-size: 40px;
	line-height: 130%;
	color: #1B1C1E;
}
.tax-product_cat .main_content {
	margin-top: 40px !important;
}

.tax-product_cat .woocommerce-ordering {
	margin: 0px !important;
}

.tax-product_cat .content_category .page-title {
	order: 1;
	margin-bottom: 20px;
}
.tax-product_cat .content_category .woocommerce-ordering {
	order: 2;
	margin-bottom: 20px !important;
}
@media (max-width: 767px) {
	.tax-product_cat .content_category .woocommerce-ordering {
		margin-top: 50px !important;
		margin-bottom: 0px !important;
	}
}
.tax-product_cat .content_category .woocommerce-notices-wrapper {
	order: 3;
}
.tax-product_cat .content_category .content-page-price {
	order: 4;
}
.tax-product_cat .content_category .woocommerce-pagination {
	order: 5;
}
.tax-product_cat .content_category .woocommerce-notices-wrapper {
	width: 100%;
}
.tax-product_cat .content_category .woocommerce-ordering {
	display: flex;
	align-items: center;
}

.tax-product_cat .content_category .woocommerce-pagination {
	display: flex;
	justify-content: center;
	width: 100%;
	padding-left: 258px;
}

.tax-product_cat .content_category .woocommerce-pagination ul {
	border: none;
}

.tax-product_cat .content_category nav.woocommerce-pagination ul li {
	border: none;
}

/* Стили для списка пагинации */
.tax-product_cat .content_category .woocommerce-pagination .page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	width: auto;
}

/* Стили для элементов списка */
.tax-product_cat .content_category .woocommerce-pagination .page-numbers li {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Базовые стили для ссылок и span пагинации */
.tax-product_cat .content_category .woocommerce-pagination .page-numbers a,
.tax-product_cat .content_category .woocommerce-pagination .page-numbers span {
	display: inline-block;
	padding: 8px 8px;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 130%;
	color: #1B1C1E;
	text-decoration: none;
	border: 1px solid #D0ECED;
	border-radius: 800px;
	background-color: #FFFFFF;
	transition: all 0.3s ease;
	min-width: 41px;
	text-align: center;
	box-sizing: border-box;
}

/* Активное состояние */
.tax-product_cat .content_category .woocommerce-pagination .page-numbers .current {
	background-color: #149FA4;
	color: #FFFFFF;
	border-color: #149FA4;
	cursor: default;
}

/* Hover состояние для ссылок */
.tax-product_cat .content_category .woocommerce-pagination .page-numbers a:hover {
	background-color: #149FA4;
	color: #FFFFFF;
	border-color: #149FA4;
}

/* Стили для стрелки next */
.tax-product_cat .content_category .woocommerce-pagination .page-numbers .next {
	/* Использует те же стили, что и обычные ссылки */
}

@media (max-width: 1240px) {
	.tax-product_cat .breadcrumbs {
		padding-left: 20px;
		padding-right: 20px;
	}

	.tax-product_cat .main_content {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 1240px) {
	
}

/* ============================================
	WOOCOMMERCE - Стили для select сортировки
	============================================ */

.woocommerce-ordering .orderby {
	/* Базовые стили */
	padding: 10px 14px;
	border: 1px solid #D0ECED;
	border-radius: 800px;
	background-color: #FFFFFF;
	
	/* Типографика */
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: #1B1C1E;
	
	/* Убираем стандартную стрелку браузера */
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	
	/* Кастомная стрелка через background-image */
	background-image: url(/wp-content/themes/rcld/assets/images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 17px 7px;
	
	/* Дополнительный padding справа для стрелки */
	padding-right: 40px;
	
	/* Убираем outline при фокусе, добавляем кастомный */
	outline: none;
	cursor: pointer;
}

/* ============================================
	WOOCOMMERCE - Градиентный фон для категорий
	============================================ */

.tax-product_cat {
	background: linear-gradient(180deg, rgba(60, 149, 154, 0.08) 0%, rgba(60, 149, 154, 0.05) 50%, rgba(60, 149, 154, 0.08) 100%);
}

/* ============================================
	WOOCOMMERCE - Стили для страницы отдельного товара
	============================================ */

/* Фон страницы */
body.single-product {
	background: linear-gradient(to bottom right, #EAF7F8 0%, #F5FBFB 30%, #FFFFFF 100%);
	background-attachment: fixed;
	min-height: 100vh;
}

/* Хлебные крошки - отступ от шапки 23px */
body.single-product .woocommerce-breadcrumb,
body.single-product nav.woocommerce-breadcrumb,
body.single-product #primary .woocommerce-breadcrumb,
body.single-product #main .woocommerce-breadcrumb,
body.single-product .site-main .woocommerce-breadcrumb {
	padding-top: 23px !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	display: flex !important; /* Убеждаемся, что breadcrumbs видны */
	visibility: visible !important;
	opacity: 1 !important;
	white-space: normal !important; /* Разрешаем перенос текста */
	flex-wrap: wrap !important; /* Разрешаем перенос элементов flex */
	overflow: visible !important; /* Убираем горизонтальную прокрутку */
}

/* Контейнер для хлебных крошек на single-product */
body.single-product #primary,
body.single-product #main,
body.single-product .site-main {
	padding-top: 0;
}

body.single-product .container .woocommerce-breadcrumb {
	padding-top: 23px !important;
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	white-space: normal !important; /* Разрешаем перенос текста */
	flex-wrap: wrap !important; /* Разрешаем перенос элементов flex */
	overflow: visible !important; /* Убираем горизонтальную прокрутку */
}

/* Элементы внутри breadcrumbs - разрешаем перенос длинных текстов */
body.single-product .woocommerce-breadcrumb a,
body.single-product .woocommerce-breadcrumb span,
body.single-product .woocommerce-breadcrumb .breadcrumbs__home-link,
body.single-product .woocommerce-breadcrumb .breadcrumbs__arrow-separator {
	white-space: normal !important;
	word-break: break-word !important;
}

/* Переопределяем скрытие breadcrumbs на мобильных для single-product */
@media (max-width: 767px) {
	body.single-product .woocommerce-breadcrumb,
	body.single-product nav.woocommerce-breadcrumb,
	body.single-product #primary .woocommerce-breadcrumb,
	body.single-product #main .woocommerce-breadcrumb,
	body.single-product .site-main .woocommerce-breadcrumb {
		display: flex !important; /* Показываем breadcrumbs даже на мобильных */
		padding-top: 23px !important;
		visibility: visible !important;
		opacity: 1 !important;
		white-space: normal !important; /* Разрешаем перенос текста */
		flex-wrap: wrap !important; /* Разрешаем перенос элементов flex */
		overflow: visible !important; /* Убираем горизонтальную прокрутку */
	}
}

/* ============================================
	WOOCOMMERCE - Стили для страницы корзины
	============================================ */

/* Фон страницы */
body.woocommerce-cart,
body.page-template-cart {
	background: linear-gradient(to bottom right, #EAF7F8 0%, #F5FBFB 30%, #FFFFFF 100%);
	background-attachment: fixed;
	min-height: 100vh;
}

/* Секция breadcrumbs на странице корзины - отступ от шапки 130px */
body.woocommerce-cart section.bareadcrumbs,
body.page-template-cart section.bareadcrumbs {
	padding-top: 130px !important;
}

/* Хлебные крошки - отступ внутри секции 23px */
body.woocommerce-cart section.bareadcrumbs .container .woocommerce-breadcrumb,
body.woocommerce-cart section.bareadcrumbs .woocommerce-breadcrumb,
body.woocommerce-cart section.bareadcrumbs nav.woocommerce-breadcrumb,
body.page-template-cart section.bareadcrumbs .container .woocommerce-breadcrumb,
body.page-template-cart section.bareadcrumbs .woocommerce-breadcrumb,
body.page-template-cart section.bareadcrumbs nav.woocommerce-breadcrumb {
	padding-top: 23px !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	display: flex !important; /* Убеждаемся, что breadcrumbs видны */
	visibility: visible !important;
	opacity: 1 !important;
	white-space: normal !important; /* Разрешаем перенос текста */
	flex-wrap: wrap !important; /* Разрешаем перенос элементов flex */
	overflow: visible !important; /* Убираем горизонтальную прокрутку */
}

/* Хлебные крошки - общие стили для корзины */
body.woocommerce-cart .woocommerce-breadcrumb,
body.woocommerce-cart nav.woocommerce-breadcrumb,
body.page-template-cart .woocommerce-breadcrumb,
body.page-template-cart nav.woocommerce-breadcrumb {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	white-space: normal !important;
	flex-wrap: wrap !important;
	overflow: visible !important;
}

/* Элементы внутри breadcrumbs - разрешаем перенос длинных текстов */
body.woocommerce-cart .woocommerce-breadcrumb a,
body.woocommerce-cart .woocommerce-breadcrumb span,
body.woocommerce-cart .woocommerce-breadcrumb .breadcrumbs__home-link,
body.woocommerce-cart .woocommerce-breadcrumb .breadcrumbs__arrow-separator,
body.page-template-cart .woocommerce-breadcrumb a,
body.page-template-cart .woocommerce-breadcrumb span,
body.page-template-cart .woocommerce-breadcrumb .breadcrumbs__home-link,
body.page-template-cart .woocommerce-breadcrumb .breadcrumbs__arrow-separator {
	white-space: normal !important;
	word-break: break-word !important;
}

/* Переопределяем скрытие breadcrumbs на мобильных для корзины */
@media (max-width: 767px) {
	body.woocommerce-cart section.bareadcrumbs .container .woocommerce-breadcrumb,
	body.woocommerce-cart section.bareadcrumbs .woocommerce-breadcrumb,
	body.woocommerce-cart section.bareadcrumbs nav.woocommerce-breadcrumb,
	body.page-template-cart section.bareadcrumbs .container .woocommerce-breadcrumb,
	body.page-template-cart section.bareadcrumbs .woocommerce-breadcrumb,
	body.page-template-cart section.bareadcrumbs nav.woocommerce-breadcrumb {
		display: flex !important; /* Показываем breadcrumbs даже на мобильных */
		padding-top: 23px !important;
		visibility: visible !important;
		opacity: 1 !important;
		white-space: normal !important; /* Разрешаем перенос текста */
		flex-wrap: wrap !important; /* Разрешаем перенос элементов flex */
		overflow: visible !important; /* Убираем горизонтальную прокрутку */
	}
	
	body.woocommerce-cart .woocommerce-breadcrumb,
	body.woocommerce-cart nav.woocommerce-breadcrumb,
	body.page-template-cart .woocommerce-breadcrumb,
	body.page-template-cart nav.woocommerce-breadcrumb {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		white-space: normal !important;
		flex-wrap: wrap !important;
		overflow: visible !important;
	}
}

/* Заголовок страницы корзины */
body.woocommerce-cart .name-page,
body.page-template-cart .name-page {
	padding: 15px 0;
	text-align: left;
}

body.woocommerce-cart .name-page h1,
body.woocommerce-cart .name-page .cart-page-title,
body.page-template-cart .name-page h1,
body.page-template-cart .name-page .cart-page-title {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 40px;
	line-height: 130%;
	letter-spacing: 0%;
	color: #1B1C1E;
	margin: 0;
	padding: 0;
}

/* Скрываем notices внутри формы корзины, так как они выводятся выше заголовка */
body.woocommerce-cart .woocommerce-cart-form .woocommerce-message,
body.woocommerce-cart .woocommerce-cart-form .woocommerce-info,
body.woocommerce-cart .woocommerce-cart-form .woocommerce-error,
body.woocommerce-cart .cart-content .woocommerce-message,
body.woocommerce-cart .cart-content .woocommerce-info,
body.woocommerce-cart .cart-content .woocommerce-error,
body.page-template-cart .woocommerce-cart-form .woocommerce-message,
body.page-template-cart .woocommerce-cart-form .woocommerce-info,
body.page-template-cart .woocommerce-cart-form .woocommerce-error,
body.page-template-cart .cart-content .woocommerce-message,
body.page-template-cart .cart-content .woocommerce-info,
body.page-template-cart .cart-content .woocommerce-error {
	display: none;
}

/* Стили для notices над заголовком */
body.woocommerce-cart .container > .woocommerce-message,
body.woocommerce-cart .container > .woocommerce-info,
body.woocommerce-cart .container > .woocommerce-error,
body.page-template-cart .container > .woocommerce-message,
body.page-template-cart .container > .woocommerce-info,
body.page-template-cart .container > .woocommerce-error {
	margin-bottom: 20px;
}

/* Стилизация плашки с сообщением (success notices) */
body.woocommerce-cart .container > .woocommerce-message,
body.page-template-cart .container > .woocommerce-message {
	background: #F2F9F9;
	border-top: 3px solid #149FA4;
	border-radius: 0;
	padding: 15px 20px 15px 60px;
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.25em;
	margin-top: 25px;
	margin-bottom: 20px;
	position: relative;
	outline: none;
}

/* Убираем обводку при focus-visible */
body.woocommerce-cart .container > .woocommerce-message:focus-visible,
body.page-template-cart .container > .woocommerce-message:focus-visible {
	outline: none;
	box-shadow: none;
}

/* Помилки кошика (ul.woocommerce-error / обгортка): без синьої обводки при focus-visible */
body.woocommerce-cart .container > .woocommerce-error,
body.page-template-cart .container > .woocommerce-error {
	outline: none;
}

body.woocommerce-cart .container > .woocommerce-error:focus,
body.woocommerce-cart .container > .woocommerce-error:focus-visible,
body.page-template-cart .container > .woocommerce-error:focus,
body.page-template-cart .container > .woocommerce-error:focus-visible,
body.woocommerce-cart .container > .woocommerce-notices-wrapper:focus,
body.woocommerce-cart .container > .woocommerce-notices-wrapper:focus-visible,
body.page-template-cart .container > .woocommerce-notices-wrapper:focus,
body.page-template-cart .container > .woocommerce-notices-wrapper:focus-visible {
	outline: none;
	box-shadow: none;
}

body.woocommerce-cart .container > .woocommerce-error li:focus,
body.woocommerce-cart .container > .woocommerce-error li:focus-visible,
body.page-template-cart .container > .woocommerce-error li:focus,
body.page-template-cart .container > .woocommerce-error li:focus-visible {
	outline: none;
	box-shadow: none;
}

/* Иконка в сообщении (круг с галочкой) */
body.woocommerce-cart .container > .woocommerce-message::before,
body.page-template-cart .container > .woocommerce-message::before {
	content: '✓';
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 2px solid #149FA4;
	border-radius: 50%;
	background: #149FA4;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	margin-right: 20px;
}

/* Ссылки в сообщении */
body.woocommerce-cart .container > .woocommerce-message a,
body.page-template-cart .container > .woocommerce-message a {
	color: #149FA4;
	text-decoration: underline;
}

body.woocommerce-cart .container > .woocommerce-message a:hover,
body.page-template-cart .container > .woocommerce-message a:hover {
	opacity: 0.8;
}

/* Стилизация сообщения о пустой корзине */
body.woocommerce-cart .cart-empty,
body.woocommerce-cart .woocommerce-info.cart-empty,
body.page-template-cart .cart-empty,
body.page-template-cart .woocommerce-info.cart-empty {
	background: #F2F9F9;
	border-top: 3px solid #149FA4;
	border-radius: 0;
	padding: 15px 20px 15px 60px;
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.25em;
	margin-top: 25px;
	margin-bottom: 20px;
	position: relative;
	outline: none;
}

/* Убираем обводку при focus-visible */
body.woocommerce-cart .cart-empty:focus-visible,
body.woocommerce-cart .woocommerce-info.cart-empty:focus-visible,
body.page-template-cart .cart-empty:focus-visible,
body.page-template-cart .woocommerce-info.cart-empty:focus-visible {
	outline: none;
	box-shadow: none;
}

/* Иконка в сообщении о пустой корзине (иконка корзины) */
body.woocommerce-cart .cart-empty::before,
body.woocommerce-cart .woocommerce-info.cart-empty::before,
body.page-template-cart .cart-empty::before,
body.page-template-cart .woocommerce-info.cart-empty::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	border: 2px solid #149FA4;
	border-radius: 50%;
	background: transparent;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23149FA4" stroke-width="2"><circle cx="9" cy="21" r="1"></circle><circle cx="20" cy="21" r="1"></circle><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"></path></svg>');
	background-size: 16px 16px;
	background-position: center;
	background-repeat: no-repeat;
}

/* Стилизация кнопки "Повернутись в магазин" */
body.woocommerce-cart .return-to-shop,
body.page-template-cart .return-to-shop {
	margin-top: 20px;
	text-align: center;
}

body.woocommerce-cart .return-to-shop .button.wc-backward,
body.page-template-cart .return-to-shop .button.wc-backward {
	background: #149FA4 !important;
	border-radius: 800px !important;
	height: 42px !important;
	padding: 1px 20px !important;
	max-width: 340px;
	width: calc(100% - 40px);
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	font-family: 'Nunito', sans-serif !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	line-height: 40px !important;
	color: #FFFFFF !important;
	border: none !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

body.woocommerce-cart .return-to-shop .button.wc-backward:hover,
body.page-template-cart .return-to-shop .button.wc-backward:hover {
	opacity: 0.8;
}

/* Кнопка очистки корзины в правой колонке */
.cart-clear-button-wrapper {
	margin-bottom: 20px;
	display: flex;
	justify-content: flex-end;
}

.cart-clear-button {
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0%;
	color: #FB7274;
	transition: opacity 0.3s ease;
}

.cart-clear-button:hover {
	opacity: 0.8;
}

.cart-clear-icon {
	width: 16px;
	height: 16px;
	display: block;
	flex-shrink: 0;
}

.cart-clear-text {
	display: inline-block;
}

/* Выравнивание заголовка и кнопки через отрицательный отступ */
body.woocommerce-cart .cart-content,
body.page-template-cart .cart-content {
	position: relative;
	gap: 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

body.woocommerce-cart .woocommerce-cart-form .cart-clear-button-wrapper,
body.page-template-cart .woocommerce-cart-form .cart-clear-button-wrapper {
	margin-top: -58px; /* Отрицательный отступ для выравнивания с заголовком (40px * 1.3 = 52px) */
	margin-bottom: 60px;
}

body.woocommerce-cart .cart-collaterals {
	padding-top: 15px;
	width: 33% !important;
}

/* ============================================
	Стилизация правой колонки корзины по дизайну
	============================================ */

/* Контейнер cart_totals */
body.woocommerce-cart .cart_totals,
body.page-template-cart .cart_totals {
	background: #F2F9F9;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: calc(100% - 40px) !important;
}

/* Заголовок "Разом" */
body.woocommerce-cart .cart_totals > h2,
body.page-template-cart .cart_totals > h2 {
	font-family: 'Nunito', sans-serif !important;
	font-weight: 600 !important;
	font-size: 24px !important;
	line-height: 130% !important;
	letter-spacing: 0% !important;
	color: #1B1C1E !important;
	text-align: left !important;
	margin: 0 !important;
	margin-bottom: 0 !important;
}

/* Скрываем все строки кроме order-total */
body.woocommerce-cart .cart_totals .shop_table tr:not(.order-total),
body.page-template-cart .cart_totals .shop_table tr:not(.order-total) {
	display: none;
}

/* Убираем границы таблицы */
body.woocommerce-cart .cart_totals .shop_table,
body.page-template-cart .cart_totals .shop_table {
	border: none;
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	margin: 0px;
	margin-top: -10px;
}

/* Стилизация строки "До оплати" */
body.woocommerce-cart .cart_totals .order-total,
body.page-template-cart .cart_totals .order-total {
	border: none;
	padding: 0;
	margin: 0;
	display: table-row;
}

body.woocommerce-cart .order-total .woocommerce-Price-amount {
	font-family: 'Nunito', sans-serif !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 20px !important;
	color: #1B1C1E !important;
	border: none !important;
	padding: 0;
	text-align: right;
	display: table-cell;
	width: auto;

}


body.woocommerce-cart .cart_totals .order-total th,
body.page-template-cart .cart_totals .order-total th {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #1B1C1E;
	border: none;
	padding: 0;
	text-align: left;
	display: table-cell;
	width: auto;
	display: flex;
	align-items: center;
  height: 27px;
}

body.woocommerce-cart .cart_totals .order-total td,
body.page-template-cart .cart_totals .order-total td {
	padding: 0px !important;
	text-align: right;
}

/* Кнопка "Оформити замовлення" */
body.woocommerce-cart .wc-proceed-to-checkout,
body.page-template-cart .wc-proceed-to-checkout {
	margin-top: 0;
	text-align: center;
	padding: 0px;
}

body.woocommerce-cart .checkout-button.button.alt.wc-forward,
body.page-template-cart .checkout-button.button.alt.wc-forward {
	background: #149FA4 !important;
	border-radius: 800px !important;
	height: 42px !important;
	padding: 1px 20px !important;
	max-width: 340px;
	width: calc(100% - 40px);
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	font-family: 'Nunito', sans-serif !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	line-height: 40px !important;
	color: #FFFFFF !important;
	border: none !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.3s ease;
	margin-bottom: 0px !important;
}

/* Скрываем шапку таблицы корзины */
body.woocommerce-cart .woocommerce-cart-form__contents thead,
body.page-template-cart .woocommerce-cart-form__contents thead {
	display: none;
}

/* Код товара в корзине */
body.woocommerce-cart .woocommerce-cart-form__contents .woocommerce-loop-product__code,
body.page-template-cart .woocommerce-cart-form__contents .woocommerce-loop-product__code,
body.woocommerce-cart .cart-item-card .woocommerce-loop-product__code,
body.page-template-cart .cart-item-card .woocommerce-loop-product__code {
	background: #149FA41A;
	color: #149FA4;
	border-radius: 10px;
	padding: 4px 10px;
	display: inline-block;
	font-weight: 700;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 20px;
	margin-right: 10px;
	height: 19px;
	margin-top: 2px;
}

/* Контейнер карточек товаров */
body.woocommerce-cart .cart-items-container,
body.page-template-cart .cart-items-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Карточка товара */
body.woocommerce-cart .cart-item-card,
body.page-template-cart .cart-item-card {
	background: #FFFFFF;
	border: 1px solid #D0ECED;
	border-radius: 20px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Верхняя строка карточки */
.cart-item-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

/* Левая часть верхней строки (код + название) */
.cart-item-header-left {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	flex: 1;
}

/* Правая часть верхней строки (иконка удаления) */
.cart-item-header-right {
	display: flex;
	align-items: flex-start;
	padding-top: 8px;
}

/* Нижняя строка карточки */
.cart-item-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Левая часть нижней строки (цена за шт. + количество) */
.cart-item-details-left {
	flex: 1;
}

/* Правая часть нижней строки (итоговая цена) */
.cart-item-details-right {
	display: flex;
	align-items: center;
}

/* Название товара (PC/H4) */
.cart-item-name {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 130%;
	letter-spacing: 0%;
	color: #1B1C1E;
	margin: 0;
}

.cart-item-name a {
	color: #1B1C1E;
	text-decoration: none;
}

.cart-item-name a:hover {
	opacity: 0.8;
}

/* Детали товара (цена за шт. и количество) */
.cart-item-details {
	display: flex;
	gap: 0;
}

.cart-item-detail-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 20px;
}

.cart-item-detail-row:first-child {
	margin-left: 0;
}

.cart-item-detail-label,
.cart-item-detail-value {
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	letter-spacing: 0%;
	color: #1B1C1E;
}

.cart-item-detail-value span.woocommerce-Price-amount.amount {
  font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 14px !important;
	line-height: 130%;
	letter-spacing: 0%;
	color: #1B1C1E;
}

body.woocommerce-checkout .order-total span.woocommerce-Price-amount.amount {
		font-family: 'Nunito', sans-serif !important;
		font-weight: 400 !important;
		font-size: 16px !important;
		line-height: 20px !important;
		color: #1B1C1E !important;
		text-align: right;
		display: table-cell;
		width: auto;
}


/* Иконка удаления */
.cart-item-remove {
	display: inline-block;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.cart-item-remove:hover {
	opacity: 0.8;
}

.cart-item-remove-icon {
	width: 16px;
	height: 16px;
	display: block;
}

/* Цена товара (PC/H5) */
.cart-item-price {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0%;
	color: #000000;
	text-align: right;
}

/* Quantity input wrapper */
.cart-item-quantity-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #D0ECED;
	border-radius: 10px;
	padding: 4px;
}

.cart-item-quantity-minus,
.cart-item-quantity-plus {
	background: transparent;
	border: none;
	cursor: pointer;
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
	color: #1B1C1E;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	transition: background-color 0.3s ease;
}

.cart-item-quantity-minus:hover,
.cart-item-quantity-plus:hover {
	background-color: #F2F9F9;
}

.cart-item-quantity-input {
	border: none;
	background: transparent;
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: #1B1C1E;
	width: 50px;
	text-align: center;
	padding: 4px;
	-moz-appearance: textfield;
}

.cart-item-quantity-input::-webkit-outer-spin-button,
.cart-item-quantity-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}


@media (max-width: 1245px) {
	.page-template-cart .bareadcrumbs {
		padding-left: 15px;
		padding-right: 15px;
	}
	.page-template-cart .bareadcrumbs + section {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 975px) {
	.page-template-cart .cart-content {
		flex-direction: column;
	}
	.page-template-cart .woocommerce-cart-form{
		width: 100% !important;
	}	
	body.woocommerce-cart .cart-collaterals {
		width: 380px !important;
		max-width: 100% !important;
	}
	body.woocommerce-cart .cart-content {
		margin-bottom: 0px;
	}
	body.woocommerce-cart footer {
		margin-top: 50px !important;
	}
}


@media (max-width: 768px) {
	body.woocommerce-cart .order-total th {
		display: none !important;
	}
	body.woocommerce-cart .order-total td::before {
		font-family: 'Nunito', sans-serif;
		font-weight: 400;
		font-size: 16px;
		line-height: 20px;
		color: #1B1C1E;
		border: none;
		padding: 0;
		text-align: left;
		display: table-cell;
		width: auto;
		display: flex;
		align-items: center;
		height: 27px;
	}
}


/* Мобильная версия для заголовка корзины */
@media (max-width: 767px) {
	body.woocommerce-cart .name-page h1,
	body.page-template-cart .name-page h1 {
		font-size: 32px;
	}
	
	body.woocommerce-cart .woocommerce-cart-form .cart-clear-button-wrapper,
	body.page-template-cart .woocommerce-cart-form .cart-clear-button-wrapper {
		margin-top: -49px;
		margin-bottom: 40px;
	}

	body.woocommerce-cart section.bareadcrumbs,
	body.page-template-cart section.bareadcrumbs {
			display: none !important;
	}

	body.woocommerce-cart .cart-page-title,
	body.page-template-cart .cart-page-title {
		font-family: 'Nunito', sans-serif !important;
		font-weight: 700 !important;
		font-size: 30px !important;
		line-height: 130% !important;
		letter-spacing: 0% !important;
		color: #1B1C1E !important;
		text-align: center !important;
		vertical-align: middle !important;
		text-align: left !important;
		margin-top: 15px !important;
		margin-bottom: -5px !important;
	}
	.woocommerce-cart .bareadcrumbs+section {
		padding-left: 0px;
		padding-right: 0px;
	}
	.woocommerce-cart .cart-collaterals {
		width: 100% !important;
		margin-top: 10px !important;
		margin-bottom: 0px !important;
	}
	.woocommerce-cart .woocommerce-loop-product__code {
		font-size: 14px !important;
		margin-top: 0px;
	}
	.woocommerce-cart .cart-item-header-left {
		flex-wrap: nowrap;
		align-items: flex-start;
	}
	.woocommerce-cart .cart-item-name {
		line-height: 1.3em !important;
		font-size: 16px !important;
		margin-top: 3px;
	}
	.woocommerce-cart	.cart-item-header-right {
		padding-top: 2px;
	}

	.woocommerce-cart .cart-item-details {
		gap: 15px;
		flex-direction: column;
	}

	.woocommerce-cart .cart-item-detail-row {
		margin-left: 0px;
	}

	.woocommerce-cart .cart-item-bottom {
		flex-direction: column;
		gap: 15px;
		align-items: flex-start;
	}

	
}







/* ============================================
	WOOCOMMERCE - Стили для страницы оформления заказа
	============================================ */

body.woocommerce-checkout {
	background: linear-gradient(to bottom right, #EAF7F8 0%, #F5FBFB 30%, #FFFFFF 100%);
	background-attachment: fixed;
	min-height: 100vh;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 30px;
	align-items: start;
	margin-bottom: 60px;
}

body.woocommerce-checkout #customer_details,
body.woocommerce-checkout .check-details {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

body.woocommerce-checkout .check-details .col-1,
body.woocommerce-checkout .check-details .col-2 {
	width: 100%;
}

body.woocommerce-checkout .woocommerce-checkout-review-order {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: stretch;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table,
body.woocommerce-checkout .woocommerce-checkout-payment {
	background: #FFFFFF;
	border: 1px solid #D0ECED;
	border-radius: 20px;
	padding: 24px;
	box-sizing: border-box;
	width: 100%;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody {
	margin-bottom: 10px;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table {
	border-collapse: collapse;
	margin: 0;
	border: none !important;

	background: #F2F9F9;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 100% !important;
	border: none !important;
}

body.woocommerce-checkout .woocommerce-checkout-payment {
	background: #F2F9F9 !important;
	border-radius: 20px !important;
	padding: 20px !important;
	border: none !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
	margin-top: 10px !important;
	margin-bottom: 0px !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
	padding: 0px !important;
}

body.woocommerce-checkout .wc_payment_method {
	border: none !important;
	background: none !important;
	padding-left: 0px !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
	padding-bottom: 12px !important;
	border-bottom: 1px solid #149fa440;
}

body.woocommerce-checkout .wc_payment_method label {
	font-family: 'Nunito', sans-serif !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 20px !important;
	color: #1B1C1E !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody .product-name {
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.3em;
	color: #1B1C1E;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table  thead  tr {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {

}

body.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	color: #1B1C1E;
	padding: 0 0 12px 0;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td {
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #1B1C1E;
	padding: 10px 0;
	border: none;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total {
	border-top: 1px solid #149fa440;
	padding-top: 12px;
}

body.woocommerce-checkout table.shop_table tfoot th {
	border: none;
	padding-bottom: 0px !important;
}

body.woocommerce-checkout table.shop_table tfoot tr:first-child th {
	padding-bottom: 10px !important;
}

body.woocommerce-checkout table.shop_table tfoot td {
	border: none;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
	text-align: left;
	padding-right: 12px;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
	text-align: right;
	white-space: nowrap;
}

body.woocommerce-checkout .product-total {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot {
	width: 100%;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr td {
	flex: 1;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr td {
	display: flex;
	justify-content: flex-end;
}

body.woocommerce-checkout .product-total .woocommerce-Price-amount {
	font-family: 'Nunito', sans-serif;
	font-weight: 300 !important;
	font-size: 16px !important;
	line-height: 20px !important;
	color: #1B1C1E !important;
	border: none !important;
	padding: 0;
	text-align: right;
	display: table-cell;
	width: auto;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-quantity {
	color: #1B1C1E;
	font-weight: 600;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:first-child td,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:first-child th {
	padding-top: 14px;
	border-top: 1px solid #EAF7F8;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	color: #1B1C1E;
}

body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-shipping-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3 {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 30px;
	color: #1B1C1E;
	margin: 0 0 16px 0;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 20px;
}

body.woocommerce-checkout .form-row {
	display: flex;
	flex-direction: column;
	margin: 0;
	width: 100%;
}

body.woocommerce-checkout .form-row.form-row-wide {
	grid-column: 1 / -1;
}

body.woocommerce-checkout .form-row label {
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #1B1C1E;
	margin-bottom: 10px;
}

body.woocommerce-checkout .woocommerce-billing-fields input.input-text,
body.woocommerce-checkout .woocommerce-billing-fields textarea,
body.woocommerce-checkout .woocommerce-billing-fields select,
body.woocommerce-checkout .woocommerce-shipping-fields input.input-text,
body.woocommerce-checkout .woocommerce-shipping-fields textarea,
body.woocommerce-checkout .woocommerce-shipping-fields select,
body.woocommerce-checkout .woocommerce-additional-fields textarea {
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1em;
	color: #1B1C1E;
	background: #FFFFFF;
	border: 1px solid #D0ECED;
	border-radius: 800px;
	padding: 10px 20px;
	box-sizing: border-box;
	width: 100%;
	height: 60px;
}

body.woocommerce-checkout .woocommerce-billing-fields textarea,
body.woocommerce-checkout .woocommerce-shipping-fields textarea,
body.woocommerce-checkout .woocommerce-additional-fields textarea {
	min-height: 110px;
	resize: vertical;
}

body.woocommerce-checkout .woocommerce-billing-fields input.input-text:focus,
body.woocommerce-checkout .woocommerce-billing-fields textarea:focus,
body.woocommerce-checkout .woocommerce-billing-fields select:focus,
body.woocommerce-checkout .woocommerce-shipping-fields input.input-text:focus,
body.woocommerce-checkout .woocommerce-shipping-fields textarea:focus,
body.woocommerce-checkout .woocommerce-shipping-fields select:focus,
body.woocommerce-checkout .woocommerce-additional-fields textarea:focus {
	outline: none;
	border-color: #149FA4;
	box-shadow: 0 0 0 3px rgba(20, 159, 164, 0.15);
}

/* Пункт забору: як інші поля чекауту + явна стрілка списку (перебиває legacy select#punkti_zaboru у style.css, якщо той колись повернеться) */
body.woocommerce-checkout .woocommerce-billing-fields select#punkti_zaboru {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	background-color: #FFFFFF;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%231B1C1E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 22px center;
	background-size: 14px 9px;
	padding-right: 48px;
}

body.woocommerce-checkout .woocommerce-billing-fields select#punkti_zaboru:focus {
	border-color: #149FA4;
	box-shadow: 0 0 0 3px rgba(20, 159, 164, 0.15);
}

body.woocommerce-checkout .select2-container--default .select2-selection--single {
	height: 46px;
	border: 1px solid #D0ECED;
	border-radius: 12px;
	padding: 8px 12px;
	display: flex;
	align-items: center;
	background: #FFFFFF;
	box-shadow: none;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	color: #1B1C1E;
	padding-left: 0;
	line-height: 20px;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
	right: 10px;
}

body.woocommerce-checkout .wc_payment_methods {
	list-style: none;
	padding: 0;
	margin: 0 0 10px 0;
}

body.woocommerce-checkout .wc_payment_method {
	border: 1px solid #D0ECED;
	border-radius: 14px;
	padding: 14px 16px;
	margin-bottom: 12px;
	background: #FFFFFF;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

body.woocommerce-checkout .wc_payment_method input.input-radio {
	width: 18px;
	height: 18px;
	margin-top: 3px;
	accent-color: #149FA4;
}

body.woocommerce-checkout .wc_payment_method label {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #1B1C1E;
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
}

body.woocommerce-checkout .wc_payment_method label img,
body.woocommerce-checkout .wc_payment_method label svg {
	max-height: 18px;
}

body.woocommerce-checkout .payment_box {
	width: 100%;
	background: #F5FBFB;
	border: 1px solid #EAF7F8;
	border-radius: 12px;
	padding: 12px 14px;
	color: #1B1C1E;
	font-size: 14px;
	line-height: 20px;
	margin-top: 6px;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
	margin-top: 13px;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text {
	background: #F2F9F9;
	border: 1px solid #D0ECED;
	border-radius: 12px;
	padding: 12px 14px;
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #1B1C1E;
}

body.woocommerce-checkout #order_comments {
	width: 100%;
	height: 110px;
	resize: vertical;
	border: 1px solid #D0ECED;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 20px;
}
body.woocommerce-checkout #order_comments_field {
	width: 100%;
}
body.woocommerce-checkout .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper {
	grid-template-columns: auto;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text a {
	color: #149FA4;
	text-decoration: underline;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text p {
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	line-height: 1.25em;
	margin-top: 25px;
}

body.woocommerce-checkout .form-row.validate-required {
	margin-top: 0px;
}

body.woocommerce-checkout .form-row.validate-required label {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	font-weight: 400;
	font-size: 16px;
}

body.woocommerce-checkout .form-row.validate-required input.input-checkbox {
	width: 18px;
	height: 18px;
	accent-color: #149FA4;
	margin-top: 2px;
}

body.woocommerce-checkout .place-order {
	margin-top: 0px !important;
	padding: 0px !important;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text {
	padding: 0px;
	border: none;
}

.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before {
	display: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
	padding-right: 0px !important;
}

body.woocommerce-checkout #place_order {
	width: 100%;
	height: 60px;
	padding: 6px 20px;
	background: #149FA4;
	border-radius: 800px;
	border: none;
	color: #FFFFFF;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 48px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	transition: opacity 0.2s ease, box-shadow 0.2s ease;
	margin-top: 25px;
}

body.woocommerce-checkout section.breadcrumbs {
	padding-top: 138px;
}

body.woocommerce-checkout .no-class-page h1 {
	margin-top: 12px;
}

body.woocommerce-checkout #place_order:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(20, 159, 164, 0.2);
}

.woocommerce-checkout #payment div.payment_box {
	background-color: #ffffff;
	border-radius: 20px;
}

.woocommerce-checkout #payment div.payment_box::before {
	border: 1em solid #fff;
	border-right-color: transparent;
	border-left-color: transparent;
	border-top-color: transparent;
}

.woocommerce-checkout .payment_box.payment_method_cod {
	margin-bottom: -7px !important;
}

@media (max-width: 1024px) {
	body.woocommerce-checkout form.checkout.woocommerce-checkout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	body.woocommerce-checkout footer {
		margin-top: 50px;
	}
}

@media (max-width: 767px) {
	body.woocommerce-checkout .woocommerce-checkout-review-order-table,
	body.woocommerce-checkout .woocommerce-checkout-payment {
		padding: 18px;
		border-radius: 16px;
	}

	body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
	body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
	body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	body.woocommerce-checkout .woocommerce-billing-fields h3,
	body.woocommerce-checkout .woocommerce-shipping-fields h3,
	body.woocommerce-checkout .woocommerce-additional-fields h3 {
		font-size: 20px;
		line-height: 26px;
	}
	body.woocommerce-checkout h1 {
		text-align: left !important;
		margin-top: 25px !important;
		margin-bottom: 10px !important;
	}
	body.woocommerce-checkout form.checkout.woocommerce-checkout {
		padding-bottom: 0px;
	}
}


/* ============================================
	Страница отчета о заказе
	============================================ */

.woocommerce-order-received .woocommerce-customer-details .woocommerce-column__title {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 30px;
	color: #1B1C1E;
	margin: 0 0 16px 0;
}

.woocommerce-order-received .woocommerce-customer-details address {
	border: none !important;
	padding: 0px !important;

	font-family: 'Nunito', sans-serif;
	font-weight: 300 !important;
	font-size: 16px !important;
	line-height: 20px !important;
	color: #1B1C1E !important;
	border: none !important;
	padding: 0;
	display: table-cell;
	width: auto;
}

.woocommerce-order-received .woocommerce-customer-details address p { 
	display: flex;
	align-items: center;
}

.woocommerce-order-received .woocommerce-customer-details address .woocommerce-customer-details--phone {
	margin-bottom: 0px !important;
	margin-top: 10px !important;
}

.woocommerce-order-received .woocommerce-customer-details address .woocommerce-customer-details--email {
	margin-top: 10px !important;
}

.woocommerce-order-received .woocommerce-notice {
	font-family: 'Nunito', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 20px;
	color: #1B1C1E;
	margin-bottom: 10px;
}

.woocommerce-order-received .woocommerce-thankyou-order-details {
	padding-left: 0px !important;
}

.woocommerce-order-received ul.order_details li strong {
	font-size: 16px;
	margin-top: 5px;
	font-weight: 300;
}

.woocommerce-order-received ul.order_details li strong span.woocommerce-Price-amount.amount {
	font-size: 16px !important;
	margin-top: 5px !important;
	font-weight: 300 !important;
}

.woocommerce-order-received .woocommerce-order-details {
	border-collapse: collapse;
	margin: 0;
	border: none !important;
	background: #F2F9F9;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: calc(100% - 40px) !important;
	border: none !important;
}

.woocommerce-order-received .rcld-checkout-order-notice {
	margin: 20px 0 30px;
	padding: 18px 20px;
}

.woocommerce-order-received .rcld-checkout-order-notice__text {
	font-family: 'Nunito', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
	color: #1B1C1E;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 14px;
}

.woocommerce-order-received .rcld-checkout-order-notice .rcld-checkout-order-notice__text p {
	margin: 0;
	padding: 0;
	font-weight: 500;
	line-height: 22px;
	display: flex;
	align-items: center;
	min-height: 22px;
}

.woocommerce-order-received .rcld-checkout-order-notice__text p:last-child {
	margin-bottom: 0;
}

.woocommerce-order-received .woocommerce-order-overview__order:has(strong:empty) {
	display: none;
}

.woocommerce-order-received .rcld-lis-wait {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 20px 0 30px;
	padding: 18px 20px;
	background: #F2F9F9;
	border-radius: 16px;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	color: #1B1C1E;
}

.woocommerce-order-received .rcld-lis-wait--soft-fail {
	background: #FFF8E8;
}

.woocommerce-order-received .rcld-lis-wait .rcld-lis-wait__message {
	margin: 0;
	padding: 0;
	font-weight: 500;
	line-height: 22px;
	display: flex;
	align-items: center;
	min-height: 22px;
}

.woocommerce-order-received .rcld-lis-wait--soft-fail .rcld-lis-wait__message {
	line-height: 1.4;
}

.woocommerce-order-received .rcld-lis-wait__spinner {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	box-sizing: border-box;
	border: 2px solid rgba(27, 28, 30, 0.15);
	border-top-color: #1B1C1E;
	border-radius: 50%;
	animation: rcld-lis-wait-spin 0.8s linear infinite;
	align-self: center;
	margin: 0;
}

.woocommerce-order-received .rcld-lis-wait--soft-fail .rcld-lis-wait__spinner {
	display: none;
}

@keyframes rcld-lis-wait-spin {
	to {
		transform: rotate(360deg);
	}
}

.woocommerce-order-received .woocommerce-customer-details {
	border-collapse: collapse;
	margin: 0;
	border: none !important;
	background: #F2F9F9;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: calc(100% - 40px) !important;
	border: none !important;
	margin-top: 30px;
}

.woocommerce-order-received .woocommerce-order-details h2.woocommerce-order-details__title {
	margin-top: 0px;

	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 30px;
	color: #1B1C1E;
	margin: 0 0 16px 0;
}

.woocommerce-order-received .woocommerce-table--order-details {
	border: none !important;
}

.woocommerce-order-received .woocommerce-table--order-details th, .woocommerce-order-received .woocommerce-table--order-details td {
	padding: 0px !important;
}

.woocommerce-order-received .woocommerce-table--order-details th {
	font-family: 'Nunito', sans-serif;
	font-weight: 600 !important;
	font-size: 16px;
	line-height: 20px;
	color: #1B1C1E;
	border: none;
	padding: 0;
	text-align: left;
	display: table-cell;
	width: auto;
	align-items: center;
	height: 27px;
	padding-bottom: 10px !important;

}

.woocommerce-order-received .woocommerce-table--order-details .product-total {
	text-align: right;
	white-space: nowrap;
}

.woocommerce-order-received .woocommerce-table--order-details tbody tr td {
	border: none !important;
	padding: 0px !important;

	font-family: 'Nunito', sans-serif;
	font-weight: 300 !important;
	font-size: 16px !important;
	line-height: 1.3em !important;
	color: #1B1C1E !important;
}

.woocommerce-order-received .woocommerce-table--order-details tbody tr td a { 
	color: #149FA4;
	text-decoration: none;
	font-family: 'Nunito', sans-serif;
	font-weight: 300 !important;
	font-size: 16px !important;
	line-height: 1.3em !important;
	border: none !important;
	padding: 0;
	text-align: right;
}

.woocommerce-order-received .woocommerce-table--order-details tfoot tr:last-child {
	display: none;
}

.woocommerce-order-received .woocommerce-table--order-details tfoot tr:first-child td, .woocommerce-order-received .woocommerce-table--order-details tfoot tr:first-child th {
	padding-top: 10px !important;
}

.woocommerce-order-received .woocommerce-table--order-details tfoot tr td {
	text-align: right;

	font-family: 'Nunito', sans-serif;
	font-weight: 600 !important;
	font-size: 16px;
	line-height: 20px;
	color: #1B1C1E;
	text-align: right;
}

.woocommerce-order-received .woocommerce-table--order-details tfoot tr td span.woocommerce-Price-amount.amount {
  font-family: 'Nunito', sans-serif;
	font-weight: 600 !important;
	font-size: 16px !important;
	line-height: 20px;
	color: #1B1C1E;
	text-align: right;
}

@media (max-width: 945px) {
	.woocommerce-order-received .woocommerce-order-overview__payment-method {
		display: none !important;
	}
	.woocommerce-order-received .woocommerce-order-overview__total {
		border: none !important;
	}
}

@media (max-width: 690px) { 
	.woocommerce-order-received .woocommerce-order-overview__date {
		display: none !important;
	}
	.woocommerce-order-received .woocommerce-order-overview__email {
		display: none !important;
	}
	.woocommerce-order-received .woocommerce-order-overview__date {
		border: none !important;
	}
}

/* ============================================
	Хлебные крошки на странице поиска
	============================================ */

/* Секция breadcrumbs на странице поиска - отступ от шапки 65px */
body.search section.bareadcrumbs {
	padding-top: 135px !important;
}

/* Хлебные крошки - отступ внутри секции 23px */
body.search section.bareadcrumbs .container .woocommerce-breadcrumb,
body.search section.bareadcrumbs .woocommerce-breadcrumb,
body.search section.bareadcrumbs nav.woocommerce-breadcrumb {
	padding-top: 23px !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	white-space: normal !important;
	flex-wrap: wrap !important;
	overflow: visible !important;
}

/* Хлебные крошки - общие стили для search */
body.search .woocommerce-breadcrumb,
body.search nav.woocommerce-breadcrumb,
body.search #primary .woocommerce-breadcrumb,
body.search #main .woocommerce-breadcrumb,
body.search .site-main .woocommerce-breadcrumb {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	white-space: normal !important;
	flex-wrap: wrap !important;
	overflow: visible !important;
}

/* Элементы внутри breadcrumbs */
body.search .woocommerce-breadcrumb a,
body.search .woocommerce-breadcrumb span,
body.search .woocommerce-breadcrumb .breadcrumbs__home-link,
body.search .woocommerce-breadcrumb .breadcrumbs__arrow-separator {
	word-break: break-word !important;
}

/* Переопределяем скрытие breadcrumbs на мобильных для search */
@media (max-width: 767px) {
	body.search section.bareadcrumbs .container .woocommerce-breadcrumb,
	body.search section.bareadcrumbs .woocommerce-breadcrumb,
	body.search section.bareadcrumbs nav.woocommerce-breadcrumb {
		display: flex !important;
		padding-top: 23px !important;
	}
	
	body.search .woocommerce-breadcrumb,
	body.search nav.woocommerce-breadcrumb,
	body.search #primary .woocommerce-breadcrumb,
	body.search #main .woocommerce-breadcrumb,
	body.search .site-main .woocommerce-breadcrumb {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		white-space: normal !important;
		flex-wrap: wrap !important;
		overflow: visible !important;
	}
}

/* Контейнер товара */
body.single-product .product-page {
	width: 100%;
	margin-top: 53px; /* От хлебных крошек до карточки */
	margin-bottom: 100px; /* От карточки до подвала */
}

body.single-product .product-content {
	width: 100%;
}

body.single-product .item-product {
	border: 1px solid #D0ECED;
	background: #E7F5F6; /* Светлый голубовато-зеленый фон как на скриншоте */
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 0;
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* Легкая тень для эффекта "плавающей" карточки */
}

body.single-product .item-product.add_to_cart_callback {
	padding-bottom: 40px;
}

body.single-product .head-product {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0;
	flex-wrap: wrap;
	gap: 20px;
}

body.single-product .product-title-wrapper {
	width: 100%;
	flex-basis: 100%;
	min-width: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

/* Номер анализа (код) */
body.single-product .woocommerce-loop-product__code {
	background: #149FA41A;
	color: #149FA4;
	border-radius: 10px;
	padding: 8px 10px;
	display: inline-block;
	font-weight: 700;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 20px;
	flex-shrink: 0;
}

/* Название анализа */
body.single-product .woocommerce-loop-product__title {
	color: #1B1C1E;
	flex: 1;
	min-width: 0;
	font-weight: 700;
	font-family: 'Nunito', sans-serif;
	font-size: 30px;
	line-height: 100%;
	margin: 0;
	padding: 0;
	margin-left: 10px;

}

/* Блок с недоступностью */
body.single-product .left-product-content {
	width: 100%;
}

/* Обертка цены и кнопки */
body.single-product .product-price-wrapper {
	display: flex;
	gap: 20px;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* Цена */
body.single-product .list-product-price {
	flex-shrink: 0;
	text-align: left;
	color: #1B1C1E;
}

body.single-product .list-product-price .woocommerce-Price-amount {
	font-family: 'Nunito', sans-serif;
	font-size: 24px !important;
	font-weight: 600;
	color: #1B1C1E;
}

/* Убираем зачеркнутую цену */
body.single-product .list-product-price del,
body.single-product .list-product-price .woocommerce-Price-amount del,
body.single-product .list-product-price .woocommerce-Price-amount.amount del {
	display: none;
}

/* Скрываем форму с кнопкой, если используется кнопка из цикла */
body.single-product .product-add-to-cart form.cart {
	display: none;
}

/* Кнопка "В кошик" */
body.single-product .product-add-to-cart {
	flex-shrink: 0;
	position: relative;
	text-align: center;
	border-radius: 20px !important;
}

body.single-product .product-add-to-cart {
	background-color: #149FA4 !important;
	border-radius: 20px !important;
}

body.single-product .product-add-to-cart button.add-to-cart-button,
body.single-product .product-add-to-cart .add-to-cart-button,
body.single-product button.add-to-cart-button.ajax_add_to_cart {
	background: #149FA4;
	color: #FFFFFF;
	border: none;
	border-radius: 20px;
	padding: 10px 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	font-weight: 500;
	transition: opacity 0.3s ease;
}

body.single-product .product-add-to-cart button.add-to-cart-button:hover,
body.single-product .product-add-to-cart .add-to-cart-button:hover,
body.single-product button.add-to-cart-button.ajax_add_to_cart:hover {
	background: #149FA4;
	color: #FFFFFF;
	opacity: 0.9;
}

body.single-product .product-add-to-cart button.add-to-cart-button img,
body.single-product .product-add-to-cart .add-to-cart-button img,
body.single-product button.add-to-cart-button.ajax_add_to_cart img {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

body.single-product .product-add-to-cart button.out-of-stock,
body.single-product .product-add-to-cart .add-to-cart-button.out-of-stock,
body.single-product button.out-of-stock.add-to-cart-button {
	background: #CFE4E5;
	color: #fff !important;
	cursor: not-allowed;
	text-transform: none;
}

body.single-product .product-add-to-cart button.out-of-stock:hover,
body.single-product .product-add-to-cart .add-to-cart-button.out-of-stock:hover,
body.single-product button.out-of-stock.add-to-cart-button:hover {
	background: #CFE4E5 !important;
	color: #fff !important;
}

body.single-product .product-add-to-cart button.out-of-stock img,
body.single-product .product-add-to-cart .add-to-cart-button.out-of-stock img,
body.single-product button.out-of-stock.add-to-cart-button img {
	filter: brightness(0) invert(1);
}

/* Сообщение о недоступности */
body.single-product .product-unavailable-message {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #E34A4A;
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 130%;
	border-radius: 800px;
	padding: 0px;
	background: transparent;
}

body.single-product .product-unavailable-message img {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

body.single-product .add_to_cart_button.loading::after {
		position: static !important;
}

/* Адаптивность */
@media (max-width: 1250px) {
	body.single-product .breadcrumbs .container, body.single-product .main_content .container {
		padding-left: 25px;
		padding-right: 25px;
	}
}

@media (max-width: 767px) {
	body.single-product .head-product {
		flex-direction: column;
		gap: 15px;
	}
	
	body.single-product .product-price-wrapper {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	body.single-product .product-add-to-cart {
		width: 100%;
	}
	
	body.single-product .product-add-to-cart button.add-to-cart-button,
	body.single-product .product-add-to-cart .add-to-cart-button {
		width: 100%;
	}
	
	body.single-product .woocommerce-loop-product__title {
		font-size: 24px;
	}
	
	body.single-product .item-product {
		padding: 20px;
	}

	body.single-product .item-product.add_to_cart_callback {
		padding-bottom: 30px;
	}

	body.single-product .breadcrumbs {
		display: none !important;
	}

	body.single-product .main_content {
		padding-top: -10px !important;
	}

	body.single-product .footer {
		margin-top: -50px !important;
	}

	body.single-product .product-content .product-title-wrapper {
		flex-direction: column;
		align-items: flex-start;
	}
	body.single-product .product-content .woocommerce-loop-product__title {
		margin-left: 0px;
	}
	body.single-product .product-content .product-price-wrapper {
		flex-direction: row;
		justify-content: center;
	}

	body.single-product .woocommerce-loop-product__code {
		padding: 4px 10px;
		font-weight: 600;
	}
	body.single-product .woocommerce-loop-product__title {
		font-size: 20px;
		font-weight: 600;
	}
	body.single-product .woocommerce-Price-amount.amount {
		font-weight: 600;
		font-size: 30px;
	}
}

/* Секции описания анализа (ACF opys_sections) */
body.single-product .product-opys-block {
	width: 100%;
	margin-top: 30px;
	box-sizing: border-box;
}

body.single-product .product-opys-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

body.single-product .product-opys-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0;
	color: #149FA4;
	background: #149FA41A;
	border-radius: 20px;
	padding: 5px 14px;
	box-sizing: border-box;
}

body.single-product .product-opys-tab.is-active {
	color: #149FA4;
	background: #149FA41A;
}

body.single-product .product-opys-sections {
	margin-top: 20px;
	width: 100%;
}

body.single-product .product-opys-section {
	width: 100%;
	box-sizing: border-box;
	padding: 20px;
	border-radius: 20px;
	background: #FFFFFF;
	border: 1px solid #149FA433;
	box-shadow: 0 4px 20px 0 #0000000D;
}

body.single-product .product-opys-section + .product-opys-section {
	margin-top: 10px;
}

body.single-product .product-opys-section-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0;
	margin: 0;
	background: transparent;
	text-align: left;
	cursor: default;
	pointer-events: none;
	gap: 12px;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0;
	color: #000000;
	-webkit-tap-highlight-color: transparent;
}

body.single-product .product-opys-section-toggle:focus,
body.single-product .product-opys-section-toggle:active,
body.single-product .product-opys-section-toggle:focus-visible {
	background: transparent;
	outline: none;
	box-shadow: none;
}

body.single-product .product-opys-section-chevron {
	display: none;
	flex-shrink: 0;
	width: 17px;
	min-width: 17px;
	height: 7px;
	background-image: url(/wp-content/themes/rcld/assets/images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

body.single-product .product-opys-section.is-open .product-opys-section-chevron {
	background-image: url(/wp-content/themes/rcld/assets/images/arrow-top.svg);
}

body.single-product .product-opys-section-body {
	margin-top: 20px;
}

body.single-product .product-opys-section-body[hidden] {
	display: none;
}

@media (min-width: 768px) {
	body.single-product .product-opys-section-body {
		display: block !important;
	}

	body.single-product .product-opys-section-body[hidden] {
		display: block !important;
	}
}

@media (max-width: 767px) {
	body.single-product .product-opys-section-toggle {
		cursor: pointer;
		pointer-events: auto;
	}

	body.single-product .product-opys-section-chevron {
		display: inline-block;
	}

	body.single-product .product-opys-section:not(.is-open) .product-opys-section-body {
		display: none;
	}

	body.single-product .product-opys-section-body.entry-content,
	body.single-product .product-opys-section-body.entry-content p,
	body.single-product .product-opys-section-body.entry-content li {
		font-family: 'Nunito', sans-serif;
		font-weight: 400;
		font-size: 16px;
		line-height: 20px;
		letter-spacing: 0;
		color: #1B1C1E;
	}
}

/* Страницы */

.page-template-default section.breadcrumbs,
body.single-post section.breadcrumbs {
			padding-top: 130px;
}
.page-template-default,
body.category,
body.tag,
body.date,
body.author,
body.single-post {
	background: linear-gradient(to bottom right, #EAF7F8 0%, #F5FBFB 30%, #FFFFFF 100%);
	background-attachment: fixed;
	min-height: 100vh;
}

/* Сторінка 404 */
body.error404 {
	background: linear-gradient(to bottom right, #EAF7F8 0%, #F5FBFB 30%, #FFFFFF 100%);
	background-attachment: fixed;
	min-height: 100vh;
}

body.error404 section.breadcrumbs {
	padding-top: 130px;
}

body.error404 .no-class-page {
	padding-top: 5px;
	padding-bottom: 40px;
}

body.error404 .no-class-page h1 {
	color: #1B1C1E;
	font-size: 40px;
	font-weight: 700;
	font-family: 'Nunito', sans-serif;
	line-height: 1.3em;
	margin-bottom: 30px;
}

body.error404 .no-class-page .content-page p {
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.25em;
	margin-top: 0;
}

@media (max-width: 767px) {
	body.error404 section.breadcrumbs {
		display: none !important;
	}

	body.error404 .no-class-page h1 {
		width: 100%;
		text-align: center;
		font-size: 30px;
		margin-top: 30px;
		margin-bottom: 20px;
	}
}

/* Шаблон archive-punkti-zaboru (Страницы punkti-zaboru) */
body.archive.post-type-archive-punkti-zaboru section.breadcrumbs,
body.archive.post-type-archive-punkti-zaboru section.bareadcrumbs {
	padding-top: 100px !important;
}
body.archive.post-type-archive-punkti-zaboru {
	background: linear-gradient(to bottom right, #EAF7F8 0%, #F5FBFB 30%, #FFFFFF 100%);
	background-attachment: fixed;
	min-height: 100vh;
}

/* Страницы отдельных адресов забора (single-punkti-zaboru) */
.punkti-zaboru-template-default.single {
	background: linear-gradient(to bottom right, #EAF7F8 0%, #F5FBFB 30%, #FFFFFF 100%);
	background-attachment: fixed;
	min-height: 100vh;
}
.punkti-zaboru-template-default.single section.bareadcrumbs {
	padding-top: 110px !important;
}
.punkti-zaboru-template-default.single section.bareadcrumbs .breadcrumbs {
	padding-top: 23px !important;
}
@media (max-width: 1250px) {
	.punkti-zaboru-template-default.single .bareadcrumbs, .punkti-zaboru-template-default.single .point-page-content {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (max-width: 767px) {
	.punkti-zaboru-template-default.single section.bareadcrumbs {
		padding-top: 0px !important;
	}
	.punkti-zaboru-template-default.single .bareadcrumbs,
	.punkti-zaboru-template-default.single .point-page-content {
		padding-left: 10px;
		padding-right: 10px;
	}
	.punkti-zaboru-template-default.single .bareadcrumbs {
		display: none !important;
	}
	.punkti-zaboru-template-default.single .point-info {
		flex-direction: column;
		gap: 20px;
	}
	.punkti-zaboru-template-default.single .point-info .left-part {
		width: 100%;
	}
}

@media (max-width: 860px) {
	body.archive.post-type-archive-punkti-zaboru .list-point {
		gap: 20px;
	}
	body.archive.post-type-archive-punkti-zaboru .point-item {
		margin: 0px;
		width: 45%;
	}
	body.archive.post-type-archive-punkti-zaboru .point-item:nth-child(4n) {
		margin-top: -30px;
	}
}

@media (max-width: 767px) {
	  body.archive.post-type-archive-punkti-zaboru section.breadcrumbs,
		body.archive.post-type-archive-punkti-zaboru section.bareadcrumbs {
			padding-top: 0px !important;
		}
		.archive .container .breadcrumbs {
			padding-top: 10px !important;
		}
		body.archive.post-type-archive-punkti-zaboru h1 {
			margin-top: 0px;
			margin-bottom: 0px;
		}
}

@media (max-width: 704px) {
  body.archive.post-type-archive-punkti-zaboru .point-item:nth-child(4n) {
		margin-top: 0px;
	}
}

@media (max-width: 659px) {
	body.archive.post-type-archive-punkti-zaboru .point-item {
		width: 100%;
	}
}

.page-template-default .no-class-page,
body.single-post .no-class-page {
	padding-top: 5px;
}

body.page-template-default:not(.woocommerce-checkout) .no-class-page .container,
body.single-post .no-class-page .container {
	max-width: 980px;
	margin: 0 auto;
}

.page-template-default .no-class-page h1,
body.single-post .no-class-page h1 {
	color: #1B1C1E;
	font-size: 40px;
	font-weight: 700;
	font-family: 'Nunito', sans-serif;
	line-height: 1.3em;
	margin-bottom: 12px;
}

body.single-post .no-class-page .single-post-date {
	display: block;
	color: #6E7782;
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 26px;
}

.page-template-default .content-page p,
body.single-post .no-class-page .content-page p {
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.25em;
	margin-top: 25px;
}

.page-template-default .content-page p:first-child,
body.single-post .no-class-page .content-page p:first-child {
	margin-top: 0;
}

.page-template-default .content-page h2,
body.single-post .no-class-page .content-page h2 {
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-size: 18px;
	line-height: 1.25em;
	margin-top: 25px;
	font-weight: 600;
}

.page-template-default .content-page h3,
body.single-post .no-class-page .content-page h3 {
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-size: 18px;
	line-height: 1.25em;
	margin-top: 25px;
	font-weight: 400;
}

.page-template-default .content-page h4,
body.single-post .no-class-page .content-page h4 {
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.25em;
	margin-top: 25px;
	font-weight: 400;
}

.page-template-default .content-page li,
body.single-post .no-class-page .content-page li {
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.25em;
	margin-top: 15px;
	font-weight: 300;
}

.page-template-default .content-page .woocommerce-notices-wrapper li {
	margin-top: 0px !important;
}

.page-template-default .content-page a,
body.single-post .no-class-page .content-page a {
	color: #149FA4;
	text-decoration: none;
}

.page-template-default .content-page a:visited,
body.single-post .no-class-page .content-page a:visited {
	color: #149FA4;
}

.page-template-default .content-page a:hover,
body.single-post .no-class-page .content-page a:hover {
	color: #149FA4;
	text-decoration: none;
	opacity: 0.88;
}

@media (max-width: 1250px) {
	.page-template-default .breadcrumbs .container,
	body.single-post .breadcrumbs .container {
		padding-left: 25px;
		padding-right: 25px;
	}
	.no-class-page .container {
		padding-left: 25px;
		padding-right: 25px;
	}
}

@media (max-width: 767px) {
	.page-template-default .breadcrumbs,
	body.single-post .breadcrumbs {
		display: none !important;
	}
	.page-template-default .footer,
	body.single-post .footer, body.category .footer {
		margin-top: 50px !important;
	}
	.page-template-default .no-class-page h1,
	body.single-post .no-class-page h1 {
		width: 100%;
		text-align: center;
		font-size: 30px;
		margin-top: 30px;
		margin-bottom: 10px;
	}
	body.single-post .no-class-page .single-post-date {
		text-align: center;
		font-size: 13px;
		margin-bottom: 20px;
	}
}

/* Контакты */

.page-template-contact section.breadcrumbs {
	padding-top: 130px;
}

.page-template-contact {
	background: linear-gradient(to bottom right, #EAF7F8 0%, #F5FBFB 30%, #FFFFFF 100%);
	background-attachment: fixed;
	min-height: 100vh;
}

.page-template-contact .no-class-page {
	padding-top: 5px;
}

.page-template-contact .no-class-page h1 {
	color: #1B1C1E;
	font-size: 40px;
	font-weight: 700;
	font-family: 'Nunito', sans-serif;
	line-height: 1.3em;
	margin-bottom: 30px;
}

.page-template-contact .content-page p {
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.25em;
	margin-top: 25px;
}

.page-template-contact .content-page p:first-child {
	margin-top: 0;
}

.page-template-contact .content-page h2 {
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.25em;
	margin-top: 25px;
	font-weight: 600;
}

.page-template-contact .content-page li {
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.25em;
	margin-top: 25px;
	font-weight: 600;
}

.page-template-contact .list-adress-block h2 {
	color: #1B1C1E;
	font-size: 20px;
	font-weight: 700;
	font-family: 'Nunito', sans-serif;
	line-height: 30px;
	letter-spacing: 0;
	vertical-align: middle;
	margin-bottom: 20px;
}

.page-template-contact .list-adress-block ul {
	
}
.page-template-contact .list-adress-block ul li {
	color: #149FA4 !important;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0;
	vertical-align: middle;
	margin-top: 20px;
}
.page-template-contact .list-adress-block ul li:first-child {
	margin-top: 0;
}

@media (max-width: 1250px) {
	.page-template-contact .breadcrumbs .container {
		padding-left: 25px;
		padding-right: 25px;
	}

	.page-template-contact .container {
		padding-left: 25px;
		padding-right: 25px;
	}
}

@media (max-width: 1175px) {
	.page-template-contact .list-poaint-adres {
		display: flex;
		gap: 20px;
	}
	
	.page-template-contact .list-adress-block {
		width: 300px;
		flex-shrink: 0;
	}
	
	.page-template-contact #map {
		width: calc(100% - 320px);
		flex: 1;
		min-width: 0;
	}
}

@media (max-width: 767px) {
	.page-template-contact .breadcrumbs {
		display: none !important;
	}

	.page-template-contact .footer {
		margin-top: 50px !important;
	}

	.page-template-contact .no-class-page h1 {
		width: 100%;
		text-align: center;
		font-size: 30px;
		margin-top: 30px;
		margin-bottom: 20px;
	}

	.page-template-contact .list-poaint-adres {
		flex-direction: column;
		gap: 20px;
		align-items: stretch;
	}

	.page-template-contact .list-adress-block {
		width: 100%;
		order: 1;
	}

	.page-template-contact .list-adress-block ul {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}

	.page-template-contact .list-adress-block ul li {
		margin-top: 0;
		margin-right: 10px;
	}

	.page-template-contact #map {
		width: 100% !important;
		height: 400px !important;
		min-height: 400px !important;
		order: 2;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.page-template-contact .list-poaint-adres {
		padding-top: 0px !important;
	}

	.page-template-contact .list-adress-block h2 {
		margin-top: 0px !important;
	}

	.page-template-contact h1 {
		margin-bottom: 0px !important;
		margin-top: 15px !important;
	}

}


/* Контакти 2 */

.page-template-contact-2 section.breadcrumbs {
	padding-top: 130px;
}

.page-template-contact-2 {
	background: linear-gradient(to bottom right, #EAF7F8 0%, #F5FBFB 30%, #FFFFFF 100%);
	background-attachment: fixed;
	min-height: 100vh;
}

.page-template-contact-2 .no-class-page {
	padding-top: 5px;
}

.page-template-contact-2 .no-class-page h1 {
	color: #1B1C1E;
	font-size: 40px;
	font-weight: 700;
	font-family: 'Nunito', sans-serif;
	line-height: 1.3em;
	margin-bottom: 30px;
}

.page-template-contact-2 .no-class-page .container {
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}

.page-template-contact-2 .contact_bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	padding: 30px;
	border-radius: 20px;
	background: rgba(20, 159, 164, 0.05);
	gap: 0;
}

.page-template-contact-2 .contact_bar_label {
	display: block;
	font-family: 'Montserrat', 'Nunito', sans-serif;
	font-weight: 300;
	font-size: 13px;
	line-height: 1.3;
	color: #149FA4;
	margin-bottom: 8px;
}

.page-template-contact-2 .contact_bar_zone_phone {
	flex: 1 1 auto;
	min-width: 0;
}

.page-template-contact-2 .contact_bar_zone:not(:last-child) {
	padding-right: 30px;
}

.page-template-contact-2 .contact_bar_zone:not(:first-child) {
	position: relative;
	border-left: none;
	padding-left: 30px;
}

/* Однакова висота вертикальних ліній (не тягнути на всю висоту колонки з підписами) */
.page-template-contact-2 .contact_bar_zone:not(:first-child)::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 42px;
	background-color: rgba(20, 159, 164, 0.2);
}

.page-template-contact-2 .contact_bar_phone_row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.page-template-contact-2 .contact_bar_phone_icon {
	flex-shrink: 0;
	display: block;
	width: 20px;
	height: auto;
}

.page-template-contact-2 .contact_bar_phone_link {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.3;
	color: #000000;
	text-decoration: none;
}

.page-template-contact-2 .contact_bar_phone_text {
	cursor: default;
}

.page-template-contact-2 .contact_bar_zone_btn_write,
.page-template-contact-2 .contact_bar_zone_btn_call {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 1 auto;
}

/* Друга кнопка — остання в .contact_bar_buttons_row, тому :not(:last-child) не дає відступ перед соцмережами */
.page-template-contact-2 .contact_bar_zone_btn_call {
	padding-right: 30px;
}

.page-template-contact-2 .contact_bar_buttons_row {
	display: contents;
}

.page-template-contact-2 .contact_bar_zone_social {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.page-template-contact-2 .contact_bar_social_icons {
	margin-top: 0;
}

.page-template-contact-2 .contact_bar_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border-radius: 800px;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	text-decoration: none;
	box-sizing: border-box;
	white-space: nowrap;
	max-width: 100%;
	max-width: 170px;
	width: 170px;
}

.page-template-contact-2 .contact_bar_btn_outline {
	border: 1px solid #149FA433;
	background: transparent;
	color: #149FA4;
	padding: 10px 40px;
}

.page-template-contact-2 .contact_bar_btn_solid {
	border: 1px solid #149FA4;
	background-color: #149FA4;
	color: #ffffff;
}

@media (max-width: 981px) {
	.page-template-contact-2 .contact_bar_zone:not(:last-child) {
		padding-right: 16px;
	}

	.page-template-contact-2 .contact_bar_zone:not(:first-child) {
		padding-left: 16px;
	}

	.page-template-contact-2 .contact_bar_zone_btn_call {
		padding-right: 16px;
	}
}

@media (max-width: 911px) {
	.page-template-contact-2 .contact_bar_btn_outline {
		padding: 10px 35px;
	}

	.page-template-contact-2 .contact_bar {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 28px 20px 32px;
		gap: 0;
	}

	.page-template-contact-2 .contact_bar_zone_phone {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.page-template-contact-2 .contact_bar_phone_row {
		justify-content: center;
	}

	.page-template-contact-2 .contact_bar_label {
		margin-bottom: 10px;
	}

	/* Ряд з двох кнопок: без лінії між ними, з короткою лінією зверху */
	.page-template-contact-2 .contact_bar_buttons_row {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		column-gap: 10px;
		row-gap: 12px;
		width: 100%;
		box-sizing: border-box;
		position: relative;
		padding-top: 24px;
		margin-top: 24px;
	}

	.page-template-contact-2 .contact_bar_buttons_row::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		width: min(75%, 300px);
		height: 1px;
		background-color: rgba(20, 159, 164, 0.2);
	}

	.page-template-contact-2 .contact_bar_buttons_row .contact_bar_zone_btn_write,
	.page-template-contact-2 .contact_bar_buttons_row .contact_bar_zone_btn_call {
		justify-content: center;
		flex: 0 1 auto;
		padding-left: 0 !important;
		padding-right: 0 !important;
		margin-top: 0 !important;
		padding-top: 0 !important;
		border-top: none !important;
		border-left: none !important;
	}

	.page-template-contact-2 .contact_bar_buttons_row .contact_bar_zone_btn_call::before {
		display: none !important;
	}

	.page-template-contact-2 .contact_bar_zone:not(:first-child) {
		border-left: none;
		padding-left: 0;
	}

	.page-template-contact-2 .contact_bar_zone_btn_write::before,
	.page-template-contact-2 .contact_bar_zone_btn_call::before,
	.page-template-contact-2 .contact_bar_zone_social::before {
		display: none;
	}

	.page-template-contact-2 .contact_bar_zone:not(:last-child) {
		padding-right: 0;
	}

	.page-template-contact-2 .contact_bar_zone_social {
		align-items: center;
		width: 100%;
		border-top: none !important;
		margin-top: 24px;
		padding-top: 24px;
		position: relative;
	}

	.page-template-contact-2 .contact_bar_zone_social::after {
		content: '';
		position: absolute;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		width: min(75%, 300px);
		height: 1px;
		background-color: rgba(20, 159, 164, 0.2);
	}

	.page-template-contact-2 .contact_bar_social_icons {
		justify-content: center;
		width: 100%;
	}

	.page-template-contact-2 .contact_bar_phone_link {
		font-size: 20px;
	}

}

@media (max-width: 767px) {
	.page-template-contact-2 .contact_bar {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 28px 20px 32px;
		gap: 0;
	}

	.page-template-contact-2 .contact_bar_zone_phone {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.page-template-contact-2 .contact_bar_phone_row {
		justify-content: center;
	}

	.page-template-contact-2 .contact_bar_label {
		margin-bottom: 10px;
	}

	/* Ряд з двох кнопок: без лінії між ними, з короткою лінією зверху */
	.page-template-contact-2 .contact_bar_buttons_row {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		column-gap: 10px;
		row-gap: 12px;
		width: 100%;
		box-sizing: border-box;
		position: relative;
		padding-top: 24px;
		margin-top: 24px;
	}

	.page-template-contact-2 .contact_bar_buttons_row::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		width: min(75%, 300px);
		height: 1px;
		background-color: rgba(20, 159, 164, 0.2);
	}

	.page-template-contact-2 .contact_bar_buttons_row .contact_bar_zone_btn_write,
	.page-template-contact-2 .contact_bar_buttons_row .contact_bar_zone_btn_call {
		justify-content: center;
		flex: 0 1 auto;
		padding-left: 0 !important;
		padding-right: 0 !important;
		margin-top: 0 !important;
		padding-top: 0 !important;
		border-top: none !important;
		border-left: none !important;
	}

	.page-template-contact-2 .contact_bar_buttons_row .contact_bar_zone_btn_call::before {
		display: none !important;
	}

	.page-template-contact-2 .contact_bar_zone:not(:first-child) {
		border-left: none;
		padding-left: 0;
	}

	.page-template-contact-2 .contact_bar_zone_btn_write::before,
	.page-template-contact-2 .contact_bar_zone_btn_call::before,
	.page-template-contact-2 .contact_bar_zone_social::before {
		display: none;
	}

	.page-template-contact-2 .contact_bar_zone:not(:last-child) {
		padding-right: 0;
	}

	.page-template-contact-2 .contact_bar_zone_social {
		align-items: center;
		width: 100%;
		border-top: none !important;
		margin-top: 24px;
		padding-top: 24px;
		position: relative;
	}

	.page-template-contact-2 .contact_bar_zone_social::after {
		content: '';
		position: absolute;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		width: min(75%, 300px);
		height: 1px;
		background-color: rgba(20, 159, 164, 0.2);
	}

	.page-template-contact-2 .contact_bar_social_icons {
		justify-content: center;
		width: 100%;
	}

	.page-template-contact-2 .contact_bar_phone_link {
		font-size: 20px;
	}
}

@media (max-width: 452px) {
	.page-template-contact-2 .contact_bar_btn {
		max-width: 160px;
	}
}

.page-template-contact-2 .contact_addresses_wrap {
	margin-top: 30px;
}

.page-template-contact-2 .contact_addresses_divider {
	margin: 20px 0;
	height: 1px;
	width: 100%;
	background-color: rgba(20, 159, 164, 0.2);
	box-sizing: border-box;
}

.page-template-contact-2 .contact_address_card {
	border: 1px solid rgba(20, 159, 164, 0.2);
	background: #ffffff;
	border-radius: 20px;
	padding: 30px;
}

.page-template-contact-2 .contact_address_card + .contact_address_card {
	margin-top: 16px;
}

.page-template-contact-2 .contact_address_toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	text-align: left;
}

.page-template-contact-2 .contact_address_title_row {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.page-template-contact-2 .contact_address_title_icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.page-template-contact-2 .contact_address_title {
	font-family: 'Nunito', sans-serif;
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	color: #1b1c1e;
}

.page-template-contact-2 .contact_address_arrow {
	display: inline-block;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-right: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url('assets/images/arrow-close.svg');
	transition: opacity 0.2s ease;
}

.page-template-contact-2 .contact_address_card.is_open .contact_address_arrow {
	background-image: url('assets/images/arrow-open.svg');
}

.page-template-contact-2 .contact_address_body {
	margin-top: 20px;
}

.page-template-contact-2 .contact_address_body[hidden] {
	display: none;
}

.page-template-contact-2 .contact_address_body_inner {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	padding-top: 0;
}

.page-template-contact-2 .contact_address_left {
	flex: 0 0 227px;
	max-width: 227px;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.page-template-contact-2 .contact_address_cabinet {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-top: 1px solid rgba(20, 159, 164, 0.2);
	border-bottom: 1px solid rgba(20, 159, 164, 0.2);
}

.page-template-contact-2 .contact_address_info_icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.page-template-contact-2 .contact_address_cabinet_text,
.page-template-contact-2 .contact_address_schedule_title {
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #1b1c1e;
	text-align: left;
}

.page-template-contact-2 .contact_address_schedule {
	margin-top: 15px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.page-template-contact-2 .contact_address_schedule + .contact_address_schedule {
	margin-top: 14px;
}

.page-template-contact-2 .contact_address_schedule_rows {
	width: 100%;
}

.page-template-contact-2 .contact_address_schedule_row {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0;
	flex-wrap: nowrap;
}

.page-template-contact-2 .contact_address_schedule_row + .contact_address_schedule_row {
	margin-top: 10px;
}

.page-template-contact-2 .contact_address_schedule_title {
	flex: 0 0 106px;
	width: 106px;
	max-width: 106px;
	min-width: 0;
	box-sizing: border-box;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.page-template-contact-2 .contact_address_schedule_time {
	flex: 0 0 85px;
	width: 85px;
	max-width: 85px;
	min-width: 0;
	box-sizing: border-box;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #1b1c1e;
	text-align: left;
	white-space: nowrap;
}

.page-template-contact-2 .contact_address_feedback_btn {
	margin-top: 30px;
	width: fit-content;
	min-width: 170px;
}

.page-template-contact-2 .contact_address_map {
	flex: 1 1 auto;
	min-width: 0;
}

.page-template-contact-2 .contact_address_map iframe {
	display: block;
	width: 100%;
	aspect-ratio: 680 / 332;
	min-height: 332px;
	max-height: 360px;
	border: 0;
	border-radius: 20px;
	filter: sepia(16%) saturate(80%) hue-rotate(-8deg) brightness(1.02);
}

@media (max-width: 900px) {
	.page-template-contact-2 .contact_address_card {
		padding: 20px;
	}

	.page-template-contact-2 .contact_address_body {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		box-sizing: border-box;
	}

	.page-template-contact-2 .contact_address_body_inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
		width: 100%;
		box-sizing: border-box;
	}

	.page-template-contact-2 .contact_address_toggle {
		justify-content: space-between;
		text-align: left;
	}

	.page-template-contact-2 .contact_address_title_row {
		justify-content: flex-start;
		align-items: flex-start;
		flex: 1 1 auto;
		min-width: 0;
		text-align: left;
	}

	.page-template-contact-2 .contact_address_title {
		text-align: left;
	}

	.page-template-contact-2 .contact_address_left {
		flex-basis: auto;
		max-width: 100%;
		width: 100%;
		align-items: flex-start;
		text-align: left;
		box-sizing: border-box;
	}

	.page-template-contact-2 .contact_address_cabinet {
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
		box-sizing: border-box;
	}

	.page-template-contact-2 .contact_address_cabinet_text {
		text-align: left;
	}

	.page-template-contact-2 .contact_address_schedule {
		align-items: flex-start;
		width: 100%;
		box-sizing: border-box;
	}

	.page-template-contact-2 .contact_address_schedule_rows {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.page-template-contact-2 .contact_address_schedule_title {
		flex: 0 1 212px;
		width: 212px;
		max-width: min(212px, calc(100% - 90px));
		min-width: 106px;
	}

	.page-template-contact-2 .contact_address_map {
		width: 100%;
		align-self: stretch;
		flex: none;
		min-width: 0;
		box-sizing: border-box;
	}

	.page-template-contact-2 .contact_address_map iframe {
		aspect-ratio: 16 / 9;
		min-height: 0;
		max-height: none;
	}

	.page-template-contact-2 .contact_address_feedback_btn {
		margin-top: 30px;
		margin-bottom: 5px;
		align-self: center;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 580px) {
	.page-template-contact-2 .contact_address_card {
		padding: 16px;
	}

	.page-template-contact-2 .contact_address_title {
		font-size: 18px;
		line-height: 26px;
	}

	.page-template-contact-2 .contact_address_title_row {
		align-items: flex-start;
	}

	.page-template-contact-2 .contact_address_arrow {
		width: 16px;
		height: 16px;
	}

	.page-template-contact-2 .contact_address_body {
		margin-top: 14px;
	}

	.page-template-contact-2 .contact_address_cabinet {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.page-template-contact-2 .contact_address_schedule {
		margin-top: 12px;
		gap: 12px;
	}

	.page-template-contact-2 .contact_address_schedule_row {
		gap: 10px;
	}

	.page-template-contact-2 .contact_address_schedule_time {
		font-size: 15px;
		line-height: 19px;
	}

	.page-template-contact-2 .contact_address_map {
		width: 100%;
	}

	.page-template-contact-2 .contact_address_map iframe {
		aspect-ratio: 4 / 3;
		border-radius: 16px;
	}

	.page-template-contact-2 .contact_address_feedback_btn {
		margin-top: 30px;
		margin-bottom: 5px;
		min-width: 0;
		width: 100%;
		max-width: 220px;
	}
}

@media (max-width: 424px) {
	.page-template-contact-2 .contact_address_schedule_title {
		flex: 0 0 103px;
		width: 103px;
		max-width: 103px;
		min-width: 103px;
	}
}



.page-template-contact-2 .content-page p {
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.25em;
	margin-top: 25px;
}

.page-template-contact-2 .content-page p:first-child {
	margin-top: 0;
}

@media (max-width: 1250px) {
	.page-template-contact-2 .breadcrumbs .container {
		padding-left: 25px;
		padding-right: 25px;
	}

	.page-template-contact-2 .no-class-page .container {
		padding-left: 25px;
		padding-right: 25px;
	}
}

@media (max-width: 767px) {
	.page-template-contact-2 .breadcrumbs {
		display: none !important;
	}

	.page-template-contact-2 .footer {
		margin-top: 50px !important;
	}

	.page-template-contact-2 .no-class-page h1 {
		width: 100%;
		text-align: center;
		font-size: 30px;
		margin-top: 30px;
		margin-bottom: 20px;
	}
}

/* Попапи «Напишіть нам», «Залишити відгук» та «Замовити дзвінок» (Контакти 2) */
body.contact_write_popup_open,
body.contact_feedback_popup_open,
body.contact_call_popup_open {
	overflow: hidden;
}

/* Попапи сховані за замовчуванням */
.contact_write_popup,
.contact_feedback_popup,
.contact_call_popup {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	inset: 0;
	z-index: 100000;
	padding: 16px;
	box-sizing: border-box;
}

body.contact_call_popup_open .contact_call_popup {
	z-index: 100001;
}

body.contact_write_popup_open .contact_write_popup {
	display: flex !important;
}

body.contact_feedback_popup_open .contact_feedback_popup {
	display: flex !important;
}

body.contact_call_popup_open .contact_call_popup {
	display: flex !important;
}

.contact_write_popup_overlay,
.contact_feedback_popup_overlay,
.contact_call_popup_overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.contact_write_popup_dialog,
.contact_feedback_popup_dialog,
.contact_call_popup_dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-height: calc(100vh - 32px);
	overflow-y: auto;
	box-sizing: border-box;
	padding: 80px 30px 30px 30px;
	border-radius: 20px;
	border: 1px solid rgba(20, 159, 164, 0.15);
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
	background:
		linear-gradient(0deg, rgba(20, 159, 164, 0.05), rgba(20, 159, 164, 0.05)),
		#ffffff;
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-family: 'Nunito', sans-serif;
}

.contact_write_popup_dialog,
.contact_feedback_popup_dialog {
	max-width: 780px;
}

.contact_call_popup_dialog {
	max-width: 440px;
}

.contact_write_popup_close,
.contact_feedback_popup_close,
.contact_call_popup_close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact_write_popup_close_icon,
.contact_feedback_popup_close_icon,
.contact_call_popup_close_icon {
	display: block;
	width: 18px;
	height: 18px;
	position: relative;
}

.contact_write_popup_close_icon::before,
.contact_write_popup_close_icon::after,
.contact_feedback_popup_close_icon::before,
.contact_feedback_popup_close_icon::after,
.contact_call_popup_close_icon::before,
.contact_call_popup_close_icon::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 38px;
	height: 1.5px;
	background: #6b6f72;
	border-radius: 1px;
}

.contact_write_popup_close_icon::before,
.contact_feedback_popup_close_icon::before,
.contact_call_popup_close_icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.contact_write_popup_close_icon::after,
.contact_feedback_popup_close_icon::after,
.contact_call_popup_close_icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.contact_write_popup_title,
.contact_feedback_popup_title,
.contact_call_popup_title {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	color: #1b1c1e;
	font-family: 'Nunito', sans-serif;
}

.contact_write_popup_title,
.contact_feedback_popup_title {
	text-align: left;
}

.contact_write_popup_subtitle,
.contact_feedback_popup_subtitle {
	margin: -8px 0 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;
	color: #4a4d50;
	font-family: 'Nunito', sans-serif;
}

/* Динамічна назва точки; порожній стан — зарезервована висота рядка без «стрибка» верстки */
#contact_feedback_popup_subtitle {
	min-height: 1.35em;
}

.contact_call_popup_title {
	text-align: center;
}

.contact_write_form,
.contact_call_form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	margin: 0;
}

.contact_write_popup_row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	width: 100%;
}

.contact_write_field,
.contact_call_field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.contact_write_label,
.contact_call_label {
	font-size: 16px;
	font-weight: 400;
	color: #4a4d50;
	line-height: 1.2;
}

.contact_write_input,
.contact_write_textarea,
.contact_call_input {
	width: 100%;
	box-sizing: border-box;
	padding: 18px 18px;
	border: 1px solid rgba(20, 159, 164, 0.3);
	border-radius: 999px;
	background: #ffffff;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	color: #1b1c1e;
}

.contact_write_input::placeholder,
.contact_write_textarea::placeholder,
.contact_call_input::placeholder {
	color: #99a0a1;
}

.contact_write_textarea {
	border-radius: 16px;
	min-height: 120px;
	resize: vertical;
}

.contact_write_input:focus,
.contact_write_textarea:focus,
.contact_call_input:focus {
	outline: none;
	border-color: rgba(20, 159, 164, 0.6);
}

.contact_write_honeypot,
.contact_call_honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.contact_write_actions {
	display: flex;
	justify-content: flex-start;
}

.contact_call_actions {
	display: flex;
	width: 100%;
}

.contact_write_submit,
.contact_call_submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	padding: 18px 32px;
	border: none;
	border-radius: 999px;
	background: #149fa4;
	color: #ffffff;
	font-family: 'Nunito', sans-serif;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
}

.contact_call_submit {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.contact_write_submit:hover,
.contact_call_submit:hover {
	filter: brightness(1.05);
}

.contact_write_submit:disabled,
.contact_call_submit:disabled {
	opacity: 0.85;
	cursor: not-allowed;
}

.contact_write_feedback,
.contact_call_feedback {
	display: none;
	width: 100%;
	box-sizing: border-box;
	margin-top: 4px;
	padding: 16px 20px;
	border-radius: 16px;
	font-size: 16px;
	line-height: 1.35;
	text-align: center;
	font-family: 'Nunito', sans-serif;
}

body.contact_write_send_success #contact_write_popup .contact_write_feedback--success,
body.contact_write_send_error #contact_write_popup .contact_write_feedback--error {
	display: block;
}

body.contact_feedback_send_success #contact_feedback_popup .contact_write_feedback--success,
body.contact_feedback_send_error #contact_feedback_popup .contact_write_feedback--error {
	display: block;
}

body.contact_call_send_success #contact_call_popup .contact_call_feedback--success,
body.contact_call_send_error #contact_call_popup .contact_call_feedback--error {
	display: block;
}

body.contact_call_phone_invalid #contact_call_popup .contact_call_feedback--phone_invalid {
	display: block;
}

.contact_write_feedback--success,
.contact_call_feedback--success {
	background: #ffffff;
	color: #0d7a3e;
	border: 1px solid rgba(20, 159, 164, 0.15);
}

.contact_write_feedback--error,
.contact_call_feedback--error {
	background: #e8f7f7;
	color: #a01010;
}

.contact_call_feedback--phone_invalid {
	background: #fff8e6;
	color: #7a4a10;
	border: 1px solid rgba(200, 120, 40, 0.35);
}

body.contact_call_phone_invalid #contact_call_popup .contact_call_input--invalid {
	border-color: rgba(200, 120, 40, 0.75);
}

.contact_write_popup .screen-reader-text,
.contact_feedback_popup .screen-reader-text,
.contact_call_popup .screen-reader-text {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.contact_write_popup_dialog,
	.contact_feedback_popup_dialog,
	.contact_call_popup_dialog {
		padding: 48px 20px 24px 20px;
	}

	.contact_write_popup_title,
	.contact_feedback_popup_title {
		margin-top: 30px;
		text-align: center;
	}

	.contact_write_popup_subtitle,
	.contact_feedback_popup_subtitle {
		text-align: center;
	}

	.contact_write_popup_row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.contact_write_popup_dialog,
	.contact_feedback_popup_dialog,
	.contact_call_popup_dialog {
		padding: 40px 16px 20px 16px;
	}

	.contact_write_submit {
		width: 100%;
		min-width: 0;
	}
}


/* Поиск */

.search-results .bareadcrumbs {
	padding-top: 145px;
}

.search-results {
	background: linear-gradient(to bottom right, #EAF7F8 0%, #F5FBFB 30%, #FFFFFF 100%);
	background-attachment: fixed;
	min-height: 100vh;
}

.search-results .no-class-page {
	padding-top: 5px;
}

.search-results h1.search-results-title {
	color: #1B1C1E;
	font-size: 40px;
	font-weight: 700;
	font-family: 'Nunito', sans-serif;
	line-height: 1.3em;
	margin-bottom: 30px !important;
}
.search-results .search-results-page .container {
	max-width: 1200px;
	margin: 0 auto;
}

.search-results .search-results-title {
	margin: 0px !important;
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	font-size: 40px;
	line-height: 130%;
	color: #1B1C1E;
	margin-top: -10px;
}

@media (max-width: 1250px) {
	.tax-product_cat .breadcrumbs {
		padding-left: 10px;
		padding-right: 10px;
	}
	.search-results .breadcrumbs {
	 	padding-left: 10px;
	 	padding-right: 10px;
	 }
	.search-results .bareadcrumbs .container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 767px) {
	.search-results h1.search-results-title {
		font-size: 30px;
		margin-bottom: 20px !important;
		text-align: center;
	}
	.search-results .bareadcrumbs {
		display: none !important;
	}
	.search-results .search-results-page {
		padding-bottom: 0px !important;
	}
}