 @charset "UTF-8";

 .animate {
 	opacity: 0;
 	transition: opacity 0.9s ease, transform 0.9s ease;
 	will-change: opacity, transform;
 }

 .fade-up {
 	transform: translateY(80px);
 }

 .fade-up.show {
 	opacity: 1;
 	transform: translateY(0);
 	/* Зліва */
 }

 .fade-left {
 	transform: translateX(-100px);
 }

 .fade-left.show {
 	opacity: 1;
 	transform: translateX(0);
 }

 /* Справа */
 .fade-right {
 	transform: translateX(100px);
 }

 .fade-right.show {
 	opacity: 1;
 	transform: translateX(0);
 }

 /* Масштаб */
 .zoom-in {
 	transform: scale(0.6);
 }

 .zoom-in.show {
 	opacity: 1;
 	transform: scale(1);
 }

 * {
 	margin: 0;
 	padding: 0;
 	box-sizing: border-box;
 }

 html {
 	font-size: 0.85px;
 	scroll-behavior: smooth;
 }

 @media screen and (min-width: 1440px) {
 	html {
 		font-size: 0.95px;
 	}
 }

 @media screen and (min-width: 1920px) {
 	html {
 		font-size: 1px;
 	}
 }

 @media screen and (min-width: 2200px) {
 	html {
 		font-size: 1.5px;
 	}
 }

 body {
 	color: #121212;
 	font-size: 18rem;
 	font-family: "Ubuntu Sans";
 	font-weight: 400;
 }

 @media screen and (min-width: 768px) {
 	body {
 		font-size: 19rem;
 	}
 }

 main {
 	padding-top: 84px;
 	overflow-x: hidden;
 }

 h1 {
 	font-size: 44rem;
 }

 @media screen and (min-width: 1024px) {
 	h1 {
 		font-size: 64rem;
 	}
 }

 h2 {
 	padding-bottom: 50rem;
 	color: #ED6B27;
 	font-size: 32rem;
 	font-weight: 600;
 }

 @media screen and (min-width: 1024px) {
 	h2 {
 		font-size: 48rem;
 	}
 }

 h3 {
 	color: #0F283D;
 	font-size: 22rem;
 	line-height: 1.2em;
 }

 @media screen and (min-width: 768px) {
 	h3 {
 		font-size: 32rem;
 	}
 }

 ul {
 	list-style: none;
 }

 a {
 	transition: 0.5s;
 	text-decoration: none;
 }

 b {
 	font-weight: 500;
 }

 .wrapper_header,
 .wrapper {
 	width: 90%;
 	margin: 0 auto;
 }

 @media screen and (min-width: 1440px) {
 	.wrapper {
 		max-width: 1440rem;
 	}
 }

 .flex {
 	display: flex;
 }

 .flex-between {
 	display: flex;
 	justify-content: space-between;
 }

 .flex-center {
 	justify-content: center;
 }

 .items-center {
 	align-items: center;
 }

 .column {
 	flex-direction: column;
 }

 .wrap_768 {
 	flex-wrap: wrap;
 }

 @media screen and (min-width: 768px) {
 	.wrap_768 {
 		flex-wrap: nowrap;
 	}
 }

 .wrap_1024 {
 	flex-wrap: wrap;
 }

 @media screen and (min-width: 1024px) {
 	.wrap_1024 {
 		flex-wrap: nowrap;
 	}
 }

 @media screen and (max-width: 767.98px) {
 	.reverse_wrap {
 		flex-wrap: wrap-reverse;
 	}
 }




 .grid {
 	display: grid;
 }

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

 @media screen and (min-width: 768px) {
 	.col_3 {
 		grid-template-columns: repeat(3, 1fr);
 	}
 }

 .tac {
 	text-align: center;
 }

 .pt_100 {
 	padding-top: 50rem;
 }

 @media screen and (min-width: 1440px) {
 	.pt_100 {
 		padding-top: 100rem;
 	}
 }

 .pt_60 {
 	padding-top: 60rem;
 }

 .gap_10 {
 	gap: 10rem;
 }

 .gap_20 {
 	gap: 10px;
 }

 @media screen and (min-width: 768px) {
 	.gap_20 {
 		gap: 20rem;
 	}
 }

 .gap_30 {
 	gap: 10rem;
 }

 @media screen and (min-width: 768px) {
 	.gap_30 {
 		gap: 30rem;
 	}
 }

 .gap_100 {
 	gap: 50rem;
 }

 @media screen and (min-width: 1024px) {
 	.gap_100 {
 		gap: 100rem;
 	}
 }

 .dark_mode {
 	color: #fff;
 	background: #0F283D;
 }

 .dark_mode a {
 	color: #fff;
 }

 .main_section {
 	position: relative;
 }

 .dark_mask,
 .mask,
 .mask_news {
 	position: absolute;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 }

 .dark_mask img,
 .dark_mask video,
 .mask img,
 .mask video,
 .mask_news img,
 .mask_news video {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 }

 .dark_mask video,
 .mask video,
 .mask_news video {
 	position: absolute;
 	top: 0;
 	left: 0;
 	opacity: 0;
 }

 .mask {
 	background: rgba(0, 0, 0, 0.8);
 	z-index: 2;
 }

 .fixed_header {
 	position: fixed;
 	top: 0;
 	left: 0;
 	width: 100%;
 	padding: 20rem 0;
 	z-index: 4;
 	transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
 }

 .home .fixed_header {
 	background-color: transparent;
 }

 .home main {
 	padding: 0;
 }

 .header .cta {
 	min-width: 200rem;
 }

 .home .header_filled {
 	background-color: #0F283D;
 }

 .nav {
 	position: fixed;
 	top: 0;
 	right: -100%;
 	width: 80vw;
 	height: 100vh;
 	padding: 80rem 20rem;
 	background-color: #0F283D;
 	z-index: 10;
 	transition: 0.5s;
 }

 @media screen and (min-width: 500px) {
 	.nav {
 		width: 60vw;
 	}
 }

 @media screen and (min-width: 1200px) {
 	.nav {
 		position: static;
 		width: auto;
 		height: auto;
 		padding: 0;
 		background: transparent;
 	}
 }

 .navigation_menu li {
 	padding-bottom: 15rem;
 }

 @media screen and (min-width: 1200px) {
 	.navigation_menu li {
 		padding: 0;
 	}
 }

 .navigation_menu a {
 	display: block;
 	font-size: 25rem;
 }

 @media screen and (min-width: 1200px) {
 	.navigation_menu a {
 		font-size: 16rem;
 	}
 }

 .navigation_menu a:hover {
 	color: #ed6b27;
 }

 @media screen and (min-width: 1200px) {
 	.navigation_menu {
 		display: flex;
 		justify-content: space-between;
 		align-items: center;
 		gap: 30rem;
 		text-align: center;
 	}
 }

 @media screen and (min-width: 1200px) {
 	.cancel_li {
 		display: none;
 	}
 }

 .dark-bgc {
 	display: none;
 	position: fixed;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 	background-color: rgba(0, 0, 0, 0.5);
 	backdrop-filter: blur(2px);
 	z-index: 6;
 }

 .mobile_btn {
 	padding-top: 50rem;
 }

 .mobile_btn .cta {
 	width: 100%;
 	max-width: none;
 }

 @media screen and (min-width: 1200px) {
 	.mobile_btn {
 		display: none;
 	}
 }

 .desctop_btn {
 	display: none;
 }

 @media screen and (min-width: 1200px) {
 	.desctop_btn {
 		display: block;
 	}
 }

 .burger {
 	width: 50px;
 	height: 100%;
 	cursor: pointer;
 }

 @media screen and (min-width: 1200px) {
 	.burger {
 		display: none;
 	}
 }

 .bord {
 	display: block;
 	margin: 4px;
 	width: 30px;
 	height: 5px;
 	border-radius: 2px;
 	background-color: #ED6B27;
 	transition: all 1s ease;
 }

 .burger:hover>.b1 {
 	transform: translateX(20px);
 }

 .burger:hover>.b2 {
 	transform: translateX(10px);
 }

 .b1 {
 	width: 20px;
 }

 .b2 {
 	width: 30px;
 }

 .b3 {
 	width: 40px;
 	top: 10px;
 }

 a.cancel {
 	position: absolute;
 	top: 30px;
 	right: 20px;
 	cursor: pointer;
 }

 @media screen and (min-width: 1200px) {
 	a.cancel {
 		display: none;
 	}
 }

 .main_text {
 	position: relative;
 	max-width: 1156rem;
 	min-height: 90vh;
 	padding: 84px 0 50rem;
 	color: #fff;
 	z-index: 2;
 }

 .main_text h1 {
 	line-height: normal;
 }

 .main_text p {
 	padding: 60rem 0;
 }

 .main_text a {
 	color: #fff;
 }

 .cta {
 	display: block;
 	max-width: 255rem;
 	min-width: 255rem;
 	padding: 15rem 20rem;
 	border-radius: 10rem;
 	border: 1px solid #ed6b27;
 	background: #ED6B27;
 	font-size: 16rem;
 	font-weight: 500;
 	text-align: center;
 }

 .cta:hover {
 	background-color: transparent;
 }

 .transparent_cta {
 	background: transparent;
 	border: 1px solid #ed6b27;
 }

 .transparent_cta:hover {
 	background-color: #ed6b27;
 	color: #fff;
 }

 .about_container h3 {
 	padding: 0 0 40rem;
 }

 .about_container p {
 	padding-bottom: 20rem;
 }

 .img_about img {
 	width: 100%;
 	min-height: 200px;
 	object-fit: cover;
 }

 @media screen and (min-width: 768px) {

 	.asortment_list div,
 	.need_block div {
 		width: 100%;
 	}
 }

 .asortment_list img,
 .need_block img {
 	width: 100%;
 	height: 100%;
 	border-radius: 3px;
 }

 .asortment_list ul {
 	padding-bottom: 10px;
 }

 .asortment_list li {
 	position: relative;
 	margin-bottom: 20rem;
 	padding-left: 20px;
 }

 .asortment_list li::before {
 	content: "";
 	position: absolute;
 	top: 50%;
 	left: 0;
 	width: 10px;
 	height: 10px;
 	border-radius: 50%;
 	background: #ED6B27;
 	transform: translate(20%, -50%);
 }

 .asortment_list span {
 	display: inline-block;
 	padding: 5rem 15rem;
 	color: #fff;
 	background: #ED6B27;
 	border-radius: 3px;
 }

 .need_block {
 	padding-bottom: 50rem;
 }

 @media screen and (min-width: 1440px) {
 	.need_block {
 		padding-bottom: 100rem;
 	}
 }

 .statistic_container {
 	padding: 40rem 0;
 	font-size: 18rem;
 }

 .statistic_container div>div {
 	width: 100%;
 }

 @media screen and (min-width: 500px) {
 	.statistic_container div>div {
 		width: 40%;
 	}
 }

 @media screen and (min-width: 1024px) {
 	.statistic_container div>div {
 		max-width: 220rem;
 	}
 }

 .statistic_container p {
 	padding: 20rem 0;
 }

 .statistic_container .counter,
 .statistic_container .simbol_text {
 	color: #FFF;
 	font-size: 48rem;
 	font-weight: 600;
 }

 .statistic_container sup {
 	font-size: 15rem;
 }

 .border_bottom {
 	border-bottom: 3px solid #ED6B27;
 }

 .text-bold {
 	font-weight: 700;
 }

 .fill_cta {
 	color: #fff;
 }

 .fill_cta:hover {
 	background: #D65511;
 }

 .dark_text {
 	color: #121212;
 }

 .products_section figcaption {
 	position: relative;
 }

 .product {
 	padding: 30rem;
 	border-radius: 3px;
 	transition: 0.5s;
 	background: #E4E2E2;
 }

 @media screen and (min-width: 1024px) {
 	.product {
 		padding: 70rem 40rem 30rem;
 	}
 }

 .product img {
 	width: 100%;
 	height: 212rem;
 	transition: 0.5s;
 	object-fit: contain;
 }

 .product h4 {
 	padding: 10rem 15rem;
 	color: #0F283D;
 	font-size: 16rem;
 	font-weight: 500;
 	border-radius: 3px;
 	border: 1px solid #0F283D;
 }

 .mask_prod {
 	position: absolute;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 	z-index: 1;
 }

 .mask_prod:hover~.product {
 	background: #BDBDBD;
 }

 .mask_prod:hover~.product picture img {
 	transform: scale(1.05);
 }

 .model {
 	padding: 5rem 15rem;
 	font-size: 26rem;
 	font-weight: 500;
 	border-radius: 3px;
 }

 .new_card img {
 	width: 100%;
 	object-fit: cover;
 	border-radius: 3px;
 }

 .new_card time,
 .new_card .flag {
 	padding: 8rem 10rem;
 	font-size: 12px;
 	font-weight: 500;
 	border-radius: 3px;
 }

 .new_card .flag {
 	border: 1px solid #0F283D;
 }

 .new_card h4 {
 	padding-bottom: 15rem;
 	color: #000;
 	font-size: 18rem;
 	font-weight: 500;
 }

 .new_card p {
 	display: -webkit-box;
 	-webkit-line-clamp: 3;
 	-webkit-box-orient: vertical;
 	overflow: hidden;
 	text-overflow: ellipsis;
 	font-size: 14px;
 }

 .time_new {
 	padding: 15rem 0;
 }

 .info_text {
 	padding: 30rem;
 }

 @media screen and (min-width: 768px) {
 	.info_text {
 		width: 50%;
 	}
 }

 @media screen and (min-width: 1440px) {
 	.info_text {
 		padding: 73rem 79rem 73rem 123rem;
 	}
 }

 .info_text h2 {
 	color: #fff;
 	font-size: 32rem;
 }

 .info_text p {
 	padding-bottom: 50rem;
 	font-size: 14px;
 	line-height: 1.5em;
 }

 .image_info {
 	width: 100%;
 }

 @media screen and (min-width: 768px) {
 	.image_info {
 		width: 50%;
 	}
 }

 .image_info img {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 }

 .contact_container {
 	padding-bottom: 100rem;
 }

 .contacts div {
 	padding-bottom: 30rem;
 }

 .contacts h3 {
 	font-weight: 500;
 	padding-bottom: 10rem;
 }

 .contacts a,
 .contacts address {
 	color: #121212;
 	font-size: 18rem;
 	font-style: normal;
 }

 .contacts a:hover {
 	color: #ED6B27;
 }

 @media screen and (min-width: 768px) {
 	.contacts {
 		width: 40%;
 	}
 }

 .social svg {
 	transition: 0.5s;
 }

 .social a:hover svg {
 	transform: scale(1.1);
 }

 .inst svg path,
 .youtube svg path {
 	fill: #ED6B27;
 }

 .inst svg:hover path,
 .youtube svg:hover path {
 	fill: #0F283D;
 }

 .tg svg path:first-child {
 	fill: #ED6B27;
 }

 .tg svg:hover path:first-child {
 	fill: #0F283D;
 }

 .map {
 	position: relative;
 	overflow: hidden;
 	border-radius: 3px;
 	width: 100%;
 	min-height: 300px;
 }

 @media screen and (min-width: 768px) {
 	.map {
 		width: 60%;
 	}
 }

 .map iframe {
 	position: absolute;
 	top: -72px;
 	left: 0;
 	border: none;
 	width: 100%;
 	height: calc(100% + 72px);
 }

 .footer {
 	padding: 40rem 0;
 	font-size: 16rem;
 }

 .footer div>div,
 .footer div p {
 	width: 100%;
 }

 @media screen and (min-width: 768px) {

 	.footer div>div,
 	.footer div p {
 		width: auto;
 	}
 }

 .privacy {
 	display: flex;
 	flex-direction: row;
 	gap: 15px;
 }

 .privacy a {
 	text-decoration: underline;
 }

 .privacy a:hover {
 	color: #ED6B27;
 }

 .info_page {
 	padding-bottom: 50rem;
 }

 @media screen and (min-width: 1440px) {
 	.info_page {
 		padding-bottom: 100rem;
 	}
 }

 /* .info_page .transparent_cta {
  color: #121212;
} */

 .info_page .transparent_cta:hover {
 	color: #fff;
 }

 .main_container {
 	padding: 50rem 0;
 	background: #F6F6F6;
 }

 .main_container picture {
 	display: inline-block;
 	height: 100%;
 }

 .main_container img {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 }

 .page_h1 {
 	color: #ED6B27;
 	font-size: 34rem;
 	font-weight: 500;
 }

 @media screen and (min-width: 768px) {
 	.page_h1 {
 		font-size: 64rem;
 	}
 }

 .page_h2 {
 	padding-bottom: 40rem;
 	color: #0F283D;
 	font-size: 28rem;
 	font-weight: 500;
 }

 @media screen and (min-width: 768px) {
 	.page_h2 {
 		font-size: 48rem;
 	}
 }

 .advantages_container {
 	padding: 50rem 0;
 }

 @media screen and (min-width: 1440px) {
 	.advantages_container {
 		padding: 70rem 0;
 	}
 }

 .col_4 {
 	grid-template-columns: repeat(2, 1fr);
 }

 @media screen and (min-width: 768px) {
 	.col_4 {
 		grid-template-columns: repeat(4, 1fr);
 	}
 }

 .advant_block {
 	padding: 60rem 26rem 46rem;
 	border-radius: 5px;
 	background: #E4E2E2;
 	text-align: center;
 }

 .advant_block svg {
 	padding-bottom: 20rem;
 }

 .advant_block p {
 	padding-top: 20rem;
 	border-top: 3px solid #ED6B27;
 	font-size: 18rem;
 	font-weight: 400;
 }

 .page_h3 {
 	color: #ED6B27;
 	font-size: 22rem;
 	font-weight: 500;
 }

 @media screen and (min-width: 768px) {
 	.page_h3 {
 		font-size: 32rem;
 	}
 }

 .text_info_container>p {
 	padding-bottom: 60rem;
 }

 .text_block {
 	padding-bottom: 50rem;
 }

 @media screen and (min-width: 1440px) {
 	.text_block {
 		padding-bottom: 70rem;
 	}
 }

 .text_block .grid {
 	gap: 20rem;
 }

 @media screen and (min-width: 1440px) {
 	.text_block .grid {
 		gap: 100rem;
 	}
 }

 .text_block h3 {
 	max-width: 570rem;
 	padding-bottom: 20rem;
 }

 .text_block p {
 	padding-bottom: 20rem;
 	font-weight: 400;
 }

 .img_info {
 	height: 100%;
 	border-radius: 3px;
 	border: 1px solid #E4E2E2;
 	overflow: hidden;
 }

 .img_info img {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 }

 .popup {
 	display: none;
 	position: fixed;
 	top: 50%;
 	left: 50%;
 	width: 90vw;
 	max-height: 95vh;
 	max-width: 650px;
 	padding: 40rem 20rem 20rem;
 	transform: translate(-50%, -50%);
 	background-color: #fff;
 	border-radius: 3px;
 	z-index: 7;
 	overflow-y: auto;
 }

 @media screen and (min-width: 768px) {
 	.popup {
 		height: auto;
 		padding: 50rem 60rem;
 	}
 }

 .cancel_popup {
 	position: absolute;
 	top: 10rem;
 	right: 10rem;
 }

 @media screen and (min-width: 768px) {
 	.cancel_popup {
 		top: 20rem;
 		right: 20rem;
 	}
 }

 .btn_popup_col {
 	grid-template-columns: repeat(2, 1fr);
 	border-radius: 10px;
 	border: 1px solid #0F283D;
 	overflow: hidden;
 }

 .btn_popup_col a {
 	padding: 15px 20px;
 	color: #0f283d;
 	text-align: center;
 	font-size: 16rem;
 	font-weight: 500;
 }

 .btn_popup_col .active {
 	color: #FFF;
 	background: #0F283D;
 }

 .switch_block {
 	display: none;
 }

 .switch_block.active {
 	display: block;
 }

 .manager_block {
 	text-align: center;
 }

 .manager_block h3 {
 	padding-top: 15rem;
 }

 @media screen and (min-width: 768px) {
 	.manager_block h3 {
 		padding-top: 50rem;
 	}
 }

 .manager_block p {
 	padding: 20rem 0;
 	font-size: 18rem;
 	font-weight: 400;
 }

 @media screen and (min-width: 768px) {
 	.manager_block p {
 		padding: 40rem 0;
 	}
 }

 .manager_block a {
 	color: #000;
 	font-size: 20rem;
 	font-weight: 500;
 }

 @media screen and (min-width: 768px) {
 	.manager_block a {
 		font-size: 26rem;
 	}
 }

 .services_main_text h1,
 .info_page h1 {
 	padding-bottom: 58rem;
 }

 .services_main_text {
 	padding: 0 0 50rem;
 }

 .services_main_text p {
 	margin-bottom: 15rem;
 }

 .adv_services>div {
 	padding: 38rem;
 	text-align: left;
 }

 .adv_services h3 {
 	padding-bottom: 30rem;
 	color: #ED6B27;
 	font-size: 24rem;
 	font-weight: 600;
 }

 .adv_services p {
 	font-size: 16rem;
 	padding: 0 0 15rem 0;
 	border: none;
 }

 .text_services_block .grid {
 	gap: 20rem;
 	padding-bottom: 40rem;
 }

 @media screen and (min-width: 1024px) {
 	.text_services_block .grid {
 		gap: 70rem;
 		padding-bottom: 60rem;
 	}
 }

 @media screen and (min-width: 768px) {
 	.text_services_block .grid {
 		grid-template-columns: 1fr 2fr;
 	}
 }

 .catalogue_container h1,
 .news_container h1 {
 	padding: 60rem 0 40rem;
 }

 .catalogue_container section,
 .news_container section {
 	padding: 0 0 50rem;
 }


 @media screen and (min-width: 1440px) {

 	.catalogue_container section,
 	.news_container section {
 		padding: 0 0 100rem;
 	}
 }

 .page_news figcaption {
 	position: relative;
 }

 .page_news img {
 	width: 100%;
 	object-fit: cover;
 }

 .page_news p {
 	padding: 10rem 0;
 	color: #BDBDBD;
 	font-size: 16rem;
 	font-weight: 400;
 }

 .page_news h2 {
 	padding: 0;
 	color: #121212;
 	font-size: 24rem;
 	font-weight: 600;
 }

 .news_cards div:first-child {
 	padding-bottom: 50rem;
 }

 main.new_one_container {
 	/* max-width: 924rem; */
 }

 main.contacts_container,
 main.privacy {
 	max-width: 924rem;
 	padding: 140rem 0 80rem;
 }

 main.new_one_container>p {
 	color: #BDBDBD;
 	font-size: 16rem;
 }

 main.new_one_container h1 {
 	padding: 10rem 0 20rem;
 	color: #0F283D;
 	font-size: 28rem;
 	font-weight: 500;
 }

 @media screen and (min-width: 1440px) {
 	main.new_one_container h1 {
 		font-size: 48rem;
 	}
 }

 main.new_one_container picture {
 	display: inline-block;
 	width: 100%;
 	padding-bottom: 20rem;
 }

 main.new_one_container img {
 	width: 100%;
 	object-fit: cover;
 	/* object-position: top; */
 	max-height: 500rem;
 }

 .cart-collaterals {
 	padding-bottom: 60rem;
 }

 .description_news div {
 	/* padding-bottom: 60rem; */
 }

 .description_news p {
 	padding-bottom: 20rem;
 }

 .description_news ul li {
 	position: relative;
 	padding: 0 0 15rem 40rem;
 }

 .description_news ul li::after {
 	content: "";
 	position: absolute;
 	top: 8px;
 	left: 20rem;
 	width: 6px;
 	height: 6px;
 	border-radius: 50%;
 	background: #000;
 }

 .news_orange {
 	color: #ED6B27;
 }

 .contacts_container h1 {
 	padding-bottom: 30rem;
 }

 .contacts_container h3 {
 	padding-bottom: 20rem;
 	color: #0F283D;
 	font-weight: 500;
 }

 .contacts_container a {
 	color: #121212;
 }

 .contacts_container address {
 	font-style: normal;
 }

 .contacts_container .map {
 	width: 100%;
 	min-height: 500rem;
 }

 .contacts_page .col_2 {
 	padding-bottom: 30rem;
 }

 @media screen and (min-width: 768px) {
 	.contacts_page .col_2 {
 		grid-template-columns: 1.5fr 1fr;
 	}
 }

 .privacy h1 {

 	padding-bottom: 40rem;
 }

 .privacy &::marker {
 	content: none;
 	display: none;
 }

 li {
    list-style: none !important; /* Прибирає і маркер, і його тип */
    padding-bottom: 0;
}

 .form_send_message h3 {
 	padding: 15rem 0;
 }

 @media screen and (min-width: 768px) {
 	.form_send_message h3 {
 		padding: 50rem 0 40rem;
 	}
 }

 .form_send_message form>p {
 	padding-top: 20rem;
 }

 .form_send_message label {
 	display: block;
 }

 @media screen and (min-width: 768px) {
 	.form_send_message label {
 		padding-bottom: 5rem;
 	}
 }

 .form_send_message label span {
 	color: #ED6B27;
 }

 .form_send_message input,
 .form_send_message textarea {
 	width: 100%;
 	appearance: none;
 	padding: 10rem;
 	font-family: "Ubuntu Sans";
 	font-size: 18rem;
 	border-radius: 3px;
 	border: 1px solid #BDBDBD;
 }

 @media screen and (min-width: 768px) {

 	.form_send_message input,
 	.form_send_message textarea {
 		padding: 14rem 10rem;
 	}
 }

 .form_send_message textarea {
 	resize: none;
 	min-height: 120rem;
 	margin-bottom: 10rem;
 }

 @media screen and (min-width: 768px) {
 	.form_send_message textarea {
 		margin-bottom: 30rem;
 	}
 }

 .error-tel {
 	color: #B80101;
 	font-size: 12px;
 	font-style: italic;
 	font-weight: 500;
 }

 .product_main_section {
 	padding: 50rem 0;
 }

 .main_product_block p {
 	padding-bottom: 10rem;
 	color: #BDBDBD;
 }

 .description_product {
 	position: relative;
 	grid-template-columns: 1fr 3fr;
 	margin-bottom: 90rem;
 }

 .description_product .wrapper {
 	min-height: 350rem;
 }

 @media screen and (min-width: 1024px) {
 	.description_product .wrapper {
 		display: flex;
 	}
 }

 @media screen and (min-width: 1024px) {
 	.text_descr {
 		max-width: 545rem;
 	}
 }

 .text_descr .transparent_cta {
 	color: #ED6B27;
 	/* border: 2px solid #0F283D; */
 }

 .text_descr .transparent_cta:hover {
 	color: #fff;
 	border-color: #ED6B27;
 }

 .text_product {
 	font-weight: 500;
 }

 .descr {
 	color: #121212;
 	padding: 10rem 15rem;
 	border-radius: 3px;
 	background: #F6F6F6;
 }

 .col_2_product {
 	padding-bottom: 30px;
 }

 @media screen and (min-width: 768px) {
 	.col_2_product {
 		padding-bottom: 70rem;
 	}
 }

 .col_2_product p {
 	white-space: nowrap;
 }

 @media screen and (min-width: 1024px) {
 	.main_image.fade-right {
 		transform: translate(100px, -50%);
 	}
 }

 @media screen and (min-width: 1024px) {
 	.main_image.fade-right.show {
 		transform: translate(0, -50%);
 	}
 }

 .main_image {
 	padding-bottom: 30rem;
 }

 @media screen and (min-width: 1024px) {
 	.main_image {
 		position: absolute;
 		right: -15%;
 		top: 50%;
 		height: 100%;
 		padding: 0;
 		max-width: 60vw;
 	}
 }

 @media screen and (min-width: 1282px) {
 	.main_image {
 		max-width: 100%;
 	}
 }

 .main_image picture {
 	display: inline-block;
 	height: 100%;
 }

 .main_image img {
 	width: 100%;
 	height: 100%;
 	object-fit: contain;
 }

 .tiny_text {
 	font-weight: 400;
 }

 .dot_svg svg {
 	transform: translateY(-50%);
 }

 @media screen and (min-width: 768px) {
 	.dot_svg svg {
 		transform: translateY(-100%);
 	}
 }

 .table_container {
 	padding: 50rem 0;
 	color: #fff;
 	background: #0F283D;
 }

 .table_container h2 {
 	color: #fff;
 }

 .table_block {
 	overflow-x: scroll;
 	padding-bottom: 10rem;
 }

 @media screen and (min-width: 1024px) {
 	.table_block {
 		overflow: visible;
 	}
 }

 .table_block::-webkit-scrollbar {
 	height: 5px;
 	background: #eee;
 }

 .table_block::-webkit-scrollbar-thumb {
 	background: #ED6B27;
 }

 .table_block table {
 	min-width: 1000rem;
 	width: 100%;
 	text-align: left;
 	border-collapse: collapse;
 }

 .table_block table th,
 .table_block table td {
 	padding: 20rem 10rem;
 }

 .table_block table th {
 	font-weight: 600;
 	border-bottom: 2px solid #ED6B27;
 }

 .table_block table td {
 	width: 25%;
 	border-bottom: 2px solid #E4E2E2;
 }

 .info_product_container {
 	padding: 50rem 0;
 	background: #F6F6F6;
 }


 .info-item:last-child {
 	border-bottom: 1px solid #121212 !important;
 }

 .hidden {
 	overflow: hidden;
 }

 .info-item {
 	border-top: 1px solid #121212;
 }

 .b_bottom {
 	border-bottom: 1px solid #121212;
 }

 .readmore {
 	position: relative;
 	padding: 40rem 0;
 	color: #121212;
 }

 .readmore svg path {
 	transition: 0.5s;
 }

 .readmore:hover {
 	text-shadow: 0 0 #000;
 }

 .readmore:hover svg path {
 	stroke: #000;
 }

 .readmore .head_span {
 	padding: 0;
 	color: #0F283D;
 	font-size: 30rem;
 	font-weight: 400;
 }

 @media screen and (min-width: 1440px) {
 	.readmore .head_span {
 		font-size: 38rem;
 	}
 }

 @media screen and (min-width: 1920px) {
 	.readmore .head_span {
 		font-size: 48rem;
 	}
 }

 .active_span {
 	display: none;
 }

 .readmore-active {
 	border-radius: 5px 5px 0 0;
 }

 .readmore-active .active_span {
 	display: block;
 	color: #ED6B27;
 }

 .readmore-active .head_span {
 	font-weight: 600;
 }

 .readmore-active .svg_btn svg {
 	transform: rotate(-180deg);
 }

 .head_info {
 	padding-bottom: 5px;
 	font-weight: 500;
 }

 .description-more {
 	max-height: 0;
 	overflow: hidden;
 }

 .description-more img {
 	width: 100%;
 }

 .description-more .advant_block {
 	padding: 26rem 20rem;
 }

 .description-more .advant_block h3 {
 	padding-bottom: 17rem;
 }

 .prod_info_text p {
 	padding-bottom: 15rem;
 }

 .visible {
 	padding: 0 0 50rem;
 	max-height: 3000rem;
 	transition: max-height 1s ease;
 }

 .visible>div {
 	padding-bottom: 20rem;
 }

 .svg_btn svg {
 	transform: rotate(0);
 	transition: all 0.5s ease;
 }

 @media screen and (min-width: 768px) {
 	.center_block {
 		max-width: 70%;
 		margin: 0 auto;
 	}
 }

 .slider_section {
 	padding: 30rem 0 50rem;
 }

 @media screen and (min-width: 1440px) {
 	.slider_section {
 		padding: 50rem 0 100rem;
 	}
 }

 .slider_section .wrapper {
 	width: 80%;
 }

 @media screen and (min-width: 1440px) {
 	.slider_section .wrapper {
 		max-width: 1200rem;
 	}
 }

 .slide_group {
 	display: flex;
 	justify-content: space-between;
 	max-height: 600px;
 	transition: transform 0.3s ease;
 }

 .product_slider {
 	position: relative;
 }

 .product_slider .next,
 .product_slider .prev {
 	position: absolute;
 	top: 50%;
 	width: 25px;
 }

 @media screen and (min-width: 768px) {

 	.product_slider .next,
 	.product_slider .prev {
 		width: 50px;
 	}
 }

 .product_slider .next {
 	right: -30px;
 }

 @media screen and (min-width: 768px) {
 	.product_slider .next {
 		right: -60px;
 	}
 }

 .product_slider .prev {
 	left: -30px;
 }

 @media screen and (min-width: 768px) {
 	.product_slider .prev {
 		left: -60px;
 	}
 }

 .slider_container {
 	overflow: hidden;
 }

 .slider_container img {
 	height: 100%;
 	width: 100%;
 	object-fit: cover;
 	object-position: center;
 }

 .slide_main {
 	margin-bottom: 30px;
 	flex: 0 0 100%;
 }

 .slide_button {
 	width: 15rem;
 	height: 15rem;
 	border-radius: 3px;
 	border: 1px solid #0F283D;
 	background: #0F283D;
 }

 .slide_button.active {
 	background: #ED6B27;
 	border-color: #ED6B27;
 }

 .next.disabled,
 .prev.disabled {
 	opacity: 0.4;
 	pointer-events: none;
 }

 .new_card img {
 	width: 100%;
 	height: 250px;
 	object-fit: cover;
 	object-position: center;
 	border-radius: 8px;
 	display: block;
 }

 .privacy_section {
 	max-width: 924rem;
 	padding: 40rem 0 40rem;
 }

 .wrapper_section {
 	width: 90%;
 	margin: 0 auto;
 }

 .privacy_section li {
 	padding-bottom: 15rem;
 }

 .page_news picture {
 	display: block;
 	/* width: 100%; */
 	/* height: 250px; */
 	overflow: hidden;
 }

 .page_news picture img {

 	height: 100%;
 	object-fit: cover;
 	object-position: center;
 }

 .page_news figcaption {
 	display: flex;
 	flex-direction: column;
 	height: 100%;
 }



 #wpadminbar {
 	position: fixed !important;
 	top: auto !important;
 	bottom: 0 !important;
 }

 .fade-right.show html[lang] {
 	margin-top: 0 !important;
 }

 .fade-in-simple {
 	opacity: 0;
 	transform: translateY(30px);
 	/* додамо легкий рух вгору для ефекту */
 	transition: opacity 0.9s ease, transform 0.9s ease;
 	visibility: hidden;
 	/* ховаємо елемент до старту */
 }

 .fade-in-simple.show {
 	opacity: 1 !important;
 	transform: translateY(0) !important;
 	visibility: visible !important;
 }

 /* Основний контейнер */
 .asortment_list {
 	display: flex !important;
 	justify-content: space-between !important;
 	align-items: stretch !important;
 	gap: 20px !important;
 }

 /* .asortment_list .animate.fade-in-simple {
 	width: calc(50% - 10px);
 	transform: none;
 	opacity: 1;
 	visibility: visible;
 	margin: 0;
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 } */
 .asortment_list .animate.fade-in-simple {
 	width: calc(50% - 10px);
 	margin: 0;
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 }

 /* Щоб картинка всередині займала весь простір */
 .asortment_list .animate.fade-in-simple picture,
 .asortment_list .animate.fade-in-simple img {
 	width: 100% !important;
 	height: 100% !important;
 	object-fit: cover;
 	/* Картинка заповнить блок без деформації */
 	display: block;
 }

 /* Коли ввімкнено реверс */
 .asortment_list.flex-row-reverse {
 	flex-direction: row-reverse !important;
 }

 /* Мобільна версія */
 @media (max-width: 768px) {

 	.asortment_list,
 	.asortment_list.flex-row-reverse {
 		flex-direction: column !important;
 	}

 	.asortment_list .animate.fade-in-simple {
 		width: 100% !important;
 	}
 }

 .asortment_list.pt_60 {
 	padding-top: 5px !important;

 }

 section.wrapper.about_container:nth-of-type(5) {
 	padding-bottom: 80px;
 }

 @media (max-width: 768px) {
 	.about_gesplast {
 		padding-top: 5px !important;
 	}
 }

 /* Зменшений відступ для всіх наступних блоків */
 .asortment_list.pt_small {
 	padding-top: 20px !important;
 	/* Налаштуй як тобі подобається */
 }

 .grid.grid-reverse {
 	direction: rtl;
 	/* Міняє напрямок сітки (справа наліво) */
 }

 /* Повертаємо нормальний напрямок тексту всередині блоків */
 .grid.grid-reverse>* {
 	direction: ltr;
 }

 /* На мобільних повертаємо стандартний порядок колонок */
 @media (max-width: 768px) {
 	.grid.grid-reverse {
 		display: flex !important;
 		flex-direction: column-reverse;
 	}
 }

 .advant_icon {
 	padding-bottom: 20rem;
 }

 /* Додай у style.css */
 .main_section_header.flex-column-reverse {
 	display: flex !important;
 	flex-direction: column-reverse !important;
 }

 /* Відступ між елементами при обертанні */
 .main_section_header.flex-column-reverse .page_h2 {
 	margin-top: 20px;
 	/* або твій відступ */
 	margin-bottom: 0;
 }

 .contacts_container_main {
 	max-width: 924rem;
 	padding: 40rem 0 80rem;
 	width: 90%;
 	margin: 0 auto;
 }

 .contacts_container_map {
 	width: 100%;
 	min-height: 500rem;
 }

 .contacts_page h3 {
 	padding-bottom: 20rem;
 	color: #0f283d;
 	font-weight: 500;
 }

 .contacts_page a {
 	color: #121212;
 }

 .premium-model-grid ul.products {
 	display: grid !important;
 	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
 	/* gap: 40px; */
 	padding: 0;
 }

 /* .premium-model-grid ul.products {
 	display: grid !important;
 	grid-template-columns: repeat(3, 1fr) !important;
 	gap: 20px !important;
 } */



 /* ---- */

 .premium-model-grid ul.products li.product {
 	float: none !important;
 	width: 100% !important;
 	margin: 0 !important;
 }


 /* CARD */
 .premium-model-grid ul.products li.product {
 	background: #ffffff;
 	border-radius: 20px;
 	padding: 26px 24px 30px;
 	transition: all .35s ease;
 	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
 }

 /* luxury hover */
 .premium-model-grid ul.products li.product:hover {
 	transform: translateY(-12px);
 	box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
 }


 /* IMAGE */
 .premium-model-grid ul.products li.product img {
 	border-radius: 14px;
 	transition: .5s;
 }

 .premium-model-grid ul.products li.product:hover img {
 	transform: scale(1.05);
 }



 .woocommerce ul.products li.product .woocommerce-loop-product__title {
 	font-size: 30px;
 	font-weight: 700;
 	color: #1a1a1a;
 }


 /* PRICE */
 .premium-model-grid ul.products li.product .price {
 	color: #ff6b00;
 	font-weight: 600;
 	font-size: 22px;
 }

 .woocommerce ul.products li.product .price {
 	margin-bottom: 0;
 }

 /* BUTTON */
 .premium-model-grid ul.products li.product .button,
 .premium-model-grid .woocommerce ul.products li.product .button {
 	width: 100%;
 	text-align: center;
 	margin-top: 20px;
 	padding: 15px;
 	border-radius: 12px;
 	background: #ed6b27;
 	color: #fff;
 	letter-spacing: .5px;
 	transition: .3s;
 }

 .table_container {
 	background: #0f2a3b;
 	padding: 90px 0;
 }


 .table_container ul.products::before,
 .table_container ul.products::after {
 	display: none !important;
 	content: none !important;
 }

 .table_container li.product::before,
 .table_container li.product::after {
 	display: none !important;
 	content: none !important;
 }


 .shop {
 	position: relative;
 	display: inline-block;
 }

 .shop_img {
 	display: block;
 	width: 42px;
 	height: auto;
 }

 .shop .cart-contents-count {
 	position: absolute;
 	top: -1px;
 	/* Позиціонування зверху */
 	right: -4px;
 	/* Позиціонування справа */
 	background-color: #ED6B27;
 	/* Ваш помаранчевий колір з дизайну */
 	color: #fff;
 	font-size: 11px;
 	font-weight: 700;
 	line-height: 1;
 	min-width: 16px;
 	height: 16px;
 	padding: 0 2px;
 	border-radius: 50%;
 	/* Робимо коло */
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	transition: all 0.3s ease;
 }

 /* Ховаємо лічильник, якщо кошик порожній */
 .shop .cart-contents-count.is-empty {
 	opacity: 0;
 	visibility: hidden;
 	transform: scale(0.5);
 }

 /* Показуємо, якщо є товари */
 .shop .cart-contents-count.not-empty {
 	opacity: 1;
 	visibility: visible;
 	transform: scale(1);
 }




 /* ------------------------------------------------------------------------------------------------------------------ */
 .form-page {
 	padding: 1px;
 	border: 5px solid #0f283d;
 	background-color: #0f283d;
 	border-radius: 18px;
 }

 /* ------------------------------------------------------------------------------------------------------------------ */



 .checkout-container {
 	max-width: 1240px;
 	margin: 0 auto;
 }

 .checkout-header {
 	margin: 60px 0 50px;
 	text-align: left;
 }

 .checkout-header .header-meta {
 	display: flex;
 	align-items: center;
 	gap: 14px;
 	margin-bottom: 20px;
 	color: #666;
 	font-size: 16px;
 	font-weight: 500;
 }

 .checkout-header h1 {
 	font-size: 48px;
 	font-weight: 900;
 	color: #0f283d;
 	text-transform: uppercase;
 	letter-spacing: -1px;
 	margin: 0 0 16px;
 }

 .checkout-header .subtitle {
 	font-size: 19px;
 	color: #444;
 	margin: 0;
 	max-width: 700px;
 }


 @media (max-width: 992px) {
 	.checkout-grid {
 		grid-template-columns: 1fr;
 		gap: 50px;
 	}
 }

 /* Форма */
 .checkout-form-column .woocommerce-checkout {
 	background: #fff;
 	border-radius: 20px;
 	padding: 15px;
 }

 .woocommerce-checkout h3 {
 	font-size: 26px;
 	color: #0f283d;
 	margin: 0 0 30px;
 	font-weight: 800;
 }

 .woocommerce form .form-row {
 	margin-bottom: 32px;
 }

 .woocommerce form label {
 	font-weight: 600;
 	color: #222;
 	margin-bottom: 10px;
 	display: block;
 	font-size: 15px;
 }

 .woocommerce form input[type="text"],
 .woocommerce form input[type="email"],
 .woocommerce form input[type="tel"],
 .woocommerce form select,
 .woocommerce form textarea {
 	width: 100%;
 	padding: 18px 22px;
 	border: 1px solid #d8e0e8;
 	border-radius: 14px;
 	font-size: 16px;
 	background: #f9fbfc;
 	transition: all 0.3s ease;
 }

 .woocommerce form input:focus,
 .woocommerce form select:focus,
 .woocommerce form textarea:focus {
 	border-color: #ED6B27;
 	box-shadow: 0 0 0 5px rgba(237, 107, 39, 0.12);
 	background: #fff;
 }

 .place-order-btn,
 .woocommerce #place_order {
 	border: 1px solid #ed6b27;
 	color: #fff !important;
 	padding: 22px 0 !important;
 	border-radius: 16px !important;
 	font-size: 19px !important;
 	text-transform: uppercase;
 	letter-spacing: 0.8px;
 	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
 	width: 100%;
 	cursor: pointer;
 }

 @media (min-width: 571px) {

 	.place-order-btn,
 	.woocommerce #place_order {
 		/* font-weight: 800 !important; */
 	}
 }

 .checkout-sidebar .order-summary-box {
 	background: #fff;
 	border-radius: 20px;
 	padding: 40px;
 	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
 	position: sticky;
 	top: 100px;
 }

 .order-summary-box h3 {
 	font-size: 24px;
 	color: #0f283d;
 	margin-bottom: 30px;
 	font-weight: 800;
 }

 .order-item {
 	display: flex;
 	justify-content: space-between;
 	align-items: center;
 	padding: 16px 0;
 	border-bottom: 1px solid #f0f0f0;
 }

 .order-item:last-child {
 	border-bottom: none;
 }

 .item-info {
 	display: flex;
 	align-items: center;
 	gap: 16px;
 }

 .item-info img {
 	width: 60px;
 	height: 60px;
 	object-fit: contain;
 	border-radius: 10px;
 	border: 1px solid #eee;
 }

 .item-info h4 {
 	font-size: 15px;
 	margin: 0 0 4px;
 	color: #333;
 }

 .item-info .qty {
 	font-size: 13px;
 	color: #777;
 }

 .order-item .price {
 	font-weight: 700;
 	color: #ED6B27;
 	font-size: 16px;
 }

 .summary-totals .total-line {
 	display: flex;
 	justify-content: space-between;
 	padding: 14px 0;
 	font-size: 17px;
 }

 .summary-totals .grand-total {
 	border-top: 2px solid #eee;
 	padding-top: 20px;
 	margin-top: 10px;
 	font-size: 20px;
 }

 .summary-totals .amount {
 	color: #ED6B27;
 	font-weight: 900;
 }

 .trust-badges {
 	display: flex;
 	gap: 20px;
 	margin: 30px 0;
 	justify-content: center;
 }

 .trust-badges .badge {
 	display: flex;
 	align-items: center;
 	gap: 10px;
 	font-size: 14px;
 	color: #555;
 }

 .trust-badges svg {
 	width: 28px;
 	height: 28px;
 }

 .empty-checkout {
 	text-align: center;
 	padding: 120px 20px;
 	background: #fff;
 	border-radius: 24px;
 	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
 }

 .empty-icon {
 	font-size: 100px;
 	margin-bottom: 40px;
 	color: #ED6B27;
 }

 .empty-checkout h2 {
 	font-size: 36px;
 	color: #0f283d;
 	margin-bottom: 20px;
 }

 .button-primary {
 	background: #ED6B27;
 	color: #fff;
 	padding: 18px 50px;
 	border-radius: 14px;
 	font-size: 18px;
 	font-weight: 700;
 	text-decoration: none;
 	display: inline-block;
 	transition: all 0.3s;
 }

 .button-primary:hover {
 	background: #ff8533;
 	transform: translateY(-4px);
 	box-shadow: 0 12px 30px rgba(237, 107, 39, 0.3);
 }

 @media (max-width: 768px) {
 	.checkout-header h1 {
 		font-size: 36px;
 	}

 	.checkout-grid {
 		padding: 0;
 	}

 	.order-summary-box {
 		position: static;
 		margin-top: 40px;
 	}
 }



 /* ------------------------------------------------------------------------------------------------------------------ */

 #add_payment_method table.cart img,
 .woocommerce-cart table.cart img,
 .woocommerce-checkout table.cart img {
 	width: 200px !important;
 	height: auto;
 	border-radius: 12px;
 	object-fit: contain !important;
 	margin: 0;
 }



 .woocommerce img,
 .woocommerce-page img {
 	/* max-width: 100%; */
 	object-fit: contain !important;
 	height: 100%;
 	display: block;
 }

 .woocommerce-page img {
 	max-width: none !important;
 }

 .woocommerce-checkout-payment .payment_methods {
 	display: none !important;
 }

 .woocommerce-privacy-policy-text,
 .woocommerce-terms-and-conditions-wrapper {
 	display: none !important;
 }

 .woocommerce-checkout-payment noscript {
 	display: none !important;
 }

 #place_order {
 	width: 100%;
 	background: #ED6B27 !important;
 	/* Твій помаранчевий колір */
 	color: #fff !important;
 	padding: 15px !important;
 	font-size: 18px !important;
 	font-weight: 700 !important;
 	border-radius: 10px !important;
 	border: none !important;
 	cursor: pointer;
 	transition: background 0.3s ease;
 }

 #place_order:hover {
 	background: #d45a1e !important;
 }

 .woocommerce-checkout-payment,
 #payment {
 	background: transparent !important;
 	border: none !important;
 }

 .woocommerce-checkout-payment div.payment_box,
 #payment div.payment_box {
 	background-color: transparent !important;
 	box-shadow: none !important;
 	padding-left: 0 !important;
 }

 .woocommerce-checkout-payment div.payment_box::before,
 #payment div.payment_box::before {
 	display: none !important;
 }

 .shop_table.woocommerce-checkout-review-order-table tr.cart-subtotal {
 	display: none !important;
 }

 .shop_table.woocommerce-checkout-review-order-table tr.order-total th {
 	font-size: 20px;
 	text-transform: uppercase;
 }

 .shop_table.woocommerce-checkout-review-order-table tr.order-total .amount {
 	font-size: 22px;
 	color: #ED6B27;
 }



 .woocommerce-checkout #payment,
 .woocommerce-checkout-payment,
 #payment ul.payment_methods,
 #payment div.payment_box {
 	background-color: transparent !important;
 	background: none !important;
 	border: none !important;
 	box-shadow: none !important;
 }

 #payment {
 	padding: 0 !important;
 }

 .woocommerce-checkout-review-order {
 	background: transparent !important;
 }

 .box_content {
 	gap: 20px;
 	text-align: center;
 	display: flex;
 	flex-direction: row;
 	align-items: center;
 }

 @media (min-width: 392px) {
 	.checkout-form-column .woocommerce-checkout {
 		padding: 40px;
 	}
 }

 @media (max-width: 515px) {
 	.woocommerce-checkout h3 {
 		font-size: 16px;
 	}
 }

 @media (max-width: 515px) {
 	.woocommerce form label {
 		font-size: 12px;
 	}
 }

 /* ------------------------------------------------------------------------------------------------------------------ */




 .single-product div.product {}

 .single-product .woocommerce-product-gallery {}

 .single-product .woocommerce-product-gallery__wrapper {}

 .single-product .woocommerce-product-gallery__image img {}

 .single-product .summary {}

 .single-product .product_title {}

 .single-product .price {}

 .single-product .price .amount {}

 .single-product .price del {}

 .single-product .price ins {}


 .single-product form.cart {}

 .single-product .quantity {}

 .single-product .quantity input.qty {}

 .single-product .single_add_to_cart_button {}

 .single-product .product_meta {}

 .single-product .product_meta a {}

 .related.products {}

 .related.products h2 {}


 .related.products ul.products {}

 .related.products ul.products li.product {}

 .related.products ul.products li.product .onsale {}

 .related.products ul.products li.product img {}

 .related.products ul.products li.product .woocommerce-loop-product__title {}

 .related.products ul.products li.product .price {}

 .related.products ul.products li.product .add_to_cart_button {}

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


 /* ------------------------------------------------------------------------------------------------------------------ */

 /* 1. Основний контейнер та центрування */
 .checkout-gesplast .checkout-container {
 	max-width: 700px;
 	/* Як ви просили */
 	margin: 0 auto;
 	padding: 20px;
 }

 /* 2. Перетворення двоколонкової структури в одну */
 .checkout-gesplast .col2-set,
 .checkout-gesplast .col2-set .col-1,
 .checkout-gesplast .col2-set .col-2 {
 	width: 100% !important;
 	float: none !important;
 	display: block !important;
 	margin: 0 auto !important;
 }

 /* 3. Центрування заголовків */
 .checkout-gesplast h3 {
 	text-align: center;
 	margin-bottom: 30px;
 	font-size: 24px;
 }

 /* 4. Вирівнювання полів */
 .checkout-gesplast .form-row {
 	width: 100% !important;
 	/* Робимо всі поля на всю ширину */
 	float: none !important;
 	margin-right: 0 !important;
 	display: block !important;
 }

 .checkout-gesplast .form-row-first,
 .checkout-gesplast .form-row-last {
 	width: 100% !important;
 }

 .checkout-gesplast input.input-text,
 .checkout-gesplast select,
 .checkout-gesplast textarea,
 .checkout-gesplast .select2-container {
 	width: 100% !important;
 	box-sizing: border-box;
 	/* padding: 12px 15px !important; */
 }

 .checkout-gesplast .woocommerce-additional-fields {
 	margin-top: 20px;
 }

 .checkout-gesplast #order_review_heading,
 .checkout-gesplast #order_review {
 	width: 100% !important;
 	float: none !important;
 	margin: 0 auto !important;
 }

 .checkout-gesplast .shop_table {
 	border: none !important;
 	background: transparent !important;
 }

 .checkout-gesplast .shop_table td,
 .checkout-gesplast .shop_table th {
 	padding: 15px 0 !important;
 	text-align: left;

 }

 .woocommerce-shipping-methods {
 	text-align: right !important;
 }

 .checkout-gesplast .shop_table .product-total,
 .checkout-gesplast .shop_table .order-total td,
 .checkout-gesplast .shop_table .cart-subtotal td {
 	text-align: right !important;
 }

 .checkout-gesplast .woocommerce-checkout-payment {
 	background: #f9f9f9 !important;
 	padding: 20px !important;
 	border-radius: 8px;
 }

 .checkout-gesplast #place_order {
 	display: block !important;
 	padding: 15rem 20rem !important;
 	border-radius: 10rem !important;
 	border: 1px solid #ed6b27 !important;
 	background: #ED6B27 !important;
 	font-size: 16rem !important;
 	font-weight: 500 !important;
 	text-align: center !important;
 	color: #fff !important;
 }

 .checkout-gesplast .shop_table thead {
 	display: none !important;
 }

 .checkout-gesplast .shop_table tbody tr:first-child td {
 	border-top: none !important;
 }

 .woocommerce-checkout .optional {
 	display: none !important;
 }

 table.shop_table tfoot th {
 	font-size: 20px;
 }

 .woocommerce-notices-wrapper,
 .woocommerce-NoticeGroup-checkout {
 	display: none !important;
 }


 /* ------------------------------------------------------------------------------------------------------------------ */


 .product-main-container {
 	background: #ffffff !important;
 	margin-top: 50px;
 	padding: 30px;
 	border-radius: 12px;
 	margin-bottom: 40px;
 	align-items: center;
 }

 .product-main-container .woocommerce-product-gallery {
 	flex: 1;
 	border-radius: 8px;
 	overflow: hidden;
 }

 .product-main-container .woocommerce-product-gallery img {
 	width: 100%;
 	height: auto;
 	object-fit: cover;
 	transition: transform 0.3s ease;
 }

 .product-main-container .summary {
 	padding-left: 20px;
 }

 .product_title {
 	font-size: 40px !important;
 	font-weight: 700 !important;
 	margin-bottom: 10px !important;
 	color: #333;
 }

 .product-main-container p.price {
 	font-size: 24px !important;
 	color: #ED6B27 !important;
 	font-weight: 600;
 	margin-bottom: 25px !important;
 }

 .product-main-container form.cart {
 	display: flex;
 	align-items: center;
 	gap: 15px;
 	margin-top: 30px;
 }

 .product-main-container .quantity input.qty {
 	width: 60px;
 	height: 45px;
 	border-radius: 6px;
 	border: 1px solid #ddd;
 	text-align: center;
 	padding: 0;
 }

 .product-main-container .single_add_to_cart_button {
 	color: #fff !important;
 	display: block !important;
 	max-width: 255rem !important;
 	min-width: 255rem !important;
 	padding: 15rem 20rem !important;
 	border-radius: 10rem !important;
 	border: 1px solid #ed6b27 !important;
 	background: #ED6B27 !important;
 	font-size: 16rem !important;
 	font-weight: 500 !important;
 	text-align: center !important;
 }

 .product-main-container .single_add_to_cart_button:hover {
 	background-color: #ED6B27 !important;
 }

 .product_meta {
 	margin-top: 30px;
 	padding-top: 20px;
 	border-top: 1px solid #eee;
 	font-size: 14px;
 	color: #777;
 }

 .product_meta a {
 	color: #333;
 	text-decoration: none;
 	font-weight: 500;
 }

 .product_meta a:hover {
 	color: #ED6B27;
 }

 @media (max-width: 768px) {
 	.product-main-container {
 		flex-direction: column;
 		align-items: center;
 		text-align: center;
 		gap: 15px;
 		padding: 15px;
 	}

 	.woocommerce-product-gallery {
 		width: 100% !important;
 		max-width: 400px;
 	}

 	.summary.entry-summary {
 		width: 100%;
 	}

 	.product-main-container form.cart {
 		display: flex;
 		flex-direction: column;
 		align-items: center;
 		gap: 10px;
 	}

 	.product-main-container .quantity {
 		margin-bottom: 10px;
 	}

 	.single_add_to_cart_button {
 		width: 100%;
 		padding: 12px !important;
 	}
 }

 /* ------------------------------------------------------------------------------------------------------------------ */
 .product-main-container .woocommerce-product-gallery,
 .product-main-container .summary {
 	margin-top: 0 !important;
 	margin-bottom: 0 !important;
 	padding-top: 0 !important;
 	padding-bottom: 0 !important;
 }

 .product-main-container .summary .product_title {
 	margin-top: 0 !important;
 }

 .product-main-container {
 	gap: 15px !important;
 }

 @media (max-width: 768px) {
 	.woocommerce div.product .product_title {
 		font-size: 18px !important;
 	}

 	.woocommerce div.product form.cart .button {
 		font-size: 10px;
 	}
 }

 .woocommerce div.product form.cart {
 	margin-bottom: 0 !important;
 }

 .woocommerce #content div.product div.images,
 .woocommerce div.product div.images,
 .woocommerce-page #content div.product div.images,
 .woocommerce-page div.product div.images,
 .woocommerce #content div.product div.summary,
 .woocommerce div.product div.summary,
 .woocommerce-page #content div.product div.summary,
 .woocommerce-page div.product div.summary {
 	margin: 0 !important;
 	padding: 0 !important;
 	width: 48%;
 }

 .product-footer .products.columns-4,
 section.related.products ul.products {
 	display: flex !important;
 	justify-content: space-between !important;
 	gap: 20px !important;
 	list-style: none !important;
 	padding: 0 !important;
 	margin: 0 !important;
 	flex-wrap: wrap;
 }

 .product-footer .products.columns-4 li.product,
 section.related.products ul.products li.product {
 	flex: 1;
 	min-width: 200px;
 	margin: 0 !important;
 	float: none !important;
 }

 ul.products {
 	display: flex !important;
 	justify-content: flex-start;
 	gap: 20px;
 	padding: 20px 0 !important;
 	list-style: none !important;
 }

 li.product.type-product {
 	background: #fff;
 	border-radius: 12px;
 	padding: 15px;
 	text-align: center;
 	transition: all 0.3s ease;
 	border: 1px solid #eee;
 	display: flex;
 	flex-direction: column;
 	justify-content: space-between;
 	width: calc(25% - 20px);
 }

 li.product img {
 	border-radius: 8px;
 	margin-bottom: 15px;
 	transition: opacity 0.3s ease;
 }

 .woocommerce-loop-product__title {
 	font-size: 18px !important;
 	font-weight: 600 !important;
 	color: #333 !important;
 	margin: 10px 0 !important;
 	padding: 0 !important;
 	line-height: 1.2;
 	/* min-height: 44px; */
 }

 li.product .price {
 	color: #ED6B27 !important;
 	font-size: 18px !important;
 	font-weight: 700 !important;
 	display: block;
 	/* margin-bottom: 15px !important; */
 }

 li.product .button.add_to_cart_button {
 	background-color: #f8f9fa !important;
 	color: #0F283D !important;
 	border: 1px solid #ddd !important;
 	border-radius: 6px !important;
 	padding: 10px 15px !important;
 	font-size: 14px !important;
 	font-weight: 600 !important;
 	text-transform: none !important;
 	width: 100%;
 	display: block;
 }

 /* Кнопка при наведенні */
 li.product .button.add_to_cart_button:hover {
 	background-color: #ED6B27 !important;
 	color: #fff !important;
 	border-color: #ED6B27 !important;
 }

 li.product::before {
 	display: none !important;
 }

 @media (max-width: 768px) {

 	ul.products {
 		display: flex !important;
 		flex-wrap: wrap !important;
 		gap: 20px !important;
 		padding: 0 !important;
 	}

 	li.product.type-product {
 		width: calc(50% - 10px) !important;
 		flex: 0 0 calc(50% - 10px) !important;
 		margin: 0 !important;
 		float: none !important;
 		box-sizing: border-box;
 	}
 }

 @media (max-width: 480px) {
 	li.product.type-product {
 		width: 100% !important;
 		flex: 0 0 100% !important;
 	}
 }

 .product-footer .products.columns-4 li.product,
 section.related.products ul.products li.product {
 	padding: 25px !important;
 	background-color: #fcfcfc;
 	display: flex;
 	align-items: center;
 	justify-content: space-between;
 }

 .product-footer ul.products::before,
 .product-footer ul.products::after,
 ul.products::before,
 ul.products::after {
 	content: none !important;
 	display: none !important;
 }

 ul.products li::before,
 ul.products li::after {
 	content: none !important;
 	display: none !important;
 }

 /* ------------------------------------------------------------------------------------------------------------------ */

 /* Загальний контейнер деталей */
 .product-details-vertical {
 	margin-top: 50px;
 	text-align: left;
 	/* Вирівнювання по лівому краю */
 }

 /* Секції (Опис, Характеристики) */
 .details-section {
 	margin-bottom: 40px;
 	padding-bottom: 20px;
 	border-bottom: 1px solid #eee;
 }

 .section-title {
 	font-size: 22px;
 	font-weight: 700;
 	margin-bottom: 20px;
 	color: #333;
 	text-transform: uppercase;
 	letter-spacing: 1px;
 }

 /* Стиль тексту опису */
 .full-content {
 	font-size: 16px;
 	line-height: 1.6;
 	color: #555;
 	max-width: 900px;
 	/* Щоб рядок не був занадто довгим для читання */
 }

 /* Короткий опис зверху */
 .short-description-box {
 	margin: 20px 0;
 	padding: 15px;
 	background: #f9f9f9;
 	border-left: 4px solid #007cba;
 	font-size: 15px;
 }

 /* ТАБЛИЦЯ ХАРАКТЕРИСТИК (Блок №2) */
 .woocommerce-product-attributes {
 	width: 100%;
 	max-width: 800px;
 	border-collapse: collapse;
 	margin-top: 10px;
 }

 .woocommerce-product-attributes-item th {
 	width: 300px;
 	background: #fcfcfc;
 	padding: 12px 15px;
 	border: 1px solid #f0f0f0;
 	font-weight: 600;
 	color: #333;
 	text-align: left;
 }

 .woocommerce-product-attributes-item td {
 	padding: 12px 15px;
 	border: 1px solid #f0f0f0;
 	color: #666;
 	font-style: normal !important;
 	/* Прибираємо курсив */
 	text-align: left;
 }

 /* Видаляємо зайві відступи у параграфів всередині таблиці */
 .woocommerce-product-attributes-item td p {
 	margin: 0;
 	padding: 0;
 }

 .woocommerce-tabs {
 	background: #ffffff !important;
 	padding: 30px;
 	border-radius: 12px;
 }



 /* Стилізація посилання в категорії */
 .custom-category-top a {
 	color: #007cba;
 	/* Блакитний колір, типовий для лінків */
 	text-decoration: none;
 	font-weight: 400;
 	transition: 0.2s;
 }

 .custom-category-top a:hover {
 	text-decoration: underline;
 	color: #005a87;
 }

 /* Прибираємо стандартний вивід категорій внизу (щоб не дублювалося) */
 .product_meta .posted_in {
 	display: none !important;
 }

 .entry-summary a {
 	color: #ED6B27;

 }




 /* Приховуємо thead, коли екран менший за 800px */
 @media (max-width: 800px) {
 	.checkout-gesplast table.shop_table thead {
 		display: none !important;
 	}

 	/* Додатково: робимо кожен рядок товару окремим блоком для зручності */
 	/* .checkout-gesplast table.shop_table tbody tr {
 		display: block;
 		width: 100%;
 		border-bottom: 1px solid #eee;
 		padding: 15px 0;
 	}

 	.checkout-gesplast table.shop_table tbody td {
 		display: flex;
 		justify-content: space-between;
 		width: 100% !important;
 		border: none !important;
 		padding: 5px 0 !important;
 	} */

 	/* Робимо так, щоб перед значенням ціни або підсумку з'являвся текст (опціонально) */
 	.checkout-gesplast td.product-price::before {
 		content: "Ціна:";
 		font-weight: bold;
 	}

 	.checkout-gesplast td.product-subtotal::before {
 		content: "Підсумок:";
 		font-weight: bold;
 	}
 }



 /* Приховуємо виключно кнопку оновити кошик */
 .woocommerce button[name="update_cart"],
 .woocommerce input[name="update_cart"] {
 	display: none !important;
 }

 /* Приховуємо порожній простір, який вона може залишати, 
   але залишаємо клітинку для купонів активною */
 .woocommerce td.actions button.button:disabled {
 	display: none !important;
 }

 /* 1. Повністю видаляємо рядок actions з макета */
 .woocommerce-cart table.shop_table tr.actions,
 .woocommerce-cart table.shop_table td.actions {
 	display: none !important;
 	visibility: hidden !important;
 	opacity: 0 !important;
 	height: 0 !important;
 	padding: 0 !important;
 	margin: 0 !important;
 	border: none !important;
 	line-height: 0 !important;
 	font-size: 0 !important;
 }

 /* 2. Ховаємо саму кнопку оновлення кошика */
 .woocommerce-cart button[name="update_cart"] {
 	display: none !important;
 }

 /* 3. Прибираємо внутрішні відступи самої таблиці, щоб не було порожнечі знизу */
 .woocommerce-cart table.shop_table {
 	border-collapse: collapse !important;
 	margin-bottom: 0 !important;
 }

 /* 4. Прибираємо рамку в останнього видимого рядка з товаром */
 .woocommerce-cart table.shop_table tbody tr:last-of-type td {
 	border-bottom: none !important;
 }


 .woocommerce table.shop_table td,
 .shop_table.cart td {
 	border-top: 0;
 	border-bottom: 0;
 }

 .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
 	margin-bottom: 0;
 }

 /* Приховуємо заголовок, Підсумок та Доставку */
 .cart_totals .cart-subtotal,
 .cart_totals .woocommerce-shipping-totals {
 	display: none !important;
 }

 .woocommerce-cart .cart-collaterals .cart_totals table th {
 	width: 0;
 }

 /* ------------------------------------------------------------------------------------------------------------------ */
 /* Приховуємо заголовок "Оформлення замовлення" та підзаголовок */
 .woocommerce-order-received h1,
 .woocommerce-order-received .subtitle {
 	display: none !important;
 }

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

 .woocommerce-order-received .woocommerce-customer-details {
 	display: none !important;
 }

 .woocommerce ul.order_details {
 	margin: 0;
 }

 .woocommerce ul.order_details li {
 	border-right: 0;

 }

 /* Контейнер всієї секції подяки */
 .woocommerce-order {
 	max-width: 500px;
 	/* Зменшуємо ширину, щоб вертикальний список виглядав краще */
 	margin: 40px auto;
 	padding: 40px;
 	background: #ffffff;
 	border-radius: 16px;
 	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
 	text-align: center;
 }

 /* Повідомлення про успіх */
 .woocommerce-notice--success {
 	background: #f0fdf4 !important;
 	color: #166534 !important;
 	padding: 20px !important;
 	border-radius: 12px !important;
 	font-weight: 600;
 	margin-bottom: 30px !important;
 	border: 1px solid #bbf7d0 !important;
 	font-size: 15px;
 }

 /* Список деталей — ВЕРТИКАЛЬНО */
 .woocommerce-order-overview {
 	display: flex !important;
 	flex-direction: column !important;
 	/* Напрямок зверху вниз */
 	gap: 0 !important;
 	/* Прибираємо стандартні розриви */
 	padding: 0 !important;
 	list-style: none !important;
 	border: 1px solid #f0f0f0 !important;
 	/* Додаємо рамку навколо всього списку */
 	border-radius: 12px;
 	overflow: hidden;
 }

 /* Кожен окремий елемент рядок */
 .woocommerce-order-overview li {
 	display: flex !important;
 	flex-direction: row !important;
 	/* Назва зліва, значення справа */
 	justify-content: space-between !important;
 	align-items: center !important;
 	padding: 15px 20px !important;
 	font-size: 13px;
 	color: #6b7280;
 	text-transform: uppercase;
 	letter-spacing: 0.5px;
 	border-bottom: 1px solid #f0f0f0 !important;
 	margin: 0 !important;
 }

 /* Прибираємо лінію у останнього елемента в списку */
 .woocommerce-order-overview li:last-child {
 	border-bottom: none !important;
 }

 /* Значення (числа та жирний текст) */
 .woocommerce-order-overview li strong {
 	display: inline-block !important;
 	font-size: 15px !important;
 	color: #111827 !important;
 	margin-top: 0 !important;
 	/* Прибираємо верхній відступ */
 	text-transform: none;
 	font-weight: 700;
 	text-align: right;
 	max-width: 60% !important;
 	/* Щоб емейл не виходив за межі */
 	word-break: break-all;
 	/* Якщо емейл дуже довгий, він перенесеться, не ламаючи верстку */
 }

 /* Ціна виділяється окремо */
 .woocommerce-order-overview .total strong {
 	color: #2563eb !important;
 	font-size: 18px !important;
 }

 /* Текст для мобільних: робимо шрифт трохи меншим */
 @media (max-width: 480px) {
 	.woocommerce-order {
 		padding: 20px;
 	}

 	.woocommerce-order-overview li {
 		padding: 12px 15px !important;
 	}
 }

 /* Контейнер реквізитів банку */
 .woocommerce-bacs-bank-details {
 	margin-top: 30px !important;
 	padding: 25px !important;
 	background: #f9fafb !important;
 	/* Дуже легкий сірий фон */
 	border-radius: 12px;
 	border: 1px solid #e5e7eb;
 	/* Пунктирна лінія, як на відривному чеку */
 }

 /* Заголовок "Деталі нашого банку" */
 .wc-bacs-bank-details-heading {
 	font-size: 14px !important;
 	text-transform: uppercase;
 	letter-spacing: 1px;
 	color: #374151;
 	margin-bottom: 20px !important;
 	text-align: center;
 }

 /* Назва власника рахунку (Sergiy:) */
 .wc-bacs-bank-details-account-name {
 	font-size: 13px !important;
 	color: #6b7280;
 	margin-bottom: 10px !important;
 	text-align: left;
 	font-weight: 500;
 }

 /* Список самих реквізитів */
 .wc-bacs-bank-details.order_details {
 	display: flex !important;
 	flex-direction: column !important;
 	gap: 12px !important;
 	padding: 0 !important;
 	margin: 0 !important;
 	list-style: none !important;
 }

 /* Кожен рядок (Банк, Номер, IBAN) */
 .wc-bacs-bank-details.order_details li {
 	display: flex !important;
 	justify-content: space-between !important;
 	align-items: center !important;
 	font-size: 13px !important;
 	color: #6b7280 !important;
 	border: none !important;
 	padding: 0 !important;
 }

 /* Значення реквізитів (MonoBank, числа) */
 .wc-bacs-bank-details.order_details li strong {
 	color: #111827 !important;
 	font-weight: 600 !important;
 	text-align: right;
 	word-break: break-all;
 	/* Для довгих номерів IBAN */
 	max-width: 65%;
 }

 /* Адаптивність для вузьких екранів */
 @media (max-width: 480px) {
 	.woocommerce-bacs-bank-details {
 		padding: 15px !important;
 	}

 	.wc-bacs-bank-details.order_details li {
 		flex-direction: column !important;
 		align-items: flex-start !important;
 		gap: 4px;
 	}

 	.wc-bacs-bank-details.order_details li strong {
 		text-align: left;
 		max-width: 100%;
 	}
 }

 .empty-cart-content {
 	flex-direction: column;
 	display: flex;
 	align-items: center;
 }

 .description_news {
 	padding-bottom: 60px;
 }

 /* ---------------------------------------------------------------------------------------------------------------------------- */
 /* Ховаємо всі зображення в галереї, крім першого */
 .woocommerce-product-gallery__image:not(:first-child) {
 	display: none !important;
 }

 /* Налаштовуємо головне фото */
 .woocommerce-product-gallery__image:first-child {
 	display: block !important;
 	width: 100% !important;
 	cursor: pointer;
 	/* Показуємо, що можна клікнути */
 }

 .woocommerce-product-gallery__image:first-child img {
 	width: 100% !important;
 	/* height: 450px !important; */
 	object-fit: contain !important;
 	background: #fff;
 }

 .woocommerce-product-gallery__trigger {
 	display: none !important;
 }

 span.onsale {
 	z-index: 1 !important;
 	border-radius: 12px !important;
 	min-height: auto !important;
 	min-width: auto !important;
 	line-height: 1 !important;
 	top: 30px !important;
 	right: 20px !important;
 	left: auto !important;
 	margin: 0 !important;
 	position: absolute !important;

 	/* Колір та текст */
 	background-color: #e67e22 !important;
 	/* Ваш акцентний помаранчевий */
 	color: #fff !important;
 	padding: 7px 12px !important;
 	font-size: 13px !important;
 	font-weight: 700 !important;
 	text-transform: uppercase;
 	z-index: 10;
 }

 /* Додаємо невеликий радіус тільки на внутрішній кут, щоб виглядало м'якше (опціонально) */
 span.onsale {
 	border-bottom-left-radius: 4px !important;
 	border-top-right-radius: 4px !important;
 }

 /* Робимо ціни однаковими за розміром та прибираємо підкреслення */
 .price del,
 .price ins,
 .price del .woocommerce-Price-amount,
 .price ins .woocommerce-Price-amount {
 	font-size: 18px !important;
 	/* Вкажіть потрібний вам розмір (наприклад, 18px або 1rem) */
 	text-decoration: none !important;
 	/* Прибираємо нижнє підкреслення всюди */
 	display: inline-block;
 }

 /* Стиль суто для старої ціни */
 .price del {
 	color: #999 !important;
 	/* Сірий колір */
 	margin-right: 10px;
 	/* Відступ між цінами */
 }

 /* Додаємо закреслення лінії через середину тільки для старої ціни */
 .price del bdi {
 	text-decoration: line-through !important;
 }

 /* Стиль суто для нової ціни */
 .price ins {
 	color: #e67e22 !important;
 	/* Ваш помаранчевий або чорний */
 	font-weight: 700 !important;
 	/* Можна залишити жирним для акценту */
 }

 /* Прибираємо фон, який іноді додає WooCommerce для тегу <ins> */
 .price ins {
 	background: none !important;
 }

 .woocommerce-Tabs-panel--description h2,
 .woocommerce-Tabs-panel--additional_information h2 {
 	display: none !important;
 }

 .woocommerce-info {
 	border-radius: 12px;
 	color: #fff;
 	background-color: #1e85be;
 }

 .woocommerce-info::before {
 	color: #fff;
 }

 .cart-collaterals h2 {
 	display: none !important;
 }

 #billing_country_field {
 	display: none !important;
 }

 #billing_address_1_field,
 #billing_address_2_field,
 #billing_country_field {
 	display: none !important;
 }

 #billing_country_field,
 #billing_address_1_field,
 #billing_address_2_field,
 #billing_state_field,
 #billing_postcode_field {
 	display: none !important;
 }

 .woocommerce-shipping-totals {
 	display: none !important;
 }

 .woocommerce-billing-fields h3 {
 	display: none !important;
 }

 .mask {
 	background: rgba(0, 0, 0, 0.1) !important;
 	z-index: 2 !important;
 }


 /* Виправляємо відображення самого фото */
 .attachment-woocommerce_thumbnail {
 	width: 100% !important;
 	height: 200px !important;
 	/* Фіксуємо висоту контейнера */
 	object-fit: contain !important;
 	/* Змушує фото вписатися ПОВНІСТЮ без обрізки */
 	background: transparent !important;
 	padding: 10px;
 }

 /* Прибираємо обмеження ширини, які можуть заважати */
 .woocommerce ul.products li.product a img {
 	margin: 0 auto !important;
 	display: block !important;
 }

 .about_container p {
 	font-size: 20px;
 }


 /* .new_card.animate {
 	opacity: 0;
 	transition: all 0.8s ease-out;
 }
 .new_card.animate.fade-left {
    transform: translateX(-50px);
}
.new_card.animate.fade-right {
    transform: translateX(50px);
}
.new_card.animate.fade-up {
    transform: translateY(50px);
}
.new_card.animate.show {
    opacity: 1 !important;
    transform: translate(0) !important;
    visibility: visible !important;
} */
 html[lang] {
 	margin-top: 0 !important;
 }

 .record_news {
 	padding-top: 100px;

 }

 .record_news .container {
 	max-width: 924px !important;
 }

 /* @media (max-width: 480px) {
 	.record_news {
 		padding-top: 60px;
 	}
 } */

 .ecord_title {
 	padding-bottom: 20px;
 }

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

 }

 .record_post {
 	padding-bottom: 30px;
 }

 .record-content {
 	padding-inline: 15px;
 }

 .record_news .post-thumbnail {
 	width: 100%;
 	max-width: 924px;
 	overflow: hidden;
 }

 .record_news .post-thumbnail img {
 	/* width: 924px !important;
 	height: 500px !important; */
 	object-fit: cover;
 	display: block;
 	margin: 0 auto;
 	border-radius: 4px;
 }



 .woocommerce-error {
 	background-color: #fcf1f1;
 	border-top: 3px solid #b80101;
 	color: #b80101;
 	padding: 20px;
 	margin-bottom: 30px;
 	list-style: none;
 	border-radius: 8px;
 }

 .woocommerce-error li {
 	margin-bottom: 5px;
 }

 .record_button {
 	padding-bottom: 100px;
 }

 .record_article {
 	padding-bottom: 60px;
 }

 .woocommerce-checkout.woocommerce-order-received .woocommerce-order>p {
 	display: none;
 }

 .top_subtitle {
	padding-bottom: 30px;
 }

