/* ==========================================================================
   Main Categories: Women / Men / Kids
   ========================================================================== */

.flamtees-main-categories {
	padding: 12px 0 30px;
	background: #ffffff;
}

.flamtees-main-categories__heading {
	margin: 0 0 24px;
	text-align: center;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 700;
	line-height: 1.1;
}

.flamtees-main-categories__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.flamtees-main-category {
	display: block;
	min-width: 0;
	overflow: hidden;
	border-radius: 8px;
}

.flamtees-main-category__media {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
	background: #eeeeee;
	aspect-ratio: 4 / 5;
}

.flamtees-main-category__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.flamtees-main-category:hover .flamtees-main-category__image {
	transform: scale(1.035);
}

.flamtees-main-category__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	font-size: 1.4rem;
	font-weight: 700;
	color: #666666;
}

.flamtees-main-category__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0) 45%,
			rgba(0, 0, 0, 0.58) 100%
		);
}

.flamtees-main-category__title {
	position: absolute;
	top: clamp(22px, 4vw, 42px);
	right: 20px;
	bottom: auto;
	left: 20px;
	color: #ffffff;
	font-size: clamp(1.3rem, 2.4vw, 2.2rem);
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-shadow: 0 2px 12px rgba(4, 18, 34, 0.62);
	text-transform: uppercase;
}

@media (max-width: 768px) {
	.flamtees-main-categories {
		padding: 12px 0 24px;
	}

	.flamtees-main-categories__heading {
		margin-bottom: 20px;
	}

	.flamtees-main-categories__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.flamtees-main-category__media {
		aspect-ratio: 4 / 3;
	}

	.flamtees-main-category__title {
		top: 20px;
		bottom: auto;
		font-size: 1.7rem;
	}
}
