/*!
 * Enzo — home styles (conditionally enqueued)
 * Selectors preserved from main.css.
 */

.home-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(48px, 7vw, 96px);
	align-items: center;
}

.home-hero__content {
	max-width: 650px;
}

.home-hero-slider__viewport {
	position: relative;
	overflow: hidden;
}

.home-hero-slider__track {
	position: relative;
	display: grid;
	grid-template-areas: "hero-slide";
}

.home-hero-slider__slide {
	grid-area: hero-slide;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 520px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 0;
	transition: opacity 0.55s ease, visibility 0.55s ease;
}

.home-hero-slider__slide.is-visible {
	visibility: visible;
}

.home-hero-slider__slide.is-visible.is-shown {
	opacity: 1;
}

.home-hero-slider__slide.is-active {
	pointer-events: auto;
}

/* First slide paints before JS: server-side is-active + is-visible + is-shown. */
.home-hero-slider__slide.is-active.is-visible.is-shown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.home-hero-slider__controls {
	position: absolute;
	left: 50%;
	bottom: 24px;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0;
	padding: 0 16px;
	transform: translateX(-50%);
	pointer-events: none;
}

.home-hero-slider__arrow,
.home-hero-slider__dots,
.home-hero-slider__dot {
	pointer-events: auto;
}

.home-hero-slider__arrow {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--primary);
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hero-slider__arrow:hover,
.home-hero-slider__arrow:focus-visible {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--enzo-white);
	transform: scale(1.05);
	box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.28);
	outline: none;
}

.home-hero-slider__dots {
	display: flex;
	flex: 0 1 auto;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 0;
	max-width: calc(100vw - 140px);
}

.home-hero-slider__dot {
	position: relative;
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.42);
	cursor: pointer;
	overflow: hidden;
	transition: width 0.35s ease, background-color 0.25s ease;
}

.home-hero-slider__dot:hover,
.home-hero-slider__dot:focus-visible {
	background: rgba(var(--primary-rgb), 0.55);
	outline: none;
}

.home-hero-slider__dot.is-active {
	width: 44px;
	background: rgba(255, 255, 255, 0.32);
}

.home-hero-slider__dot-progress {
	display: block;
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: var(--primary);
	pointer-events: none;
}

.home-hero-slider__dot.is-active .home-hero-slider__dot-progress {
	animation: heroDotProgress var(--hero-slider-delay, 6500ms) linear forwards;
}

.home-hero-slider__slide--gradient {
	background: linear-gradient(135deg, var(--hero-gradient-1, var(--enzo-dark)) 0%, var(--hero-bg, #2a2a2a) 58%, var(--hero-gradient-2, #4a1825) 100%);
}

.home-hero-slider__slide--split {
	background: linear-gradient(135deg, var(--hero-gradient-1, var(--enzo-dark)) 0%, var(--hero-bg, #2a2a2a) 58%, var(--hero-gradient-2, #4a1825) 100%);
}

.home-hero-slider__slide--split .container.home-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}

.home-hero-slider__slide h2 {
	max-width: 650px;
	margin: 0;
	font-size: clamp(40px, 4vw, 54px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.home-hero-slider__slide--split .hero-showcase__image {
	min-height: 340px;
	aspect-ratio: 4 / 5;
}

.home-hero-slider__slide--split .hero-showcase__image img,
.home-hero-slider__slide--split .hero-showcase__image picture {
	display: block;
	width: 100%;
	height: 100%;
}

.home-hero-slider__slide--split .hero-showcase__image img {
	object-fit: contain;
	object-position: center center;
}

.home-hero-slider__slide .home-hero__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.home-hero-slider__slide .home-hero__background picture {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.home-hero-slider__slide .home-hero__background-image,
.home-hero-slider__slide .home-hero__background img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.home-hero-slider__slide--image .home-hero__background-image,
.home-hero-slider__slide--image .home-hero__background img {
	object-position: center center;
}

.home-hero-slider__slide .home-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: var(--hero-overlay-color, #000);
	opacity: var(--hero-overlay-opacity, 0);
	pointer-events: none;
}

.home-hero-slider__slide.home-hero--text-dark {
	color: var(--dark);
}

.home-hero-slider__slide.home-hero--text-dark .lead,
.home-hero-slider__slide.home-hero--text-dark .lead p {
	color: rgba(21, 21, 21, 0.78);
}

.home-hero-slider__slide.home-hero--text-dark .hero-actions .button--light {
	background: var(--white);
	border-color: var(--border);
	color: var(--dark);
}

@media (prefers-reduced-motion: reduce) {
.home-hero-slider__slide {
		transition: none;
	}
.home-hero-slider__arrow,
	.home-hero-slider__dot {
		transition: none;
	}
.home-hero-slider__dot-progress {
		animation: none !important;
	}
}

@media (max-width: 960px) {
.home-hero__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
.home-hero-slider__slide--split .container.home-hero__grid {
		grid-template-columns: 1fr;
	}
.home-hero.home-hero-slider .home-hero-slider__slide .container.home-hero__grid {
		padding-top: clamp(44px, 5vw, 64px);
		padding-bottom: clamp(20px, 3vw, 32px);
	}
.home-hero-slider__slide {
		min-height: 460px;
	}
.home-hero-slider__slide--split .hero-showcase__image {
		min-height: 280px;
		aspect-ratio: 1 / 1;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image {
		min-height: clamp(480px, 70vw, 560px);
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background-image,
	.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background img {
		object-position: center center;
	}
.home-hero {
		padding-top: calc(clamp(72px, 8vw, 110px) - 5px);
	}
.home-hero h1 {
		font-size: 41px;
		line-height: 1.05;
		letter-spacing: -0.03em;
	}
.home-hero h2,
.home-hero-slider__slide h2 {
		font-size: 41px;
		line-height: 1.05;
		letter-spacing: -0.03em;
	}
.home-hero-slider__controls {
		bottom: 18px;
		gap: 10px;
	}
.home-hero-slider__arrow {
		width: 44px;
		height: 44px;
	}
.home-hero .lead {
		font-size: 17px;
		margin-top: 14px;
	}
.home-hero .hero-actions {
		margin-top: 22px;
	}
}

@media (max-width: 640px) {
.home-hero {
		padding: 51px 0 64px;
	}
.home-hero.home-hero-slider .home-hero-slider__slide .container.home-hero__grid {
		padding-top: 40px;
		padding-bottom: 44px;
		gap: 24px;
	}
.home-hero-slider__slide {
		min-height: 500px;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		min-height: 700px;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .container.home-hero__grid {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		align-content: start;
		min-height: auto;
		padding-top: 24px;
		padding-bottom: 32px;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__content {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		width: 100%;
		max-width: 340px;
		margin-top: 0;
		transform: none;
		text-align: center;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .eyebrow {
		margin: 0;
		text-align: center;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image h1,
	.home-hero.home-hero-slider .home-hero-slider__slide--image h2 {
		margin: 0;
		max-width: 100%;
		font-size: 28px;
		line-height: 1.08;
		text-align: center;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .lead {
		margin-top: 6px;
		max-width: 100%;
		font-size: 15px;
		line-height: 1.45;
		text-align: center;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .lead p {
		margin: 0;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .hero-actions {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		gap: 8px;
		width: 100%;
		max-width: 340px;
		margin-top: 12px;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .hero-actions .button {
		flex: 1 1 0;
		min-height: 46px;
		padding: 11px 12px;
		font-size: 14px;
	}
.home-hero-slider__slide--split .hero-showcase__image {
		min-height: 260px;
	}
.home-hero h1 {
		font-size: 33px;
		line-height: 1.05;
		letter-spacing: -0.03em;
	}
.home-hero h2,
.home-hero-slider__slide h2 {
		font-size: 33px;
		line-height: 1.05;
		letter-spacing: -0.03em;
	}
.home-hero.home-hero-slider .home-hero-slider__controls {
		bottom: 31px;
	}
.home-hero-slider__controls {
		gap: 8px;
		padding: 0 12px;
	}
.home-hero-slider__arrow {
		width: 40px;
		height: 40px;
	}
.home-hero-slider__dot.is-active {
		width: 36px;
	}
.home-hero-slider__dot {
		width: 7px;
		height: 7px;
	}
.home-hero .lead {
		font-size: 16px;
		line-height: 1.75;
		margin-top: 14px;
	}
.home-hero .hero-actions {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 10px;
		margin-top: 20px;
	}
.home-hero .hero-actions .button {
		flex: 1 1 0;
		width: auto;
		min-width: 0;
		min-height: 46px;
		padding: 11px 14px;
		font-size: 14px;
	}
}

@media (max-width: 768px) {
.home-hero.home-hero-slider .home-hero-slider__slide--image {
		min-height: calc(100vw * 61 / 40);
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background {
		inset: 0 auto auto;
		width: 100%;
		height: auto;
		aspect-ratio: 40 / 67;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background picture {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background-image,
	.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
.home-hero.home-hero-slider .home-hero__content h1,
	.home-hero.home-hero-slider .home-hero__content h2 {
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 700px) {
.page-template-template-home .home-category-grid .category-card--visual {
		min-height: 264px;
	}
.page-template-template-home .home-category-grid .category-card__content {
		padding: 5px 14px 5px;
	}
.page-template-template-home .home-category-grid .category-card__content h3 {
		font-size: 0.95rem;
		line-height: 1.32;
	}
}

@media (min-width: 961px) {
.page-template-template-home .reference-carousel {
		padding-bottom: 140px;
	}
}

@media (max-width: 640px) {
.page-template-template-home .content-section {
		padding: 70px 0 140px 0;
	}
.page-template-template-home .content-section:has(.home-category-grid) {
		padding-bottom: 60px;
	}
.page-template-template-home .home-featured-products {
		padding-bottom: 60px;
	}
.page-template-template-home .home-company-highlight {
		padding-bottom: 10px;
	}
body:not(.page-template-template-home) .site-footer .home-footer-cta {
		margin-top: 70px;
	}
}

.reference-carousel__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.reference-carousel__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.reference-carousel__heading {
	min-width: 0;
}

.reference-carousel__header-controls {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 12px;
}

.reference-carousel__title {
	margin: 0;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.15;
}

.reference-carousel__title::after {
	display: block;
	width: 48px;
	height: 2px;
	margin-top: 16px;
	border-radius: 999px;
	background: var(--primary);
	content: "";
}

.reference-carousel__viewport {
	min-width: 0;
	overflow: hidden;
	outline: none;
}

.reference-carousel__viewport:focus-visible {
	box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.28);
	border-radius: 16px;
}

.reference-carousel__track {
	display: flex;
	gap: 24px;
	will-change: transform;
}

.reference-carousel__item {
	flex: 0 0 calc((100% - 144px) / 7);
	min-width: 0;
}

.reference-carousel__card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 112px;
	padding: 16px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 8px 24px rgba(21, 21, 21, 0.04);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.reference-carousel__card:hover {
	border-color: rgba(var(--primary-rgb), 0.2);
	box-shadow: 0 12px 32px rgba(21, 21, 21, 0.08);
	transform: translateY(-2px);
}

.reference-carousel__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 80px;
}

.reference-carousel__logo-image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
}

.reference-carousel__header-controls[hidden],
.reference-carousel__arrow[hidden],
.reference-carousel__dots[hidden] {
	display: none;
}

.reference-carousel__arrow {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--white);
	color: var(--text);
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(21, 21, 21, 0.06);
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.reference-carousel__arrow:hover,
.reference-carousel__arrow:focus-visible {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--enzo-white);
	transform: scale(1.05);
	box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.24);
	outline: none;
}

.reference-carousel__dots {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 0;
	margin-top: -8px;
}

@media (max-width: 768px) {
	.reference-carousel__dots {
		margin-bottom: 80px;
	}
}

.reference-carousel__dot {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(21, 21, 21, 0.18);
	cursor: pointer;
	transition: width 0.3s ease, background-color 0.25s ease;
}

.reference-carousel__dot.is-active {
	width: 28px;
	background: var(--primary);
}

.reference-carousel__dot:hover,
.reference-carousel__dot:focus-visible {
	background: rgba(var(--primary-rgb), 0.55);
	outline: none;
}

@media (max-width: 1200px) {
.reference-carousel__item {
		flex: 0 0 calc((100% - 120px) / 6);
	}
}

@media (max-width: 960px) {
.reference-carousel__item {
		flex: 0 0 calc((100% - 72px) / 4);
	}
}

@media (max-width: 640px) {
.reference-carousel__inner {
		gap: 24px;
	}
.reference-carousel__item {
		flex: 0 0 calc((100% - 24px) / 2);
	}
.reference-carousel__card {
		min-height: 96px;
		padding: 12px;
		border-radius: 14px;
	}
.reference-carousel__logo {
		height: 64px;
	}
.reference-carousel__header {
		align-items: flex-end;
		gap: 16px;
	}
.reference-carousel__header-controls {
		gap: 8px;
	}
.reference-carousel__arrow {
		width: 40px;
		height: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
.reference-carousel__track {
		transition: none !important;
	}
.reference-carousel__card {
		transition: border-color 160ms ease, box-shadow 160ms ease;
	}
.reference-carousel__card:hover {
		transform: none;
	}
}

.home-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(72px, 8vw, 110px) 0;
	background: linear-gradient(135deg, var(--enzo-dark) 0%, #2a2a2a 58%, #4a1825 100%);
	color: var(--enzo-white);
}

.home-hero .eyebrow {
	margin: 0 0 14px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.home-hero h1,
.home-hero h2 {
	max-width: 650px;
	margin: 0;
	font-size: clamp(40px, 4vw, 54px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.home-hero .lead {
	max-width: 620px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
	line-height: 1.8;
}

.home-hero .lead p {
	margin: 0;
}

.home-hero .hero-actions {
	margin-top: 28px;
}

.home-hero .hero-actions .button {
	min-height: 52px;
	padding: 14px 26px;
	border-radius: 999px;
}

.home-hero .hero-actions .button--light {
	background: var(--white);
	border-color: var(--white);
	color: var(--dark);
	box-shadow: none;
}

.home-hero .hero-actions .button--light:hover,
.home-hero .hero-actions .button--light:focus-visible {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.7);
	color: var(--white);
}

.home-hero.home-hero-slider {
	padding-top: 0;
	padding-bottom: 0;
	background: transparent;
}

.home-hero.home-hero-slider.is-autoplay-paused .home-hero-slider__dot.is-active .home-hero-slider__dot-progress {
	animation-play-state: paused;
}

.home-hero.home-hero-slider .home-hero__content h1,
.home-hero.home-hero-slider .home-hero__content h2 {
	color: var(--white);
}

@media (min-width: 961px) {
.home-hero.home-hero-slider .home-hero__content h1,
	.home-hero.home-hero-slider .home-hero__content h2 {
		max-width: 620px;
	}
}

.home-hero.home-hero-slider .home-hero-slider__slide--image {
	overflow: hidden;
	min-height: clamp(500px, 32.3vw, 620px);
}

.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background,
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background picture {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background-image,
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	object-fit: cover;
	object-position: center center;
}

.home-hero.home-hero-slider .home-hero-slider__slide .container.home-hero__grid {
	position: relative;
	z-index: 2;
	width: 100%;
	grid-template-columns: minmax(0, 1fr);
	align-content: center;
	padding-top: clamp(48px, 5vw, 72px);
	padding-bottom: clamp(24px, 3vw, 40px);
}

.home-hero .home-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
	box-shadow: none;
	object-fit: cover;
}

.page-template-template-home .content-section {
	padding: clamp(56px, 7vw, 96px) 0;
}

.page-template-template-home .content-section--compact {
	padding: 28px 0;
}

.home-category-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.page-template-template-home .content-section:has(.home-category-grid) {
	padding-top: 0;
}

.page-template-template-home .home-category-grid .category-card.category-card--visual {
	display: grid;
	grid-template-rows: minmax(0, 72fr) minmax(0, 28fr);
	min-height: 288px;
	padding: 0;
	border: 1px solid rgba(21, 21, 21, 0.06);
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-template-template-home .home-category-grid .category-card.category-card--visual::after {
	display: none;
}

.page-template-template-home .home-category-grid .category-card.category-card--visual:hover {
	transform: translateY(-5px);
	border-color: rgba(var(--primary-rgb), 0.14);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

.page-template-template-home .home-category-grid .category-card__media {
	aspect-ratio: auto;
	min-height: 0;
	height: 100%;
}

.page-template-template-home .home-category-grid .category-card__media img,
.page-template-template-home .home-category-grid .category-card__placeholder {
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-template-template-home .home-category-grid .category-card--visual:hover .category-card__media img,
.page-template-template-home .home-category-grid .category-card--visual:hover .category-card__placeholder {
	transform: scale(1.04);
}

.page-template-template-home .home-category-grid .category-card__content {
	display: flex;
	align-items: center;
	min-height: 0;
	padding: 3px 14px 4px;
}

.page-template-template-home .home-category-grid .category-card__content h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	margin: 0;
	color: var(--dark);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.012em;
}

.page-template-template-home .home-category-grid .category-card__content h3::after {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border-radius: 50%;
	background: rgba(var(--primary-rgb), 0.08);
	color: var(--primary);
	font-size: 0.78rem;
	line-height: 1;
	content: "→";
	transition: background-color 0.28s ease, color 0.28s ease;
}

.page-template-template-home .home-category-grid .category-card--visual:hover .category-card__content h3::after {
	background: var(--primary);
	color: var(--white);
}

@media (min-width: 1200px) {
.page-template-template-home .home-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 24px;
	}
.page-template-template-home .home-category-grid .category-card.category-card--visual {
		min-height: 320px;
	}
.page-template-template-home .home-category-grid .category-card__content {
		padding: 4px 16px 4px;
	}
.page-template-template-home .home-category-grid .category-card__content h3 {
		font-size: 1.02rem;
		line-height: 1.28;
		letter-spacing: -0.018em;
	}
}

@media (max-width: 767px) {
.page-template-template-home .home-category-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

.page-template-template-home .home-featured-products .product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(21, 21, 21, 0.07);
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 8px 24px rgba(21, 21, 21, 0.04);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-template-template-home .home-featured-products .product-card:hover {
	transform: translateY(-6px);
	border-color: rgba(21, 21, 21, 0.1);
	box-shadow: 0 20px 48px rgba(21, 21, 21, 0.1);
}

.page-template-template-home .home-featured-products .product-card__media {
	flex: 0 0 62%;
	min-height: 0;
	aspect-ratio: auto;
	overflow: hidden;
	background: linear-gradient(165deg, #fbfbfc 0%, #f3f5f8 52%, #eef1f5 100%);
}

.page-template-template-home .home-featured-products .product-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.28s ease;
}

.page-template-template-home .home-featured-products .product-card__placeholder {
	object-fit: contain;
	padding: 24px;
	opacity: 0.28;
	transition: transform 0.28s ease, opacity 0.28s ease;
}

.page-template-template-home .home-featured-products .product-card:hover .product-card__image {
	transform: scale(1.04);
}

.page-template-template-home .home-featured-products .product-card:hover .product-card__placeholder {
	opacity: 0.34;
}

.page-template-template-home .home-featured-products .product-card__body {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
	padding: 24px 26px 26px;
}

.page-template-template-home .home-featured-products .product-card__meta {
	position: absolute;
	top: 0;
	left: 26px;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	transform: translateY(calc(-100% - 14px));
	pointer-events: none;
}

.page-template-template-home .home-featured-products .product-code-badge {
	display: none;
}

.page-template-template-home .home-featured-products .card-badge {
	padding: 5px 11px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	color: var(--dark);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.page-template-template-home .home-featured-products .product-card:hover .card-badge {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(21, 21, 21, 0.08);
}

.page-template-template-home .home-featured-products .product-card h3 {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.page-template-template-home .home-featured-products .enzo-product-card__price {
	margin-top: 10px;
	padding-top: 0;
	color: var(--muted);
}

.page-template-template-home .home-featured-products .enzo-product-card__price strong {
	color: var(--text);
	font-size: 14px;
	font-weight: 700;
}

.page-template-template-home .home-featured-products .product-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: auto;
	padding-top: 16px;
	color: var(--primary);
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	transition: transform 0.28s ease, color 0.28s ease, gap 0.28s ease;
}

.page-template-template-home .home-featured-products .product-card:hover .product-card__cta {
	gap: 7px;
	color: var(--primary);
}

.page-template-template-home .home-featured-products .product-card__cta span {
	transition: transform 0.28s ease;
}

.page-template-template-home .home-featured-products .product-card:hover .product-card__cta span {
	transform: translateX(2px);
}

@media (max-width: 640px) {
.page-template-template-home .home-featured-products .product-card__body {
		padding: 20px 18px 22px;
	}
.page-template-template-home .home-featured-products .product-card__meta {
		left: 18px;
		transform: translateY(calc(-100% - 12px));
	}
.page-template-template-home .home-featured-products .product-card h3 {
		font-size: 1rem;
		line-height: 1.3;
	}
.page-template-template-home .home-featured-products .product-card__cta {
		padding-top: 14px;
		font-size: 0.84rem;
	}
}

@media (prefers-reduced-motion: reduce) {
.page-template-template-home .home-featured-products .product-card,
	.page-template-template-home .home-featured-products .product-card__image,
	.page-template-template-home .home-featured-products .product-card__placeholder,
	.page-template-template-home .home-featured-products .card-badge,
	.page-template-template-home .home-featured-products .product-card__cta,
	.page-template-template-home .home-featured-products .product-card__cta span {
		transition: none;
	}
.page-template-template-home .home-featured-products .product-card:hover {
		transform: none;
	}
.page-template-template-home .home-featured-products .product-card:hover .product-card__image,
	.page-template-template-home .home-featured-products .product-card:hover .product-card__placeholder {
		transform: none;
	}
}

.page-template-template-home .home-features {
	padding-top: 50px;
	padding-bottom: 50px;
}

/* Mobile only: icon boxes below Turnike Sistemleri (category) section. */
@media (max-width: 768px) {
	.page-template-template-home .site-main {
		display: flex;
		flex-direction: column;
	}

	.page-template-template-home .site-main > .content-section:has(.home-category-grid) {
		order: 2;
		margin-top: 45px;
		padding-bottom: 45px;
	}

	.page-template-template-home .site-main > .home-features {
		order: 3;
		padding-top: 16px;
	}

	.page-template-template-home .site-main > .home-featured-products,
	.page-template-template-home .site-main > .home-company-highlight,
	.page-template-template-home .site-main > .reference-carousel {
		order: 4;
	}
}

.home-features .home-features__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
}

.home-features .home-features__card {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 100%;
	padding: 18px;
	border: 1px solid rgba(21, 21, 21, 0.06);
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 4px 16px rgba(21, 21, 21, 0.03);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-features .home-features__card:hover {
	transform: translateY(-2px);
	border-color: rgba(21, 21, 21, 0.1);
	box-shadow: 0 8px 24px rgba(21, 21, 21, 0.06);
}

.home-features .home-features__icon {
	display: inline-flex;
	flex: 0 0 44px;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(var(--primary-rgb), 0.08);
	color: var(--primary);
	transition: background-color 0.25s ease;
}

.home-features .home-features__card:hover .home-features__icon {
	background: rgba(var(--primary-rgb), 0.11);
}

.home-features .home-features__icon svg {
	display: block;
	width: 20px;
	height: 20px;
}

.home-features .home-features__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.home-features .home-features__title {
	margin: 0;
	color: var(--dark);
	font-size: 0.94rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.home-features .home-features__text {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.45;
}

@media (max-width: 960px) {
.home-features .home-features__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
}

@media (max-width: 640px) {
.home-features .home-features__grid {
		gap: 12px;
	}
.home-features .home-features__card {
		padding: 16px;
		gap: 10px;
	}
.home-features .home-features__card:nth-child(3) {
		grid-column: 1 / -1;
		flex-direction: column;
		align-items: center;
	}
.home-features .home-features__card:nth-child(3) .home-features__content {
		align-items: center;
		width: 100%;
	}
.home-features .home-features__card:nth-child(3) .home-features__title,
	.home-features .home-features__card:nth-child(3) .home-features__text {
		text-align: center;
	}
.page-template-template-home .content-section.home-features {
		padding-bottom: 60px;
	}
.home-features .home-features__card:nth-child(-n+2) {
		flex-direction: column;
		align-items: center;
	}
.home-features .home-features__card:nth-child(-n+2) .home-features__content {
		align-items: center;
		width: 100%;
	}
.home-features .home-features__card:nth-child(-n+2) .home-features__title,
	.home-features .home-features__card:nth-child(-n+2) .home-features__text {
		text-align: center;
	}
.home-features .home-features__icon {
		flex-basis: 40px;
		width: 40px;
		height: 40px;
	}
.home-features .home-features__icon svg {
		width: 18px;
		height: 18px;
	}
.home-features .home-features__title {
		font-size: 0.9rem;
	}
.home-features .home-features__text {
		font-size: 0.8rem;
		line-height: 1.42;
	}
}

@media (prefers-reduced-motion: reduce) {
.home-features .home-features__card,
	.home-features .home-features__icon {
		transition: none;
	}
.home-features .home-features__card:hover {
		transform: none;
	}
}

.page-template-template-home .home-company-highlight {
	position: relative;
	width: 100%;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
	overflow: hidden;
	background: linear-gradient(135deg, #202327 0%, #272328 45%, #6d1930 100%);
	box-shadow: 0 24px 64px rgba(15, 15, 15, 0.18);
}

.page-template-template-home .home-company-highlight .container {
	display: grid;
	grid-template-columns: 1fr 500px;
	column-gap: 80px;
	align-items: center;
	padding-top: clamp(20px, 3vw, 28px);
	padding-bottom: clamp(20px, 3vw, 28px);
	position: relative;
	z-index: 1;
}

.page-template-template-home .home-company-highlight__blueprint {
	position: absolute;
	top: 50%;
	right: -8%;
	z-index: 0;
	width: min(46vw, 620px);
	color: #fff;
	opacity: 0.09;
	pointer-events: none;
	transform: translateY(-50%);
}

.page-template-template-home .home-company-highlight__blueprint-svg {
	display: block;
	width: 100%;
	height: auto;
}

.page-template-template-home .home-company-highlight__content {
	position: relative;
	z-index: 1;
	max-width: 650px;
	justify-self: start;
}

.page-template-template-home .home-company-highlight__eyebrow {
	margin: 0 0 16px;
	color: rgba(196, 120, 138, 0.92);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.page-template-template-home .home-company-highlight__title {
	margin: 0;
	color: var(--white);
	font-size: clamp(1.85rem, 2.8vw, 2.75rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.035em;
}

.page-template-template-home .home-company-highlight__text {
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.68);
	max-width: 48ch;
	font-size: 1rem;
	line-height: 1.75;
}

.page-template-template-home .home-company-highlight__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.page-template-template-home .home-company-highlight .button--outline {
	border-color: rgba(255, 255, 255, 0.32);
	background: transparent;
	color: var(--white);
	box-shadow: none;
}

.page-template-template-home .home-company-highlight .button--outline:hover,
.page-template-template-home .home-company-highlight .button--outline:focus-visible {
	border-color: var(--white);
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
}

.page-template-template-home .home-company-highlight__stats {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	width: 500px;
	max-width: 500px;
	justify-self: end;
}

.page-template-template-home .home-company-highlight__stat {
	padding: 24px 32px;
	text-align: left;
}

.page-template-template-home .home-company-highlight__stat:nth-child(odd) {
	padding-left: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.page-template-template-home .home-company-highlight__stat:nth-child(even) {
	padding-right: 0;
}

.page-template-template-home .home-company-highlight__stat:nth-child(-n+2) {
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-template-template-home .home-company-highlight__stat-value {
	margin: 0;
	color: var(--white);
	font-size: clamp(1.75rem, 2.6vw, 2.25rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
}

.page-template-template-home .home-company-highlight__stat-accent {
	display: block;
	width: 28px;
	height: 2px;
	margin: 14px 0 12px;
	border-radius: 999px;
	background: rgba(123, 31, 53, 0.95);
	box-shadow: 0 0 12px rgba(123, 31, 53, 0.35);
}

.page-template-template-home .home-company-highlight__stat-label {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.8rem;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.04em;
}

@media (max-width: 960px) {
.page-template-template-home .home-company-highlight .container {
		grid-template-columns: 1fr;
		row-gap: 40px;
		padding-top: clamp(18px, 3vw, 24px);
		padding-bottom: clamp(18px, 3vw, 24px);
	}
.page-template-template-home .home-company-highlight__content {
		max-width: none;
	}
.page-template-template-home .home-company-highlight__stats {
		width: 100%;
		max-width: none;
		justify-self: stretch;
	}
.page-template-template-home .home-company-highlight__stat:nth-child(odd),
	.page-template-template-home .home-company-highlight__stat:nth-child(even) {
		padding-right: 16px;
		padding-left: 16px;
	}
.page-template-template-home .home-company-highlight__blueprint {
		right: -16%;
		width: min(62vw, 420px);
		opacity: 0.08;
	}
}

@media (max-width: 640px) {
.page-template-template-home .home-company-highlight .container {
		row-gap: 32px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
.page-template-template-home .home-company-highlight__stat:nth-child(odd),
	.page-template-template-home .home-company-highlight__stat:nth-child(even) {
		padding: 20px 16px;
	}
.page-template-template-home .home-company-highlight__title {
		font-size: clamp(1.5rem, 6vw, 1.85rem);
	}
.page-template-template-home .home-company-highlight__actions .button {
		flex: 1 1 100%;
		justify-content: center;
		min-width: 0;
	}
.page-template-template-home .home-company-highlight__stat-value {
		font-size: clamp(1.5rem, 5.5vw, 1.75rem);
	}
.page-template-template-home .home-company-highlight__stat-accent {
		margin: 12px 0 10px;
	}
.page-template-template-home .home-company-highlight__blueprint {
		top: auto;
		right: -22%;
		bottom: -6%;
		width: min(88vw, 360px);
		opacity: 0.08;
		transform: none;
	}
}

.reference-carousel {
	background: var(--light);
}
