/* Promotions Page Styles */

/* Скрываем кнопки на карточках акций */
.promotions-page .promotion-button {
	display: none!important;
}

/* Intro Section */
.promotions-page .promotions-intro {
	display: flex;
	align-items: center;
	gap: 25px;
	padding: 35px;
	background: linear-gradient(135deg, #2c5282 0%, #2d3748 100%);
	border-radius: 16px;
	margin-bottom: 40px;
	box-shadow: 0 8px 24px rgba(44, 82, 130, 0.25);
	position: relative;
	overflow: hidden;
}

.promotions-page .promotions-intro::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.promotions-page .intro-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	flex-shrink: 0;
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 1;
}

.promotions-page .intro-icon svg {
	width: 42px;
	height: 42px;
	stroke: #ffffff;
}

.promotions-page .intro-content {
	position: relative;
	z-index: 1;
}

.promotions-page .intro-title {
	font-size: 32px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 8px 0;
	line-height: 1.2;
}

.promotions-page .intro-subtitle {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	font-weight: 400;
	line-height: 1.4;
}

/* Section Title */
.promotions-page .section-title {
	font-size: 26px;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 30px;
	padding-bottom: 12px;
	border-bottom: 4px solid #3182ce;
	display: inline-block;
}

/* Promotions Grid */
.promotions-page .promotions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

/* Promotion Card */
.promotions-page .promotion-card {
	padding: 35px 30px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 2px solid #f0f0f0;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.promotions-page .promotion-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #3182ce 0%, #2c5282 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.promotions-page .promotion-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(49, 130, 206, 0.2);
	border-color: #3182ce;
}

.promotions-page .promotion-card:hover::before {
	transform: scaleX(1);
}

/* Featured Card */
.promotions-page .promotion-card.featured {
	background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
	border: none;
	box-shadow: 0 12px 30px rgba(49, 130, 206, 0.3);
}

.promotions-page .promotion-card.featured .promotion-title,
.promotions-page .promotion-card.featured .promotion-description {
	color: #ffffff;
}

.promotions-page .promotion-card.featured .promotion-icon {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.3);
}

.promotions-page .promotion-card.featured .promotion-details .detail-item {
	color: rgba(255, 255, 255, 0.95);
}

.promotions-page .promotion-card.featured .promotion-details .detail-item svg {
	stroke: rgba(255, 255, 255, 0.9);
}

.promotions-page .promotion-card.featured .promotion-button {
	background: #ffffff;
	color: #3182ce;
}

.promotions-page .promotion-card.featured .promotion-button:hover {
	background: rgba(255, 255, 255, 0.95);
	color: #2c5282;
}

.promotions-page .promotion-card.featured .promotion-button svg {
	stroke: #3182ce;
}

/* Promotion Badge */
.promotions-page .promotion-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	padding: 6px 14px;
	background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
	z-index: 2;
}

/* Promotion Discount */
.promotions-page .promotion-discount {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
	border-radius: 50%;
	box-shadow: 0 6px 16px rgba(229, 62, 62, 0.4);
	z-index: 2;
}

/* Promotion Image */
.promotions-page .promotion-image {
	width: 100%;
	height: 200px;
	margin: 0 auto 25px;
	overflow: hidden;
	border-radius: 12px;
	position: relative;
}

.promotions-page .promotion-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.4s ease;
}

.promotions-page .promotion-card:hover .promotion-image img {
	transform: scale(1.1);
}

/* Promotion Icon */
.promotions-page .promotion-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
	border-radius: 50%;
	border: 4px solid #f8f9fa;
	box-shadow: 0 8px 20px rgba(49, 130, 206, 0.3);
	transition: all 0.4s ease;
}

.promotions-page .promotion-card:hover .promotion-icon {
	transform: scale(1.1) rotate(10deg);
	box-shadow: 0 12px 28px rgba(49, 130, 206, 0.4);
}

.promotions-page .promotion-icon svg {
	width: 38px;
	height: 38px;
	stroke: #ffffff;
}

/* Promotion Content */
.promotions-page .promotion-title {
	font-size: 22px;
	font-weight: 700;
	color: #2d3748;
	margin: 0 0 15px 0;
	line-height: 1.3;
	text-align: center;
}

.promotions-page .promotion-description {
	font-size: 14px;
	color: #718096;
	line-height: 1.6;
	margin-bottom: 25px;
	text-align: center;
	flex-grow: 1;
}

/* Promotion Details */
.promotions-page .promotion-details {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 25px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 12px;
	border-left: 4px solid #3182ce;
}

.promotions-page .promotion-card.featured .promotion-details {
	background: rgba(255, 255, 255, 0.15);
	border-left-color: #ffffff;
}

.promotions-page .detail-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	color: #4a5568;
	font-weight: 500;
}

.promotions-page .detail-item svg {
	width: 18px;
	height: 18px;
	stroke: #3182ce;
	flex-shrink: 0;
}

.promotions-page .detail-item strong {
	color: #2d3748;
	font-weight: 700;
}

/* Promotion Button */
.promotions-page .promotion-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 6px 16px rgba(49, 130, 206, 0.3);
	margin-top: auto;
}

.promotions-page .promotion-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(49, 130, 206, 0.4);
	text-decoration: none;
	color: #ffffff;
}

.promotions-page .promotion-button svg {
	width: 20px;
	height: 20px;
	stroke: #ffffff;
	transition: transform 0.3s ease;
}

.promotions-page .promotion-button:hover svg {
	transform: translateX(4px);
}

/* Promotions Info */
.promotions-page .promotions-info {
	margin-bottom: 50px;
	padding: 40px;
	background: linear-gradient(135deg, #2c5282 0%, #2d3748 100%);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(44, 82, 130, 0.2);
}

.promotions-page .promotions-info .section-title {
	color: #ffffff;
	border-bottom-color: rgba(255, 255, 255, 0.3);
	margin-bottom: 35px;
}

.promotions-page .info-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.promotions-page .step-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	background: rgba(255, 255, 255, 0.1);
	padding: 25px;
	border-radius: 16px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.promotions-page .step-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}

.promotions-page .step-number {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	color: #3182ce;
	font-size: 24px;
	font-weight: 800;
	border-radius: 50%;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promotions-page .step-content h4 {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 8px 0;
}

.promotions-page .step-content p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	line-height: 1.5;
}

/* Promotions Notice */
.promotions-page .promotions-notice {
	display: flex;
	gap: 20px;
	padding: 30px;
	background: #fff3cd;
	border-radius: 16px;
	border-left: 5px solid #ffc107;
	box-shadow: 0 6px 16px rgba(255, 193, 7, 0.15);
}

.promotions-page .promotions-notice svg {
	width: 28px;
	height: 28px;
	stroke: #ffc107;
	flex-shrink: 0;
}

.promotions-page .notice-content {
	flex: 1;
}

.promotions-page .notice-content strong {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #856404;
	margin-bottom: 8px;
}

.promotions-page .notice-content p {
	font-size: 14px;
	color: #856404;
	margin: 0;
	line-height: 1.6;
}

.promotions-page .notice-content a {
	color: #3182ce;
	font-weight: 600;
	text-decoration: none;
}

.promotions-page .notice-content a:hover {
	color: #2c5282;
	text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.promotions-page .promotions-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.promotions-page .info-steps {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.promotions-page .intro-title {
		font-size: 26px;
	}

	.promotions-page .section-title {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.promotions-page .promotions-intro {
		flex-direction: column;
		text-align: center;
		padding: 30px 25px;
	}

	.promotions-page .intro-title {
		font-size: 24px;
	}

	.promotions-page .intro-subtitle {
		font-size: 15px;
	}

	.promotions-page .promotions-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.promotions-page .promotion-card {
		padding: 30px 25px;
	}

	.promotions-page .promotion-image {
		height: 180px;
	}

	.promotions-page .promotion-icon {
		width: 70px;
		height: 70px;
	}

	.promotions-page .promotion-icon svg {
		width: 34px;
		height: 34px;
	}

	.promotions-page .promotion-title {
		font-size: 20px;
	}

	.promotions-page .promotions-info {
		padding: 30px 25px;
	}

	.promotions-page .step-item {
		padding: 20px;
	}

	.promotions-page .promotions-notice {
		flex-direction: column;
		padding: 25px;
	}
}

@media (max-width: 576px) {
	.promotions-page .promotions-intro {
		padding: 25px 20px;
	}

	.promotions-page .intro-icon {
		width: 70px;
		height: 70px;
	}

	.promotions-page .intro-icon svg {
		width: 36px;
		height: 36px;
	}

	.promotions-page .intro-title {
		font-size: 20px;
	}

	.promotions-page .intro-subtitle {
		font-size: 14px;
	}

	.promotions-page .section-title {
		font-size: 20px;
	}

	.promotions-page .promotion-card {
		padding: 25px 20px;
	}

	.promotions-page .promotion-discount {
		width: 60px;
		height: 60px;
		font-size: 14px;
	}

	.promotions-page .promotion-badge {
		font-size: 11px;
		padding: 5px 12px;
	}

	.promotions-page .promotion-image {
		height: 160px;
		margin-bottom: 20px;
	}

	.promotions-page .promotion-icon {
		width: 65px;
		height: 65px;
		margin-bottom: 20px;
	}

	.promotions-page .promotion-icon svg {
		width: 30px;
		height: 30px;
	}

	.promotions-page .promotion-title {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.promotions-page .promotion-description {
		font-size: 13px;
		margin-bottom: 20px;
	}

	.promotions-page .promotion-details {
		padding: 15px;
		margin-bottom: 20px;
	}

	.promotions-page .detail-item {
		font-size: 12px;
		gap: 10px;
	}

	.promotions-page .detail-item svg {
		width: 16px;
		height: 16px;
	}

	.promotions-page .promotion-button {
		padding: 12px 24px;
		font-size: 14px;
	}

	.promotions-page .promotion-button svg {
		width: 18px;
		height: 18px;
	}

	.promotions-page .promotions-info {
		padding: 25px 20px;
	}

	.promotions-page .step-item {
		flex-direction: column;
		text-align: center;
		padding: 20px 15px;
		gap: 15px;
	}

	.promotions-page .step-number {
		width: 45px;
		height: 45px;
		font-size: 20px;
		margin: 0 auto;
	}

	.promotions-page .step-content h4 {
		font-size: 16px;
	}

	.promotions-page .step-content p {
		font-size: 13px;
	}

	.promotions-page .promotions-notice {
		padding: 20px;
	}

	.promotions-page .promotions-notice svg {
		width: 24px;
		height: 24px;
	}

	.promotions-page .notice-content strong {
		font-size: 14px;
	}

	.promotions-page .notice-content p {
		font-size: 13px;
	}
}

/* Animation on scroll */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.promotions-page .promotion-card {
	animation: fadeInUp 0.6s ease-out;
	animation-fill-mode: both;
}

.promotions-page .promotion-card:nth-child(1) {
	animation-delay: 0.1s;
}

.promotions-page .promotion-card:nth-child(2) {
	animation-delay: 0.2s;
}

.promotions-page .promotion-card:nth-child(3) {
	animation-delay: 0.3s;
}

.promotions-page .promotion-card:nth-child(4) {
	animation-delay: 0.4s;
}

.promotions-page .promotion-card:nth-child(5) {
	animation-delay: 0.5s;
}

.promotions-page .promotion-card:nth-child(6) {
	animation-delay: 0.6s;
}

