.catalog-regions-section {
	width: 100%;
	padding: 80px 0;
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.catalog-regions-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.catalog-regions-title {
	font-size: 48px;
	font-weight: 700;
	color: #333333;
	margin: 0 0 60px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
}

.catalog-regions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.catalog-region-card {
	position: relative;
	display: block;
	height: 500px;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 50%, #1a1a1a 100%);
}

.catalog-region-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.catalog-region-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(74, 74, 74, 0.8) 50%, rgba(26, 26, 26, 0.9) 100%);
	z-index: 2;
	transition: opacity 0.4s ease;
}

.catalog-region-card:hover::before {
	opacity: 0.7;
}

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

.region-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	filter: brightness(0.85);
}

.catalog-region-card:hover .region-card-image img {
	transform: scale(1.1);
	filter: brightness(0.95);
}


.region-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px;
	z-index: 3;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.region-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
	z-index: 2;
}

.region-card-title {
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 3px;
	position: relative;
	z-index: 3;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	transition: all 0.4s ease;
}

.catalog-region-card:hover .region-card-title {
	transform: translateY(-5px);
	text-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}

/* Градиенты для каждой карточки */
.catalog-region-usa {
	background: linear-gradient(135deg, #3a3a3a 0%, #5a5a5a 50%, #2a2a2a 100%);
}

.catalog-region-usa::before {
	background: linear-gradient(135deg, rgba(58, 58, 58, 0.9) 0%, rgba(90, 90, 90, 0.8) 50%, rgba(42, 42, 42, 0.9) 100%);
}

.catalog-region-europe {
	background: linear-gradient(135deg, #2d2d2d 0%, #4d4d4d 50%, #1d1d1d 100%);
}

.catalog-region-europe::before {
	background: linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(77, 77, 77, 0.8) 50%, rgba(29, 29, 29, 0.9) 100%);
}

.catalog-region-china {
	background: linear-gradient(135deg, #353535 0%, #555555 50%, #252525 100%);
}

.catalog-region-china::before {
	background: linear-gradient(135deg, rgba(53, 53, 53, 0.9) 0%, rgba(85, 85, 85, 0.8) 50%, rgba(37, 37, 37, 0.9) 100%);
}

.catalog-region-china .region-card-image img {
	object-position: 35% 40%;
}

@media (max-width: 1200px) {
	.catalog-regions-grid {
		gap: 30px;
	}
	
	.catalog-region-card {
		height: 450px;
	}
	
	.region-card-title {
		font-size: 36px;
	}
}

@media (max-width: 968px) {
	.catalog-regions-section {
		padding: 60px 0;
	}
	
	.catalog-regions-container {
		padding: 0 20px;
	}
	
	.catalog-regions-title {
		font-size: 36px;
		margin-bottom: 40px;
	}
	
	.catalog-regions-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.catalog-region-card {
		height: 400px;
	}
	
	.region-card-content {
		padding: 30px;
	}
	
	.region-card-title {
		font-size: 32px;
	}
}

@media (max-width: 640px) {
	.catalog-regions-section {
		padding: 40px 0;
	}
	
	.catalog-regions-title {
		font-size: 28px;
		margin-bottom: 30px;
	}
	
	.catalog-region-card {
		height: 350px;
	}
	
	.region-card-content {
		padding: 25px;
	}
	
	.region-card-title {
		font-size: 28px;
		letter-spacing: 2px;
	}
}

