
        
.cards-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 20px;
}

.category-card {
	position: relative;
	height: 280px;
	overflow: hidden;
	border-radius: 24px;
	padding: 12px 20px;
	display: flex;
	flex-direction: column;
	flex: 1 1 300px;
	max-width: 410px;
	align-items: unset;
	gap: unset;
	background: linear-gradient(316deg, #27B099 0%, #009999 100%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Наложение поверх фонового изображения */
.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(79, 180, 215, 0.4);
	z-index: 1;
	border-radius: 24px;
	/* height: 100%;
	width: 100%; */
}

/* Поднимаем контент над наложением */
.tags-container,
.image-container,
.card-content {
	position: relative;
	z-index: 2;
}

.tags-container {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	align-items: flex-start;
	flex-shrink: 0;
}

.tag {
	padding: 4px 8px;
	background: rgba(255, 255, 255, 0.60);
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.2s;
}

.tag:hover {
	background: rgba(255, 255, 255, 0.80);
}

.tag-text {
	color: #545656;
	font-size: 12px;
	font-weight: 600;
	line-height: 16.80px;
}

.image-container {
	flex: 1;
	min-height: 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	margin: 8px 0;
}

.category-image {
	max-height: 100%;
	max-width: 80%;
	object-fit: contain;
	flex-shrink: 1;
}

.card-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex-shrink: 0;
}

.products-count {
	color: white;
	font-size: 12px;
	font-weight: 600;
}

.category-title {
	color: white;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
	.cards-container {
		flex-direction: column;
		align-items: center;
		gap: 20px
	}
	
	.category-card {
		height: 260px;
		width: 100%;
		max-width: 100%;
		padding: 12px 8px 6px 12px;
		flex: 1 1 322px;
	}
	
	.image-container {
		margin: 4px 0;
	}
	
	.category-image {
		max-width: 100%;
	}
}
