:root {
	--forest: #173724;
	--deep-forest: #0e2418;
	--olive: #8b7c5a;
	--moss: #5d7651;
	--earth: #b79a6b;
	--paper: #f7f5ef;
	--stone: #e7e1d5;
	--ink: #162019;
	--muted: #667066;
	--white: #ffffff;
	--shadow: 0 18px 48px rgba(14, 36, 24, 0.12);
	--max: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
	top: 32px;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 84px;
	padding: 12px max(22px, calc((100% - var(--max)) / 2));
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(139, 124, 90, 0.22);
	backdrop-filter: blur(14px);
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.brand__logo {
	width: 176px;
	height: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 22px;
	color: var(--forest);
	font-size: 0.94rem;
	font-weight: 700;
}

.site-nav a {
	padding: 8px 0;
	border-bottom: 2px solid transparent;
	white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	border-bottom-color: var(--olive);
}

.section-band {
	width: 100%;
}

.section-inner {
	width: min(var(--max), calc(100% - 44px));
	margin-inline: auto;
}

.hero {
	padding: 56px 0 34px;
	background: var(--paper);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
	align-items: center;
	gap: 56px;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--olive);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	max-width: 720px;
	margin-bottom: 18px;
	color: var(--forest);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 4.4rem;
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: 0;
}

h2 {
	margin-bottom: 18px;
	color: var(--forest);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2.45rem;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

h3 {
	margin-bottom: 10px;
	color: var(--forest);
	font-size: 1.1rem;
	line-height: 1.25;
	letter-spacing: 0;
}

.hero-lede {
	max-width: 640px;
	margin-bottom: 26px;
	color: #3f4b42;
	font-size: 1.12rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-weight: 800;
	line-height: 1;
	transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button-primary {
	background: var(--forest);
	color: var(--white);
}

.button-secondary {
	background: var(--white);
	border-color: rgba(139, 124, 90, 0.45);
	color: var(--forest);
}

.photo-slot {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 240px;
	overflow: hidden;
	background: var(--white);
	border: 1px solid rgba(139, 124, 90, 0.34);
	border-radius: 8px;
	box-shadow: var(--shadow);
	color: rgba(23, 55, 36, 0.64);
	font-weight: 800;
	text-align: center;
}

.photo-slot::before,
.photo-slot::after {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(139, 124, 90, 0.2);
	border-radius: 6px;
	pointer-events: none;
}

.photo-slot::after {
	inset: auto;
	width: 52px;
	height: 3px;
	bottom: 28px;
	background: var(--olive);
	border: 0;
	border-radius: 0;
}

.photo-slot span {
	position: relative;
	z-index: 1;
	padding: 0 18px;
}

.hero-slot {
	aspect-ratio: 4 / 3;
	min-height: 430px;
}

.proof-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	margin-top: 44px;
	overflow: hidden;
	border: 1px solid rgba(139, 124, 90, 0.2);
	border-radius: 8px;
	background: rgba(139, 124, 90, 0.24);
}

.proof-strip div {
	padding: 22px 24px;
	background: var(--white);
}

.proof-strip strong,
.proof-strip span {
	display: block;
}

.proof-strip strong {
	color: var(--forest);
	font-size: 1rem;
}

.proof-strip span {
	color: var(--muted);
	font-size: 0.94rem;
}

.production {
	padding: 86px 0;
	background: var(--white);
}

.split-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
	align-items: start;
	gap: 56px;
}

.split-layout p {
	color: var(--muted);
}

.photo-stack {
	display: grid;
	grid-template-columns: 1fr 0.72fr;
	align-items: end;
	gap: 18px;
}

.photo-stack .photo-slot:first-child {
	min-height: 360px;
}

.photo-stack .photo-slot:last-child {
	min-height: 260px;
}

.products {
	padding: 86px 0;
	background: #f0eee6;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 34px;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.product-card,
.step,
.contact-panel {
	background: var(--white);
	border: 1px solid rgba(139, 124, 90, 0.22);
	border-radius: 8px;
}

.product-card {
	padding: 24px;
	min-height: 260px;
}

.product-card p,
.step p,
.contact p {
	color: var(--muted);
}

.card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 22px;
	border: 1px solid rgba(139, 124, 90, 0.45);
	border-radius: 50%;
	color: var(--olive);
	font-size: 0.82rem;
	font-weight: 900;
}

.gallery-band {
	padding: 86px 0;
	background: var(--paper);
}

.placeholder-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.85fr;
	grid-auto-rows: 250px;
	gap: 18px;
}

.placeholder-grid .wide {
	grid-row: span 2;
	min-height: 518px;
}

.process {
	padding: 86px 0;
	background: var(--forest);
	color: var(--white);
}

.process .eyebrow,
.process h2,
.process h3 {
	color: var(--white);
}

.process-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.2fr);
	gap: 48px;
}

.steps {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.step {
	padding: 22px;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
}

.step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-bottom: 18px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	color: #d4c39a;
	font-weight: 900;
}

.step p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.74);
}

.contact {
	padding: 86px 0;
	background: #f0eee6;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	gap: 30px;
}

.contact-copy {
	max-width: 760px;
	margin: 0;
	text-align: left;
}

.contact-panel {
	display: grid;
	grid-template-columns: minmax(250px, 0.78fr) minmax(280px, 1fr);
	align-items: stretch;
	gap: 14px;
	overflow: hidden;
	padding: 16px;
	background: rgba(255, 255, 255, 0.72);
	border-color: rgba(139, 124, 90, 0.24);
	box-shadow: 0 18px 42px rgba(14, 36, 24, 0.08);
}

.contact-details {
	display: grid;
	gap: 10px;
	align-content: stretch;
}

.contact-detail {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	align-items: center;
	gap: 13px;
	min-height: 72px;
	padding: 14px 16px;
	background: var(--white);
	border: 1px solid rgba(139, 124, 90, 0.2);
	border-radius: 8px;
	color: var(--forest);
	text-decoration: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.contact-detail:hover,
.contact-detail:focus-visible {
	border-color: rgba(23, 55, 36, 0.34);
	box-shadow: 0 12px 28px rgba(14, 36, 24, 0.1);
	transform: translateY(-1px);
}

.contact-detail__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: rgba(23, 55, 36, 0.08);
	border: 1px solid rgba(23, 55, 36, 0.12);
	border-radius: 8px;
	color: var(--forest);
	font-size: 1rem;
}

.contact-detail small {
	display: block;
	margin-bottom: 5px;
	color: var(--olive);
	font-size: 0.84rem;
	font-weight: 800;
}

.contact-detail strong {
	display: block;
	color: var(--forest);
	font-size: 1rem;
	line-height: 1.35;
	word-break: break-word;
}

.contact-detail__meta {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.82rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.35;
}

.contact-map {
	position: relative;
	min-height: 240px;
	overflow: hidden;
	background: #e5e2d7;
	border: 1px solid rgba(139, 124, 90, 0.24);
	border-radius: 8px;
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 250px;
	border: 0;
	filter: saturate(0.9) contrast(1.02);
}

.contact-map__brand-pin {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: grid;
	place-items: start center;
	width: 68px;
	height: 78px;
	transform: translate(-50%, -88%);
	text-decoration: none;
	filter: drop-shadow(0 12px 18px rgba(14, 36, 24, 0.24));
}

.contact-map__brand-pin::after {
	content: "";
	position: absolute;
	bottom: 12px;
	left: 50%;
	z-index: 0;
	width: 18px;
	height: 18px;
	background: #fff;
	border-right: 2px solid rgba(23, 55, 36, 0.22);
	border-bottom: 2px solid rgba(23, 55, 36, 0.22);
	border-radius: 0 0 4px;
	transform: translateX(-50%) rotate(45deg);
}

.contact-map__brand-pin span {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	padding: 7px;
	background: #fff;
	border: 2px solid rgba(23, 55, 36, 0.18);
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(139, 124, 90, 0.14);
	transition: transform 180ms ease, border-color 180ms ease;
}

.contact-map__brand-pin img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 50%;
}

.contact-map__brand-pin:hover span,
.contact-map__brand-pin:focus-visible span {
	border-color: rgba(23, 55, 36, 0.42);
	transform: translateY(-2px);
}

.contact-map__brand-pin:focus-visible {
	outline: 3px solid rgba(139, 124, 90, 0.34);
	outline-offset: 5px;
	border-radius: 999px;
}

.site-footer {
	background: var(--deep-forest);
	color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	width: min(var(--max), calc(100% - 44px));
	margin-inline: auto;
	padding: 34px 0;
}

.footer-logo {
	width: 150px;
	margin-bottom: 12px;
	background: var(--white);
	border-radius: 6px;
}

.footer-inner p {
	margin-bottom: 0;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	color: var(--white);
	font-weight: 700;
}

/* UAE header and footer templates */
.site-top-anchor {
	position: absolute;
	top: 0;
}

#masthead,
#masthead.ehf-header,
body.ehf-header #masthead {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	z-index: 30;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(139, 124, 90, 0.22);
	backdrop-filter: blur(14px);
}

body.ehf-header {
	padding-top: 74px;
}

.bostan-hfe-header {
	background: rgba(255, 255, 255, 0.96);
}

body.admin-bar #masthead {
	top: 32px;
}

.bostan-hfe-header .elementor-container,
.elementor-1259 .elementor-element-bbh1001 .elementor-container {
	width: min(var(--max), calc(100% - 44px));
	min-height: 74px;
	margin-inline: auto;
}

.bostan-hfe-header .elementor-column,
.bostan-hfe-header .elementor-widget-wrap,
.elementor-1259 .elementor-element-bbh1001 .elementor-column,
.elementor-1259 .elementor-element-bbh1001 .elementor-widget-wrap {
	align-content: center;
	align-items: center;
}

.bostan-hfe-header .hfe-site-logo img,
.bostan-hfe-header .bostan-header-logo img,
.elementor-1259 .hfe-site-logo img,
.elementor-1259 .bostan-header-logo img {
	width: min(250px, 100%);
	max-height: 58px;
	object-fit: contain;
}

.bostan-hfe-header .hfe-nav-menu .hfe-menu-item,
.elementor-1259 .hfe-nav-menu .hfe-menu-item {
	color: var(--forest);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0;
}

.bostan-hfe-header .hfe-nav-menu .hfe-menu-item:hover,
.bostan-hfe-header .hfe-nav-menu .current-menu-item > .hfe-menu-item,
.elementor-1259 .hfe-nav-menu .hfe-menu-item:hover,
.elementor-1259 .hfe-nav-menu .current-menu-item > .hfe-menu-item {
	color: var(--olive);
}

.bostan-hfe-header .hfe-nav-menu__toggle,
.elementor-1259 .hfe-nav-menu__toggle {
	color: var(--forest);
}

.footer-width-fixer {
	width: 100%;
}

.bostan-hfe-footer,
.bostan-hfe-footer-bottom,
.elementor-1260 .elementor-element-bbf2001,
.elementor-1260 .elementor-element-bbf3001 {
	background: #0b1f16;
	color: rgba(255, 255, 255, 0.76);
}

.bostan-hfe-footer,
.elementor-1260 .elementor-element-bbf2001 {
	position: relative;
	padding: 36px 0 48px !important;
	overflow: hidden;
}

.bostan-hfe-footer::before,
.elementor-1260 .elementor-element-bbf2001::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	background:
		linear-gradient(90deg, rgba(228, 210, 169, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.bostan-hfe-footer .elementor-container,
.bostan-hfe-footer-bottom .elementor-container,
.elementor-1260 .elementor-element-bbf2001 .elementor-container,
.elementor-1260 .elementor-element-bbf3001 .elementor-container {
	width: min(var(--max), calc(100% - 44px));
	margin-inline: auto;
}

.bostan-hfe-footer .elementor-column,
.elementor-1260 .elementor-element-bbf2001 .elementor-column {
	min-height: 0;
}

.bostan-hfe-footer .elementor-widget-wrap,
.elementor-1260 .elementor-element-bbf2001 .elementor-widget-wrap {
	align-content: flex-start;
}

.bostan-hfe-footer .elementor-heading-title,
.elementor-1260 .elementor-element-bbf2001 .elementor-heading-title {
	margin-bottom: 14px;
	color: var(--white);
	font-family: "Segoe UI", Arial, sans-serif;
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0;
}

.bostan-hfe-footer .elementor-widget-text-editor,
.bostan-hfe-footer .elementor-widget-text-editor p,
.elementor-1260 .elementor-element-bbf2001 .elementor-widget-text-editor,
.elementor-1260 .elementor-element-bbf2001 .elementor-widget-text-editor p {
	color: rgba(255, 255, 255, 0.76);
}

.bostan-footer-copy {
	max-width: 340px;
	margin: 14px 0 18px;
}

.bostan-footer-corporate {
	position: relative;
}

.bostan-footer-brand-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.bostan-footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--white);
}

.bostan-footer-seal {
	display: inline-flex;
	flex: 0 0 54px;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	background: #ffffff;
	border: 1px solid rgba(228, 210, 169, 0.34);
	border-radius: 999px;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
	overflow: hidden;
}

.bostan-footer-seal img {
	width: 46px;
	height: 46px;
	object-fit: contain;
	border-radius: 999px;
}

.bostan-footer-brand-text strong {
	display: block;
	color: var(--white);
	font-size: 1.08rem;
	font-weight: 950;
	line-height: 1.1;
}

.bostan-footer-brand-text small {
	display: block;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.35;
}

.bostan-footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px 20px;
	margin: 0;
}

.bostan-footer-nav a {
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1.2;
}

.bostan-footer-nav a:hover,
.bostan-footer-nav a:focus-visible,
.bostan-hfe-footer a:hover,
.bostan-hfe-footer a:focus-visible,
.elementor-1260 .elementor-element-bbf2001 a:hover,
.elementor-1260 .elementor-element-bbf2001 a:focus-visible {
	color: #e4d2a9;
}

.bostan-footer-board {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 12px;
	margin-top: 18px;
}

.bostan-footer-panel {
	height: 100%;
	min-height: 0;
	padding: 14px 15px;
	background: rgba(255, 255, 255, 0.065);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.bostan-footer-panel h3 {
	margin: 0 0 9px;
	color: #e4d2a9;
	font-size: 0.72rem;
	font-weight: 950;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bostan-footer-lines {
	display: grid;
	gap: 7px;
}

.bostan-footer-lines a,
.bostan-footer-lines div {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.86rem;
	font-weight: 800;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.bostan-footer-lines i,
.bostan-footer-hours-head i {
	display: inline-flex;
	flex: 0 0 26px;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	color: #e4d2a9;
	background: rgba(228, 210, 169, 0.1);
	border: 1px solid rgba(228, 210, 169, 0.22);
	border-radius: 7px;
	font-size: 0.78rem;
}

.bostan-footer-hours-list {
	display: grid;
	gap: 6px;
}

.bostan-footer-hours-list p {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	margin: 0;
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.84rem;
	font-weight: 700;
}

.bostan-footer-hours-list p:last-child {
	border-bottom: 0;
}

.bostan-footer-hours-list strong {
	color: var(--white);
	font-weight: 900;
	text-align: right;
}

.bostan-footer-panel-social p {
	margin: 0 0 10px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.5;
}

.bostan-footer-social {
	display: flex;
	gap: 8px;
}

.bostan-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: var(--white);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 7px;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.bostan-footer-social a:hover,
.bostan-footer-social a:focus-visible {
	color: var(--white);
	background: rgba(228, 210, 169, 0.18);
	border-color: rgba(228, 210, 169, 0.44);
	transform: translateY(-2px);
}

.bostan-hfe-footer-bottom,
.elementor-1260 .elementor-element-bbf3001 {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 26px 0 18px !important;
}

.bostan-hfe-footer-bottom .hfe-copyright-wrapper,
.bostan-hfe-footer-bottom .hfe-copyright-wrapper a,
.elementor-1260 .elementor-element-bbf3001 .hfe-copyright-wrapper,
.elementor-1260 .elementor-element-bbf3001 .hfe-copyright-wrapper a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.84rem;
	font-weight: 700;
	text-align: center;
}

.elementor-1260 .elementor-element-bbf3001 .elementor-widget-container {
	text-align: center;
}

@media (max-width: 1020px) {
	#masthead .elementor-container,
	.bostan-hfe-header .elementor-container,
	.bostan-hfe-footer .elementor-container,
	.bostan-hfe-footer-bottom .elementor-container,
	.elementor-1259 .elementor-element-bbh1001 .elementor-container,
	.elementor-1260 .elementor-element-bbf2001 .elementor-container,
	.elementor-1260 .elementor-element-bbf3001 .elementor-container {
		width: min(100% - 36px, var(--max));
	}

	.bostan-hfe-header .hfe-nav-menu__layout-horizontal,
	.elementor-1259 .hfe-nav-menu__layout-horizontal {
		width: 100%;
	}

	.bostan-hfe-footer .elementor-column,
	.elementor-1260 .elementor-element-bbf2001 .elementor-column {
		width: 100%;
	}

	.bostan-footer-nav {
		justify-content: flex-start;
		margin-top: 20px;
	}

	.bostan-footer-brand-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.bostan-footer-board {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	body.admin-bar #masthead {
		top: 46px;
	}

	#masthead .elementor-container,
	.bostan-hfe-header .elementor-container,
	.bostan-hfe-footer .elementor-container,
	.bostan-hfe-footer-bottom .elementor-container,
	.elementor-1259 .elementor-element-bbh1001 .elementor-container,
	.elementor-1260 .elementor-element-bbf2001 .elementor-container,
	.elementor-1260 .elementor-element-bbf3001 .elementor-container {
		width: min(100% - 30px, var(--max));
	}

	.bostan-hfe-header .hfe-site-logo img,
	.bostan-hfe-header .bostan-header-logo img,
	.elementor-1259 .hfe-site-logo img,
	.elementor-1259 .bostan-header-logo img {
		width: min(190px, 100%);
		max-height: 48px;
	}

	.bostan-hfe-footer,
	.elementor-1260 .elementor-element-bbf2001 {
		padding: 34px 0 42px !important;
	}

	.bostan-hfe-footer .elementor-column,
	.elementor-1260 .elementor-element-bbf2001 .elementor-column {
		width: 100%;
	}

	.bostan-footer-copy {
		max-width: none;
	}

	.bostan-footer-nav {
		gap: 8px 16px;
		margin-bottom: 14px;
	}

	.bostan-footer-brand {
		align-items: flex-start;
	}

	.bostan-footer-seal {
		flex-basis: 50px;
		width: 50px;
		height: 50px;
	}

	.bostan-footer-seal img {
		width: 42px;
		height: 42px;
	}

	.bostan-footer-panel {
		min-height: 0;
		padding: 15px;
	}

	.bostan-footer-lines a,
	.bostan-footer-lines div,
	.bostan-footer-hours-list p,
	.bostan-footer-panel-social p {
		font-size: 0.84rem;
	}
}

.page-shell {
	min-height: 58vh;
	padding: 72px 0;
	background: var(--white);
}

.content-page {
	max-width: 820px;
}

.archive-item {
	padding: 22px 0;
	border-bottom: 1px solid var(--stone);
}

@media (max-width: 1020px) {
	.site-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.site-nav {
		justify-content: flex-start;
		width: 100%;
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.hero-grid,
	.split-layout,
	.process-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-panel {
		grid-template-columns: minmax(250px, 0.78fr) minmax(280px, 1fr);
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	h1 {
		font-size: 3.6rem;
	}

	.hero-slot {
		min-height: 350px;
	}
}

@media (max-width: 720px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.site-header {
		min-height: auto;
		padding: 10px 18px;
	}

	.brand__logo {
		width: 142px;
	}

	.section-inner {
		width: min(100% - 30px, var(--max));
	}

	.hero,
	.production,
	.products,
	.gallery-band,
	.process,
	.contact {
		padding: 54px 0;
	}

	h1 {
		font-size: 2.8rem;
	}

	h2 {
		font-size: 1.9rem;
	}

	.hero-lede {
		font-size: 1rem;
	}

	.button {
		width: 100%;
	}

	.hero-slot {
		min-height: 290px;
	}

	.proof-strip,
	.product-grid,
	.steps,
	.placeholder-grid,
	.photo-stack {
		grid-template-columns: 1fr;
	}

	.placeholder-grid {
		grid-auto-rows: auto;
	}

	.placeholder-grid .wide,
	.placeholder-grid .photo-slot,
	.photo-stack .photo-slot:first-child,
	.photo-stack .photo-slot:last-child {
		min-height: 235px;
	}

	.footer-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.contact-panel {
		grid-template-columns: 1fr;
	}

	.contact-map,
	.contact-map iframe {
		min-height: 230px;
	}
}

/* Bostan Botanik 2026 refresh */
.site-header {
	min-height: 62px;
	padding-block: 7px;
}

.brand__logo {
	width: 154px;
	max-height: 74px;
	object-fit: contain;
}

.site-nav {
	gap: 20px;
	font-size: 0.9rem;
}

.hero {
	padding: 52px 0 62px;
}

.hero-grid {
	grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.86fr);
	gap: 46px;
}

.hero h1 {
	font-size: 3.95rem;
	line-height: 1.02;
}

.hero-slot {
	min-height: 360px;
}

.garden-intro,
.products-preview,
.catalog-section,
.quote-section {
	padding: 78px 0;
}

.garden-intro,
.catalog-section {
	background: var(--white);
}

.products-preview {
	background: #f0eee6;
}

.corporate {
	padding: 26px 0 76px;
	background: #f0eee6;
}

.compact-split {
	grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
	align-items: center;
}

.intro-slot {
	min-height: 340px;
}

.mini-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.mini-facts span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	background: var(--paper);
	border: 1px solid rgba(139, 124, 90, 0.3);
	border-radius: 999px;
	color: var(--forest);
	font-size: 0.88rem;
	font-weight: 800;
}

.section-head-row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
}

.section-head-row h2 {
	margin-bottom: 0;
}

.cover-grid,
.catalog-grid {
	display: grid;
	gap: 18px;
}

.cover-grid {
	grid-template-columns: repeat(4, 1fr);
}

.product-carousel {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 42px;
	align-items: center;
	gap: 18px;
}

.product-carousel__viewport {
	overflow: hidden;
	min-width: 0;
	padding: 2px 0 8px;
}

.product-carousel__track.cover-grid {
	display: flex;
	grid-template-columns: none;
	gap: 18px;
	transform: translateX(0);
	will-change: transform;
}

.product-carousel__track.is-animating {
	transition: transform 0.42s ease;
}

.product-carousel__item {
	flex: 0 0 calc((100% - 54px) / 4);
	min-width: 0;
	align-self: stretch;
}

.cover-card,
.catalog-card,
.quote-form {
	background: var(--white);
	border: 1px solid rgba(139, 124, 90, 0.22);
	border-radius: 8px;
	box-shadow: 0 12px 34px rgba(14, 36, 24, 0.08);
}

.cover-card {
	padding: 16px 16px 20px;
}

.product-photo {
	min-height: 170px;
	margin-bottom: 18px;
	box-shadow: none;
}

.cover-card h3,
.catalog-card h2 {
	margin-bottom: 8px;
}

.cover-card p,
.catalog-card p,
.catalog-card li,
.quote-grid p {
	color: var(--muted);
}

.page-hero {
	padding: 58px 0 64px;
	background: var(--paper);
}

.page-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
	align-items: center;
	gap: 46px;
}

.page-hero h1 {
	font-size: 3.3rem;
}

.page-hero-slot {
	min-height: 300px;
}

.catalog-grid {
	grid-template-columns: repeat(3, 1fr);
}

.catalog-card {
	padding: 18px;
}

.catalog-photo {
	min-height: 190px;
	margin-bottom: 18px;
	box-shadow: none;
}

.catalog-card h2 {
	font-size: 1.65rem;
}

.catalog-card ul {
	margin: 16px 0 0;
	padding-left: 18px;
}

.quote-section {
	background: var(--white);
	color: var(--ink);
}

.quote-section h2,
.quote-section h3,
.quote-section .eyebrow {
	color: var(--forest);
}

.quote-shell {
	max-width: 920px;
}

.quote-form {
	display: grid;
	gap: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	color: var(--ink);
}

.quote-page-head {
	margin-bottom: 28px;
}

.quote-page-head h1 {
	margin: 0;
	color: var(--forest);
	font-size: 3.15rem;
	line-height: 1.05;
}

.quote-form h2,
.quote-form h3 {
	color: var(--forest);
}

.form-block {
	display: grid;
	gap: 16px;
	padding: 24px;
	border: 1px solid rgba(139, 124, 90, 0.2);
	border-radius: 8px;
	background: var(--white);
}

.form-section-title {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.2;
}

.icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: var(--forest);
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.icon-button:disabled {
	opacity: 0.42;
	cursor: default;
}

.quote-items {
	display: grid;
	gap: 12px;
}

.quote-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 150px;
	gap: 12px;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.quote-form label {
	display: grid;
	gap: 6px;
	color: var(--forest);
	font-size: 0.86rem;
	font-weight: 800;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
	width: 100%;
	border: 1px solid rgba(139, 124, 90, 0.34);
	border-radius: 6px;
	background: var(--paper);
	color: var(--ink);
	font: inherit;
	padding: 11px 12px;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
	border-color: var(--forest);
	box-shadow: 0 0 0 3px rgba(23, 55, 36, 0.12);
	outline: 0;
}

.quote-form label strong {
	color: #9b2f23;
	font-size: 1rem;
}

.quote-form textarea {
	resize: vertical;
}

.quote-form .full {
	grid-column: 1 / -1;
}

.quote-submit {
	width: 100%;
	min-height: 50px;
}

.quote-submit:disabled {
	opacity: 0.48;
	cursor: default;
	transform: none;
}

.form-notice {
	padding: 12px 14px;
	border-radius: 6px;
	font-weight: 800;
}

.form-notice.success {
	background: #e4f2e7;
	color: #174b2b;
}

.form-notice.error {
	background: #f7e2dd;
	color: #7c2a20;
}

@media (max-width: 1020px) {
	.cover-grid,
	.catalog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-carousel__item {
		flex-basis: calc((100% - 18px) / 2);
	}

	.page-hero-grid,
	.quote-grid {
		grid-template-columns: 1fr;
	}

	.quote-grid {
		gap: 28px;
	}
}

@media (max-width: 720px) {
	.site-header {
		gap: 8px;
	}

	.brand__logo {
		width: 126px;
		max-height: 60px;
	}

	.hero h1,
	.page-hero h1 {
		font-size: 2.35rem;
	}

	.hero-slot,
	.intro-slot,
	.page-hero-slot {
		min-height: 240px;
	}

	.garden-intro,
	.products-preview,
	.catalog-section,
	.quote-section {
		padding: 54px 0;
	}

	.section-head-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.cover-grid,
	.catalog-grid,
	.quote-row,
	.form-grid {
		grid-template-columns: 1fr;
	}

	.product-carousel {
		grid-template-columns: 36px minmax(0, 1fr) 36px;
		gap: 10px;
	}

	.product-carousel__item {
		flex-basis: 100%;
	}

	.product-photo,
	.catalog-photo {
		min-height: 190px;
	}
}

/* Bostan Botanik 2026 three-page structure */
.home-hero h1 {
	font-size: 4.45rem;
}

.home-hero .hero-lede {
	max-width: 680px;
}

.hero-photo::before {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 239, 0.92)),
		linear-gradient(135deg, rgba(23, 55, 36, 0.12), rgba(139, 124, 90, 0.14));
}

.cover-card a {
	display: block;
	height: 100%;
}

.quote-cta {
	padding: 78px 0;
	background: var(--white);
	color: var(--forest);
}

.quote-cta-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 34px;
}

.quote-cta h2,
.quote-cta .eyebrow {
	color: var(--forest);
}

.quote-cta p {
	max-width: 900px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 1.08rem;
	line-height: 1.72;
}

.catalog-intro {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
}

.catalog-intro h2 {
	margin-bottom: 0;
}

.product-card {
	overflow: hidden;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card.is-open {
	border-color: rgba(23, 55, 36, 0.42);
	box-shadow: 0 20px 48px rgba(14, 36, 24, 0.14);
	transform: translateY(-2px);
}

.product-card__trigger {
	display: grid;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.stock-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-bottom: 15px;
}

.stock-row span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 10px;
	border: 1px solid rgba(139, 124, 90, 0.26);
	border-radius: 6px;
	background: var(--paper);
	color: var(--forest);
	font-size: 0.8rem;
	font-weight: 800;
}

.product-card__title {
	display: block;
	margin-bottom: 8px;
	color: var(--forest);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.65rem;
	font-weight: 700;
	line-height: 1.15;
}

.product-card__summary {
	display: block;
	color: var(--muted);
}

.product-card__hint {
	display: inline-flex;
	width: fit-content;
	margin-top: 16px;
	color: var(--olive);
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
}

.product-card__details {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(139, 124, 90, 0.24);
}

.product-card__details ul {
	margin: 14px 0 18px;
	padding-left: 18px;
}

.quote-page-section {
	padding: 76px 0 86px;
	background: var(--white);
}

.quote-aside {
	position: sticky;
	top: 118px;
}

.quote-steps {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}

.quote-steps span {
	display: block;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.86);
	font-weight: 800;
}

.quote-form select {
	width: 100%;
	border: 1px solid rgba(139, 124, 90, 0.34);
	border-radius: 6px;
	background: var(--paper);
	color: var(--ink);
	font: inherit;
	padding: 11px 12px;
}

@media (max-width: 1020px) {
	.quote-cta-grid,
	.catalog-intro {
		align-items: flex-start;
		grid-template-columns: 1fr;
	}

	.quote-aside {
		position: static;
	}
}

@media (max-width: 720px) {
	.home-hero h1 {
		font-size: 2.7rem;
	}

	.quote-cta-grid,
	.catalog-intro {
		display: flex;
		flex-direction: column;
	}

	.stock-row {
		grid-template-columns: 1fr;
	}
}

/* WooCommerce catalog */
.woo-section {
	padding: 76px 0;
	background: var(--white);
}

.woo-shell .woocommerce {
	width: 100%;
}

.woo-shell ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
	padding: 0;
}

.woo-shell ul.products::before,
.woo-shell ul.products::after {
	display: none;
}

.woo-shell ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	padding: 18px;
	border: 1px solid rgba(139, 124, 90, 0.22);
	border-radius: 8px;
	background: var(--white);
	box-shadow: 0 12px 34px rgba(14, 36, 24, 0.08);
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.woo-shell ul.products li.product:hover {
	border-color: rgba(23, 55, 36, 0.38);
	box-shadow: 0 18px 42px rgba(14, 36, 24, 0.13);
	transform: translateY(-2px);
}

.woo-shell ul.products li.product a img {
	aspect-ratio: 4 / 3;
	width: 100%;
	height: auto;
	margin: 0 0 18px;
	border: 1px solid rgba(139, 124, 90, 0.2);
	border-radius: 8px;
	background: var(--paper);
	object-fit: cover;
}

.woocommerce-loop-product__title {
	color: var(--forest);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.55rem;
	line-height: 1.15;
}

.woo-stock-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 10px 0 16px;
}

.woo-stock-row span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 10px;
	border: 1px solid rgba(139, 124, 90, 0.26);
	border-radius: 6px;
	background: var(--paper);
	color: var(--forest);
	font-size: 0.8rem;
	font-weight: 800;
}

.woo-quote-link {
	width: 100%;
	margin-top: 4px;
	text-align: center;
}

.woocommerce nav.woocommerce-pagination {
	margin-top: 34px;
}

.woocommerce nav.woocommerce-pagination ul {
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
	margin: 0 3px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	border-radius: 6px;
	color: var(--forest);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--forest);
	color: var(--white);
}

.woo-single-section .product {
	display: grid;
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
}

.woocommerce div.product div.images img {
	border: 1px solid rgba(139, 124, 90, 0.22);
	border-radius: 8px;
	background: var(--paper);
}

.woocommerce div.product .product_title {
	color: var(--forest);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 3rem;
	line-height: 1.08;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .summary p {
	color: var(--muted);
}

.single-quote-box {
	margin-top: 24px;
}

.woocommerce-tabs {
	grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border-radius: 6px 6px 0 0;
}

@media (max-width: 1020px) {
	.woo-shell ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woo-single-section .product {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.woo-section {
		padding: 54px 0;
	}

	.woo-shell ul.products {
		grid-template-columns: 1fr;
	}

	.woo-stock-row {
		grid-template-columns: 1fr;
	}

	.woocommerce div.product .product_title {
		font-size: 2.25rem;
	}
}

/* Home hero image cover */
.home-hero--image {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 620px;
	padding: 112px 0 118px;
	overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--white);
}

.home-hero--image::before {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(90deg, rgba(8, 28, 18, 0.86) 0%, rgba(8, 28, 18, 0.68) 42%, rgba(8, 28, 18, 0.22) 100%),
		linear-gradient(0deg, rgba(8, 28, 18, 0.4) 0%, rgba(8, 28, 18, 0.05) 48%, rgba(8, 28, 18, 0.24) 100%);
}

.home-hero__content {
	position: relative;
	z-index: 1;
	max-width: 740px;
}

.home-hero--image .eyebrow {
	color: #e4d2a9;
	text-shadow: 0 1px 16px rgba(0, 0, 0, 0.24);
}

.home-hero--image h1 {
	max-width: 760px;
	margin-bottom: 20px;
	color: var(--white);
	font-size: 4.8rem;
	text-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.home-hero--image .hero-lede {
	max-width: 650px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.24rem;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.home-hero--image .button-primary {
	background: var(--white);
	color: var(--forest);
}

.home-hero--image .button-secondary {
	border-color: rgba(255, 255, 255, 0.72);
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
}

.home-hero--image .button-secondary:hover,
.home-hero--image .button-secondary:focus-visible {
	background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1020px) {
	.home-hero--image {
		min-height: 560px;
		background-position: center right;
	}

	.home-hero--image h1 {
		font-size: 4rem;
	}
}

@media (max-width: 720px) {
	.home-hero--image {
		min-height: 540px;
		padding: 82px 0;
		background-position: 58% center;
	}

	.home-hero--image::before {
		background:
			linear-gradient(90deg, rgba(8, 28, 18, 0.88) 0%, rgba(8, 28, 18, 0.72) 65%, rgba(8, 28, 18, 0.48) 100%),
			linear-gradient(0deg, rgba(8, 28, 18, 0.42), rgba(8, 28, 18, 0.16));
	}

	.home-hero--image h1 {
		font-size: 3rem;
	}

	.home-hero--image .hero-lede {
		font-size: 1.05rem;
	}
}

/* Home page section refinements */
.intro-image,
.intro-slider {
	min-height: 390px;
	border: 1px solid rgba(139, 124, 90, 0.22);
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(14, 36, 24, 0.12);
}

.intro-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.intro-slider {
	position: relative;
	overflow: hidden;
	background: var(--white);
}

.intro-slider__viewport,
.intro-slider__slide {
	position: absolute;
	inset: 0;
}

.intro-slider__slide {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.intro-slider__slide.is-active {
	opacity: 1;
}

.intro-slider__control,
.product-carousel__control {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(139, 124, 90, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 24px rgba(14, 36, 24, 0.16);
	color: var(--forest);
	padding: 0;
	transform: translateY(-50%);
	cursor: pointer;
}

.product-carousel__control {
	position: relative;
	top: auto;
	transform: none;
}

.intro-slider__control::before,
.product-carousel__control::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.intro-slider__control:hover,
.intro-slider__control:focus-visible,
.product-carousel__control:hover,
.product-carousel__control:focus-visible {
	background: var(--forest);
	color: var(--white);
}

.intro-slider__control:focus-visible,
.product-carousel__control:focus-visible {
	outline: 3px solid rgba(65, 121, 80, 0.26);
	outline-offset: 3px;
}

.intro-slider__control--prev {
	left: 14px;
}

.intro-slider__control--prev::before,
.product-carousel__control--prev::before {
	transform: translateX(2px) rotate(135deg);
}

.intro-slider__control--next {
	right: 14px;
}

.intro-slider__control--next::before,
.product-carousel__control--next::before {
	transform: translateX(-2px) rotate(-45deg);
}

.garden-intro__title {
	max-width: 700px;
	margin-bottom: 16px;
	color: var(--forest);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 3.35rem;
	line-height: 1.05;
}

.garden-intro__headline {
	max-width: 700px;
	margin: 0 0 18px;
	color: var(--forest);
	font-size: 1.85rem;
	font-weight: 800;
	line-height: 1.2;
}

.garden-intro__body {
	max-width: 720px;
	font-size: 1.05rem;
}

.section-title-row {
	margin-bottom: 34px;
	text-align: left;
}

.section-title-row h2,
.quote-cta-stack h2,
.contact h2 {
	margin-bottom: 0;
	color: var(--forest);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 3.35rem;
	line-height: 1.05;
}

.centered-action {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.quote-cta-stack {
	display: grid;
	justify-items: stretch;
	gap: 18px;
	max-width: none;
	text-align: left;
}

.quote-cta-stack h2 {
	color: var(--forest);
}

.quote-cta-stack p {
	max-width: 900px;
	margin: 0;
	color: var(--muted);
	font-size: 1.1rem;
	line-height: 1.72;
	text-align: left;
}

.quote-cta-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.quote-cta-content .button {
	flex: 0 0 auto;
}

.contact h2 {
	margin-bottom: 18px;
}

.contact p {
	max-width: 680px;
	margin-inline: 0;
	font-size: 1.05rem;
}

@media (max-width: 1020px) {
	.intro-image,
	.intro-slider {
		min-height: 330px;
	}

	.garden-intro__title,
	.section-title-row h2,
	.quote-cta-stack h2,
	.contact h2 {
		font-size: 2.75rem;
	}

	.garden-intro__headline {
		font-size: 1.55rem;
	}
}

@media (max-width: 720px) {
	.intro-image,
	.intro-slider {
		min-height: 260px;
	}

	.intro-slider__control,
	.product-carousel__control {
		width: 36px;
		height: 36px;
	}

	.intro-slider__control::before,
	.product-carousel__control::before {
		width: 9px;
		height: 9px;
	}

	.garden-intro__title,
	.section-title-row h2,
	.quote-cta-stack h2,
	.contact h2 {
		font-size: 2.2rem;
	}

	.garden-intro__headline {
		font-size: 1.28rem;
	}

	.quote-cta-content {
		display: grid;
		gap: 18px;
	}

	.centered-action .button,
	.quote-cta-stack .button {
		width: 100%;
	}
}

/* Product widget list */
.product-list-head {
	max-width: 760px;
	margin-bottom: 30px;
}

.product-list-head h1 {
	margin-bottom: 12px;
	color: var(--forest);
	font-size: 3.35rem;
}

.product-list-head p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.05rem;
}

.product-widget-list {
	display: grid;
	gap: 14px;
}

.product-widget {
	overflow: hidden;
	border: 1px solid rgba(139, 124, 90, 0.22);
	border-radius: 8px;
	background: var(--white);
	box-shadow: 0 10px 28px rgba(14, 36, 24, 0.07);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.product-widget.is-open {
	border-color: rgba(23, 55, 36, 0.38);
	box-shadow: 0 16px 42px rgba(14, 36, 24, 0.12);
}

.product-widget__toggle {
	display: grid;
	grid-template-columns: 168px minmax(0, 1fr) 188px 188px;
	gap: 18px;
	align-items: center;
	width: 100%;
	padding: 14px;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.product-widget__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	background: var(--paper);
}

.product-widget__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-widget__body {
	display: grid;
	gap: 7px;
}

.product-widget__name {
	color: var(--forest);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.65rem;
	font-weight: 700;
	line-height: 1.15;
}

.product-widget__summary {
	color: var(--muted);
}

.product-widget__hint {
	color: var(--olive);
	font-size: 0.8rem;
	font-weight: 900;
	text-transform: uppercase;
}

.product-widget__photo-date {
	color: #829084;
	font-size: 0.78rem;
	font-weight: 700;
}

.product-widget__price,
.product-widget__stock {
	display: grid;
	justify-items: center;
	align-content: center;
	gap: 4px;
	box-sizing: border-box;
	width: 188px;
	height: 100px;
	padding: 14px 12px;
	border: 1px solid rgba(139, 124, 90, 0.24);
	border-radius: 8px;
	background: var(--paper);
	color: var(--forest);
	text-align: center;
}

.product-widget__price {
	padding-right: 18px;
	padding-left: 18px;
}

.product-widget__meta-label,
.product-widget__stock small {
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.product-widget__price strong,
.product-widget__stock strong {
	font-size: 1.2rem;
}

.product-widget__price strong {
	color: var(--forest);
	font-size: 1.3rem;
	font-weight: 900;
	line-height: 1.08;
	overflow-wrap: anywhere;
}

.product-widget__price .woocommerce-Price-amount {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.product-widget__price del {
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.1;
	text-decoration-thickness: 2px;
}

.product-widget__price ins {
	color: var(--forest);
	font-size: 1.28rem;
	font-weight: 900;
	line-height: 1.08;
	overflow-wrap: anywhere;
	text-decoration: none;
}

.product-widget__stock.is-in-stock {
	border-color: rgba(23, 55, 36, 0.28);
	background: var(--forest);
	color: var(--white);
}

.product-widget__stock.is-in-stock span,
.product-widget__stock.is-in-stock strong,
.product-widget__stock.is-in-stock small {
	color: var(--white);
}

.product-widget__stock.is-available {
	border-color: rgba(183, 154, 107, 0.42);
	background: #c8a663;
	color: #2e2518;
}

.product-widget__stock.is-available span,
.product-widget__stock.is-available strong,
.product-widget__stock.is-available small {
	color: #2e2518;
}

.product-widget__details {
	padding: 0 20px 20px 202px;
	color: var(--muted);
}

.product-widget__details p {
	max-width: 760px;
	margin-bottom: 16px;
}

.product-gallery {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) 38px;
	align-items: center;
	gap: 10px;
	max-width: 650px;
	margin-top: 18px;
}

.product-gallery__track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.product-gallery__track::-webkit-scrollbar {
	display: none;
}

.product-gallery__item {
	flex: 0 0 calc((100% - 24px) / 3);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	padding: 0;
	border: 1px solid rgba(139, 124, 90, 0.22);
	border-radius: 8px;
	background: var(--paper);
	cursor: zoom-in;
	scroll-snap-align: start;
}

.product-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}

.product-gallery__item:hover img,
.product-gallery__item:focus-visible img {
	transform: scale(1.04);
}

.product-gallery__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(139, 124, 90, 0.28);
	border-radius: 50%;
	background: var(--white);
	color: var(--forest);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.product-gallery__nav:disabled {
	opacity: 0.42;
	cursor: default;
}

.product-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 28px;
	background: rgba(8, 28, 18, 0.88);
}

.product-lightbox[hidden] {
	display: none;
}

.product-lightbox figure {
	position: relative;
	width: min(980px, 100%);
	margin: 0;
}

.product-lightbox img {
	width: 100%;
	max-height: 82vh;
	border-radius: 8px;
	object-fit: contain;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.product-lightbox figcaption {
	margin-top: 10px;
	color: var(--white);
	font-weight: 800;
	text-align: center;
}

.product-lightbox__close {
	position: fixed;
	top: 18px;
	right: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	font-size: 1.7rem;
	line-height: 1;
	cursor: pointer;
}

.product-lightbox__nav {
	position: fixed;
	top: 50%;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	color: var(--white);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
}

.product-lightbox__nav--prev {
	left: 24px;
}

.product-lightbox__nav--next {
	right: 24px;
}

.product-lightbox__nav:hover,
.product-lightbox__nav:focus-visible,
.product-lightbox__close:hover,
.product-lightbox__close:focus-visible {
	background: rgba(255, 255, 255, 0.24);
}

body.has-product-lightbox {
	overflow: hidden;
}

.product-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 30px;
}

.product-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 8px 12px;
	border: 1px solid rgba(139, 124, 90, 0.28);
	border-radius: 6px;
	background: var(--white);
	color: var(--forest);
	font-weight: 800;
}

.product-pagination .page-numbers.current {
	background: var(--forest);
	color: var(--white);
}

@media (max-width: 900px) {
	.product-widget__toggle {
		grid-template-columns: 132px minmax(0, 1fr) 188px;
	}

	.product-widget__price {
		grid-column: 2;
		justify-items: start;
		text-align: left;
	}

	.product-widget__stock {
		grid-column: 3;
		justify-items: start;
		text-align: left;
	}

	.product-widget__details {
		padding-left: 166px;
	}
}

@media (max-width: 640px) {
	.product-list-head h1 {
		font-size: 2.45rem;
	}

	.product-widget__toggle {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.product-widget__image {
		width: 100%;
	}

	.product-widget__price,
	.product-widget__stock {
		grid-column: auto;
		width: 100%;
	}

	.product-widget__details {
		padding: 0 14px 18px;
	}

	.product-gallery {
		grid-template-columns: 34px minmax(0, 1fr) 34px;
		gap: 8px;
	}

	.product-gallery__item {
		flex-basis: 78%;
	}

	.product-gallery__nav {
		width: 34px;
		height: 34px;
		font-size: 1.35rem;
	}

	.product-lightbox__nav {
		width: 38px;
		height: 38px;
		font-size: 1.55rem;
	}

	.product-lightbox__nav--prev {
		left: 10px;
	}

	.product-lightbox__nav--next {
		right: 10px;
	}

}
