@import "bootstrap.min.css";
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css');

body {
	font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
}
.global-alert {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translate(-50%, -30px);
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	color: #fff;
	background: rgba(0,0,0,0.85);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1000;
}
.global-alert.visible {
	transform: translate(-50%, 0);
	opacity: 1;
	visibility: visible;
}
.global-alert--success {
	background: linear-gradient(135deg, #06d6a0 0%, #1d976c 100%);
}
.global-alert--error {
	background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
}
.main_nav {
	background: #111;
	padding: 10px 0;
}
.logo {
	float: left;
	display: block;
	padding: 15px;
	height: 80px;
}

.logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.main_phone {
	float: right;
	display: flex;
	gap: 15px;
	margin-top: 15px;
	align-items: center;
}
.main_phone a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s;
}
.phone-whatsapp {
	background: rgba(37, 211, 102, 0.1);
	color: #25D366;
	border: 2px solid #25D366;
}
.phone-whatsapp:hover {
	background: #25D366;
	color: #fff;
	border: 2px solid #25D366;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.phone-call {
	background: linear-gradient(135deg, #E63946 0%, #D62828 100%);
	color: #fff;
	border: 2px solid #E63946;
	box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}
.phone-call:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}
.main {
	position: relative;
	z-index: 1;
}
.mainSlider {
	width: 100%;
	height: 100%;
}
.mainSlider .swiper-slide {
	background: url('../img/pullups.png') no-repeat 50%;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
}
.mainSlider .swiper-slide:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0, .4);
	z-index: 0;
}
.mainSlider .container {
	position: relative;
	z-index: 1;
}
/* Навигация главного слайдера */
.mainSlider .swiper-button-next,
.mainSlider .swiper-button-prev {
	color: #fff;
	background: rgba(230, 57, 70, 0.8);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: all 0.3s;
}
.mainSlider .swiper-button-next:after,
.mainSlider .swiper-button-prev:after {
	font-size: 20px;
	font-weight: bold;
}
.mainSlider .swiper-button-next:hover,
.mainSlider .swiper-button-prev:hover {
	background: #E63946;
	transform: scale(1.1);
}
/* Пагинация главного слайдера */
.mainSlider .swiper-pagination {
	bottom: 30px;
}
.mainSlider .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	transition: all 0.3s;
}
.mainSlider .swiper-pagination-bullet-active {
	background: #E63946;
	width: 30px;
	border-radius: 6px;
}
.main_caption {
	padding: 150px 0 120px 0;
	color: #fff;	
}
.main_caption h1 {
	font-size: 40px;	
	font-weight: 700;	
	margin-bottom: 30px;
	line-height: 1.3;	
}
.main_caption h2 {
	font-size: 30px;
	margin-bottom: 30px;		
	line-height: 1.4;	
}
.main_caption a {
	display: inline-block;
	background: linear-gradient(135deg, #E63946 0%, #D62828 100%);
	color: #fff;
	font-size: 18px;	
	border-radius: 50px;
	text-decoration: none;
	padding: 14px 32px;
	font-weight: 600;
	transition: all 0.3s;
	box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}
.main_caption a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}
section .title {
	padding: 30px 0;
	font-size: 30px;	
	font-weight: 700;	
}
.reviews {
	background: #fff;
	overflow: hidden;
}
.reviewsSwiper,
.videoReviewsSwiper,
.imageReviewsSwiper,
.textReviewsSwiper {
	padding: 20px 0 60px;
}
.reviewsSwiper .swiper-slide,
.videoReviewsSwiper .swiper-slide,
.imageReviewsSwiper .swiper-slide,
.textReviewsSwiper .swiper-slide {
	height: auto;
}
/* Кнопки навигации */
.reviews .swiper-button-next,
.reviews .swiper-button-prev {
	color: #E63946;
	background: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}
.reviews .swiper-button-next:after,
.reviews .swiper-button-prev:after {
	font-size: 20px;
	font-weight: bold;
}
.reviews .swiper-button-next:hover,
.reviews .swiper-button-prev:hover {
	background: #E63946;
	color: #fff;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}
/* Пагинация */
.reviews .swiper-pagination {
	bottom: 20px;
}
.reviews .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #ccc;
	opacity: 1;
	transition: all 0.3s;
}
.reviews .swiper-pagination-bullet-active {
	background: #E63946;
	width: 30px;
	border-radius: 6px;
}
.video_review {
	position: relative;
	width: 100%;
	height: 200px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.video_review iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.image_review {
	background: #fff;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	width: 100%;
	display: flex;
	flex-direction: column;
	height: 200px;
}
.image_review:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.image_review img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 15px;
	cursor: zoom-in;
	transition: opacity 0.3s;
}
.image_review img:hover {
	opacity: 0.9;
}
.image_review h4 {
	font-size: 16px;
	font-weight: 600;
	color: #E63946;
	margin-bottom: 10px;
}
.image_review p {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}
.text_review {
	background: #fff;
	border-radius: 16px;
	padding: 25px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	border-left: 4px solid #E63946;
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 200px;
}
.text_review:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.text_review h4 {
	font-size: 16px;
	font-weight: 600;
	color: #E63946;
	margin-bottom: 12px;
}
.text_review p {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	font-style: italic;
}
.products {
	background: #f8f9fa;
	padding: 50px 0;
}
.product-tabs {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.tab-btn {
	background: #fff;
	border: 2px solid #e0e0e0;
	color: #333;
	padding: 12px 24px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	font-family: 'Montserrat', sans-serif;
}
.tab-btn:hover {
	border-color: #E63946;
	color: #E63946;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(230, 57, 70, 0.15);
}
.tab-btn.active {
	background: linear-gradient(135deg, #E63946 0%, #D62828 100%);
	border-color: #E63946;
	color: #fff;
	box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}
.tab-btn:not(.active) {
	background: #fff;
	border-color: #e0e0e0;
	color: #333;
}
.tab-btn:not(.active):hover {
	border-color: #E63946;
	color: #E63946;
}
.products .row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.products .col-lg-6,
.products .col-md-12 {
	display: flex;
	padding: 0 15px;
	margin-bottom: 30px;
}
.product-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	overflow: hidden;
	position: relative;
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.product-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 10;
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
.badge-new {
	background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
	color: #fff;
	padding: 5px 10px;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
}
.badge-hit {
	background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
	color: #fff;
	padding: 5px 10px;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}
.badge-sale {
	background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
	color: #fff;
	padding: 5px 10px;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}
.product-row {
	display: flex;
	padding: 15px;
	gap: 15px;
	flex: 1;
}
.product-gallery-col {
	flex: 0 0 200px;
}
.product-main-img {
	background: #f9f9f9;
	border-radius: 6px;
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}
.product-main-img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.product-thumbs {
	display: flex;
	gap: 6px;
}
.thumb-item {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 8px;
	border: 2px solid #e0e0e0;
	cursor: pointer;
	transition: all 0.2s;
}
.thumb-item:hover {
	border-color: #E63946;
	transform: scale(1.05);
}
.thumb-item.active {
	border-color: #E63946;
	box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
}
.product-info-col {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.prod-title {
	font-size: 17px;
	font-weight: 700;
	color: #111;
	margin-bottom: 4px;
	line-height: 1.3;
}
.prod-subtitle {
	font-size: 12px;
	color: #777;
	margin-bottom: 10px;
}
.prod-price-block {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.prod-price-old {
	font-size: 18px;
	font-weight: 500;
	color: #999;
	text-decoration: line-through;
}
.prod-price {
	font-size: 24px;
	font-weight: 700;
	color: #E63946;
	background: linear-gradient(135deg, #E63946 0%, #D62828 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.prod-specs {
	font-size: 12px;
	line-height: 1.5;
	color: #666;
	margin-bottom: 8px;
}
.prod-specs-detail {
	font-size: 11px;
	line-height: 1.4;
	color: #888;
	margin-bottom: 10px;
	max-height: 50px;
	overflow: hidden;
}
.prod-category {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f0f0f0;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	color: #666;
	margin-bottom: 15px;
}
.prod-category svg {
	color: #E63946;
}
.prod-category span {
	font-weight: 500;
}
.product-buttons {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.btn-buy {
	background: linear-gradient(135deg, #E63946 0%, #D62828 100%);
	color: #fff;
	padding: 12px 20px;
	border-radius: 16px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	display: block;
	transition: all 0.3s;
	box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}
.btn-buy:hover {
	background: linear-gradient(135deg, #D62828 0%, #C1121F 100%);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}
.btn-whatsapp {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	color: #fff;
	padding: 10px 20px;
	border-radius: 16px;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
	background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
@media (max-width: 767px) {
	.product-row {
		flex-direction: column;
	}
	.product-gallery-col {
		flex: 0 0 auto;
		width: 100%;
	}
	.product-main-img {
		height: 200px;
	}
}
footer {
	padding: 60px 0 30px;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	color: #fff;
}
.footer-content {
	text-align: center;
}
.footer-logo {
	margin-bottom: 30px;
}
.footer-logo img {
	max-width: 200px;
	height: auto;
}
.footer-text {
	max-width: 700px;
	margin: 0 auto 30px;
	color: #b0b0b0;
	line-height: 1.6;
}
.footer-text p {
	margin-bottom: 10px;
	font-size: 14px;
}
.footer-contacts {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.footer-phone,
.footer-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
}
.footer-phone {
	background: linear-gradient(135deg, #E63946 0%, #D62828 100%);
	color: #fff;
	border: 2px solid #E63946;
	box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}
.footer-phone:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}
.footer-whatsapp {
	background: rgba(37, 211, 102, 0.1);
	color: #25D366;
	border: 2px solid #25D366;
}
.footer-whatsapp:hover {
	background: #25D366;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.footer-bottom {
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #777;
	font-size: 13px;
}
.footer-bottom p {
	margin: 0;
}
iframe {
	max-width: 100%!important;
	border-radius: 12px;
	overflow: hidden;
}
.remodal h2 {
	font-size: 30px;	
	font-weight: bold;
	margin-bottom: 45px;	
}
.remodal input {
	display: block;
	width: 100%;
	margin-bottom: 30px;	
	padding: 10px 15px;
	font-size: 16px;	
	color: #111;
	border: 1px solid #ccc;
	outline: none;
}
.remodal input:focus {
	border-color: #E63946;
}
.remodal .form_send {
	display: inline-block;
	background: linear-gradient(135deg, #E63946 0%, #D62828 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 12px 40px;
	border-radius: 50px;
	border: none;
	outline: none;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}
.remodal .form_send:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}
.remodal .messages {
	padding: 15px 0;
}
.about_text {
	padding: 45px 0;
	color: #111;
}
.about_text b,
.about_text storng {
	font-weight: bold;
}
.about_text i,
.about_text em {
	font-style: italic;
}
.about_text h2 {
	font-size: 30px;
	line-height: 1.4;
	margin-bottom: 40px;
}
.about_text h3 {
	font-size: 24px;
	line-height: 1.4;
	margin-bottom: 35px;
}
.about_text h4 {
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 30px;
}
.about_text h5 {
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 25px;
}
.about_text h6 {
	font-size: 12px;
	line-height: 1.4;
	margin-bottom: 20px;
}
.about_text p {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 15px;
}
@media (max-width: 767px) {
	.main_nav {
		padding: 15px 0;
	}
	.main_nav .container {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.logo {
		float: none;
		padding: 0;
		order: 1;
		margin-bottom: 12px;
		height: 30px;
	}

	.logo img {
		height: 30px;
	}
	.main_phone {
		float: none;
		gap: 10px;
		order: 2;
	}
	.main_phone a {
		padding: 8px 14px;
		font-size: 12px;
		gap: 6px;
	}
	.main_phone svg {
		width: 14px;
		height: 14px;
	}
}
@media (max-width: 480px) {
	.main_caption h1 {
		font-size: 30px;	
	}
	.main_caption h2 {
		font-size: 20px;	
	}
	
	/* Табы категорий */
	.product-tabs {
		gap: 6px;
		margin-bottom: 25px;
	}
	.tab-btn {
		padding: 8px 14px;
		font-size: 12px;
	}
	
	/* Карточки товаров */
	.products {
		padding: 30px 0;
	}
	.products .col-lg-6,
	.products .col-md-12 {
		margin-bottom: 20px;
	}
	.product-card {
		border-radius: 12px;
	}
	.product-main-img {
		height: 220px;
	}
	.product-info-col {
		padding: 12px;
	}
	.prod-title {
		font-size: 15px;
		margin-bottom: 8px;
	}
	.prod-specs {
		font-size: 11px;
		margin-bottom: 8px;
	}
	.prod-price {
		font-size: 18px;
	}
	.prod-price-old {
		font-size: 14px;
	}
	.prod-category {
		font-size: 10px;
		padding: 4px 8px;
		margin-bottom: 10px;
	}
	.btn-buy,
	.btn-whatsapp {
		font-size: 12px;
		padding: 10px 14px;
	}
	
	/* Бейджи */
	.product-badges {
		gap: 5px;
		padding: 8px;
	}
	.badge-new,
	.badge-hit,
	.badge-sale {
		font-size: 9px;
		padding: 3px 8px;
	}
	
	/* Футер */
	.footer-logo img {
		max-width: 120px;
	}
	.footer-text {
		font-size: 12px;
		padding: 0 15px;
	}
	.footer-text p {
		margin-bottom: 8px;
	}
	.footer-contacts {
		flex-direction: column;
		gap: 10px;
		padding: 0 15px;
	}
	.footer-phone,
	.footer-whatsapp {
		width: 100%;
		justify-content: center;
		padding: 10px 20px;
		font-size: 13px;
	}
	
	/* Отзывы */
	.reviews {
		padding: 30px 0;
	}
	.reviews .col-md-4 {
		margin-bottom: 15px;
	}
	
	/* Заголовки */
	section .title {
		font-size: 22px;
		padding: 15px 0;
	}
}

/* Иконка галереи на главном изображении */
.product-main-img {
	position: relative;
	cursor: pointer;
}
.gallery-icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 8px 12px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	font-weight: 600;
	pointer-events: none;
}
.gallery-icon svg {
	width: 20px;
	height: 20px;
}

/* Modal для увеличения изображения */
.image-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	justify-content: center;
	align-items: center;
	cursor: zoom-out;
}
.image-modal-content {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	border-radius: 8px;
	animation: zoomIn 0.3s;
}
.image-modal-close {
	position: absolute;
	top: 20px;
	right: 35px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s;
}
.image-modal-close:hover {
	color: #E63946;
}
@keyframes zoomIn {
	from {
		transform: scale(0.8);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* Lightbox галерея товаров */
.product-gallery-modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	justify-content: center;
	align-items: center;
}
.gallery-close {
	position: absolute;
	top: 20px;
	right: 35px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	z-index: 10001;
	transition: 0.3s;
}
.gallery-close:hover {
	color: #E63946;
}
.productGallerySwiper {
	width: 90%;
	max-width: 1200px;
	height: 80vh;
}
.productGallerySwiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}
.productGallerySwiper .swiper-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 8px;
}
.productGallerySwiper .swiper-button-next,
.productGallerySwiper .swiper-button-prev {
	color: #fff;
	background: rgba(230, 57, 70, 0.8);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: all 0.3s;
}
.productGallerySwiper .swiper-button-next:after,
.productGallerySwiper .swiper-button-prev:after {
	font-size: 20px;
}
.productGallerySwiper .swiper-button-next:hover,
.productGallerySwiper .swiper-button-prev:hover {
	background: #E63946;
	transform: scale(1.1);
}
.productGallerySwiper .swiper-pagination {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}

/* Пагинация товаров */
.hidden-product {
	display: none !important;
}
.btn-load-more {
	background: linear-gradient(135deg, #E63946 0%, #D62828 100%);
	color: white;
	border: none;
	padding: 15px 40px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}
.btn-load-more:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}
.btn-load-more:active {
	transform: translateY(0);
}
@media(min-width: 641px) {
	.remodal {
		max-width: 480px;
	}
}
.remodal {
	border-radius: 16px;
	overflow: hidden;
}
.remodal input {
	border-radius: 8px;
}
.remodal .form_send {
	border-radius: 8px;
}


@keyframes beat {
  0% {
   	-webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
   	-webkit-transform: scale(1.16);
    -ms-transform: scale(1.16);
    -o-transform: scale(1.16);
    transform: scale(1.16);
  }
  100% {
   	-webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes beat {
  0% {
   	-webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
   	-webkit-transform: scale(1.16);
    -ms-transform: scale(1.16);
    -o-transform: scale(1.16);
    transform: scale(1.16);
  }
  100% {
   	-webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

/* Анимация загрузки формы */
.btn-loader {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.spinner {
	animation: rotate 2s linear infinite;
	width: 24px;
	height: 24px;
}

.spinner .path {
	stroke: #fff;
	stroke-linecap: round;
	animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes dash {
	0% {
		stroke-dasharray: 1, 150;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -35;
	}
	100% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -124;
	}
}

/* Состояние кнопки при загрузке */
button.loading {
	opacity: 0.7;
	cursor: not-allowed;
	pointer-events: none;
}

button:disabled {
	cursor: not-allowed;
}

/* Плавное появление сообщений */
.messages {
	animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}