/*!
 * -----------------------------------------------------------------------------
 * Theme Name: Acun Ambalaj Custom Theme
 * Theme URI: https://www.acunambalaj.com
 *
 * Developed by: Enzo Dijital
 * Developer URI: https://www.enzodijital.com
 *
 * Copyright © 2026 Enzo Dijital.
 * All rights reserved.
 *
 * This theme has been custom designed and developed exclusively
 * for Acun Ambalaj by Enzo Dijital.
 * -----------------------------------------------------------------------------
 */

:root {
	--primary: #d71920;
	--primary-rgb: 215, 25, 32;
	--dark: #151515;
	--text: #444444;
	--muted: #777777;
	--light: #f6f7f8;
	--white: #ffffff;
	--border: #e6e8eb;
	--enzo-red: #d71920;
	--enzo-dark: #151515;
	--enzo-gray: #666666;
	--enzo-light: #f6f7f8;
	--enzo-white: #ffffff;
	--enzo-border: #e7e8ea;
	--enzo-radius: 18px;
	--enzo-shadow: 0 18px 50px rgba(21, 21, 21, 0.08);
	--enzo-container: 1300px;
	--font-family: "Poppins", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--enzo-white);
	color: var(--enzo-dark);
	font-family: var(--font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select,
a,
p,
li,
span,
strong,
small,
blockquote,
table,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family);
}

h1 {
	font-weight: 800;
}

h2 {
	font-weight: 700;
}

h3 {
	font-weight: 700;
}

.primary-menu > li > a {
	font-weight: 600;
}

.button,
.header-cta,
.wpcf7-submit,
.enzo-cf7-submit input[type="submit"] {
	font-weight: 600;
}

.product-card h2,
.product-card h3,
.card h2,
.blog-card h2 {
	font-weight: 700;
}

.section-heading p,
.corporate-band p,
.cta-panel p,
.product-card p,
.blog-card p,
.category-card p,
.entry-meta,
.empty-state p {
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
strong {
	overflow-wrap: break-word;
}

img,
svg,
iframe {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

a:hover,
a:focus-visible {
	color: var(--enzo-red);
}

button,
input,
textarea,
select {
	font: inherit;
}

.enzo-container,
.container,
.site-container {
	width: 100%;
	max-width: var(--enzo-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--enzo-dark);
	color: var(--enzo-white);
	clip: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	overflow: visible;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--enzo-border);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 101px;
	overflow: visible;
}

.site-branding {
	display: flex;
	align-items: center;
	margin-right: auto;
}

.custom-logo,
.site-logo__image {
	width: auto;
	max-height: 56px;
}

.site-logo__text {
	color: var(--enzo-dark);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.primary-navigation {
	display: block;
	overflow: visible;
}

.primary-menu,
.enzo-footer-bottom-menu,
.enzo-footer-widget ul,
.enzo-footer-fallback__contact,
.social-links,
.contact-card ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 28px;
}

.primary-menu .menu-item {
	position: relative;
}

.primary-menu > li > a {
	color: var(--enzo-dark);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
}

.site-header .primary-menu .menu-item-has-children > a::after {
	content: "▾";
	margin-left: 6px;
	font-size: 14px;
	line-height: 1;
	transform: translateY(1px);
}

.site-header .primary-menu .menu-item-has-children {
	position: relative;
}

.site-header .primary-menu .menu-item-has-children::after {
	content: "";
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 998;
	height: 14px;
	background: transparent;
	pointer-events: auto;
}

.site-header .primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 999;
	min-width: 260px;
	max-width: 320px;
	max-height: calc(100vh - 140px);
	margin: 0;
	padding: 10px;
	overflow-y: auto;
	list-style: none;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	scrollbar-width: thin;
	scrollbar-color: rgba(15, 23, 42, 0.18) transparent;
}

.site-header .primary-menu .sub-menu::-webkit-scrollbar {
	width: 6px;
}

.site-header .primary-menu .sub-menu::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.18);
}

.site-header .primary-menu .menu-item-has-children:last-child > .sub-menu {
	left: auto;
	right: 0;
}

.site-header .primary-menu .menu-item:hover > .sub-menu,
.site-header .primary-menu .menu-item:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.site-header .primary-menu .sub-menu .menu-item {
	position: relative;
}

.site-header .primary-menu .sub-menu li {
	margin: 0;
}

.site-header .primary-menu .sub-menu li + li {
	margin-top: 2px;
}

.site-header .primary-menu .sub-menu a {
	display: block;
	padding: 9px 12px;
	border-radius: 10px;
	color: var(--dark);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	white-space: normal;
	transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.site-header .primary-menu .sub-menu a::after {
	content: none;
}

.site-header .primary-menu .sub-menu a:hover,
.site-header .primary-menu .sub-menu a:focus,
.site-header .primary-menu .sub-menu a:focus-visible {
	background: rgba(var(--primary-rgb), 0.06);
	color: var(--primary);
	transform: translateX(3px);
}

@media (min-width: 961px) {
	.site-header .primary-menu > li > a {
		position: relative;
		display: inline-block;
		font-size: 16px;
	}

	.site-header .primary-menu > li > a::before {
		content: "";
		position: absolute;
		right: 0;
		bottom: -6px;
		left: 0;
		height: 2px;
		background: var(--primary);
		transform: scaleX(0);
		transform-origin: left center;
		transition: transform 0.2s ease, background-color 0.2s ease;
	}

	.site-header .primary-menu > li.current-menu-item > a,
	.site-header .primary-menu > li.current-menu-ancestor > a,
	.site-header .primary-menu > li.current_page_item > a,
	.site-header .primary-menu > li.current_page_ancestor > a {
		color: var(--primary);
		font-weight: 700;
	}

	.site-header .primary-menu > li > a:hover,
	.site-header .primary-menu > li > a:focus-visible {
		color: #b8141a;
	}

	.site-header .primary-menu > li > a:hover::before,
	.site-header .primary-menu > li > a:focus-visible::before {
		background: #b8141a;
		transform: scaleX(1);
	}

	.site-header .primary-menu > li.current-menu-item > a:hover,
	.site-header .primary-menu > li.current-menu-item > a:focus-visible,
	.site-header .primary-menu > li.current-menu-ancestor > a:hover,
	.site-header .primary-menu > li.current-menu-ancestor > a:focus-visible,
	.site-header .primary-menu > li.current_page_item > a:hover,
	.site-header .primary-menu > li.current_page_item > a:focus-visible,
	.site-header .primary-menu > li.current_page_ancestor > a:hover,
	.site-header .primary-menu > li.current_page_ancestor > a:focus-visible {
		color: var(--primary);
	}

	.site-header .primary-menu > li.current-menu-item > a:hover::before,
	.site-header .primary-menu > li.current-menu-item > a:focus-visible::before,
	.site-header .primary-menu > li.current-menu-ancestor > a:hover::before,
	.site-header .primary-menu > li.current-menu-ancestor > a:focus-visible::before,
	.site-header .primary-menu > li.current_page_item > a:hover::before,
	.site-header .primary-menu > li.current_page_item > a:focus-visible::before,
	.site-header .primary-menu > li.current_page_ancestor > a:hover::before,
	.site-header .primary-menu > li.current_page_ancestor > a:focus-visible::before {
		background: var(--primary);
		transform: scaleX(1);
	}

	.site-header .primary-menu .sub-menu .current-menu-item > a,
	.site-header .primary-menu .sub-menu .current_page_item > a {
		color: var(--primary);
		font-weight: 600;
		background: rgba(var(--primary-rgb), 0.06);
	}
}

.header-phone {
	color: var(--dark);
	font-weight: 800;
	white-space: nowrap;
}

.header-search {
	max-width: 220px;
}

.header-search .search-form {
	display: flex;
	gap: 6px;
}

.header-search input[type="search"] {
	width: 100%;
	min-width: 0;
	padding: 9px 10px;
	border: 1px solid var(--border);
	border-radius: 999px;
}

.header-search .search-submit {
	display: none;
}

.header-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 22px;
	border: 1px solid var(--enzo-red);
	border-radius: 999px;
	background: var(--enzo-red);
	color: var(--enzo-white);
	font-weight: 600;
	line-height: 1.1;
	box-shadow: 0 10px 24px rgba(215, 25, 32, 0.2);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
	background: var(--enzo-dark);
	border-color: var(--enzo-dark);
	color: var(--enzo-white);
	transform: translateY(-1px);
}

.menu-toggle,
.mobile-search-toggle,
.mobile-search-panel {
	display: none;
}

.menu-toggle {
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--enzo-border);
	border-radius: 999px;
	background: var(--enzo-white);
	color: var(--enzo-dark);
	cursor: pointer;
}

.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after {
	display: block;
	width: 18px;
	height: 2px;
	margin: auto;
	background: currentColor;
	content: "";
	transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle__line::before {
	transform: translateY(-6px);
}

.menu-toggle__line::after {
	transform: translateY(4px);
}

.menu-toggle.is-active .menu-toggle__line {
	transform: rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__line::before {
	opacity: 0;
}

.menu-toggle.is-active .menu-toggle__line::after {
	transform: translateY(-2px) rotate(-90deg);
}

.home-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(72px, 8vw, 110px) 0;
	background: linear-gradient(135deg, var(--enzo-dark) 0%, #2a2a2a 58%, #3a0b0d 100%);
	color: var(--enzo-white);
}

.home-hero::after {
	position: absolute;
	inset: auto -90px -140px auto;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(215, 25, 32, 0.32);
	content: "";
	filter: blur(10px);
}

.home-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
	gap: clamp(48px, 7vw, 96px);
	align-items: center;
}

.home-hero__content {
	max-width: 650px;
}

.home-hero .eyebrow {
	margin: 0 0 14px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.home-hero h1 {
	max-width: 650px;
	margin: 0;
	font-size: clamp(40px, 4vw, 54px);
	font-weight: 800;
	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);
}

.enzo-page-hero,
.page-hero {
	background: #f7f8fa;
	border-bottom: 1px solid var(--border);
	padding: 18px 0;
}

.enzo-page-hero__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.enzo-page-hero__left {
	min-width: 0;
}

.enzo-page-hero__title,
.page-hero h1 {
	margin: 0;
	color: var(--dark);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.enzo-page-hero__right {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	max-width: 46%;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--enzo-red);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.product-hero__grid,
.two-column,
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
	gap: clamp(32px, 6vw, 72px);
	align-items: center;
}

.home-hero__image,
.product-hero__image,
.entry-image {
	width: 100%;
	border-radius: var(--enzo-radius);
	box-shadow: var(--enzo-shadow);
}

.home-hero .home-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
	box-shadow: none;
	object-fit: cover;
}

.enzo-page-content {
	padding-top: 40px;
	padding-bottom: 50px;
}

.enzo-page-content > .content-section,
.enzo-page-content > .product-hero,
.enzo-page-content > .enzo-product-detail,
.enzo-page-content > .enzo-product-tabs,
.enzo-page-content article > .content-section,
.enzo-page-content article > .product-hero,
.enzo-page-content article > .enzo-product-detail,
.enzo-page-content article > .enzo-product-tabs {
	padding-top: 0;
	padding-bottom: 0;
}

.enzo-page-content > * + *,
.enzo-page-content article > * + * {
	margin-top: 48px;
}

.enzo-page-content .product-card > * + *,
.product-card > * + * {
	margin-top: 0;
}

.enzo-page-content > .content-section--light {
	padding-top: 48px;
	padding-bottom: 48px;
}

.enzo-page-content > .content-section--light:first-child {
	padding-top: 0;
}

.enzo-page-content > .content-section--light:last-child {
	padding-bottom: 0;
}

.enzo-page-content .product-hero,
.enzo-page-content .enzo-product-detail,
.enzo-page-content .enzo-product-tabs {
	padding: 0;
}

.enzo-page-content .enzo-contact-map,
.enzo-page-content .map-embed {
	margin-top: 0;
}

.content-section {
	padding: 0;
}

.page-template-template-home .content-section {
	padding: clamp(56px, 7vw, 96px) 0;
}

.page-template-template-home .content-section--compact {
	padding: 28px 0;
}

.page-template-default .narrow-content {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: auto;
	text-align: left;
}

.page-template-default .narrow-content .entry-content {
	max-width: 100%;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content a {
	color: var(--enzo-red);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.content-grid,
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.pagination {
	grid-column: 1 / -1;
}

.card,
.product-card,
.contact-card {
	overflow: hidden;
	border: 1px solid var(--enzo-border);
	border-radius: var(--enzo-radius);
	background: var(--enzo-white);
	box-shadow: 0 12px 36px rgba(21, 21, 21, 0.05);
}

.card__media {
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--enzo-light);
}

.product-card__media {
	display: block;
	aspect-ratio: 3 / 2;
	height: auto;
	margin-top: 0;
	overflow: hidden;
	background: var(--enzo-light);
}

.card__image,
.product-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card__body,
.product-card__body,
.contact-card {
	padding: 26px;
}

.card h2,
.product-card h2,
.product-card h3 {
	margin: 0 0 10px;
	font-size: 1.25rem;
	line-height: 1.25;
	letter-spacing: -0.025em;
}

.entry-meta {
	margin: 0 0 10px;
	color: var(--enzo-gray);
	font-size: 0.9rem;
}

.text-link {
	display: inline-flex;
	margin-top: 8px;
	color: var(--enzo-red);
	font-weight: 800;
}

.search-result-badge {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(215, 25, 32, 0.09);
	color: var(--primary);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
}

.enzo-search-form {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.enzo-search-form__input {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	height: 54px;
	padding: 0 18px;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: var(--white);
	color: var(--dark);
	font-size: 15px;
}

.enzo-search-form__input:focus {
	border-color: var(--primary);
	outline: none;
	box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.08);
}

.enzo-search-form__submit {
	flex: 0 0 auto;
	height: 54px;
	min-height: 54px;
	padding: 0 22px;
}

.enzo-search-form--empty {
	max-width: 560px;
	margin: 0 auto;
}

.enzo-search-count {
	margin: 0 0 24px;
	color: var(--muted);
	font-size: 15px;
	font-weight: 600;
}

.enzo-search-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.enzo-search-grid .pagination {
	grid-column: 1 / -1;
}

.search-result-card .card__body p {
	margin: 0;
	color: var(--muted);
}

.empty-state {
	grid-column: 1 / -1;
	padding: clamp(28px, 5vw, 46px);
	border: 1px solid var(--border);
	border-radius: 26px;
	background:
		linear-gradient(135deg, rgba(215, 25, 32, 0.06), rgba(21, 21, 21, 0.02)),
		var(--white);
	box-shadow: 0 16px 45px rgba(21, 21, 21, 0.06);
	text-align: center;
}

.empty-state h2 {
	margin: 0 0 10px;
	font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.empty-state p {
	max-width: 620px;
	margin: 0 auto 22px;
	color: var(--muted);
}

.empty-state__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.map-embed {
	overflow: hidden;
	border-radius: var(--enzo-radius);
	background: var(--enzo-light);
}

.map-embed iframe {
	width: 100%;
	min-height: 360px;
	border: 0;
}

.enzo-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(28px, 5vw, 58px);
	align-items: start;
}

.enzo-contact-info {
	min-width: 0;
}

.enzo-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 24px;
}

.enzo-contact-card {
	display: flex;
	min-height: 0;
	height: 100%;
	flex-direction: column;
	justify-content: flex-start;
	gap: 14px;
	padding: 22px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.enzo-contact-card:hover {
	transform: translateY(-4px);
	border-color: rgba(215, 25, 32, 0.25);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.enzo-contact-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(215, 25, 32, 0.08);
	color: var(--primary);
	flex-shrink: 0;
}

.enzo-contact-card__icon svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.enzo-contact-card__content {
	min-width: 0;
}

.enzo-contact-card__label {
	display: block;
	margin-bottom: 12px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.enzo-contact-card__value {
	color: var(--dark);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
	text-decoration: none;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.enzo-contact-card__phones {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.enzo-contact-form {
	align-self: stretch;
	padding: 32px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(21, 21, 21, 0.07);
}

.enzo-contact-form h2 {
	margin: 0 0 24px;
	font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.enzo-contact-map {
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 18px 50px rgba(21, 21, 21, 0.07);
}

.enzo-contact-map iframe {
	display: block;
	width: 100%;
	min-height: 450px;
}

.contact-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 34px;
}

.contact-info-card {
	display: flex;
	min-height: 150px;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 16px 45px rgba(21, 21, 21, 0.06);
}

.contact-info-card span {
	color: var(--primary);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-info-card strong {
	margin-top: 18px;
	color: var(--dark);
	font-size: 1.05rem;
	line-height: 1.35;
	word-break: break-word;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
	gap: clamp(28px, 5vw, 58px);
	align-items: start;
}

.contact-form {
	padding: 28px;
	border: 1px solid var(--border);
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 16px 45px rgba(21, 21, 21, 0.06);
}

.contact-form h2 {
	margin: 0 0 8px;
	font-size: 1.55rem;
}

.contact-form p {
	margin: 0 0 22px;
	color: var(--muted);
}

.contact-form label {
	display: block;
	margin-bottom: 16px;
}

.contact-form label span {
	display: block;
	margin-bottom: 7px;
	color: var(--dark);
	font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.wpcf7 form input,
.wpcf7 form textarea,
.wpcf7 form select {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: var(--light);
	color: var(--text);
	outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.wpcf7 form input:focus,
.wpcf7 form textarea:focus,
.wpcf7 form select:focus {
	border-color: rgba(215, 25, 32, 0.45);
	background: var(--white);
	box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.1);
}

.wpcf7 form label {
	display: block;
	color: var(--dark);
	font-weight: 800;
}

.wpcf7 form label > br {
	display: none;
}

.wpcf7 form label .wpcf7-form-control-wrap {
	display: block;
	margin-top: 7px;
}

.wpcf7-form-control-wrap {
	display: block;
}

.enzo-contact-form .wpcf7-form-control-wrap {
	display: block;
}

.enzo-cf7-stack {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.enzo-cf7-field {
	display: block;
	margin: 0;
	padding: 0;
}

.enzo-cf7-field p,
.enzo-cf7-stack p {
	margin: 0;
}

.enzo-cf7-field .wpcf7-form-control-wrap {
	display: block;
	margin: 0;
}

.enzo-cf7-stack br {
	display: none;
}

.enzo-cf7-submit {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

.enzo-cf7-submit input[type="submit"] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: none;
	min-width: 0;
	height: 54px;
	padding: 0;
	border: none;
	border-radius: 14px;
	appearance: none;
	-webkit-appearance: none;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: normal;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.enzo-cf7-submit input[type="submit"]:hover,
.enzo-cf7-submit input[type="submit"]:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(215, 25, 32, 0.22);
}

.enzo-cf7-submit input[type="submit"]:active {
	transform: translateY(0);
}

.enzo-cf7-stack input,
.enzo-cf7-stack textarea,
.enzo-cf7-stack select {
	display: block;
	width: 100%;
}

.enzo-cf7-stack textarea {
	min-height: 140px;
	height: 140px;
	resize: vertical;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
	margin-bottom: 0;
}

.enzo-contact-form input,
.enzo-contact-form textarea,
.enzo-contact-form select {
	display: block;
	width: 100%;
	height: 54px;
	padding: 0 18px;
	font-size: 15px;
	line-height: 54px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.enzo-contact-form input:focus,
.enzo-contact-form textarea:focus,
.enzo-contact-form select:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.08);
}

.wpcf7 form textarea {
	min-height: 60px;
	resize: vertical;
}

.enzo-contact-form .wpcf7 textarea,
.enzo-contact-form textarea.wpcf7-form-control,
.enzo-contact-form textarea {
	min-height: 140px;
	height: 140px;
	padding: 16px 18px;
	line-height: 1.6;
	resize: vertical;
}

.enzo-contact-form .wpcf7-form br {
	display: none;
}

.enzo-contact-form .enzo-cf7-stack .enzo-cf7-submit,
.enzo-quote-page .enzo-cf7-stack .enzo-cf7-submit {
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
}

.enzo-contact-form .enzo-cf7-stack .enzo-cf7-submit p,
.enzo-quote-page .enzo-cf7-stack .enzo-cf7-submit p {
	margin: 0;
	padding: 0;
	width: 100%;
}

.enzo-contact-form .enzo-cf7-stack .enzo-cf7-submit input[type="submit"],
.enzo-contact-form .enzo-cf7-stack .enzo-cf7-submit .wpcf7-submit,
.enzo-quote-page .enzo-cf7-stack .enzo-cf7-submit input[type="submit"],
.enzo-quote-page .enzo-cf7-stack .enzo-cf7-submit .wpcf7-submit,
.enzo-quote-page .wpcf7 input[type="submit"],
.enzo-quote-page .wpcf7-submit,
.enzo-quote-page .wpcf7 p:last-of-type input[type="submit"] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	height: 54px;
	padding: 0 !important;
	margin: 0;
	border: none;
	border-radius: 14px;
	appearance: none;
	-webkit-appearance: none;
	background: var(--primary);
	color: var(--white);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1 !important;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	box-shadow: 0 14px 32px rgba(215, 25, 32, 0.22);
	transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.enzo-contact-form .enzo-cf7-stack .enzo-cf7-submit input[type="submit"]:hover,
.enzo-contact-form .enzo-cf7-stack .enzo-cf7-submit .wpcf7-submit:hover,
.enzo-contact-form .enzo-cf7-stack .enzo-cf7-submit input[type="submit"]:focus-visible,
.enzo-contact-form .enzo-cf7-stack .enzo-cf7-submit .wpcf7-submit:focus-visible,
.enzo-quote-page .enzo-cf7-stack .enzo-cf7-submit input[type="submit"]:hover,
.enzo-quote-page .enzo-cf7-stack .enzo-cf7-submit .wpcf7-submit:hover,
.enzo-quote-page .enzo-cf7-stack .enzo-cf7-submit input[type="submit"]:focus-visible,
.enzo-quote-page .enzo-cf7-stack .enzo-cf7-submit .wpcf7-submit:focus-visible,
.enzo-quote-page .wpcf7 input[type="submit"]:hover,
.enzo-quote-page .wpcf7-submit:hover,
.enzo-quote-page .wpcf7 input[type="submit"]:focus-visible,
.enzo-quote-page .wpcf7-submit:focus-visible,
.enzo-quote-page .wpcf7 p:last-of-type input[type="submit"]:hover,
.enzo-quote-page .wpcf7 p:last-of-type input[type="submit"]:focus-visible {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(215, 25, 32, 0.22);
}

.wpcf7 form select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--muted) 50%),
		linear-gradient(135deg, var(--muted) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 20px,
		calc(100% - 13px) 20px;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

.wpcf7 form input.wpcf7-submit,
.wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-height: 48px;
	padding: 14px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--enzo-red);
	color: var(--white);
	cursor: pointer;
	font-weight: 600;
	box-shadow: 0 14px 32px rgba(215, 25, 32, 0.22);
	transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.wpcf7-submit:hover,
.wpcf7-submit:focus-visible {
	background: var(--primary);
	transform: translateY(-1px);
	box-shadow: 0 16px 34px rgba(215, 25, 32, 0.28);
}

.wpcf7-spinner {
	margin: 0 0 0 10px;
}

.wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #9f1117;
	font-size: 0.88rem;
	font-weight: 700;
}

.wpcf7 form .wpcf7-response-output {
	margin: 4px 0 0;
	padding: 14px 16px;
	border: 1px solid rgba(215, 25, 32, 0.24);
	border-radius: 14px;
	background: rgba(215, 25, 32, 0.08);
	color: var(--dark);
	font-weight: 600;
}

.contact-form-wrap {
	padding: 28px;
	border: 1px solid var(--border);
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 16px 45px rgba(21, 21, 21, 0.06);
}

.contact-form-wrap h2 {
	margin: 0 0 8px;
	font-size: 1.55rem;
}

.contact-form-wrap > p {
	margin: 0 0 22px;
	color: var(--muted);
}

.contact-form-wrap .contact-form {
	padding: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.quote-form__alert {
	margin-bottom: 18px;
	padding: 14px 16px;
	border-radius: 14px;
	font-weight: 600;
}

.quote-form__alert--success {
	border: 1px solid rgba(33, 150, 83, 0.24);
	background: rgba(33, 150, 83, 0.1);
	color: #17643a;
}

.quote-form__alert--error {
	border: 1px solid rgba(215, 25, 32, 0.24);
	background: rgba(215, 25, 32, 0.1);
	color: #9f1117;
}

.quote-form__alert--info {
	border: 1px solid rgba(29, 78, 216, 0.22);
	background: rgba(29, 78, 216, 0.08);
	color: #1d4ed8;
}

.enzo-quote-page__grid {
	display: grid;
	grid-template-columns: 7fr 5fr;
	gap: 48px;
	align-items: start;
}

.enzo-quote-page__main {
	min-width: 0;
}

.enzo-quote-page__form {
	padding: 36px;
	border: 1px solid var(--border);
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 16px 45px rgba(21, 21, 21, 0.06);
}

.enzo-quote-page__form h2 {
	margin: 0 0 12px;
	font-size: clamp(28px, 3vw, 34px);
	font-weight: 700;
	line-height: 1.15;
}

.enzo-quote-page__lead {
	margin: 0 0 24px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.75;
}

.enzo-quote-page__content {
	margin: 0 0 24px;
}

.enzo-quote-page__form .enzo-cf7-form,
.enzo-quote-page__form .wpcf7 {
	margin: 0;
}

.enzo-quote-page__form .enzo-cf7-stack input,
.enzo-quote-page__form .enzo-cf7-stack textarea,
.enzo-quote-page__form .enzo-cf7-stack select,
.enzo-quote-page__form .wpcf7 input[type="text"],
.enzo-quote-page__form .wpcf7 input[type="email"],
.enzo-quote-page__form .wpcf7 input[type="tel"],
.enzo-quote-page__form .wpcf7 input[type="url"],
.enzo-quote-page__form .wpcf7 textarea,
.enzo-quote-page__form .wpcf7 select {
	width: 100%;
}

.enzo-quote-page__media {
	min-width: 0;
	overflow: hidden;
	border-radius: 24px;
	background: var(--light);
}

.enzo-quote-page__image,
.enzo-quote-page__placeholder {
	display: block;
	width: 100%;
	height: 620px;
	object-fit: cover;
}

.enzo-quote-page__placeholder {
	background:
		linear-gradient(135deg, rgba(215, 25, 32, 0.18), rgba(21, 21, 21, 0.06)),
		var(--light);
}

@media (max-width: 992px) {
	.enzo-quote-page__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.enzo-quote-page__form {
		padding: 24px;
	}

	.enzo-quote-page__image,
	.enzo-quote-page__placeholder {
		height: 420px;
	}
}

@media (max-width: 768px) {
	.enzo-quote-page__image,
	.enzo-quote-page__placeholder {
		height: 320px;
	}
}

.quote-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.site-footer {
	background: linear-gradient(180deg, #141414 0%, #0f0f0f 100%);
	color: var(--enzo-white);
}

.enzo-footer-top {
	padding: 64px 0;
}

.enzo-footer-top__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	align-items: start;
}

.enzo-footer-top__col {
	min-width: 0;
}

.enzo-footer-top__col:first-child .site-logo,
.enzo-footer-top__col:first-child .wp-block-image {
	margin-bottom: 16px;
}

.enzo-footer-top__col:first-child .site-logo img,
.enzo-footer-top__col:first-child .site-logo__image,
.enzo-footer-top__col:first-child .wp-block-image img {
	max-width: 175px;
	width: 100%;
	height: auto;
	max-height: none;
}

.enzo-footer-top__col:first-child .enzo-footer-widget > p,
.enzo-footer-top__col:first-child .enzo-footer-widget .wp-block-paragraph {
	max-width: 270px;
	margin-top: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.72);
}

.enzo-footer-top__col:first-child .enzo-footer-widget > p:first-child,
.enzo-footer-top__col:first-child .enzo-footer-widget .wp-block-paragraph:first-child {
	margin-top: 0;
}

.enzo-footer-top__col:first-child .footer-social {
	margin-top: 8px;
}

.enzo-footer-bottom {
	position: relative;
	padding: 28px 0;
	border-top: 0;
	background: rgba(255, 255, 255, 0.03);
}

.enzo-footer-bottom::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 100%);
}

.enzo-footer-bottom__grid {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 24px;
}

.enzo-footer-bottom__col {
	min-width: 0;
}

.enzo-footer-bottom__col--right {
	display: flex;
	justify-content: flex-end;
}

.enzo-footer-widget__title {
	margin: 0 0 20px;
	color: var(--enzo-white);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.enzo-footer-widget__title::after {
	content: "";
	display: block;
	width: 36px;
	height: 1px;
	margin-top: 10px;
	background: var(--primary);
}

.enzo-footer-widget p,
.enzo-footer-widget li,
.enzo-footer-widget a,
.enzo-footer-fallback__description,
.enzo-footer-fallback__contact,
.enzo-footer-fallback__contact a,
.enzo-footer-copyright,
.enzo-footer-bottom-menu a {
	color: rgba(255, 255, 255, 0.72);
}

.enzo-footer-widget .footer-link-list li a,
.enzo-footer-widget ul li a,
.enzo-footer-widget .wp-block-navigation .wp-block-navigation-item a {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	text-decoration: none;
	transition: color 0.25s ease;
}

.enzo-footer-widget .footer-link-list li a::before,
.enzo-footer-widget ul li a::before,
.enzo-footer-widget .wp-block-navigation .wp-block-navigation-item a::before {
	content: "›";
	margin-right: 0;
	color: var(--primary);
	font-weight: 800;
	line-height: 1;
	flex-shrink: 0;
	transition: transform 0.25s ease, color 0.25s ease;
}

.enzo-footer-widget .footer-social a::before,
.enzo-footer-widget .footer-contact a::before {
	content: none;
	display: none;
	margin: 0;
}

.enzo-footer-widget .footer-link-list li a:hover,
.enzo-footer-widget .footer-link-list li a:focus-visible,
.enzo-footer-widget ul li a:hover,
.enzo-footer-widget ul li a:focus-visible,
.enzo-footer-widget .wp-block-navigation .wp-block-navigation-item a:hover,
.enzo-footer-widget .wp-block-navigation .wp-block-navigation-item a:focus-visible {
	color: var(--primary);
	transform: none;
}

.enzo-footer-widget .footer-link-list li a:hover::before,
.enzo-footer-widget .footer-link-list li a:focus-visible::before,
.enzo-footer-widget ul li a:hover::before,
.enzo-footer-widget ul li a:focus-visible::before,
.enzo-footer-widget .wp-block-navigation .wp-block-navigation-item a:hover::before,
.enzo-footer-widget .wp-block-navigation .wp-block-navigation-item a:focus-visible::before {
	transform: translateX(3px);
}

.enzo-footer-widget a:hover,
.enzo-footer-widget a:focus-visible,
.enzo-footer-fallback__contact a:hover,
.enzo-footer-fallback__contact a:focus-visible,
.enzo-footer-bottom-menu a:hover,
.enzo-footer-bottom-menu a:focus-visible {
	color: var(--primary);
}

.enzo-footer-widget .footer-link-list li + li,
.enzo-footer-widget ul li + li,
.enzo-footer-fallback__contact li + li {
	margin-top: 10px;
}

.enzo-footer-widget p {
	margin: 0 0 12px;
}

.enzo-footer-widget p:last-child {
	margin-bottom: 0;
}

.enzo-footer-widget .wp-block-heading,
.enzo-footer-widget .wp-block-paragraph,
.enzo-footer-widget .wp-block-list,
.enzo-footer-widget .wp-block-navigation,
.enzo-footer-widget .wp-block-image,
.enzo-footer-widget .wp-block-custom-html {
	margin-top: 0;
	margin-bottom: 16px;
}

.enzo-footer-widget .wp-block-heading:last-child,
.enzo-footer-widget .wp-block-paragraph:last-child,
.enzo-footer-widget .wp-block-list:last-child,
.enzo-footer-widget .wp-block-navigation:last-child,
.enzo-footer-widget .wp-block-image:last-child,
.enzo-footer-widget .wp-block-custom-html:last-child {
	margin-bottom: 0;
}

.enzo-footer-widget .wp-block-navigation ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.enzo-footer-widget .wp-block-navigation-item + .wp-block-navigation-item {
	margin-top: 10px;
}

.enzo-footer-widget .wp-block-image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

.enzo-footer-widget .footer-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.enzo-footer-widget .footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.enzo-footer-widget .footer-social a:hover,
.enzo-footer-widget .footer-social a:focus-visible {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 28px rgba(215, 25, 32, 0.28);
}

.enzo-footer-widget .footer-social svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.enzo-footer-widget .footer-contact {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.enzo-footer-widget .footer-contact__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.enzo-footer-widget .footer-contact__icon {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 12px;
	background: rgba(215, 25, 32, 0.12);
	color: var(--primary);
	display: grid;
	place-items: center;
	line-height: 1;
	overflow: hidden;
}

.enzo-footer-widget .footer-contact__icon svg {
	width: 20px;
	height: 20px;
	display: block;
	margin: auto;
	color: currentColor;
	fill: currentColor;
	position: static;
	transform: none;
}

.enzo-footer-widget .footer-contact__icon::before {
	font-size: 18px;
	line-height: 1;
	display: block;
}

.enzo-footer-widget .footer-contact__icon--phone::before {
	content: "☎";
}

.enzo-footer-widget .footer-contact__icon--mail::before {
	content: "✉";
}

.enzo-footer-widget .footer-contact__icon--pin {
	position: relative;
}

.enzo-footer-widget .footer-contact__icon--pin::before {
	content: "";
	width: 6px;
	height: 6px;
	background: currentColor;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	font-size: 0;
	transform: translate(-50%, calc(-50% - 2px));
}

.enzo-footer-widget .footer-contact__icon--pin::after {
	content: "";
	width: 18px;
	height: 18px;
	border: 2px solid currentColor;
	border-radius: 50% 50% 50% 0;
	box-sizing: border-box;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.enzo-footer-widget .footer-contact__item strong {
	display: block;
	margin-bottom: 6px;
	color: var(--enzo-white);
	font-weight: 700;
}

.enzo-footer-widget .footer-contact__item a,
.enzo-footer-widget .footer-contact__item > div > span {
	display: block;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.6;
	text-decoration: none;
	transition: color 0.25s ease;
}

.enzo-footer-widget .footer-contact__item a + a {
	margin-top: 4px;
}

.enzo-footer-widget .footer-contact__item a:hover,
.enzo-footer-widget .footer-contact__item a:focus-visible {
	color: var(--primary);
	transform: none;
}

.enzo-footer-fallback {
	max-width: 560px;
}

.enzo-footer-fallback__description {
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.8;
}

.enzo-footer-fallback__contact {
	margin-top: 16px;
}

.enzo-footer-copyright {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.58);
}

.enzo-footer-bottom-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 12px 20px;
}

.enzo-footer-bottom-menu li + li {
	margin-top: 0;
}

.enzo-footer-bottom-menu a {
	transition: color 0.25s ease;
}

.site-footer .site-logo__text {
	color: var(--enzo-white);
}

.site-footer .site-logo img,
.enzo-footer-fallback .site-logo img {
	max-height: 58px;
	width: auto;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

.social-links li + li {
	margin-top: 0;
}

.social-links a {
	display: inline-flex;
	padding: 7px 12px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
}

.social-links a:hover,
.social-links a:focus-visible {
	color: var(--primary);
	border-color: rgba(215, 25, 32, 0.45);
}

.floating-whatsapp,
.scroll-to-top {
	position: fixed;
	right: 18px;
	z-index: 70;
	border: 0;
	border-radius: 999px;
	box-shadow: 0 14px 34px rgba(21, 21, 21, 0.18);
	font-weight: 800;
	cursor: pointer;
}

.floating-whatsapp {
	bottom: 22px;
	padding: 13px 18px;
	background: #25d366;
	color: var(--white);
}

.scroll-to-top {
	bottom: 78px;
	padding: 11px 15px;
	background: var(--dark);
	color: var(--white);
}

.mobile-contact-actions {
	display: none;
}

.mobile-contact-actions__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	color: var(--white);
	text-decoration: none;
	box-shadow: 0 14px 34px rgba(21, 21, 21, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.mobile-contact-actions__button--whatsapp {
	background: #25d366;
}

.mobile-contact-actions__button--whatsapp svg {
	display: block;
	flex-shrink: 0;
}

.mobile-contact-actions__button--phone {
	background: var(--primary);
}

.mobile-contact-actions__button:hover,
.mobile-contact-actions__button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(21, 21, 21, 0.22);
	color: var(--white);
}

.mobile-contact-actions__button--whatsapp:hover,
.mobile-contact-actions__button--whatsapp:focus-visible {
	background: #1ebe5d;
}

.mobile-contact-actions__button--phone:hover,
.mobile-contact-actions__button--phone:focus-visible {
	background: var(--enzo-dark);
}

@media (max-width: 768px) {
	.mobile-contact-actions {
		position: fixed;
		right: 16px;
		bottom: calc(18px + env(safe-area-inset-bottom, 0px));
		z-index: 70;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.floating-whatsapp {
		display: none;
	}

	.mobile-contact-actions ~ .scroll-to-top {
		bottom: calc(144px + env(safe-area-inset-bottom, 0px));
	}

	.mobile-contact-actions:not(:has(.mobile-contact-actions__button--whatsapp)) ~ .scroll-to-top,
	.mobile-contact-actions:not(:has(.mobile-contact-actions__button--phone)) ~ .scroll-to-top {
		bottom: calc(82px + env(safe-area-inset-bottom, 0px));
	}
}

@media (max-width: 960px) {
	.site-header__inner {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 74px;
	}

	.site-branding {
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
	}

	.menu-toggle {
		position: absolute;
		top: 50%;
		left: 20px;
		z-index: 2;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		transform: translateY(-50%);
	}

	.mobile-search-toggle {
		position: absolute;
		top: 50%;
		right: 20px;
		z-index: 2;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 46px;
		height: 46px;
		padding: 0;
		border: 1px solid var(--enzo-border);
		border-radius: 999px;
		background: var(--enzo-white);
		color: var(--enzo-dark);
		cursor: pointer;
		transform: translateY(-50%);
	}

	.mobile-search-toggle.is-active {
		border-color: var(--primary);
		color: var(--primary);
	}

	.mobile-search-toggle__icon {
		display: block;
	}

	.mobile-search-panel {
		display: block;
		border-top: 1px solid var(--enzo-border);
		background: var(--enzo-white);
	}

	.mobile-search-panel[hidden] {
		display: none;
	}

	.mobile-search-panel__form {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 14px 0;
	}

	.mobile-search-panel__input {
		flex: 1 1 auto;
		width: 100%;
		min-width: 0;
		height: 48px;
		padding: 0 16px;
		border: 1px solid var(--border);
		border-radius: 14px;
		background: var(--white);
		color: var(--dark);
		font-size: 15px;
	}

	.mobile-search-panel__input:focus {
		border-color: var(--primary);
		outline: none;
		box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.08);
	}

	.mobile-search-panel__submit {
		flex: 0 0 auto;
		height: 48px;
		min-height: 48px;
		padding: 0 18px;
	}

	.primary-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		display: none;
		width: 100vw;
		max-width: none;
		max-height: calc(100dvh - 74px);
		margin-left: calc(50% - 50vw);
		padding: 0;
		overflow-y: auto;
		overflow-x: hidden;
		background: var(--enzo-white);
		border-bottom: 1px solid var(--enzo-border);
		box-shadow: 0 18px 34px rgba(21, 21, 21, 0.08);
		-webkit-overflow-scrolling: touch;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.menu-toggle.is-active {
		border-color: var(--primary);
		color: var(--primary);
	}

	.primary-menu {
		display: flex;
		flex-direction: column;
		gap: 0;
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 0;
		text-align: left;
	}

	.site-header .primary-menu > li {
		width: 100%;
		border-bottom: 1px solid var(--enzo-border);
	}

	.site-header .primary-menu > li > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		width: 100%;
		padding: 14px 20px;
		color: var(--enzo-dark);
		font-size: 14px;
		font-weight: 700;
		line-height: 1.35;
		letter-spacing: 0.02em;
		text-align: left;
	}

	.site-header .primary-menu > li.current-menu-item > a,
	.site-header .primary-menu > li.current-menu-ancestor > a,
	.site-header .primary-menu > li.current_page_item > a,
	.site-header .primary-menu > li.current_page_ancestor > a {
		color: var(--primary);
	}

	.site-header .primary-menu .menu-item-has-children > a::after {
		content: "▾";
		flex: 0 0 auto;
		margin-left: auto;
		padding-left: 12px;
		font-size: 15px;
		line-height: 1;
		transform: none;
		transition: transform 0.2s ease;
	}

	.site-header .primary-menu .menu-item-has-children.is-submenu-open > a::after {
		transform: rotate(180deg);
	}

	.site-header .primary-menu .menu-item-has-children::after {
		display: none;
	}

	.site-header .primary-menu .sub-menu {
		position: static;
		display: none;
		width: 100%;
		min-width: 0;
		max-width: none;
		max-height: none;
		margin: 0;
		padding: 0;
		overflow: visible;
		border: 0;
		border-radius: 0;
		background: var(--enzo-white);
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;
	}

	.site-header .primary-menu .menu-item.is-submenu-open > .sub-menu {
		display: block;
	}

	.site-header .primary-menu .sub-menu li {
		width: 100%;
		margin: 0;
		border-bottom: 1px solid var(--enzo-border);
	}

	.site-header .primary-menu .sub-menu li:last-child {
		border-bottom: 0;
	}

	.site-header .primary-menu .sub-menu li + li {
		margin-top: 0;
	}

	.site-header .primary-menu .sub-menu a {
		display: block;
		width: 100%;
		padding: 12px 20px 12px 28px;
		border-radius: 0;
		color: var(--enzo-dark);
		font-size: 13px;
		font-weight: 600;
		line-height: 1.4;
		letter-spacing: 0.02em;
		text-align: left;
		white-space: normal;
	}

	.site-header .primary-menu .sub-menu .current-menu-item > a,
	.site-header .primary-menu .sub-menu .current_page_item > a {
		color: var(--primary);
		font-weight: 700;
	}

	.site-header .primary-menu .sub-menu a::after {
		content: none;
	}

	.site-header .primary-menu .sub-menu a:hover,
	.site-header .primary-menu .sub-menu a:focus,
	.site-header .primary-menu .sub-menu a:focus-visible {
		background: transparent;
		color: var(--primary);
		transform: none;
	}

	.header-cta {
		display: none;
	}

	.header-phone,
	.header-search {
		display: none;
	}

	.home-hero__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.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 .lead {
		font-size: 17px;
		margin-top: 14px;
	}

	.home-hero .hero-actions {
		margin-top: 22px;
	}

	.hero-showcase {
		max-width: 520px;
		margin-left: 0;
		margin-right: auto;
	}

	.hero-showcase__card {
		position: static;
		width: 100%;
		max-width: none;
		margin-top: 10px;
	}

	.product-hero__grid,
	.two-column,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.content-grid,
	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.enzo-container,
	.container,
	.site-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.content-grid,
	.product-grid {
		grid-template-columns: 1fr;
	}

	.home-hero {
		padding: 51px 0 64px;
	}

	.home-hero h1 {
		font-size: 33px;
		line-height: 1.05;
		letter-spacing: -0.03em;
	}

	.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;
	}

	.hero-showcase {
		max-width: none;
	}

	.hero-showcase__card {
		position: static;
		width: 100%;
		max-width: none;
		margin-top: 8px;
	}
}

@media (max-width: 992px) {
	.enzo-page-content {
		padding-top: 32px;
		padding-bottom: 40px;
	}

	.enzo-footer-top__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.section-heading h2,
	.corporate-band h2,
	.cta-panel h2 {
		font-size: clamp(24px, 7vw, 30px);
		line-height: 1.15;
	}

	.enzo-page-content {
		padding-top: 24px;
		padding-bottom: 32px;
	}

	.enzo-page-hero,
	.page-hero {
		padding: 14px 0;
	}

	.enzo-page-hero__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.enzo-page-hero__title,
	.page-hero h1 {
		font-size: 17px;
		line-height: 1.28;
	}

	.enzo-page-hero__right {
		max-width: 100%;
		width: 100%;
	}

	.breadcrumb {
		justify-content: flex-start;
		gap: 4px;
		font-size: 11px;
		line-height: 1.3;
	}

	body.single-post .enzo-page-hero .breadcrumb__current,
	body.single-product .enzo-page-hero .breadcrumb__current {
		display: none;
	}

	body.single-post .enzo-page-hero .breadcrumb__separator:has(+ .breadcrumb__current),
	body.single-product .enzo-page-hero .breadcrumb__separator:has(+ .breadcrumb__current) {
		display: none;
	}

	.enzo-footer-top__grid {
		grid-template-columns: 1fr;
	}

	.enzo-footer-top {
		padding: 48px 0;
	}

	.enzo-footer-bottom__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.enzo-footer-bottom__col--right,
	.enzo-footer-bottom-menu {
		justify-content: center;
	}

	.about-intro__media img,
	.about-intro__image {
		max-height: 360px;
	}

	.enzo-product-detail__grid {
		gap: 28px;
	}

	.enzo-product-gallery {
		margin-bottom: 0;
	}

	.enzo-product-gallery__main {
		height: auto;
		aspect-ratio: 3 / 2;
	}

	.enzo-product-gallery__main img,
	.enzo-product-gallery__main-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.enzo-product-gallery__arrow {
		top: 50%;
		width: 40px;
		height: 40px;
		font-size: 24px;
		transform: translateY(-50%);
	}

	.enzo-product-gallery__arrow:hover,
	.enzo-product-gallery__arrow:focus-visible {
		transform: translateY(-50%) scale(1.05);
	}

	.enzo-product-gallery__arrow--prev {
		left: 12px;
	}

	.enzo-product-gallery__arrow--next {
		right: 12px;
	}

	.enzo-product-gallery__indicator {
		gap: 8px;
		margin-top: 12px;
		margin-bottom: 0;
	}

	.enzo-product-gallery__dot {
		width: 9px;
		height: 9px;
	}

	.enzo-product-summary__title {
		font-size: 1.3125rem;
		line-height: 1.22;
	}

	body.single-product .enzo-page-hero__title {
		font-size: 18px;
		line-height: 1.25;
	}

	.enzo-product-summary__price strong {
		font-size: 24px;
	}

	.enzo-tabs__panel {
		padding: 24px;
	}
}

/* Premium catalog layer */
body {
	color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--dark);
	line-height: 1.12;
	letter-spacing: -0.04em;
}

.home-hero h1,
.article-hero h1 {
	color: var(--white);
}

.section-heading {
	max-width: 760px;
	margin-bottom: clamp(28px, 4vw, 44px);
}

.section-heading h2,
.corporate-band h2,
.cta-panel h2 {
	margin: 0;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.15;
}

.section-heading p,
.corporate-band p,
.cta-panel p {
	color: var(--muted);
}

.section-heading--split {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	max-width: none;
}

.content-section--light {
	background: var(--light);
}

.button--light {
	background: var(--white);
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--dark);
	box-shadow: none;
}

.button--light:hover,
.button--light:focus-visible {
	background: var(--dark);
	border-color: var(--dark);
	color: var(--white);
}

.button--outline {
	background: transparent;
	border-color: var(--border);
	color: var(--dark);
	box-shadow: none;
}

.button--outline:hover,
.button--outline:focus-visible {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

.hero-actions,
.cta-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.hero-showcase {
	position: relative;
	width: 100%;
	max-width: 520px;
	margin-left: auto;
}

.hero-showcase__image {
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-showcase__image:empty::before,
.product-hero__placeholder,
.product-card__placeholder,
.blog-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	background:
		linear-gradient(135deg, rgba(215, 25, 32, 0.22), rgba(21, 21, 21, 0.08)),
		rgba(255, 255, 255, 0.06);
	content: "";
}

.hero-showcase__image:empty::before {
	min-height: 0;
	aspect-ratio: 4 / 3;
}

.hero-showcase__card {
	position: absolute;
	right: 18px;
	bottom: 18px;
	width: 260px;
	max-width: calc(100% - 36px);
	padding: 20px 22px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--dark);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.hero-showcase__card strong,
.hero-showcase__card span {
	display: block;
}

.hero-showcase__card strong {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.hero-showcase__card span {
	margin-top: 6px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

.trust-bar {
	position: relative;
	z-index: 2;
	margin-top: -36px;
}

.trust-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: 24px;
	background: var(--white);
	box-shadow: var(--enzo-shadow);
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	border-radius: 16px;
	background: var(--light);
	color: var(--dark);
}

.trust-item span {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--primary);
	box-shadow: 0 0 0 6px rgba(215, 25, 32, 0.11);
}

.category-grid,
.blog-grid,
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.home-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.related-products-carousel__heading.section-heading--split {
	align-items: center;
	max-width: none;
}

.related-products-carousel__controls {
	display: flex;
	flex-shrink: 0;
	gap: 12px;
}

.related-products-carousel__controls.is-hidden {
	display: none;
}

.related-products-carousel__viewport {
	min-width: 0;
	overflow: hidden;
}

.related-products-carousel__track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}

.related-products-carousel__track::-webkit-scrollbar {
	display: none;
}

.related-products-carousel__slide {
	flex: 0 0 calc((100% - 72px) / 4);
	min-width: 0;
	scroll-snap-align: start;
}

.related-products-carousel__slide .product-card {
	height: 100%;
}

.related-products-carousel__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--white);
	color: var(--text);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.related-products-carousel__arrow:hover,
.related-products-carousel__arrow:focus-visible {
	border-color: var(--primary);
	background: var(--primary);
	color: #fff;
	transform: scale(1.05);
	outline: none;
}

.related-products-carousel__arrow:disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
	transform: none;
}

@media (max-width: 1024px) {
	.related-products-carousel__slide {
		flex: 0 0 calc((100% - 24px) / 2);
	}
}

@media (max-width: 640px) {
	.related-products-carousel__heading.section-heading--split {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.related-products-carousel__slide {
		flex: 0 0 100%;
	}
}

.archive-category-cards {
	margin-bottom: clamp(34px, 5vw, 58px);
}

.category-card,
.product-card,
.blog-card,
.stat-card,
.contact-card {
	border: 1px solid var(--border);
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 16px 45px rgba(21, 21, 21, 0.06);
}

.category-card {
	position: relative;
	min-height: 210px;
	padding: 28px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card::after {
	position: absolute;
	right: -34px;
	bottom: -34px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(215, 25, 32, 0.08);
	content: "";
}

.category-card span,
.category-card__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(215, 25, 32, 0.1);
	color: var(--primary);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.category-card h3 {
	margin: 24px 0 10px;
	font-size: 1.35rem;
}

.category-card p {
	margin: 0;
	color: var(--muted);
}

.category-card--visual {
	display: grid;
	min-height: 280px;
	padding: 0;
	overflow: hidden;
}

.category-card--visual::after {
	z-index: 1;
}

.category-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--light);
}

.category-card__media img,
.category-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-card .category-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
	background:
		linear-gradient(135deg, rgba(215, 25, 32, 0.2), rgba(21, 21, 21, 0.04)),
		var(--light);
}

.category-card__count {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 2;
}

.category-card__content {
	position: relative;
	z-index: 2;
	padding: 24px 28px 28px;
}

.category-card--visual h3 {
	margin-top: 0;
}

.product-card,
.blog-card {
	overflow: hidden;
}

.product-card {
	position: relative;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card__link {
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
}

.product-card__link:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

.product-card:hover {
	transform: translateY(-6px);
	border-color: rgba(215, 25, 32, 0.2);
	box-shadow: 0 28px 64px rgba(21, 21, 21, 0.12);
}

.blog-card {
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card:hover {
	transform: translateY(-3px);
	border-color: rgba(215, 25, 32, 0.28);
	box-shadow: 0 22px 58px rgba(21, 21, 21, 0.1);
}

.category-card:hover {
	transform: translateY(-6px);
	border-color: rgba(215, 25, 32, 0.2);
	box-shadow: 0 28px 64px rgba(21, 21, 21, 0.12);
}

.category-card--visual .category-card__media img,
.category-card--visual .category-card__placeholder {
	transition: transform 0.25s ease;
}

.category-card--visual:hover .category-card__media img,
.category-card--visual:hover .category-card__placeholder {
	transform: scale(1.03);
}

.product-card__media {
	display: block;
	aspect-ratio: 3 / 2;
	height: auto;
	margin-top: 0;
	overflow: hidden;
	background: var(--light);
}

.blog-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--light);
}

.product-card__image,
.product-card__placeholder,
.blog-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.product-card:hover .product-card__image {
	transform: scale(1.03);
}

.product-card__body,
.blog-card__body {
	margin-top: 0;
	padding: 24px;
}

.product-card h2,
.product-card h3,
.blog-card h2 {
	margin: 12px 0 10px;
	font-size: 1.24rem;
}

.enzo-product-card__price {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin-top: 12px;
}

.enzo-product-card__price strong {
	color: var(--text);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
}

.enzo-product-card__vat {
	margin-top: 3px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.product-card p,
.blog-card p {
	margin: 0;
	color: var(--muted);
}

.card-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(215, 25, 32, 0.09);
	color: var(--primary);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
}

.blog-card__meta,
.article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	color: var(--muted);
	font-size: 0.9rem;
}

.product-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.product-code-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--light);
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
}

.corporate-band,
.cta-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
	gap: clamp(30px, 5vw, 64px);
	align-items: center;
}

.corporate-band {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
}

.corporate-band > div:first-child {
	position: relative;
	padding-left: 20px;
}

.corporate-band > div:first-child::before {
	position: absolute;
	top: 6px;
	left: 0;
	width: 3px;
	height: 48px;
	border-radius: 999px;
	background: var(--primary);
	content: "";
}

.corporate-band .stat-card {
	position: relative;
	padding: 22px 22px 22px 24px;
	background: var(--white);
	border: 1px solid rgba(21, 21, 21, 0.08);
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.corporate-band .stat-card::before {
	position: absolute;
	top: 16px;
	bottom: 16px;
	left: 0;
	width: 3px;
	border-radius: 0 999px 999px 0;
	background: rgba(215, 25, 32, 0.65);
	content: "";
}

@media (hover: hover) {
	.corporate-band .stat-card:hover,
	.corporate-band .stat-card:focus-within {
		border-color: rgba(215, 25, 32, 0.16);
		box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
	}
}

.stat-grid {
	display: grid;
	gap: 16px;
}

.about-values__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.about-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: 48px;
	align-items: center;
}

.about-intro__content {
	max-width: 760px;
}

.about-intro__content .entry-content {
	line-height: 1.8;
}

.about-intro__media {
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 16px 45px rgba(21, 21, 21, 0.06);
}

.about-intro__media img,
.about-intro__image {
	display: block;
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	border-radius: 20px;
}

.about-principles__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.about-principle-card {
	padding: 32px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: var(--white);
	box-shadow: 0 16px 45px rgba(21, 21, 21, 0.06);
}

.about-principle-card__label {
	display: block;
	margin-bottom: 16px;
	color: var(--primary);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.about-principle-card h3 {
	margin: 0 0 12px;
	color: var(--dark);
	font-size: 1.35rem;
	line-height: 1.2;
}

.about-principle-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.8;
}

.page-template-template-about .enzo-page-content {
	padding-bottom: 0;
}

.page-template-template-about .enzo-page-content > .about-values {
	padding-top: 48px;
	padding-bottom: 80px;
}

body.single-product .enzo-page-content:has(.enzo-related-products) {
	padding-bottom: 0;
}

body.single-product .enzo-page-content > .enzo-related-products.content-section--light,
body.single-product .enzo-page-content > .enzo-related-products {
	padding-top: 48px;
	padding-bottom: 80px;
}

@media (max-width: 992px) {
	.page-template-template-about .enzo-page-content > .about-values {
		padding-bottom: 64px;
	}
}

@media (max-width: 768px) {
	.page-template-template-about .enzo-page-content > .about-values {
		padding-top: 32px;
		padding-bottom: 56px;
	}

	body.single-product .enzo-page-content > .enzo-related-products.content-section--light,
	body.single-product .enzo-page-content > .enzo-related-products {
		padding-top: 32px;
		padding-bottom: 56px;
	}
}

.value-card {
	padding: 34px;
	border: 1px solid var(--border);
	border-radius: 22px;
	background: var(--white);
	box-shadow: 0 16px 45px rgba(21, 21, 21, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.value-card:hover {
	transform: translateY(-6px);
	border-color: rgba(var(--primary-rgb), 0.28);
	box-shadow: 0 28px 64px rgba(21, 21, 21, 0.12);
}

.value-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 999px;
	background: rgba(var(--primary-rgb), 0.08);
	color: var(--primary);
	transition: transform 0.25s ease;
}

.value-card:hover .value-card__icon {
	transform: scale(1.08);
}

.value-card__icon svg {
	display: block;
	width: 28px;
	height: 28px;
}

.value-card__title {
	display: block;
	margin: 24px 0 0;
	color: var(--dark);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: normal;
}

.value-card p {
	margin: 12px 0 0;
	color: var(--muted);
	line-height: 1.8;
}

.stat-card {
	padding: 22px;
}

.stat-card strong,
.stat-card span {
	display: block;
}

.stat-card strong {
	color: var(--dark);
	font-size: 1.2rem;
}

.stat-card span {
	margin-top: 4px;
	color: var(--muted);
}

.cta-panel {
	padding: clamp(34px, 5vw, 58px);
	border-radius: 30px;
	background: linear-gradient(135deg, var(--dark), #2a2a2a 60%, #3a0b0d);
	box-shadow: var(--enzo-shadow);
	color: var(--white);
}

.cta-panel h2 {
	color: var(--white);
}

.cta-panel p {
	color: rgba(255, 255, 255, 0.74);
}

.catalog-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}

.enzo-product-archive .pagination {
	margin-top: 32px;
}

.enzo-product-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 32px;
}

.enzo-product-toolbar__count {
	color: var(--muted);
	font-size: 15px;
}

.enzo-product-toolbar__sort {
	flex-shrink: 0;
}

.enzo-product-sort-select {
	min-width: 190px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--white);
	color: var(--dark);
	font-weight: 600;
}

.catalog-filter {
	position: sticky;
	top: 104px;
	padding: 22px;
	border: 1px solid var(--border);
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 16px 42px rgba(21, 21, 21, 0.05);
}

.catalog-filter h2 {
	margin: 0 0 16px;
	font-size: 1.2rem;
}

.filter-link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 14px;
	color: var(--text);
	font-weight: 700;
}

.catalog-filter__list {
	display: grid;
	gap: 8px;
}

.filter-link + .filter-link {
	margin-top: 6px;
}

.filter-link:hover,
.filter-link:focus-visible,
.filter-link.is-active {
	background: var(--light);
	color: var(--primary);
}

.filter-link span {
	color: var(--muted);
	font-size: 0.85rem;
}

.filter-link__icon {
	display: inline-flex;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(215, 25, 32, 0.14), rgba(21, 21, 21, 0.04)),
		var(--white);
}

.filter-link__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.filter-link__content {
	display: grid;
	gap: 2px;
	min-width: 0;
	flex: 1;
}

.filter-link__content strong {
	color: var(--dark);
	line-height: 1.2;
}

.filter-link__content small {
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.35;
}

.filter-link em {
	display: inline-flex;
	min-width: 28px;
	height: 28px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--light);
	color: var(--muted);
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 800;
}

.filter-link.is-active .filter-link__content strong,
.filter-link:hover .filter-link__content strong,
.filter-link:focus-visible .filter-link__content strong {
	color: var(--primary);
}

.catalog-results .pagination,
.blog-grid .pagination,
.product-grid .pagination {
	grid-column: 1 / -1;
	margin-top: 12px;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
	color: var(--primary);
}

.breadcrumb__separator,
.breadcrumb a {
	color: var(--muted);
}

.breadcrumb__current {
	color: var(--dark);
}

.breadcrumb__separator {
	color: var(--muted);
}

.product-meta {
	display: flex;
	gap: 8px;
	margin: 18px 0;
	color: var(--muted);
}

.product-meta strong {
	color: var(--dark);
}

.product-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.product-detail-block {
	margin-top: 42px;
	padding-top: 34px;
	border-top: 1px solid var(--border);
}

.product-detail-block h2 {
	margin: 0 0 20px;
	font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.product-hero {
	background: var(--white);
}

.product-specs-table {
	width: 100%;
	border-collapse: collapse;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 18px;
	background: var(--white);
	box-shadow: 0 14px 36px rgba(21, 21, 21, 0.05);
}

.product-specs-table th,
.product-specs-table td {
	padding: 15px 18px;
	border-bottom: 1px solid var(--border);
	text-align: left;
	vertical-align: top;
}

.product-specs-table th {
	width: 34%;
	background: var(--light);
	color: var(--dark);
	font-weight: 800;
}

.product-specs-table td {
	color: var(--text);
}

.product-specs-table tr:last-child th,
.product-specs-table tr:last-child td {
	border-bottom: 0;
}

.enzo-product-detail__grid {
	display: grid;
	grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
	gap: 64px;
	align-items: start;
}

.enzo-product-gallery,
.enzo-product-summary {
	align-self: start;
	margin-top: 0;
	padding-top: 0;
}

.enzo-product-gallery {
	display: block;
}

.enzo-product-gallery__main {
	position: relative;
	overflow: hidden;
	margin-top: 0;
	padding-top: 0;
	border-radius: 20px;
	background: transparent;
	box-shadow: none;
}

.enzo-product-gallery__main img,
.enzo-product-gallery__main-image {
	display: block;
	width: 100%;
	height: 480px;
	margin: 0;
	padding: 0;
	object-fit: contain;
	object-position: top center;
	background: transparent;
	vertical-align: top;
	transition:
		opacity 0.18s ease,
		transform 0.18s ease;
}

.enzo-product-gallery__main-image.is-changing {
	opacity: 0.25;
	transform: scale(0.985);
}

.enzo-product-gallery__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--text);
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
	transform: translateY(-50%);
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.enzo-product-gallery__arrow:hover,
.enzo-product-gallery__arrow:focus-visible {
	border-color: var(--primary);
	background: var(--primary);
	color: #fff;
	transform: translateY(-50%) scale(1.05);
}

.enzo-product-gallery__arrow--prev {
	left: 18px;
}

.enzo-product-gallery__arrow--next {
	right: 18px;
}

.enzo-product-gallery__indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 18px;
}

.enzo-product-gallery__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: #d9d9d9;
	cursor: pointer;
	transition: all 0.25s ease;
}

.enzo-product-gallery__dot:hover,
.enzo-product-gallery__dot:focus-visible {
	background: rgba(var(--primary-rgb), 0.55);
	transform: scale(1.15);
	outline: none;
}

.enzo-product-gallery__dot.is-active {
	background: var(--primary);
	transform: scale(1.25);
	box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0.12);
}

.enzo-product-summary > :first-child {
	margin-top: 0;
	padding-top: 0;
}

.enzo-product-summary__category {
	margin: 0 0 10px;
	padding-top: 0;
	color: var(--primary);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.enzo-product-summary__title {
	margin: 0;
	color: var(--dark);
	font-size: clamp(1.4375rem, 2.85vw, 1.625rem);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.025em;
}

body.single-product .enzo-page-hero__title {
	font-size: 17px;
	line-height: 1.25;
}

body.single-product .breadcrumb {
	font-size: 12px;
	line-height: 1.35;
}

.enzo-product-summary__price {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0 0 18px;
	padding: 0;
	border: none;
	background: transparent;
}

.enzo-product-summary__price strong {
	color: var(--text);
	font-size: 28px;
	font-weight: 800;
	line-height: 1.1;
}

.enzo-product-summary__vat {
	margin-top: 6px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.enzo-product-summary__stock {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
}

.enzo-product-summary__stock-dot {
	flex: 0 0 6px;
	width: 6px;
	height: 6px;
	border-radius: 999px;
}

.enzo-product-summary__stock--in-stock {
	color: #15803d;
	background: rgba(21, 128, 61, 0.08);
	border: 1px solid rgba(21, 128, 61, 0.16);
}

.enzo-product-summary__stock--in-stock .enzo-product-summary__stock-dot {
	background: #16a34a;
}

.enzo-product-summary__stock--out-of-stock {
	color: #991b1b;
	background: rgba(153, 27, 27, 0.08);
	border: 1px solid rgba(153, 27, 27, 0.16);
}

.enzo-product-summary__stock--out-of-stock .enzo-product-summary__stock-dot {
	background: #dc2626;
}

.enzo-product-summary__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	margin-top: 12px;
	margin-bottom: 16px;
}

.enzo-product-summary__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.enzo-product-summary__meta-row .enzo-product-summary__stock {
	margin: 0;
	padding: 4px 9px;
	font-size: 11px;
	font-weight: 600;
}

.enzo-product-summary__meta-row .enzo-product-summary__stock-dot {
	flex: 0 0 6px;
	width: 6px;
	height: 6px;
}

.enzo-product-summary__meta-label,
.enzo-product-summary__meta-sep {
	color: var(--muted);
}

.enzo-product-summary__meta-value {
	color: var(--text);
	font-weight: 600;
}

.enzo-product-summary__description {
	margin-top: 0;
	margin-bottom: 32px;
	color: var(--muted);
	line-height: 1.8;
}

.enzo-product-summary__description p {
	margin: 0;
}

.enzo-product-summary__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.button.button--outline.enzo-product-video-trigger {
	cursor: pointer;
	box-shadow: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button.button--outline.enzo-product-video-trigger:hover,
.button.button--outline.enzo-product-video-trigger:focus-visible {
	transform: translateY(-2px);
	border-color: var(--primary);
	color: var(--primary);
	background: rgba(var(--primary-rgb), 0.06);
	box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.14);
}

.button.button--outline.enzo-product-video-trigger:hover svg,
.button.button--outline.enzo-product-video-trigger:focus-visible svg,
.button.button--outline.enzo-product-video-trigger:hover .enzo-product-video-trigger__icon,
.button.button--outline.enzo-product-video-trigger:focus-visible .enzo-product-video-trigger__icon {
	color: var(--primary);
	fill: currentColor;
}

.enzo-product-tabs {
	margin-top: 48px;
}

.enzo-tabs {
	display: grid;
	gap: 24px;
}

.enzo-tabs__nav {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	border-bottom: 1px solid var(--border);
	padding-bottom: 2px;
	scrollbar-width: thin;
}

.enzo-tabs__button {
	flex: 0 0 auto;
	padding: 14px 18px;
	border: 0;
	border-bottom: 2px solid transparent;
	background: transparent;
	color: var(--muted);
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.enzo-tabs__button:hover,
.enzo-tabs__button:focus-visible {
	color: var(--dark);
}

.enzo-tabs__button.is-active {
	border-bottom-color: var(--primary);
	color: var(--primary);
}

.enzo-tabs__panel {
	padding: 32px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: var(--white);
	box-shadow: 0 16px 45px rgba(21, 21, 21, 0.06);
}

.enzo-tabs__panel[hidden] {
	display: none;
}

.enzo-tabs__panel .entry-content {
	line-height: 1.8;
}

.enzo-tabs__panel .product-specs-table {
	margin: 0;
}

.enzo-tabs__panel .comment-respond,
.enzo-tabs__panel .commentlist,
.enzo-tabs__panel .comments-area {
	margin-top: 0;
}

.single-product .comment-respond {
	display: grid;
	gap: 16px;
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--white);
}

.single-product .comment-respond .comment-reply-title {
	margin: 0;
	color: var(--dark);
	font-size: 1.25rem;
	line-height: 1.3;
}

.single-product .comment-form {
	display: grid;
	gap: 16px;
}

.single-product .comment-form > p {
	display: grid;
	gap: 8px;
	margin: 0;
}

.single-product .comment-form label {
	color: var(--dark);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
}

.single-product .comment-form input[type="text"],
.single-product .comment-form input[type="email"],
.single-product .comment-form textarea {
	width: 100%;
	max-width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--white);
	color: var(--text);
	font: inherit;
	line-height: 1.5;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.single-product .comment-respond .comment-notes {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

.single-product .comment-form textarea {
	min-height: 168px;
	resize: vertical;
}

.single-product .comment-form input[type="text"]:focus,
.single-product .comment-form input[type="email"]:focus,
.single-product .comment-form textarea:focus {
	border-color: var(--primary);
	outline: none;
	box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.single-product .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.single-product .comment-form-cookies-consent label {
	display: inline;
	font-weight: 400;
}

.single-product .comment-form-cookies-consent input {
	margin-top: 4px;
}

.single-product .comment-form-rating.enzo-comment-rating,
.single-product .enzo-comment-rating-field {
	display: grid;
	gap: 8px;
	margin: 0 0 16px;
}

.single-product .enzo-comment-rating__label {
	font-weight: 600;
	color: var(--dark);
}

.single-product .enzo-comment-rating__stars {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.single-product .enzo-comment-rating__option {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--white);
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.single-product .enzo-comment-rating__option:hover {
	border-color: var(--primary);
	background: rgba(var(--primary-rgb), 0.04);
}

.single-product .enzo-comment-rating__option:has(input:checked) {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.24);
}

.single-product .enzo-comment-rating__option:has(input:checked):hover {
	background: var(--primary);
	border-color: var(--primary);
}

.single-product .enzo-comment-rating__option:has(input:focus-visible) {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

.single-product .enzo-comment-rating__option input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.single-product .enzo-comment-rating__option-text {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	line-height: 1.4;
}

.single-product .enzo-comment-rating__option-stars {
	letter-spacing: 1px;
	font-size: 15px;
	line-height: 1;
}

.single-product .enzo-comment-rating__option:has(input:checked) .enzo-comment-rating__option-text,
.single-product .enzo-comment-rating__option:has(input:checked) .enzo-comment-rating__option-stars,
.single-product .enzo-comment-rating__option:has(input:checked) .enzo-comment-rating__option-label {
	color: var(--white);
}

.single-product .commentlist .enzo-comment-rating__value {
	margin: 0 0 8px;
	color: var(--primary);
	font-size: 15px;
	line-height: 1;
	letter-spacing: 1px;
}

.single-product .comments-area {
	display: grid;
	gap: 24px;
}

.single-product .commentlist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.single-product .commentlist .comment,
.single-product .commentlist .pingback {
	margin: 0;
	padding: 0;
}

.single-product .comment-body {
	display: grid;
	gap: 12px;
	padding: 16px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--white);
}

.single-product .comment-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
}

.single-product .comment-author {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.single-product .comment-author .avatar {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	object-fit: cover;
	flex-shrink: 0;
}

.single-product .comment-author .fn {
	font-weight: 600;
	color: var(--dark);
}

.single-product .comment-author .says {
	display: none;
}

.single-product .comment-metadata {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.4;
}

.single-product .comment-metadata a {
	color: inherit;
	text-decoration: none;
}

.single-product .comment-content {
	color: var(--text);
	line-height: 1.7;
}

.single-product .comment-content > p {
	margin: 0 0 8px;
}

.single-product .comment-content > p:last-child {
	margin-bottom: 0;
}

.single-product .reply {
	margin: 0;
}

.single-product .comment-reply-link {
	color: var(--primary);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.single-product .comment-reply-link:hover,
.single-product .comment-reply-link:focus-visible {
	text-decoration: underline;
}

.single-product .commentlist .children {
	list-style: none;
	margin: 16px 0 0;
	padding: 0 0 0 16px;
	border-left: 2px solid var(--border);
	display: grid;
	gap: 16px;
}

.single-product .logged-in-as {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

.single-product .logged-in-as a {
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
}

.single-product .logged-in-as a:hover,
.single-product .logged-in-as a:focus-visible {
	text-decoration: underline;
}

.single-product .form-submit {
	margin: 0;
}

.single-product .form-submit .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 24px;
	border: 1px solid var(--primary);
	border-radius: 999px;
	background: var(--primary);
	color: var(--white);
	font: inherit;
	font-weight: 600;
	line-height: 1.1;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(215, 25, 32, 0.2);
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.single-product .form-submit .submit:hover,
.single-product .form-submit .submit:focus-visible {
	background: var(--dark);
	border-color: var(--dark);
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.single-product .comment-respond {
		padding: 16px;
	}

	.single-product .comment-body {
		padding: 16px;
	}

	.single-product .commentlist .children {
		padding-left: 12px;
	}

	.single-product .enzo-comment-rating__stars {
		flex-direction: column;
		align-items: stretch;
	}

	.single-product .enzo-comment-rating__option {
		width: 100%;
	}
}

.enzo-empty-note {
	margin: 0;
	color: var(--muted);
	line-height: 1.8;
}

.product-hero__media {
	overflow: hidden;
	border-radius: 28px;
	background: var(--light);
	box-shadow: 0 18px 50px rgba(21, 21, 21, 0.08);
}

.product-gallery {
	display: grid;
	gap: 14px;
}

.product-gallery__main-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.product-hero__placeholder {
	min-height: 440px;
}

.article-hero {
	position: relative;
	padding: clamp(72px, 8vw, 118px) 0;
	background: linear-gradient(135deg, var(--dark), #292929 64%, #3a0b0d);
	color: var(--white);
}

.article-hero h1 {
	max-width: 900px;
	margin: 18px 0 0;
	font-size: clamp(2.1rem, 4.8vw, 4.3rem);
}

.article-hero p {
	max-width: 720px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.12rem;
}

.enzo-post-layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.enzo-post-content__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
	margin-top: 0;
	margin-bottom: 32px;
	padding: 16px 18px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.enzo-post-content__media + .enzo-post-content__meta {
	margin-top: 16px;
}

.enzo-post-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--muted);
}

.enzo-post-meta__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: var(--primary);
}

.enzo-post-meta__icon svg {
	display: block;
}

.enzo-post-meta__text {
	color: var(--muted);
	font-size: 14px;
}

.enzo-post-content__author {
	color: var(--muted);
	font-weight: 700;
}

.enzo-post-content__meta .card-badge {
	margin: 0;
	cursor: default;
}

.enzo-post-content__excerpt {
	margin: 0 0 24px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.7;
}

.enzo-post-content__media {
	margin: 0;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 12px 36px rgba(21, 21, 21, 0.08);
}

.enzo-post-content__media img,
.enzo-post-content__image {
	width: 100%;
	max-height: 460px;
	object-fit: cover;
}

.enzo-post-content__body {
	font-size: 17px;
	line-height: 1.9;
	color: var(--text);
}

.enzo-post-content__body > *:first-child {
	margin-top: 0;
}

.enzo-post-content__body p {
	margin: 0 0 24px;
	color: var(--text);
}

.enzo-post-content__body h2 {
	margin: 48px 0 18px;
	font-size: 30px;
	line-height: 1.25;
	color: var(--dark);
}

.enzo-post-content__body h3 {
	margin: 32px 0 14px;
	font-size: 24px;
	line-height: 1.3;
	color: var(--dark);
}

.enzo-post-content__body ul,
.enzo-post-content__body ol {
	margin: 0 0 24px;
	padding-left: 24px;
}

.enzo-post-content__body li + li {
	margin-top: 8px;
}

.enzo-post-content__body blockquote {
	margin: 32px 0;
	padding: 24px 32px;
	border: 1px solid var(--border);
	border-left: 4px solid var(--primary);
	border-radius: 16px;
	background: var(--light);
	box-shadow: 0 12px 36px rgba(21, 21, 21, 0.05);
	color: var(--dark);
}

.enzo-post-content__body blockquote p:last-child {
	margin-bottom: 0;
}

.enzo-post-content__body img {
	border-radius: 16px;
}

.enzo-post-content__body table {
	width: 100%;
	margin: 0 0 32px;
	border-collapse: collapse;
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 36px rgba(21, 21, 21, 0.05);
}

.enzo-post-content__body th,
.enzo-post-content__body td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--border);
	text-align: left;
}

.enzo-post-content__body th {
	background: var(--light);
	color: var(--dark);
	font-weight: 800;
}

.enzo-post-content__body tr:last-child td {
	border-bottom: 0;
}

.enzo-post-content__body pre {
	margin: 0 0 32px;
	padding: 24px;
	overflow-x: auto;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--dark);
	color: var(--white);
	font-size: 15px;
	line-height: 1.7;
}

.enzo-post-content__body code {
	padding: 2px 8px;
	border-radius: 8px;
	background: rgba(var(--primary-rgb), 0.08);
	color: var(--dark);
	font-size: 0.92em;
}

.enzo-post-content__body pre code {
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
}

.enzo-post-content__body a {
	color: var(--enzo-red);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.enzo-post-content__footer {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--border);
}

.enzo-post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}

.enzo-post-tags a {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--white);
	color: var(--text);
	font-size: 13px;
	font-weight: 700;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.enzo-post-tags a:hover,
.enzo-post-tags a:focus-visible {
	border-color: rgba(var(--primary-rgb), 0.24);
	background: rgba(var(--primary-rgb), 0.08);
	color: var(--primary);
}

.enzo-post-share {
	margin-bottom: 32px;
	padding-top: 32px;
	border-top: 1px solid var(--border);
}

.enzo-post-share__label {
	display: block;
	margin-bottom: 16px;
	color: var(--dark);
	font-size: 15px;
	font-weight: 700;
}

.enzo-post-share__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.enzo-post-share__button {
	display: inline-flex;
	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(--muted);
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.enzo-post-share__button:hover,
.enzo-post-share__button:focus-visible {
	border-color: rgba(var(--primary-rgb), 0.35);
	background: rgba(var(--primary-rgb), 0.06);
	color: var(--primary);
	transform: translateY(-2px);
}

.enzo-post-share__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: currentColor;
}

.enzo-post-share__button-icon svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.enzo-post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.enzo-post-navigation__link {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 24px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 12px 36px rgba(21, 21, 21, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.enzo-post-navigation__link:hover,
.enzo-post-navigation__link:focus-visible {
	border-color: rgba(var(--primary-rgb), 0.24);
	box-shadow: 0 16px 45px rgba(21, 21, 21, 0.08);
	transform: translateY(-2px);
	color: inherit;
}

.enzo-post-navigation__link--next {
	text-align: right;
	align-items: flex-end;
}

.enzo-post-navigation__label {
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.enzo-post-navigation__title {
	color: var(--dark);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.4;
}

.enzo-post-sidebar {
	position: sticky;
	top: 120px;
	display: grid;
	gap: 24px;
}

.enzo-sidebar-widget {
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 12px 36px rgba(21, 21, 21, 0.05);
}

.enzo-sidebar-widget__title {
	margin: 0 0 16px;
	color: var(--dark);
	font-size: 20px;
	line-height: 1.3;
}

.enzo-related-posts {
	display: grid;
	gap: 16px;
}

.enzo-related-post {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 12px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--white);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.enzo-related-post:hover,
.enzo-related-post:focus-visible {
	border-color: rgba(var(--primary-rgb), 0.24);
	box-shadow: 0 16px 45px rgba(21, 21, 21, 0.08);
	transform: translateY(-2px);
	color: inherit;
}

.enzo-related-post__media {
	overflow: hidden;
	width: 80px;
	height: 80px;
	border-radius: 12px;
}

.enzo-related-post__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.enzo-related-post__body {
	display: grid;
	gap: 6px;
}

.enzo-related-post__title {
	color: var(--dark);
	font-size: 15px;
	line-height: 1.4;
}

.enzo-related-post__date {
	color: var(--muted);
	font-size: 13px;
}

.enzo-product-widget--categories {
	margin: 0;
	padding: 0;
	list-style: none;
}

.enzo-product-widget--categories li + li {
	margin-top: 8px;
}

.enzo-product-widget--categories a {
	display: block;
	padding: 10px 12px;
	border-radius: 12px;
	color: var(--text);
	font-size: 15px;
	font-weight: 700;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.enzo-product-widget--categories a:hover,
.enzo-product-widget--categories a:focus-visible,
.enzo-product-widget--categories a.is-active {
	background: rgba(var(--primary-rgb), 0.08);
	color: var(--primary);
}

.enzo-product-widget--products {
	display: grid;
	gap: 12px;
}

.enzo-product-widget__item {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 12px;
	border: 1px solid var(--border);
	border-radius: 16px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.enzo-product-widget__item:hover,
.enzo-product-widget__item:focus-visible {
	border-color: rgba(var(--primary-rgb), 0.24);
	box-shadow: 0 16px 45px rgba(21, 21, 21, 0.08);
	transform: translateY(-2px);
	color: inherit;
}

.enzo-product-widget__media {
	overflow: hidden;
	width: 64px;
	height: 64px;
	border-radius: 12px;
	background: var(--light);
}

.enzo-product-widget__media img,
.enzo-product-widget__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.enzo-product-widget__body {
	display: grid;
	gap: 4px;
}

.enzo-product-widget__title {
	color: var(--dark);
	font-size: 15px;
	line-height: 1.4;
}

.enzo-product-widget__link {
	color: var(--primary);
	font-size: 13px;
	font-weight: 800;
}

.enzo-post-cta {
	display: grid;
	gap: 16px;
	background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.08) 0%, var(--white) 100%);
}

.enzo-post-cta__title {
	margin: 0;
	color: var(--dark);
	font-size: 24px;
	line-height: 1.25;
}

.enzo-post-cta__text {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
}

.enzo-post-comments {
	margin-top: 64px;
	padding-top: 48px;
	border-top: 1px solid var(--border);
}

@media (max-width: 992px) {
	.enzo-post-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.enzo-post-sidebar {
		position: static;
	}
}

.entry-content {
	color: var(--text);
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.6em;
}

.entry-content p,
.entry-content li {
	color: var(--text);
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination .page-numbers,
.enzo-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--white);
	color: var(--dark);
	font-weight: 800;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover,
.pagination .page-numbers:focus-visible,
.enzo-pagination .page-numbers.current,
.enzo-pagination .page-numbers:hover,
.enzo-pagination .page-numbers:focus-visible {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

@media (max-width: 1100px) {
	.value-card__title {
		font-size: 20px;
	}

	.category-grid,
	.blog-grid,
	.product-grid,
	.about-values__grid,
	.about-principles__grid,
	.home-category-grid,
	.enzo-search-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 992px) {
	.enzo-contact-layout {
		grid-template-columns: 1fr;
	}

	.enzo-contact-form {
		padding: 30px;
	}

	.about-intro__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.enzo-product-detail__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 960px) {
	.section-heading--split,
	.corporate-band,
	.cta-panel,
	.catalog-layout,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.section-heading--split {
		align-items: start;
	}

	.catalog-filter {
		position: static;
	}

	.trust-bar {
		margin-top: 0;
		padding-top: 16px;
		background: var(--light);
	}

	.trust-bar__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.value-card__title {
		font-size: 18px;
	}

	.about-principles__grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.about-principle-card {
		width: 100%;
		max-width: none;
	}

	.cta-panel {
		gap: 0;
		padding: 24px;
		border-radius: 24px;
		text-align: center;
	}

	.cta-panel .eyebrow {
		margin: 0 0 14px;
	}

	.cta-panel h2 {
		margin: 0 0 14px;
	}

	.cta-panel h2 + p {
		margin: 0;
	}

	.cta-panel__actions {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		margin-top: 28px;
	}

	.cta-panel__actions .button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 54px;
		min-height: 54px;
		padding: 0 22px;
		text-align: center;
	}

	.enzo-post-content__body {
		font-size: 16px;
	}

	.enzo-post-content__body h2 {
		margin-top: 32px;
		font-size: 24px;
	}

	.enzo-post-content__body h3 {
		margin-top: 24px;
		font-size: 20px;
	}

	.enzo-post-content__meta {
		gap: 12px 16px;
		margin-top: 12px;
		margin-bottom: 24px;
		padding: 14px 16px;
	}

	.enzo-product-toolbar {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		margin-bottom: 24px;
	}

	.enzo-product-toolbar__sort,
	.enzo-product-sort-select {
		width: 100%;
		min-width: 0;
	}

	.enzo-post-content__media {
		margin-bottom: 0;
	}

	.enzo-post-content__media img,
	.enzo-post-content__image {
		max-height: 320px;
	}

	.enzo-post-content__footer {
		margin-top: 32px;
		padding-top: 24px;
	}

	.enzo-post-navigation {
		grid-template-columns: 1fr;
	}

	.enzo-post-navigation__link--next {
		text-align: left;
		align-items: flex-start;
	}

	.enzo-post-comments {
		margin-top: 40px;
		padding-top: 32px;
	}

	.enzo-contact-grid {
		grid-template-columns: 1fr;
	}

	.enzo-contact-form {
		padding: 26px;
	}

	.enzo-contact-map iframe {
		min-height: 360px;
	}

	.wpcf7 form textarea {
		min-height: 60px;
	}

	.enzo-contact-form .wpcf7 textarea,
	.enzo-contact-form textarea.wpcf7-form-control,
	.enzo-contact-form textarea {
		min-height: 140px;
		height: 140px;
	}
}

@media (max-width: 700px) {
	.category-grid,
	.blog-grid,
	.product-grid,
	.about-values__grid,
	.trust-bar__grid,
	.contact-card-grid,
	.enzo-search-grid {
		grid-template-columns: 1fr;
	}

	.enzo-search-form {
		flex-direction: column;
		align-items: stretch;
	}

	.enzo-search-form__submit {
		width: 100%;
	}

	.home-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.home-category-grid .category-card--visual {
		min-height: 0;
	}

	.home-category-grid .category-card__content {
		padding: 16px;
	}

	.home-category-grid .category-card__content h3 {
		font-size: 1rem;
	}

	.hero-showcase {
		min-height: 0;
	}

	.corporate-band > div:first-child {
		padding-left: 18px;
	}

	.corporate-band > div:first-child::before {
		height: 40px;
	}
}

.page-template-template-home .content-section:has(+ .home-cta-overlap) {
	padding-top: clamp(32px, 5vw, 72px);
	padding-bottom: clamp(168px, 14vw, 210px);
}

.home-cta-overlap {
	position: relative;
	z-index: auto;
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
	background: var(--light);
	overflow: visible;
}

.home-cta-overlap:not(:has(+ .enzo-home-content)) {
	padding-bottom: 90px;
}

.home-cta-overlap .container {
	overflow: visible;
}

.home-cta-overlap .cta-panel {
	position: relative;
	z-index: 3;
	transform: translateY(-50%);
	margin-bottom: clamp(-96px, -8vw, -128px);
}

.page-template-template-home .enzo-home-content {
	position: relative;
	z-index: 1;
	background: var(--light);
	padding-top: 0;
	padding-bottom: 80px;
}

.page-template-template-home .enzo-home-content__inner > h2:first-child {
	margin-top: 0;
}

.enzo-home-content .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.enzo-home-content__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-height: 250px;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.enzo-home-content__inner::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	height: 56px;
	background: linear-gradient(to bottom, rgba(246, 247, 248, 0), var(--light));
	content: "";
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.35s ease;
}

.enzo-home-content.is-expanded .enzo-home-content__inner::after {
	opacity: 0;
}

.enzo-home-content__toggle:not([hidden]) {
	position: relative;
	z-index: 1;
	display: inline-flex;
	margin-top: 24px;
}

.page-template-template-home .enzo-home-content .enzo-home-content__toggle:not([hidden]) {
	margin-top: 8px;
}

@media (max-width: 768px) {
	.enzo-home-content__inner {
		max-height: 200px;
	}

	.page-template-template-home .content-section:has(+ .home-cta-overlap) {
		padding-top: clamp(36px, 8vw, 76px);
		padding-bottom: clamp(108px, 16vw, 136px);
	}

	.home-cta-overlap:not(:has(+ .enzo-home-content)) {
		padding-bottom: 64px;
	}

	.home-cta-overlap .cta-panel {
		transform: translateY(-32px);
		margin-bottom: -32px;
	}

	.page-template-template-home .enzo-home-content {
		padding-top: 8px;
		padding-bottom: 80px;
	}
}

.enzo-page-content > .product-category-seo-content,
.product-category-seo-content {
	margin-top: 72px;
	padding-top: 48px;
	padding-bottom: 48px;
	border-top: 1px solid var(--border);
}

.product-category-seo-content__inner {
	width: 100%;
	max-width: none;
	color: var(--text);
	font-size: 16px;
	line-height: 1.85;
}

.product-category-seo-content__inner h2 {
	margin: 0 0 18px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.03em;
}

.product-category-seo-content__inner h3 {
	margin: 28px 0 14px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.product-category-seo-content__inner p {
	margin: 0 0 18px;
	max-width: 100%;
	color: var(--muted);
}

.product-category-seo-content__inner ul,
.product-category-seo-content__inner ol {
	margin: 18px 0;
	padding-left: 22px;
	color: var(--muted);
}

.product-category-seo-content__inner li + li {
	margin-top: 8px;
}

.product-category-seo-content__inner a {
	color: var(--primary);
	font-weight: 700;
}

@media (max-width: 768px) {
	.enzo-page-content > .product-category-seo-content,
	.product-category-seo-content {
		margin-top: 48px;
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.product-category-seo-content__inner {
		font-size: 15px;
	}

	.product-category-seo-content__inner h2 {
		font-size: 24px;
	}

	.product-category-seo-content__inner h3 {
		font-size: 18px;
	}
}

.enzo-video-modal[hidden] {
	display: none;
}

.enzo-video-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.enzo-video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(4px);
}

.enzo-video-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	overflow: hidden;
	border-radius: 20px;
	background: #000;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.enzo-video-modal__content {
	aspect-ratio: 16 / 9;
	background: #000;
}

.enzo-video-modal__content iframe,
.enzo-video-modal__content video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.enzo-video-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #111;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

body.is-video-modal-open {
	overflow: hidden;
}

@media (max-width: 768px) {
	.enzo-video-modal {
		padding: 16px;
	}

	.enzo-video-modal__dialog {
		border-radius: 16px;
	}

	.enzo-video-modal__close {
		width: 36px;
		height: 36px;
		font-size: 22px;
	}
}
