html,
body {
	overflow-x: hidden;
	max-width: 100vw;
}

:root {
	--site-gutter: clamp(18px, 6vw, 120px);
	--header-height: 90px;
	--admin-bar-offset: 0px;
}

body {
	padding-top: 0;
}

body > #content.site-content.site-content {
	padding-top: var(--header-height);
}

body.admin-bar {
	--admin-bar-offset: 32px;
}

header.site-header {
	position: fixed;
	top: var(--admin-bar-offset);
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
}

.container {
	width: calc(100% - (var(--site-gutter) * 2));
	max-width: none;
	margin-inline: auto;
	padding-inline: 0;
}

body.is-scrolled header.site-header {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar-container {
	flex-wrap: nowrap;
	width: calc(100% - (var(--site-gutter) * 2));
	max-width: none;
	margin-inline: auto;
	padding-inline: 0;
}

.mobile-menu-toggle,
.yithonia-drawer-close {
	position: relative;
	background: transparent;
	border: 0;
	color: #2d2d2d;
	cursor: pointer;
	font-size: 0;
	line-height: 1;
	min-width: 44px;
	min-height: 44px;
	padding: 8px;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.mobile-menu-toggle i,
.mobile-menu-toggle svg,
.mobile-menu-toggle .eicon-menu-bar,
.mobile-menu-toggle .mobile-menu-toggle-lines {
	display: none;
}

.mobile-menu-toggle::before,
.mobile-menu-toggle::after,
.yithonia-drawer-close::before,
.yithonia-drawer-close::after {
	content: "";
	display: block;
	width: 26px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
}

.mobile-menu-toggle::before {
	transform: translateY(-4px);
}

.mobile-menu-toggle::after {
	transform: translateY(4px);
}

.yithonia-drawer-close::before,
.yithonia-drawer-close::after {
	position: absolute;
	left: 50%;
	top: 50%;
}

.yithonia-drawer-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.yithonia-drawer-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.yithonia-mobile-drawer {
	display: none;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.yithonia-search-panel {
	position: fixed;
	top: calc(var(--admin-bar-offset) + var(--header-height) + 12px);
	right: max(24px, calc((100vw - 1360px) / 2));
	z-index: 99999;
	display: none;
	width: min(520px, calc(100vw - 28px));
}

.yithonia-search-panel.is-open {
	display: block;
}

.yithonia-search-dialog {
	position: relative;
	padding: 18px;
	border: 1px solid #d8e0da;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(17, 29, 25, .16);
}

.yithonia-search-dialog::before {
	content: "";
	position: absolute;
	top: -8px;
	right: 28px;
	width: 14px;
	height: 14px;
	border-top: 1px solid #d8e0da;
	border-left: 1px solid #d8e0da;
	background: #fff;
	transform: rotate(45deg);
}

.yithonia-search-close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #4f5f58;
	cursor: pointer;
}

.yithonia-search-close::before,
.yithonia-search-close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
}

.yithonia-search-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.yithonia-search-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.yithonia-search-panel .yithonia-search-form {
	display: block;
	padding: 0;
	border: 0;
}

.yithonia-search-form label {
	display: block;
	margin: 0 28px 10px 0;
	color: #17231f;
	font-size: 15px;
	font-weight: 800;
}

.yithonia-search-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.yithonia-search-row input {
	width: 100%;
	min-height: 46px;
	padding: 0 13px;
	border: 1px solid #cfd8d1;
	border-radius: 6px;
	background: #fff;
	color: #17231f;
	font-size: 15px;
	outline: none;
}

.yithonia-search-row input::placeholder {
	color: #7a8781;
}

.yithonia-search-row button {
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid #24745f;
	border-radius: 6px;
	background: #24745f;
	color: #fff;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: none;
	cursor: pointer;
}

.about {
	position: relative;
	overflow: hidden;
}

.about-grid {
	position: relative;
}

.about-images {
	position: relative;
	min-height: 500px;
}

.about-img-main {
	position: relative;
	z-index: 1;
}

.about-img-main img {
	display: block;
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-radius: 20px;
}

.about-img-float {
	position: absolute;
	bottom: 20px;
	right: 20px;
	left: auto;
	top: auto;
	width: 55%;
	max-width: 320px;
	z-index: 3;
	margin: 0;
}

.about-img-float img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	border: 5px solid #fff;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.story-grid {
	position: relative;
}

.story-block {
	position: relative;
	margin-bottom: 32px;
	padding-left: 80px;
}

.story-block::before {
	content: "";
	position: absolute;
	left: 24px;
	top: 0;
	bottom: -32px;
	width: 2px;
	background: #e5e3dc;
}

.story-block:last-child::before {
	display: none;
}

.story-block::after {
	content: "";
	position: absolute;
	left: 18px;
	top: 6px;
	width: 14px;
	height: 14px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--sage);
	box-shadow: 0 0 0 2px var(--sage);
	z-index: 1;
}

.story-year {
	display: block;
	position: static;
	margin: 0 0 10px;
	padding: 0;
	color: var(--sage);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
}

.story-text {
	margin-top: 0;
}

.story-text h3 {
	margin: 0 0 8px;
	color: #2d2d2d;
	font-size: 18px;
}

.story-text p {
	margin: 0;
	color: #555;
	font-size: 15px;
	line-height: 1.6;
}

.yithonia-product-card h3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	min-height: calc(1.35em * 2);
	margin-bottom: 8px;
	line-height: 1.35;
	text-overflow: ellipsis;
	word-break: break-word;
	hyphens: auto;
}

.yithonia-product-card {
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.yithonia-product-card .product-img,
.yithonia-product-card img {
	transition: transform .35s ease;
}

.yithonia-product-card:active {
	transform: scale(.985);
	transition-duration: .08s;
}

.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
	box-sizing: border-box;
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d4d2cc;
	border-radius: 6px;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
	border-color: var(--sage);
	outline: 2px solid rgba(156, 175, 136, .25);
	outline-offset: 0;
}

.wpcf7-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
}

.wpcf7-form p {
	margin-bottom: 14px;
}

.wpcf7-form .wpcf7-submit {
	min-height: 48px;
	padding: 0 28px;
	border: 0;
	border-radius: 6px;
	background: var(--sage);
	color: #fff;
	cursor: pointer;
	font-weight: 600;
}

.site-footer {
	background: #252525;
	color: #fff;
	margin-top: 64px;
	padding: 56px 0 0;
}

.site-footer .container {
	width: calc(100% - (var(--site-gutter) * 2));
	max-width: none;
	margin: 0 auto;
	padding: 0;
}

.footer-main {
	padding-bottom: 42px;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.6fr) minmax(160px, .85fr) minmax(160px, .85fr) minmax(220px, 1.1fr);
	gap: 48px;
	align-items: start;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 18px;
}

.footer-brand-name,
.footer-col-title {
	color: #fff;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.footer-brand-name {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	letter-spacing: .03em;
}

.footer-brand-tagline {
	color: var(--sage);
	font-size: 12px;
	letter-spacing: .28em;
	text-transform: uppercase;
}

.footer-col-title {
	margin-bottom: 18px;
	font-size: 16px;
	letter-spacing: .04em;
}

footer#colophon.site-footer .footer-col p {
	max-width: 520px;
	margin: 0;
	color: rgba(255,255,255,.78);
	font-size: 15px;
	line-height: 1.7;
}

footer#colophon.site-footer ul.footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

footer#colophon.site-footer ul.footer-links li {
	margin: 0;
}

footer#colophon.site-footer ul.footer-links li a,
.footer-contact-list a {
	color: rgba(255,255,255,.78);
	text-decoration: none;
}

footer#colophon.site-footer ul.footer-links li a:hover,
.footer-contact-list a:hover {
	color: var(--sage);
}

.footer-contact-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-contact-list li {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	color: rgba(255,255,255,.78);
	line-height: 1.55;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.08);
	padding: 18px 0 24px;
}

.footer-copy {
	color: rgba(255,255,255,.52);
	font-size: 13px;
	line-height: 1.8;
	text-align: center;
}

.footer-copy .footer-legal-sep {
	margin: 0 10px;
	color: #444;
}

.footer-copy .footer-legal-link {
	color: var(--sage);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-copy .footer-legal-link:hover {
	color: #7A9466;
	text-decoration: underline;
}

.yithonia-whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 9998;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25D366;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
	color: #fff;
	text-decoration: none;
	transition: opacity .2s ease, transform .2s ease;
}

.yithonia-whatsapp-float svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

.yithonia-whatsapp-float:hover,
.yithonia-whatsapp-float:focus {
	color: #fff;
	transform: translateY(-1px);
}

.yithonia-scroll-top {
	position: fixed;
	right: 28px;
	bottom: 92px;
	z-index: 9997;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid #d7dfda;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .16);
	color: #1f745d;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, background-color .2s ease, color .2s ease;
}

.yithonia-scroll-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.yithonia-scroll-top svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.yithonia-scroll-top:hover,
.yithonia-scroll-top:focus {
	background: #1f745d;
	color: #fff;
}

.yithonia-cf7-fallback-notice {
	margin: 10px 0;
	padding: 10px 12px;
	border: 1px solid #d7dfda;
	border-radius: 6px;
	background: #f7f9f5;
	color: #17211d;
	font-size: 14px;
	line-height: 1.4;
}

body.page-template-template-about,
body.page-template-template-oem-odm,
body.page-template-template-contact,
body.post-type-archive-yithonia_article,
body.single-yithonia_article,
body.page {
	padding-top: 0;
}

body.page-template-template-about .site-header,
body.page-template-template-oem-odm .site-header,
body.page-template-template-contact .site-header,
body.post-type-archive-yithonia_article .site-header,
body.single-yithonia_article .site-header,
body.page .site-header {
	top: var(--admin-bar-offset);
}

body.page-template-template-about .page-hero,
body.page-template-template-oem-odm .page-hero,
body.page-template-template-contact .page-hero {
	padding-top: 48px;
	padding-bottom: 64px;
}

body.post-type-archive-yithonia_article .insights-hero,
body.single-yithonia_article .insights-article-header {
	padding-top: 48px;
	padding-bottom: 56px;
}

@media (hover: hover) {
	.yithonia-product-card:hover {
		transform: translateY(-4px);
		border-color: var(--sage);
		box-shadow: 0 12px 28px rgba(60, 70, 55, 0.12);
	}

	.yithonia-product-card:hover img {
		transform: scale(1.04);
	}
}

@media (min-width: 768px) {
	.story-block {
		padding-left: 100px;
	}

	.story-year {
		font-size: 32px;
	}
}

@media (max-width: 991px) {
	:root {
		--header-height: 70px;
	}

	body.admin-bar {
		--admin-bar-offset: 46px;
	}

	html {
		scrollbar-gutter: auto;
	}

	body.mobile-nav-open {
		overflow: hidden;
	}

	.main-navigation-wrapper,
	.main-navigation {
		display: none;
	}

	.header-cta {
		display: flex;
		flex: 0 0 auto;
		margin-left: auto;
	}

	.header-cta .btn-primary {
		display: none;
	}

	.mobile-menu-toggle {
		display: inline-flex;
	}

	.navbar-container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		width: calc(100% - 36px);
		min-height: var(--header-height);
		padding: 0;
	}

	.site-branding {
		flex: 0 0 190px;
		width: 190px;
		min-width: 190px;
		max-width: 190px;
		height: 42px;
	}

	.site-branding a,
	.site-header picture.site-logo,
	.site-header picture.site-logo img,
	.site-header img.site-logo,
	.site-header .custom-logo-link img {
		width: 190px;
		height: 42px;
		max-width: 190px;
		max-height: 42px;
	}

	.yithonia-mobile-drawer.is-open {
		position: fixed;
		inset: 0;
		z-index: 99998;
		display: flex;
		flex-direction: column;
		width: 100vw;
		max-width: 100vw;
		height: 100dvh;
		padding: 0 24px 32px;
		overflow-y: auto;
		overscroll-behavior: contain;
		background: #fff;
		box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
	}

	.yithonia-drawer-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 92px;
		margin: 0 0 18px;
		padding: 18px 0;
		border-bottom: 1px solid #eee;
		background: #fff;
	}

	.yithonia-drawer-brand {
		display: inline-flex;
		flex-direction: column;
		gap: 4px;
		color: #2d2d2d;
		text-decoration: none;
	}

	.yithonia-drawer-brand span {
		font-family: Georgia, "Times New Roman", serif;
		font-size: 23px;
		font-weight: 700;
		letter-spacing: 1px;
		line-height: 1.1;
	}

	.yithonia-drawer-brand small {
		color: var(--sage);
		font-family: sans-serif;
		font-size: 11px;
		font-weight: 500;
		letter-spacing: 3px;
		line-height: 1.2;
	}

	.yithonia-mobile-nav,
	.yithonia-mobile-menu {
		width: 100%;
	}

	.yithonia-mobile-menu,
	.yithonia-mobile-menu .sub-menu {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.yithonia-mobile-menu li {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.yithonia-mobile-menu a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 54px;
		padding: 14px 12px;
		border-bottom: 1px solid #eee;
		color: #2d2d2d;
		font-size: 17px;
		font-weight: 600;
		line-height: 1.35;
		text-decoration: none;
		text-transform: none;
	}

	.yithonia-search-panel {
		top: 76px;
		left: 14px;
		right: 14px;
		width: auto;
	}

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

	.yh-meta,
	.yh-meta span,
	.yp-meta,
	.yp-meta span,
	.yc-meta,
	.yc-meta span,
	.yc-sku,
	.yithonia-badges span,
	.yithonia-related-body span,
	.ys-card-meta,
	.ys-card-meta span,
	.ys-search-form label {
		font-size: 14px;
		line-height: 1.35;
	}

	.yp-breadcrumbs,
	.yc-breadcrumbs,
	.yithonia-breadcrumbs {
		font-size: 14px;
		line-height: 1.5;
	}

	.yp-breadcrumbs a,
	.yc-breadcrumbs a,
	.yithonia-breadcrumbs a {
		display: inline-flex;
		align-items: center;
		min-height: 44px;
		padding: 0 8px;
	}

	.yp-breadcrumbs span,
	.yc-breadcrumbs span,
	.yithonia-breadcrumbs span,
	.footer-brand-tagline,
	.footer-copy {
		font-size: 14px;
		line-height: 1.5;
	}

	.site-footer a {
		min-height: 44px;
		padding-top: 4px;
		padding-bottom: 4px;
	}

	.site-footer .social-link,
	.site-footer a[aria-label],
	.site-footer a[href*="linkedin"],
	.site-footer a[href*="wa.me"],
	.site-footer a[href*="instagram"] {
		min-width: 44px;
		min-height: 44px;
	}

	.yithonia-mobile-menu > li > a {
		padding-left: 0;
	}

	.yithonia-mobile-menu .sub-menu {
		display: none;
	}

	.yithonia-mobile-menu .sub-menu a {
		padding-left: 28px;
		font-size: 16px;
	}

	.yithonia-mobile-menu .sub-menu .sub-menu a {
		padding-left: 52px;
	}

	.yithonia-mobile-menu li.is-submenu-open > .sub-menu {
		display: block;
	}

	.yithonia-mobile-menu li.current-menu-item > a,
	.yithonia-mobile-menu a:hover,
	.yithonia-mobile-menu a:focus {
		color: var(--sage);
	}

	.yithonia-mobile-menu li.menu-item-has-children > a::after {
		content: "+";
		flex: 0 0 auto;
		margin-left: 16px;
		color: inherit;
		font-size: 22px;
		font-weight: 500;
		line-height: 1;
	}

	.yithonia-mobile-menu li.menu-item-has-children.is-submenu-open > a::after {
		content: "-";
	}

	.yithonia-mobile-drawer-cta {
		display: block;
		margin-top: 24px;
		padding: 16px 20px;
		border-radius: 8px;
		background: var(--sage);
		color: #fff;
		font-size: 16px;
		font-weight: 700;
		line-height: 1.3;
		text-align: center;
		text-decoration: none;
	}

	.about-img-float {
		display: none;
	}

	.about-images {
		min-height: auto;
	}

	.rank-math-breadcrumb a,
	.rank-math-breadcrumb span,
	.breadcrumbs a,
	.breadcrumb a {
		display: inline-block;
		min-height: 36px;
		padding: 0 6px;
		line-height: 36px;
	}

	.site-footer a,
	footer a {
		display: inline-block;
		min-height: 36px;
		padding: 6px 4px;
		line-height: 1.4;
	}

	.yithonia-cat-tab {
		min-height: 44px;
		padding: 10px 16px;
	}

	.yithonia-product-card .meta a,
	.product-meta a {
		display: inline-block;
		min-height: 32px;
		padding: 4px 8px;
	}

	a.btn,
	a.button,
	button {
		min-height: 44px;
	}

	.yithonia-whatsapp-float {
		right: 16px;
		bottom: 18px;
		width: 54px;
		height: 54px;
	}

	.yithonia-scroll-top {
		right: 19px;
		bottom: 86px;
		width: 48px;
		height: 48px;
	}

	footer.site-footer {
		padding-bottom: 120px;
	}

	body.yithonia-footer-visible .yithonia-whatsapp-float,
	body.yithonia-footer-visible .yithonia-scroll-top {
		opacity: 0;
		transform: translateY(140%);
		pointer-events: none;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px;
	}
}

@media (max-width: 767px) {
	.hero-section,
	.page-hero,
	.section-hero {
		min-height: auto;
		max-height: 65vh;
		padding: 32px 16px;
	}

	.hero-section h1,
	.page-hero h1 {
		margin-bottom: 12px;
		font-size: 28px;
		line-height: 1.2;
	}

	.hero-section p,
	.page-hero p {
		margin-bottom: 16px;
		font-size: 15px;
	}

	body.page-template-template-about .page-hero,
	body.page-template-template-oem-odm .page-hero,
	body.page-template-template-contact .page-hero,
	body.post-type-archive-yithonia_article .insights-hero,
	body.single-yithonia_article .insights-article-header {
		max-height: none;
		padding-top: 32px;
		padding-bottom: 44px;
	}
}

@media (max-width: 600px) {
	.site-footer {
		padding-top: 42px;
	}

	.site-footer .container {
		width: calc(100% - 36px);
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-bottom {
		padding-bottom: 28px;
	}

	.footer-copy .footer-legal-sep:first-of-type {
		display: block;
		height: 8px;
	}
}

@media (max-width: 560px) {
	body {
		-webkit-text-size-adjust: 100%;
	}

	.entry-content p,
	.page-content p,
	.story-text p {
		font-size: 16px;
		line-height: 1.65;
	}

	h1 {
		font-size: 30px;
		line-height: 1.25;
	}

	h2 {
		font-size: 24px;
		line-height: 1.3;
	}

	h3 {
		font-size: 18px;
		line-height: 1.4;
	}

	input,
	select,
	textarea {
		font-size: 16px;
	}

	.yithonia-product-card {
		-webkit-tap-highlight-color: rgba(156, 175, 136, 0.18);
	}
}
