.acx-catalog-hero {
	background: var(--acx-green-house);
	border-radius: var(--acx-radius-card);
	color: var(--acx-text-white);
	display: grid;
	gap: var(--acx-space-5);
	margin-bottom: var(--acx-space-8);
	overflow: hidden;
	padding: var(--acx-space-5);
}

.acx-catalog-hero h1 {
	color: var(--acx-text-white);
	font-size: clamp(38px, 6vw, 64px);
	line-height: 1.15;
	margin-bottom: var(--acx-space-3);
	max-width: 720px;
}

.acx-catalog-hero .acx-eyebrow,
.acx-catalog-hero p {
	color: var(--acx-text-white-soft);
}

.acx-catalog-hero__content > p:last-child {
	font-size: var(--acx-text-4);
	margin-bottom: 0;
	max-width: 620px;
}

.acx-catalog-hero__art {
	align-items: center;
	background: var(--acx-green-uplift);
	border-radius: var(--acx-radius-card);
	display: flex;
	justify-content: center;
	min-height: 240px;
}

.acx-catalog-hero__art span {
	color: var(--acx-text-white);
	font-size: clamp(52px, 10vw, 104px);
	font-weight: 600;
	letter-spacing: -0.05em;
}

.acx-catalog-section__heading {
	align-items: flex-end;
	display: flex;
	gap: var(--acx-space-4);
	justify-content: space-between;
	margin-bottom: var(--acx-space-5);
}

.acx-catalog-section__heading h2 {
	margin: 0;
}

.acx-catalog-grid {
	display: grid;
	gap: var(--acx-space-4);
	grid-template-columns: 1fr;
}

.acx-catalog-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	position: relative;
	transition: box-shadow var(--acx-duration-fast) ease;
}

.acx-catalog-card:hover {
	box-shadow: 0 0 0.5px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.16);
}

.acx-catalog-card__link {
	border-radius: var(--acx-radius-card);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.acx-catalog-card__link:focus-visible {
	outline: 3px solid rgba(0, 117, 74, 0.3);
	outline-offset: 3px;
}

.acx-catalog-card__media {
	align-items: center;
	aspect-ratio: 4 / 3;
	background: var(--acx-ceramic);
	color: var(--acx-green-house);
	display: flex;
	font-size: var(--acx-text-5);
	font-weight: 600;
	justify-content: center;
	overflow: hidden;
	padding: 0;
	position: relative;
}

.acx-catalog-card__media img {
	display: block;
	height: 100% !important;
	inset: 0;
	max-height: none !important;
	max-width: none !important;
	object-fit: cover !important;
	object-position: center center;
	position: absolute;
	transition: opacity 0.3s ease-in;
	width: 100% !important;
}

.acx-catalog-card .acx-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.acx-catalog-card h3 {
	font-size: var(--acx-text-4);
	line-height: 1.35;
	margin-bottom: var(--acx-space-2);
}

.acx-catalog-card .acx-product-card__description {
	flex: 1;
}

.acx-catalog-card .acx-product-card__footer > div {
	display: grid;
	gap: 2px;
}

.acx-catalog-vat {
	color: var(--acx-text-soft);
	font-size: var(--acx-text-1);
}

.acx-catalog-card__add {
	position: relative;
	z-index: 2;
}

.acx-catalog-breadcrumb {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	font-size: var(--acx-text-2);
	gap: var(--acx-space-2);
	margin-bottom: var(--acx-space-4);
}

.acx-catalog-breadcrumb a {
	color: var(--acx-green-accent);
	font-weight: 600;
}

.acx-catalog-breadcrumb span {
	color: var(--acx-text-soft);
}

.acx-catalog-detail {
	background: var(--acx-white);
	border-radius: var(--acx-radius-card);
	box-shadow: var(--acx-shadow-card);
	display: grid;
	overflow: hidden;
}

.acx-catalog-detail__media {
	align-items: center;
	background: var(--acx-ceramic);
	display: flex;
	justify-content: center;
	min-height: 340px;
	overflow: hidden;
	position: relative;
}

.acx-catalog-detail__media > img {
	display: block;
	height: 100% !important;
	inset: 0;
	max-height: none !important;
	max-width: none !important;
	object-fit: cover !important;
	object-position: center center;
	position: absolute;
	width: 100% !important;
}

.acx-catalog-detail__placeholder {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 340px;
	padding: var(--acx-space-5);
	width: 100%;
}

.acx-catalog-detail__placeholder span {
	color: var(--acx-green-house);
	font-size: clamp(32px, 6vw, 58px);
	font-weight: 600;
	text-align: center;
}

.acx-catalog-detail__content {
	padding: clamp(28px, 5vw, 56px);
}

.acx-catalog-detail__content h1 {
	font-size: clamp(36px, 5vw, 58px);
	line-height: 1.15;
	margin-bottom: var(--acx-space-4);
}

.acx-catalog-detail__description {
	color: var(--acx-text-soft);
	font-size: var(--acx-text-4);
	margin-bottom: var(--acx-space-5);
}

.acx-catalog-detail__facts {
	border-block: 1px solid var(--acx-divider);
	display: grid;
	gap: var(--acx-space-4);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 0 var(--acx-space-5);
	padding-block: var(--acx-space-4);
}

.acx-catalog-detail__facts div {
	display: grid;
	gap: var(--acx-space-1);
}

.acx-catalog-detail__facts dt {
	color: var(--acx-text-soft);
	font-size: var(--acx-text-1);
}

.acx-catalog-detail__facts dd {
	font-size: var(--acx-text-2);
	font-weight: 600;
	margin: 0;
}

.acx-catalog-detail__purchase {
	align-items: end;
	display: flex;
	gap: var(--acx-space-4);
	justify-content: space-between;
}

.acx-catalog-detail__purchase > div:first-child {
	display: grid;
}

.acx-catalog-detail__price {
	color: var(--acx-green-brand);
	font-size: 32px;
	line-height: 1.2;
}

.acx-catalog-detail__purchase > div:first-child span {
	color: var(--acx-text-soft);
	font-size: var(--acx-text-1);
}

.acx-catalog-add-form {
	align-items: end;
	display: flex;
	gap: var(--acx-space-3);
}

.acx-catalog-add-form label {
	display: grid;
	font-size: var(--acx-text-1);
	font-weight: 600;
	gap: var(--acx-space-1);
}

.acx-catalog-add-form .acx-input {
	width: 90px;
}

.acx-catalog-cart-message {
	margin-top: var(--acx-space-4);
}

.acx-catalog-not-found {
	margin-inline: auto;
	max-width: 720px;
}

@media (min-width: 600px) {
	.acx-catalog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.acx-catalog-hero {
		align-items: center;
		grid-template-columns: 60fr 40fr;
		padding: var(--acx-space-6);
	}

	.acx-catalog-detail {
		grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
	}
}

@media (min-width: 1100px) {
	.acx-catalog-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 599px) {
	.acx-catalog-section__heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.acx-product-card__footer,
	.acx-catalog-detail__purchase,
	.acx-catalog-add-form {
		align-items: stretch;
		flex-direction: column;
	}

	.acx-catalog-card .acx-btn,
	.acx-catalog-add-form .acx-btn {
		width: 100%;
	}

	.acx-catalog-detail__facts {
		grid-template-columns: 1fr;
	}

	.acx-catalog-add-form .acx-input {
		width: 100%;
	}
}
