/*
 * The live Porto catalogue uses three columns from 768 px upward.
 * The banner occupies the full three-cell row on desktop and one cell on mobile.
 */
ul.products li.product-col.climatbox-showroom-banner {
	display: block;
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.climatbox-showroom-banner__link {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 30 / 11;
	min-height: 270px;
	max-height: 340px;
	overflow: hidden;
	border-radius: 7px;
	background: #1d3554;
	box-shadow: 0 -2px 4px rgb(35 31 32 / 5%), 0 4px 8px rgb(35 31 32 / 12%);
	isolation: isolate;
}

.climatbox-showroom-banner__image,
.climatbox-showroom-banner__shade {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.climatbox-showroom-banner__image {
	z-index: 0;
	object-fit: cover;
	object-position: center;
	transition: transform 0.35s ease;
}

.climatbox-showroom-banner__shade {
	z-index: 1;
	background: linear-gradient(90deg, rgb(12 18 27 / 78%) 0%, rgb(12 18 27 / 58%) 48%, rgb(12 18 27 / 16%) 100%);
}

.climatbox-showroom-banner__content {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: clamp(24px, 4vw, 48px);
	display: flex;
	max-width: 62%;
	transform: translateY(-50%);
	align-items: flex-start;
	flex-direction: column;
	gap: clamp(14px, 1.7vw, 22px);
}

.climatbox-showroom-banner__title {
	display: block;
	margin: 0;
	color: #fff;
	font-family: Montserrat, Arial, sans-serif;
	font-size: clamp(24px, 2.15vw, 36px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 14px rgb(0 0 0 / 35%);
}

.climatbox-showroom-banner__title > span {
	display: block;
}

.climatbox-showroom-banner__button {
	display: inline-flex;
	min-height: 42px;
	padding: 10px 27px;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	background: #9a2948;
	box-shadow: 0 4px 14px rgb(54 5 22 / 22%);
	color: #fff;
	font-family: Montserrat, Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.climatbox-showroom-banner__link:hover,
.climatbox-showroom-banner__link:focus {
	text-decoration: none;
}

.climatbox-showroom-banner__link:hover .climatbox-showroom-banner__image {
	transform: scale(1.025);
}

.climatbox-showroom-banner__link:hover .climatbox-showroom-banner__button {
	background: #b02b55;
	transform: translateY(-1px);
}

.climatbox-showroom-banner__link:focus-visible {
	outline: 3px solid #9a2948;
	outline-offset: 3px;
}

/* Porto list view always uses the full catalogue width. */
ul.products.list li.product-col.climatbox-showroom-banner {
	flex-basis: 100%;
	width: 100%;
	max-width: 100%;
}

@media (max-width: 767px) {
	ul.products li.product-col.climatbox-showroom-banner {
		flex-basis: 100%;
		width: 100%;
		max-width: 100%;
	}

	.climatbox-showroom-banner__link {
		aspect-ratio: 1.12 / 1;
		min-height: 260px;
	}

	.climatbox-showroom-banner__image {
		object-position: 51% center;
	}

	.climatbox-showroom-banner__shade {
		background: linear-gradient(180deg, rgb(12 18 27 / 42%) 0%, rgb(12 18 27 / 68%) 100%);
	}

	.climatbox-showroom-banner__content {
		top: auto;
		right: 20px;
		bottom: 24px;
		left: 20px;
		max-width: none;
		transform: none;
		align-items: center;
		gap: 15px;
		text-align: center;
	}

	.climatbox-showroom-banner__title {
		font-size: clamp(24px, 8vw, 31px);
	}

	.climatbox-showroom-banner__button {
		min-width: 130px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.climatbox-showroom-banner__image,
	.climatbox-showroom-banner__button {
		transition: none;
	}
}
