/* Natura modern vitrin — Poppins, navbar, bottom nav, footer */

html,
body,
input,
button,
select,
textarea {
	font-family: 'Poppins', sans-serif !important;
}

.fa,
.fa::before,
[class^="flaticon-"],
[class*=" flaticon-"] {
	font-family: FontAwesome !important;
}

[class^="flaticon-"]::before,
[class*=" flaticon-"]::before {
	font-family: "Flaticon" !important;
}

body.natura-modern-body {
	background: #ececec;
	color: #3A1F0D;
	padding-bottom: 0;
	--natura-layout-max: 1560px;
	--natura-layout-gutter: clamp(16px, 2.5vw, 36px);
	--natura-header-offset: 76px;
	--natura-nav-green-bg: linear-gradient(90deg, #2a1409 0%, #3A1F0D 34%, #4a2912 66%, #3A1F0D 100%);
	--natura-nav-green-bg-soft: linear-gradient(90deg, rgba(42, 20, 9, 0.94) 0%, rgba(58, 31, 13, 0.96) 50%, rgba(42, 20, 9, 0.94) 100%);
	--natura-nav-border: rgba(255, 255, 255, 0.12);
	--natura-nav-text: rgba(255, 255, 255, 0.94);
	--natura-nav-text-muted: rgba(255, 255, 255, 0.72);
	--natura-nav-hover-bg: rgba(255, 255, 255, 0.14);
	--natura-nav-control-bg: rgba(255, 255, 255, 0.1);
	--natura-nav-control-border: rgba(255, 255, 255, 0.18);
	padding-top: var(--natura-header-offset);
}

body.natura-modern-body .boxed_wrapper {
	width: 100%;
	max-width: none;
	margin: 0;
	overflow: visible;
}

body.natura-modern-body .container {
	width: 100%;
	max-width: var(--natura-layout-max);
	padding-left: var(--natura-layout-gutter);
	padding-right: var(--natura-layout-gutter);
}

body.natura-modern-body.has-bottom-nav {
	padding-bottom: 64px;
}

/* ----- Header shell ----- */
.natura-modern-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	padding: 0;
}

.natura-modern-header__shell {
	max-width: none;
	width: 100%;
	margin: 0;
	background: var(--natura-nav-green-bg);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-radius: 0;
	box-shadow: 0 8px 28px rgba(58, 31, 13, 0.22);
	border: 0;
	border-bottom: 1px solid var(--natura-nav-border);
}

.natura-modern-header__inner {
	max-width: var(--natura-layout-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 12px var(--natura-layout-gutter);
}

.natura-modern-logo img {
	max-height: 52px;
	width: auto;
	display: block;
}

.natura-modern-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.natura-modern-nav > li {
	position: relative;
	list-style: none;
}

.natura-modern-nav > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	border-radius: 999px;
	color: var(--natura-nav-text);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.natura-modern-nav > li > a:hover,
.natura-modern-nav > li.is-active > a {
	background: var(--natura-nav-hover-bg);
	color: #fff;
}

.natura-modern-nav > li.has-children > ul {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	margin: 0;
	padding: 8px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
	border: 1px solid rgba(15, 23, 42, 0.06);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .2s ease;
	list-style: none;
	z-index: 20;
}

.natura-modern-nav > li.has-children:hover > ul,
.natura-modern-nav > li.has-children:focus-within > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.natura-modern-nav > li.has-children > ul a {
	display: block;
	padding: 10px 14px;
	border-radius: 10px;
	color: #334155;
	font-size: 14px;
	text-decoration: none;
}

.natura-modern-nav > li.has-children > ul a:hover {
	background: #f8fafc;
	color: #3A1F0D;
}

.natura-modern-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.natura-modern-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--natura-nav-control-border);
	border-radius: 999px;
	background: var(--natura-nav-control-bg);
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: all .2s ease;
	text-decoration: none;
}

.natura-modern-icon-btn:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}

.natura-modern-catalog-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: all .2s ease;
}

.natura-modern-catalog-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.32);
	color: #fff;
	text-decoration: none;
}

@media (max-width: 991px) {
	.natura-modern-catalog-btn span {
		display: none;
	}

	.natura-modern-catalog-btn {
		width: 42px;
		padding: 0;
	}
}

.natura-modern-lang {
	display: flex;
	gap: 8px;
	align-items: center;
}

.natura-lang-dropdown {
	position: relative;
}

.natura-lang-dropdown__toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 14px 0 10px;
	border: 1px solid var(--natura-nav-control-border);
	border-radius: 999px;
	background: var(--natura-nav-control-bg);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(58, 31, 13, 0.18);
}

.natura-lang-dropdown__toggle .fa {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.78);
	transition: transform .2s ease;
}

.natura-lang-dropdown.is-open .natura-lang-dropdown__toggle .fa {
	transform: rotate(180deg);
}

.natura-lang-dropdown__flag,
.natura-lang-dropdown__item .natura-lang-dropdown__flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 20px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 4px;
}

.natura-flag-svg {
	display: block;
	width: 28px;
	height: 20px;
	border-radius: 4px;
}

.natura-lang-dropdown__name {
	max-width: 110px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.natura-lang-dropdown__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 190px;
	padding: 8px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .2s ease;
	z-index: 30;
}

.natura-lang-dropdown.is-open .natura-lang-dropdown__menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.natura-lang-dropdown__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 12px;
	color: #3A1F0D;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.natura-lang-dropdown__item:hover,
.natura-lang-dropdown__item.is-active {
	background: #f8fafc;
}

.natura-modern-lang a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	border: 2px solid rgba(15, 23, 42, 0.08);
	background: #fff;
	overflow: hidden;
	text-decoration: none;
	position: relative;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.natura-modern-lang a:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.natura-modern-lang a.is-active {
	border-color: #3A1F0D;
	box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.12);
}

.natura-modern-lang__flag {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 999px;
}

.natura-modern-lang__flag--tr {
	background: #e30a17;
}

.natura-modern-lang__flag--en {
	background:
		linear-gradient(90deg, #012169 0 40%, transparent 40%),
		linear-gradient(0deg, #c8102e 0 18%, #fff 18% 36%, #c8102e 36% 54%, #fff 54% 72%, #c8102e 72% 100%);
}

.natura-modern-lang__flag--ar {
	background: linear-gradient(180deg, #006c35 0%, #006c35 100%);
	position: relative;
}

.natura-modern-lang__flag--ar::after {
	content: '';
	position: absolute;
	left: 28%;
	top: 50%;
	width: 42%;
	height: 2px;
	background: #fff;
	box-shadow: 0 -5px 0 #fff, 0 5px 0 #fff;
	transform: translateY(-50%);
}

.natura-modern-lang__flag--de {
	background: linear-gradient(180deg, #000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.natura-modern-lang__flag--ru {
	background: linear-gradient(180deg, #fff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66% 100%);
}

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

.natura-modern-menu-toggle {
	display: none;
}

/* Mobile drawer */
.natura-mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: 1100;
	pointer-events: none;
}

.natura-mobile-drawer.is-open {
	pointer-events: auto;
}

.natura-mobile-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	opacity: 0;
	transition: opacity .25s ease;
}

.natura-mobile-drawer.is-open .natura-mobile-drawer__backdrop {
	opacity: 1;
}

.natura-mobile-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(360px, 100%);
	height: 100%;
	background: #fff;
	padding: 24px;
	transform: translateX(100%);
	transition: transform .28s ease;
	overflow-y: auto;
	box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
}

.natura-mobile-drawer.is-open .natura-mobile-drawer__panel {
	transform: translateX(0);
}

.natura-mobile-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.natura-mobile-drawer__close {
	border: 0;
	background: #f1f5f9;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 18px;
}

.natura-mobile-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.natura-mobile-nav li {
	border-bottom: 1px solid #eef2f7;
}

.natura-mobile-nav > li > a {
	display: block;
	padding: 14px 0;
	color: #3A1F0D;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
}

.natura-mobile-nav ul {
	list-style: none;
	margin: 0 0 8px 12px;
	padding: 0;
}

.natura-mobile-nav ul a {
	display: block;
	padding: 10px 0;
	color: #64748b;
	font-size: 14px;
	text-decoration: none;
}

/* Bottom nav */
.natura-bottom-nav {
	display: none;
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 14px;
	z-index: 1050;
	background: var(--natura-nav-green-bg-soft);
	backdrop-filter: blur(14px);
	border: 1px solid var(--natura-nav-border);
	border-radius: 22px;
	box-shadow: 0 18px 40px rgba(58, 31, 13, 0.28);
	padding: 6px 8px;
}

.natura-bottom-nav__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.natura-bottom-nav__list a,
.natura-bottom-nav__list button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	min-width: 44px;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	cursor: pointer;
	border-radius: 14px;
}

.natura-bottom-nav__list a i,
.natura-bottom-nav__list button i {
	font-size: 20px;
}

.natura-bottom-nav__list a.is-active,
.natura-bottom-nav__list button.is-active,
.natura-bottom-nav__list a:hover,
.natura-bottom-nav__list button:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

/* ----- Footer ----- */
.natura-modern-footer {
	background: #3A1F0D;
	color: #cbd5e1;
	margin-top: 60px;
}

.natura-modern-footer__top {
	padding: 72px 0 48px;
}

.natura-modern-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 32px;
}

.natura-modern-footer__brand img {
	max-height: 56px;
	margin-bottom: 18px;
}

.natura-modern-footer__brand p {
	margin: 0;
	max-width: 320px;
	line-height: 1.7;
	color: #94a3b8;
	font-size: 14px;
}

.natura-modern-footer__title {
	margin: 0 0 18px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

.natura-modern-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.natura-modern-footer__list li {
	margin-bottom: 12px;
}

.natura-modern-footer__list a,
.natura-modern-footer__contact-item {
	color: #cbd5e1;
	font-size: 14px;
	line-height: 1.6;
	text-decoration: none;
}

.natura-modern-footer__list a:hover {
	color: #fff;
}

.natura-modern-footer__contact-item {
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
}

.natura-modern-footer__contact-item i {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.natura-modern-footer__post {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}

.natura-modern-footer__post img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 12px;
}

.natura-modern-footer__post a {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
}

.natura-modern-footer__newsletter {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}

.natura-modern-footer__newsletter input {
	flex: 1;
	min-width: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	border-radius: 12px;
	padding: 12px 14px;
}

.natura-modern-footer__newsletter button {
	border: 0;
	border-radius: 12px;
	background: #4f7cff;
	color: #fff;
	width: 48px;
	cursor: pointer;
}

.natura-modern-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 22px 0;
}

.natura-modern-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.natura-modern-footer__social {
	display: flex;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.natura-modern-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	text-decoration: none;
}

.natura-modern-footer__social a:hover {
	background: #4f7cff;
}

.natura-footer-myea {
	display: inline-block;
	text-decoration: none;
}

.natura-footer-myea__frame {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 12px;
	background: #000;
	width: 168px;
	height: 48px;
}

.natura-footer-myea__img {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 142%;
	max-width: none;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: contain;
}

.natura-quote-modal .modal-dialog {
	max-width: 720px;
	width: calc(100% - 24px);
}

.natura-quote-modal__content {
	border: 0;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.natura-quote-modal__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 28px 28px 0;
	border: 0;
	background: linear-gradient(135deg, #3A1F0D 0%, #1e3a5f 100%);
	color: #fff;
}

.natura-quote-modal__eyebrow {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.natura-quote-modal__header .modal-title {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
}

.natura-quote-modal__lead {
	margin: 10px 0 0;
	max-width: 420px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	line-height: 1.6;
}

.natura-quote-modal__close {
	border: 0;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
}

.natura-quote-modal__body {
	padding: 24px 28px 8px;
	background: #fff;
}

.natura-quote-modal__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.natura-quote-field {
	display: block;
	margin: 0;
}

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

.natura-quote-field__label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #334155;
}

.natura-quote-field__input {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 14px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.natura-quote-field__input:focus-within {
	border-color: #4f7cff;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(79, 124, 255, 0.12);
}

.natura-quote-field__input i {
	color: #64748b;
	width: 16px;
	text-align: center;
	flex-shrink: 0;
}

.natura-quote-field__input input,
.natura-quote-field__input textarea {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	outline: none;
	font-size: 14px;
	color: #3A1F0D;
	resize: vertical;
}

.natura-quote-field__input--textarea {
	align-items: flex-start;
	padding-top: 14px;
	padding-bottom: 14px;
	min-height: 140px;
}

.natura-quote-field__input--textarea i {
	margin-top: 4px;
}

.natura-quote-modal__footer {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	padding: 18px 28px 28px;
	border: 0;
	background: #fff;
}

.natura-quote-modal__btn {
	min-width: 120px;
	min-height: 46px;
	padding: 0 20px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border: 0;
}

.natura-quote-modal__btn--ghost {
	background: #f1f5f9;
	color: #334155;
}

.natura-quote-modal__btn--primary {
	background: linear-gradient(135deg, #2563eb 0%, #4f7cff 100%);
	color: #fff;
	box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

/* Responsive */
@media (max-width: 991px) {
	.natura-modern-header__inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
		padding: 16px 18px;
	}

	.natura-modern-nav {
		display: none;
	}

	.natura-modern-menu-toggle {
		display: inline-flex;
	}

	.natura-bottom-nav {
		display: block;
	}

	body.natura-modern-body {
		padding-bottom: 72px;
	}

	.natura-modern-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767px) {
	.natura-modern-footer__grid {
		grid-template-columns: 1fr;
	}

	.natura-quote-modal__grid {
		grid-template-columns: 1fr;
	}

	.natura-lang-dropdown__name {
		display: none;
	}

	.natura-modern-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Inner pages — site background */
.natura-products-page,
.natura-product-detail-page,
.natura-certificates-page,
.natura-gallery-page,
.natura-contact-page,
.natura-blog-page,
.natura-search-page,
.natura-cms-page {
	--natura-glass-bg: rgba(255, 252, 248, 0.38);
	--natura-glass-border: 1px solid rgba(255, 255, 255, 0.42);
	--natura-glass-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
	--natura-glass-radius: 32px 32px 32px 14px;
}

.natura-products-page .boxed_wrapper,
.natura-product-detail-page .boxed_wrapper,
.natura-certificates-page .boxed_wrapper,
.natura-gallery-page .boxed_wrapper,
.natura-contact-page .boxed_wrapper,
.natura-blog-page .boxed_wrapper,
.natura-search-page .boxed_wrapper,
.natura-cms-page .boxed_wrapper {
	background-color: #ececec;
	background-image: var(--natura-site-bg-image, none);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

/* Unified glass hero (inner pages) */
.natura-page-hero {
	width: 100%;
	padding: 18px var(--natura-layout-gutter, 16px) 14px;
	background: transparent;
}

.natura-page-hero > .container {
	max-width: var(--natura-layout-max, 1200px);
	margin: 0 auto;
}

.natura-page-hero__glass {
	position: relative;
	padding: 22px 28px 24px;
	border-radius: var(--natura-glass-radius);
	background: var(--natura-glass-bg);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	backdrop-filter: blur(20px) saturate(140%);
	border: var(--natura-glass-border);
	box-shadow: var(--natura-glass-shadow);
}

.natura-products-hero__eyebrow,
.natura-certs-hero__eyebrow {
	margin: 0 0 6px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #94a3b8;
}

.natura-page-hero__glass h1 {
	margin: 0 0 6px;
	font-size: clamp(22px, 2.8vw, 28px);
	font-weight: 700;
	line-height: 1.2;
	color: #3A1F0D;
}

.natura-pdetail-hero .natura-page-hero__glass h1 {
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.15;
}

.natura-products-hero__lead,
.natura-certs-hero__lead {
	margin: 0;
	max-width: 620px;
	color: #64748b;
	font-size: 14px;
	line-height: 1.55;
	font-weight: 400;
}

.natura-products-hero__meta,
.natura-certs-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.natura-products-hero__meta span,
.natura-certs-hero__meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(15, 23, 42, 0.08);
	color: #475569;
	font-size: 12px;
	font-weight: 600;
}

.natura-products-hero__meta i,
.natura-certs-hero__meta i {
	color: #3A1F0D;
	font-size: 11px;
}

.natura-products-hero {
	width: 100%;
}

.natura-products-section {
	padding: 20px 0 56px;
}

.natura-products-toolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 16px;
	margin-bottom: 18px;
}

.natura-products-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 10px;
	flex: 1 1 320px;
}

.natura-products-filter {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 120px;
}

.natura-products-filter label {
	font-size: 11px;
	font-weight: 700;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.natura-products-filter select {
	min-height: 38px;
	padding: 0 10px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #fff;
	color: #3A1F0D;
	font-size: 13px;
}

.natura-products-filter-clear {
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #f8fafc;
	color: #334155;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.natura-products-filter-clear:hover {
	border-color: #cdb398;
	color: #3A1F0D;
}

.natura-products-filter-count {
	width: 100%;
	font-size: 13px;
	color: #64748b;
}

.natura-products-filter-count strong {
	color: #3A1F0D;
}

.natura-products-view-toggle {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px;
	border-radius: 999px;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
}

.natura-products-view-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #64748b;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}

.natura-products-view-btn.is-active {
	background: #fff;
	color: #3A1F0D;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.natura-products-grid {
	display: grid;
	gap: 20px;
}

.natura-products-grid--grid {
	grid-template-columns: 1fr;
}

@media (min-width: 480px) {
	.natura-products-grid--grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.natura-products-grid--grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 22px;
	}
}

@media (min-width: 1280px) {
	.natura-products-grid--grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.natura-products-grid--list {
	grid-template-columns: 1fr;
	gap: 0;
}

.natura-product-card.is-filter-hidden {
	display: none !important;
}

.natura-product-card {
	position: relative;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.07);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.natura-product-card:hover {
	transform: translateY(-4px);
	border-color: rgba(58, 31, 13, 0.18);
	box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.natura-products-collection {
	position: relative;
}

.natura-products-table-head {
	display: none;
}

.natura-product-card__media {
	position: relative;
	display: block;
	padding: 10px 12px;
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
	text-decoration: none;
	overflow: hidden;
}

.natura-products-grid--grid .natura-product-card__media {
	height: 118px;
}

.natura-product-card__media-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 12%, rgba(198, 113, 39, 0.08) 0%, transparent 42%),
		radial-gradient(circle at 88% 88%, rgba(15, 23, 42, 0.04) 0%, transparent 36%);
	pointer-events: none;
}

.natura-product-card__media img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	max-height: 96px;
	margin: 0 auto;
	object-fit: contain;
	transition: transform 0.35s ease;
}

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

.natura-product-card__badge {
	position: absolute;
	left: 10px;
	top: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(58, 31, 13, 0.16);
	color: #3A1F0D;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.natura-product-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 16px 16px 18px;
}

.natura-product-card__head {
	margin-bottom: 12px;
}

.natura-product-card__model {
	display: inline-block;
	margin-bottom: 4px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #3A1F0D;
}

.natura-products-grid--grid .natura-product-card__model {
	display: none;
}

.natura-product-card__head h2 {
	margin: 0;
	font-size: clamp(18px, 2.2vw, 22px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.natura-product-card__head h2 a {
	color: #3A1F0D;
	text-decoration: none;
	transition: color 0.2s ease;
}

.natura-product-card__head h2 a:hover {
	color: #3A1F0D;
}

.natura-product-card__subtitle {
	margin: 6px 0 0;
	color: #64748b;
	font-size: 13px;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.natura-product-card__specs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.natura-product-card__specs li {
	padding: 9px 10px;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #eef2f7;
	min-width: 0;
}

.natura-product-card__specs-capacity {
	grid-column: 1 / -1;
}

.natura-product-card__specs span {
	display: block;
	font-size: 10px;
	font-weight: 600;
	color: #94a3b8;
	margin-bottom: 2px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.natura-product-card__specs strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #3A1F0D;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.natura-product-card__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: auto;
	padding-top: 14px;
}

.natura-product-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: 0;
	line-height: 1.2;
	text-align: center;
}

.natura-product-card__btn span {
	min-width: 0;
}

.natura-product-card__btn--ghost {
	background: #f1f5f9;
	color: #334155;
	border: 1px solid transparent;
}

.natura-product-card__btn--ghost:hover {
	background: #faf5ef;
	border-color: rgba(58, 31, 13, 0.2);
	color: #3A1F0D;
	text-decoration: none;
}

.natura-product-card__btn--primary {
	background: var(--natura-nav-green-bg);
	color: #fff;
	box-shadow: 0 8px 20px rgba(58, 31, 13, 0.22);
}

.natura-product-card__btn--primary:hover {
	filter: brightness(1.05);
	color: #fff;
}

/* Liste görünümü — tablo düzeni */
.natura-products-collection:has(.natura-products-grid--list) {
	--natura-product-list-cols: 76px minmax(148px, 1.15fr) repeat(5, minmax(72px, 1fr)) 196px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.natura-products-grid--list {
	grid-template-columns: var(--natura-product-list-cols);
	gap: 0;
}

.natura-products-collection:has(.natura-products-grid--list) .natura-products-table-head {
	display: grid;
	grid-template-columns: var(--natura-product-list-cols);
	align-items: stretch;
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.natura-products-table-head__col {
	padding: 12px 10px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #64748b;
	border-right: 1px solid rgba(15, 23, 42, 0.06);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.natura-products-table-head__col--actions {
	border-right: 0;
	text-align: center;
}

.natura-products-grid--list .natura-product-card {
	flex-direction: row;
	align-items: stretch;
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: subgrid;
	border-radius: 0;
	box-shadow: none;
	border: 0;
	border-bottom: 1px solid #eef2f7;
	min-height: 82px;
	transform: none;
}

.natura-products-grid--list .natura-product-card:last-child {
	border-bottom: 0;
}

.natura-products-grid--list .natura-product-card:hover {
	transform: none;
	border-color: transparent;
	background: #f8fafc;
	box-shadow: none;
}

.natura-products-grid--list .natura-product-card__media {
	flex: none;
	width: auto;
	height: 82px;
	padding: 8px 10px;
	border-right: 1px solid #eef2f7;
	border-bottom: 0;
	align-self: stretch;
}

.natura-products-grid--list .natura-product-card__media img {
	max-height: 64px;
}

.natura-products-grid--list .natura-product-card__badge {
	display: none;
}

.natura-products-grid--list .natura-product-card__content {
	display: contents;
}

.natura-products-grid--list .natura-product-card__head {
	margin: 0;
	padding: 10px 12px;
	border-right: 1px solid #eef2f7;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.natura-products-grid--list .natura-product-card__model {
	display: none;
}

.natura-products-grid--list .natura-product-card__head h2 {
	font-size: 16px;
}

.natura-products-grid--list .natura-product-card__subtitle {
	margin-top: 4px;
	font-size: 12px;
	-webkit-line-clamp: 1;
}

.natura-products-grid--list .natura-product-card__specs {
	display: contents;
}

.natura-products-grid--list .natura-product-card__specs li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 82px;
	padding: 10px;
	border: 0;
	border-right: 1px solid #eef2f7;
	border-radius: 0;
	background: transparent;
}

.natura-products-grid--list .natura-product-card__specs-capacity {
	grid-column: auto;
}

.natura-products-grid--list .natura-product-card__specs span {
	display: none;
}

.natura-products-grid--list .natura-product-card__specs strong {
	font-size: 13px;
	font-weight: 600;
}

.natura-products-grid--list .natura-product-card__actions {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	padding: 8px 10px;
	margin: 0;
	height: auto;
}

.natura-products-grid--list .natura-product-card__btn {
	min-height: 34px;
	height: auto;
	max-width: none;
	width: 100%;
	font-size: 11px;
	padding: 0 8px;
	border-radius: 10px;
}

@media (max-width: 1199px) {
	.natura-products-collection:has(.natura-products-grid--list) {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.natura-products-collection:has(.natura-products-grid--list) .natura-products-table-head,
	.natura-products-grid--list {
		min-width: 980px;
	}
}

@media (max-width: 991px) {
	.natura-products-grid--list .natura-product-card,
	.natura-products-grid--list .natura-product-card__specs li {
		min-height: 76px;
	}

	.natura-products-grid--list .natura-product-card__media {
		height: 76px;
	}
}

@media (max-width: 479px) {
	.natura-products-grid--grid .natura-product-card__actions {
		grid-template-columns: 1fr;
	}

	.natura-products-grid--grid .natura-product-card__btn {
		min-height: 46px;
		font-size: 14px;
	}

	.natura-products-grid--grid .natura-product-card__media {
		height: 108px;
		padding: 10px 12px;
	}

	.natura-product-card__content {
		padding: 14px 14px 16px;
	}

	.natura-product-card__specs strong {
		font-size: 13px;
	}
}

.natura-products-empty {
	grid-column: 1 / -1;
	padding: 40px;
	text-align: center;
	color: #64748b;
	background: #fff;
	border-radius: 20px;
}

@media (max-width: 767px) {
	.natura-page-hero__glass {
		padding: 16px 18px 14px;
	}

	.natura-products-hero__meta span {
		font-size: 11px;
		padding: 5px 10px;
	}
}

/* Product detail page */
.natura-product-detail-page {
	overflow-x: clip;
}

.natura-product-detail-page .boxed_wrapper {
	overflow-x: clip;
}

.natura-pdetail-hero {
	width: 100%;
}

.natura-pdetail-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	font-size: 13px;
	color: #475569;
}

.natura-pdetail-breadcrumb a {
	color: #3A1F0D;
	text-decoration: none;
}

.natura-pdetail-breadcrumb a:hover {
	text-decoration: underline;
}

.natura-pdetail-hero__eyebrow {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #3A1F0D;
}

.natura-pdetail-hero__lead {
	margin: 12px 0 0;
	max-width: 720px;
	font-size: 16px;
	line-height: 1.65;
	color: #475569;
}

.natura-pdetail-main {
	padding: 36px 0 56px;
}

.natura-pdetail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 28px;
	align-items: start;
	min-width: 0;
}

.natura-pdetail-gallery,
.natura-pdetail-panel {
	min-width: 0;
	max-width: 100%;
}

.natura-pdetail-gallery__stage {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	padding: 18px;
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
	overflow: hidden;
	max-width: 100%;
}

.natura-pdetail-gallery__stage .pdt-gallery,
.natura-pdetail-gallery__stage .natura-pdetail-gallery__main {
	width: 100% !important;
	max-width: 100%;
	float: none !important;
}

.natura-pdetail-gallery__main:not(.slick-initialized) {
	overflow: hidden;
}

.natura-pdetail-gallery__main:not(.slick-initialized) > li:not(:first-child) {
	display: none;
}

.natura-pdetail-gallery__main .slick-list {
	overflow: hidden;
	max-width: 100%;
}

.natura-pdetail-gallery__main .slick-track {
	max-width: none;
}

.natura-pdetail-gallery__thumbs {
	overflow: hidden;
	max-width: 100%;
}

.natura-pdetail-gallery__thumbs .slick-list {
	overflow: hidden;
	max-width: 100%;
}

.natura-pdetail-gallery__main {
	margin: 0;
	padding: 0;
	list-style: none;
}

.natura-pdetail-gallery__main .slick-list,
.natura-pdetail-gallery__main .slick-track {
	border-radius: 18px;
}

.natura-pdetail-gallery__slide {
	position: relative;
	display: flex !important;
	align-items: center;
	justify-content: center;
	min-height: 420px;
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
	border-radius: 18px;
	overflow: hidden;
	max-width: 100%;
}

.natura-pdetail-gallery__slide img,
.natura-pdetail-gallery__slide .zoomImg {
	display: block;
	width: 100%;
	max-width: 100%;
	max-height: 520px;
	object-fit: contain;
}

.natura-pdetail-gallery__spin-badge {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.72);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
}

.natura-pdetail-gallery__thumbs {
	margin-top: 14px;
}

.natura-pdetail-gallery__thumbs .pdt-gallery-thumb {
	margin: 0;
	padding: 0;
	list-style: none;
}

.natura-pdetail-gallery__thumb {
	display: flex !important;
	align-items: center;
	justify-content: center;
	height: 78px;
	margin: 0 6px;
	padding: 8px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	cursor: pointer;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.natura-pdetail-gallery__thumb.slick-current {
	border-color: #3A1F0D;
	box-shadow: 0 0 0 3px rgba(58, 31, 13, 0.14);
}

.natura-pdetail-gallery__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.natura-pdetail-panel {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.natura-pdetail-panel__badge {
	display: inline-block;
	margin-bottom: 10px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(58, 31, 13, 0.1);
	color: #3A1F0D;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.natura-pdetail-panel__head h2 {
	margin: 0;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 700;
	color: #3A1F0D;
}

.natura-pdetail-panel__subtitle {
	margin: 8px 0 0;
	font-size: 15px;
	color: #64748b;
}

.natura-pdetail-specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 22px;
}

.natura-pdetail-spec {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.natura-pdetail-spec__icon {
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #fff;
}

.natura-pdetail-spec__icon img {
	display: block;
	max-width: 28px;
	max-height: 28px;
}

.natura-pdetail-spec__body span {
	display: block;
	font-size: 12px;
	color: #64748b;
}

.natura-pdetail-spec__body strong {
	display: block;
	margin-top: 2px;
	font-size: 15px;
	color: #3A1F0D;
}

.natura-pdetail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.natura-pdetail-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.natura-pdetail-btn--ghost {
	background: #f8fafc;
	color: #3A1F0D;
	border: 1px solid rgba(15, 23, 42, 0.1);
}

.natura-pdetail-btn--primary {
	background: linear-gradient(135deg, #3A1F0D 0%, #3A1F0D 100%);
	color: #fff;
	box-shadow: 0 12px 28px rgba(58, 31, 13, 0.24);
}

.natura-pdetail-btn:hover {
	transform: translateY(-1px);
	text-decoration: none;
	color: inherit;
}

.natura-pdetail-btn--primary:hover {
	color: #fff;
}

.natura-pdetail-panel__content {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.natura-pdetail-panel__content h3 {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 700;
	color: #3A1F0D;
}

.natura-pdetail-rich {
	font-size: 15px;
	line-height: 1.75;
	color: #334155;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.natura-pdetail-rich img,
.natura-pdetail-rich table,
.natura-pdetail-rich iframe,
.natura-pdetail-rich video,
.natura-pdetail-rich embed {
	max-width: 100%;
	height: auto;
}

.natura-pdetail-rich table {
	display: block;
	width: 100%;
	overflow-x: auto;
	float: none !important;
}

.natura-pdetail-rich p {
	margin: 0 0 12px;
}

.natura-pdetail-related {
	padding: 72px 0 64px;
	margin-top: 0;
}

.natura-pdetail-related__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.natura-pdetail-related__head h2 {
	margin: 0;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	color: #3A1F0D;
}

.natura-pdetail-related__head a {
	color: #3A1F0D;
	font-weight: 600;
	text-decoration: none;
}

.natura-pdetail-related__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.natura-pdetail-related__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease;
}

.natura-pdetail-related__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
	text-decoration: none;
}

.natura-pdetail-related__media {
	aspect-ratio: 4 / 3;
	background: #f8fafc;
}

.natura-pdetail-related__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 12px;
}

.natura-pdetail-related__body {
	padding: 14px 16px 16px;
}

.natura-pdetail-related__body span {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #3A1F0D;
}

.natura-pdetail-related__body strong {
	display: block;
	margin-top: 6px;
	font-size: 15px;
	line-height: 1.45;
	color: #3A1F0D;
}

@media (max-width: 1199px) {
	.natura-pdetail-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.natura-pdetail-layout {
		grid-template-columns: 1fr;
	}

	.natura-pdetail-gallery__slide {
		min-height: 320px;
	}
}

@media (max-width: 767px) {
	.natura-pdetail-main {
		padding: 24px 0 40px;
	}

	.natura-pdetail-specs,
	.natura-pdetail-related__grid {
		grid-template-columns: 1fr;
	}

	.natura-pdetail-actions {
		flex-direction: column;
	}

	.natura-pdetail-btn {
		width: 100%;
	}
}

/* Certificates page */
.natura-certs-hero {
	width: 100%;
}

.natura-certs-page-area {
	padding-top: 28px;
	padding-bottom: 56px;
}

.natura-certs-showcase__intro {
	max-width: 720px;
	margin: 0 auto 28px;
	text-align: center;
}

.natura-certs-showcase__intro h2 {
	margin: 0 0 8px;
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 700;
	color: #3A1F0D;
}

.natura-certs-showcase__intro p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
}

.natura-certs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 22px;
	max-width: var(--natura-layout-max);
	margin: 0 auto;
	padding: 0 var(--natura-layout-gutter);
}

.natura-cert-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-decoration: none;
	color: inherit;
}

.natura-cert-card__frame {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
	transition: transform .25s ease, box-shadow .25s ease;
}

.natura-cert-card__frame img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4.2;
	object-fit: cover;
	background: #f8fafc;
}

.natura-cert-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 42, 0.42);
	color: #fff;
	font-size: 22px;
	opacity: 0;
	transition: opacity .25s ease;
}

.natura-cert-card:hover .natura-cert-card__frame,
.natura-cert-card:focus-visible .natura-cert-card__frame {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.natura-cert-card:hover .natura-cert-card__overlay,
.natura-cert-card:focus-visible .natura-cert-card__overlay {
	opacity: 1;
}

.natura-cert-card__label {
	display: block;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: #334155;
}

@media (max-width: 767px) {
	.natura-page-hero__glass {
		padding: 14px 16px 14px;
	}

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

/* Gallery page */
.natura-gallery-section {
	padding: 28px 0 60px;
}

.natura-gallery-showcase__intro {
	max-width: 760px;
	margin: 0 auto 38px;
	text-align: center;
}

.natura-gallery-showcase__eyebrow {
	display: inline-block;
	margin: 0 0 10px;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(58, 31, 13, 0.07);
	color: #3A1F0D;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.natura-gallery-showcase__intro h2 {
	margin: 0 0 12px;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #3A1F0D;
}

.natura-gallery-showcase__intro p {
	margin: 0 auto;
	max-width: 620px;
	color: #64748b;
	font-size: 15px;
	line-height: 1.7;
}

.natura-gallery-count {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	padding: 8px 18px;
	border-radius: 999px;
	border: 1px solid rgba(58, 31, 13, 0.16);
	color: #3A1F0D;
	font-size: 13px;
	font-weight: 600;
}

.natura-gallery-count i {
	color: #C67127;
}

.natura-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 26px;
}

.natura-gallery-item {
	display: block;
	text-decoration: none;
	color: inherit;
}

.natura-gallery-item__frame {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(58, 31, 13, 0.1);
	box-shadow: 0 16px 38px rgba(58, 31, 13, 0.08);
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.natura-gallery-item__frame::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	z-index: 4;
	background: linear-gradient(90deg, #3A1F0D 0%, #C67127 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s ease;
}

.natura-gallery-item__frame img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: #f1f5f9;
	transition: transform .35s ease;
}

.natura-gallery-item__overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(180deg, rgba(58, 31, 13, 0.25) 0%, rgba(58, 31, 13, 0.62) 100%);
	color: #fff;
	opacity: 0;
	transition: opacity .25s ease;
}

.natura-gallery-item__overlay i {
	font-size: 22px;
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.natura-gallery-item__overlay span {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.natura-gallery-item:hover .natura-gallery-item__frame,
.natura-gallery-item:focus-visible .natura-gallery-item__frame {
	transform: translateY(-6px);
	border-color: rgba(58, 31, 13, 0.22);
	box-shadow: 0 26px 50px rgba(58, 31, 13, 0.16);
}

.natura-gallery-item:hover .natura-gallery-item__frame::after,
.natura-gallery-item:focus-visible .natura-gallery-item__frame::after {
	transform: scaleX(1);
}

.natura-gallery-item:hover .natura-gallery-item__frame img,
.natura-gallery-item:focus-visible .natura-gallery-item__frame img {
	transform: scale(1.06);
}

.natura-gallery-item:hover .natura-gallery-item__overlay,
.natura-gallery-item:focus-visible .natura-gallery-item__overlay {
	opacity: 1;
}

.natura-gallery-item__caption {
	display: block;
	margin-top: 12px;
	padding: 0 4px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: #334155;
	line-height: 1.45;
}

.natura-gallery-empty {
	grid-column: 1 / -1;
	padding: 48px 24px;
	text-align: center;
	color: #64748b;
	background: #fff;
	border-radius: 18px;
	border: 1px dashed rgba(58, 31, 13, 0.18);
}

.natura-gallery-cta {
	padding-top: 12px;
}

@media (max-width: 767px) {
	.natura-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}
}

/* Contact page */
.natura-contact-section {
	padding: 28px 0 60px;
}

.natura-contact-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.25fr);
	gap: 24px;
	align-items: start;
}

.natura-contact-panel {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.natura-contact-panel__intro h2 {
	margin: 0 0 8px;
	font-size: clamp(20px, 2.2vw, 24px);
	font-weight: 700;
	color: #3A1F0D;
}

.natura-contact-panel__intro p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
}

.natura-contact-cards {
	display: grid;
	gap: 14px;
}

.natura-contact-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 18px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.natura-contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(135deg, #faf5ef 0%, #efe1d4 100%);
	color: #3A1F0D;
	font-size: 17px;
	flex-shrink: 0;
}

.natura-contact-card__body {
	min-width: 0;
}

.natura-contact-card__label {
	display: block;
	margin-bottom: 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.natura-contact-card__value,
.natura-contact-card__value a {
	color: #3A1F0D;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.55;
	text-decoration: none;
}

.natura-contact-card__value a:hover {
	color: #3A1F0D;
}

.natura-contact-form-card {
	padding: 28px;
	border-radius: 24px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.natura-contact-form-card__head {
	margin-bottom: 22px;
}

.natura-contact-form-card__head h2 {
	margin: 0 0 6px;
	font-size: clamp(20px, 2.2vw, 24px);
	font-weight: 700;
	color: #3A1F0D;
}

.natura-contact-form-card__head p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
}

.natura-contact-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.natura-contact-form__actions {
	margin-top: 18px;
}

.natura-contact-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 50px;
	padding: 0 22px;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(135deg, #3A1F0D 0%, #3A1F0D 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(58, 31, 13, 0.24);
	transition: transform .2s ease, box-shadow .2s ease;
}

.natura-contact-submit:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(58, 31, 13, 0.28);
}

.natura-contact-map {
	margin-top: 24px;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
	background: #fff;
}

.natura-contact-map iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
}

@media (max-width: 991px) {
	.natura-contact-layout {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 767px) {
	.natura-contact-form-card {
		padding: 22px 18px;
	}

	.natura-contact-map iframe {
		height: 320px;
	}
}

/* Homepage */
body.natura-home-page.natura-modern-body {
	padding-top: 0;
	background: #f4f6f8;
}

body.natura-home-page .boxed_wrapper {
	background: transparent;
}

.natura-modern-header--home {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1100;
	padding: 18px var(--natura-layout-gutter) 0;
	transition: padding .28s ease;
}

.natura-modern-header--home .natura-modern-header__shell {
	max-width: var(--natura-layout-max);
	margin: 0 auto;
	border-radius: 999px;
	background: rgba(255, 252, 248, 0.38);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	backdrop-filter: blur(20px) saturate(140%);
	border: 1px solid rgba(255, 255, 255, 0.42);
	box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
	transition: border-radius .28s ease, background .28s ease, box-shadow .28s ease, max-width .28s ease;
}

.natura-modern-header--home .natura-modern-header__inner {
	padding-top: 14px;
	padding-bottom: 14px;
}

.natura-modern-header--home .natura-modern-nav > li > a,
.natura-modern-header--home .natura-modern-icon-btn,
.natura-modern-header--home .natura-modern-catalog-btn,
.natura-modern-header--home .natura-lang-dropdown__toggle {
	color: #fff;
	text-shadow: 0 1px 2px rgba(15, 23, 42, 0.28);
}

.natura-modern-header--home .natura-modern-nav > li > a:hover,
.natura-modern-header--home .natura-modern-nav > li.is-active > a {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.natura-modern-header--home .natura-modern-icon-btn,
.natura-modern-header--home .natura-modern-catalog-btn,
.natura-modern-header--home .natura-lang-dropdown__toggle {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.28);
}

.natura-modern-header--home.is-scrolled {
	position: fixed;
	top: 0;
	padding: 0;
}

.natura-modern-header--home.is-scrolled .natura-modern-header__shell {
	max-width: none;
	margin: 0;
	border-radius: 0;
	background: var(--natura-nav-green-bg);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border: 0;
	border-bottom: 1px solid var(--natura-nav-border);
	box-shadow: 0 10px 30px rgba(58, 31, 13, 0.24);
}

.natura-modern-header--home.is-scrolled .natura-modern-header__inner {
	padding-top: 12px;
	padding-bottom: 12px;
}

.natura-modern-header--home.is-scrolled .natura-modern-nav > li > a,
.natura-modern-header--home.is-scrolled .natura-modern-icon-btn,
.natura-modern-header--home.is-scrolled .natura-modern-catalog-btn,
.natura-modern-header--home.is-scrolled .natura-lang-dropdown__toggle {
	text-shadow: none;
}

.natura-home-hero {
	position: relative;
	width: 100%;
}

.natura-home-hero__slider,
.natura-home-hero__slide {
	min-height: min(88vh, 820px);
	height: min(88vh, 820px);
}

.natura-home-hero__slide {
	position: relative;
	overflow: hidden;
}

.natura-home-hero__image,
.natura-home-hero__fallback {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.natura-home-hero__fallback {
	background: linear-gradient(135deg, #3A1F0D 0%, #3A1F0D 45%, #3A1F0D 100%);
}

.natura-home-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.28) 52%, rgba(15, 23, 42, 0.12) 100%);
	z-index: 1;
}

.natura-home-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: min(88vh, 820px);
	max-width: 720px;
	padding: calc(var(--natura-header-offset, 76px) + 28px) 0 48px;
	color: #fff;
}

.natura-home-hero__eyebrow {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}

.natura-home-hero__content h2 {
	margin: 0 0 12px;
	font-size: clamp(30px, 4.8vw, 52px);
	font-weight: 700;
	line-height: 1.12;
}

.natura-home-hero__lead {
	margin: 0;
	max-width: 560px;
	font-size: clamp(14px, 1.8vw, 17px);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
}

.natura-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.natura-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.natura-home-btn--primary {
	background: linear-gradient(135deg, #3A1F0D 0%, #3A1F0D 100%);
	color: #fff;
	box-shadow: 0 12px 28px rgba(58, 31, 13, 0.28);
}

.natura-home-btn--ghost {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.28);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.natura-home-btn--light {
	background: #fff;
	color: #3A1F0D;
}

.natura-home-btn--outline-light {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.42);
	text-decoration: none;
}

.natura-home-btn:hover {
	transform: translateY(-1px);
}

.natura-home-hero__slider.owl-carousel {
	position: relative;
}

.natura-home-hero__slider .owl-nav {
	position: absolute;
	inset: 0;
	z-index: 4;
	margin: 0;
	pointer-events: none;
}

.natura-home-hero__slider .owl-nav button,
.natura-home-hero__slider .owl-nav div,
.natura-home-hero__slider .owl-nav button.owl-prev,
.natura-home-hero__slider .owl-nav button.owl-next,
.natura-home-hero__slider .owl-nav div.owl-prev,
.natura-home-hero__slider .owl-nav div.owl-next {
	position: absolute !important;
	top: 50% !important;
	left: auto !important;
	right: auto !important;
	transform: translateY(-50%) !important;
	margin: 0 !important;
	margin-top: 0 !important;
	pointer-events: auto;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 48px !important;
	height: 48px !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.18) !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.28) !important;
	font-size: 16px !important;
	line-height: 1 !important;
	padding: 0 !important;
	opacity: 1 !important;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	transition: background .2s ease, transform .2s ease;
}

.natura-home-hero__slider .owl-nav button.owl-prev,
.natura-home-hero__slider .owl-nav div.owl-prev {
	left: clamp(16px, 2.5vw, 36px) !important;
}

.natura-home-hero__slider .owl-nav button.owl-next,
.natura-home-hero__slider .owl-nav div.owl-next {
	right: clamp(16px, 2.5vw, 36px) !important;
}

.natura-home-hero__slider .owl-nav button:hover,
.natura-home-hero__slider .owl-nav div:hover {
	background: rgba(255, 255, 255, 0.28) !important;
	color: #fff !important;
}

.natura-home-hero__slider .owl-nav button.disabled,
.natura-home-hero__slider .owl-nav div.disabled {
	opacity: 0.35 !important;
	cursor: default;
}

.natura-home-hero__slider .owl-dots {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	z-index: 3;
	margin-top: 0 !important;
}

.natura-home-hero__slider .owl-dot {
	width: auto !important;
	height: auto !important;
	border: 0 !important;
	background: transparent !important;
	margin: 0 4px !important;
}

.natura-home-hero__slider .owl-dot span {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.45) !important;
	display: block;
	border-radius: 999px;
	margin: 0 !important;
}

.natura-home-hero__slider .owl-dot.active span {
	background: #fff !important;
}

.natura-home-section__eyebrow {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #3A1F0D;
}

.natura-home-section__eyebrow--light {
	color: rgba(255, 255, 255, 0.78);
}

.natura-home-section__head {
	margin-bottom: 28px;
	text-align: center;
}

.natura-home-section__head h2 {
	margin: 0;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 700;
	color: #3A1F0D;
}

.natura-home-section__head--row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	text-align: left;
}

.natura-home-link-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #3A1F0D;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.natura-home-about {
	position: relative;
	padding: 72px 0;
	background: #fff;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.natura-home-about--has-bg {
	background-color: #f8fafc;
}

.natura-home-about__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(255, 255, 255, var(--natura-about-overlay-opacity, 0));
}

.natura-home-about__inner {
	position: relative;
	z-index: 1;
}

.natura-home-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: 36px;
	align-items: center;
}

.natura-home-about__content h2 {
	margin: 0 0 12px;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 700;
	color: #3A1F0D;
}

.natura-home-about__lead {
	margin: 0 0 24px;
	color: #64748b;
	font-size: 15px;
	line-height: 1.7;
}

.natura-home-about__features {
	display: grid;
	gap: 16px;
	margin-bottom: 24px;
}

.natura-home-about__feature {
	display: flex;
	gap: 14px;
	padding: 18px;
	border-radius: 18px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.natura-home-about__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(135deg, #faf5ef 0%, #efe1d4 100%);
	color: #3A1F0D;
	font-size: 18px;
	flex-shrink: 0;
}

.natura-home-about__feature h3 {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
	color: #3A1F0D;
}

.natura-home-about__feature p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
}

.natura-home-catalogue-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

.natura-home-catalogue-card img {
	display: block;
	width: 100%;
	height: auto;
}

.natura-home-catalogue-card__badge {
	position: absolute;
	left: 16px;
	bottom: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.72);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.natura-home-why {
	position: relative;
	padding: 72px 0;
	background: #f8fafc;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.natura-home-why--has-bg {
	background-color: #3A1F0D;
}

.natura-home-why__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		180deg,
		rgba(15, 23, 42, var(--natura-why-overlay-opacity, 0.55)) 0%,
		rgba(15, 23, 42, calc(var(--natura-why-overlay-opacity, 0.55) + 0.1)) 100%
	);
}

.natura-home-why__inner {
	position: relative;
	z-index: 1;
}

.natura-home-section__head--light h2 {
	color: #fff;
}

.natura-home-why__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.natura-home-why__card {
	padding: 24px 22px;
	border-radius: 22px;
	background: rgba(255, 252, 248, 0.38);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	backdrop-filter: blur(20px) saturate(140%);
	border: 1px solid rgba(255, 255, 255, 0.42);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.natura-home-why:not(.natura-home-why--has-bg) .natura-home-why__card {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.natura-home-why--has-bg .natura-home-why__card h3,
.natura-home-why--has-bg .natura-home-why__card p {
	color: #fff;
}

.natura-home-why--has-bg .natura-home-why__card p {
	color: rgba(255, 255, 255, 0.82);
}

.natura-home-why__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 14px;
	border-radius: 16px;
	background: linear-gradient(135deg, #faf5ef 0%, #efe1d4 100%);
	color: #3A1F0D;
	font-size: 20px;
}

.natura-home-why__card h3 {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 700;
	color: #3A1F0D;
}

.natura-home-why__card p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
}

.natura-home-products {
	padding: 72px 0;
	background: #fff;
}

.natura-home-products__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.natura-home-product-card {
	border-radius: 22px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
	transition: transform .2s ease, box-shadow .2s ease;
}

.natura-home-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
}

.natura-home-product-card__media {
	display: block;
	background: #f8fafc;
	padding: 22px;
	text-align: center;
}

.natura-home-product-card__media img {
	max-width: 100%;
	max-height: 150px;
	object-fit: contain;
}

.natura-home-product-card__body {
	padding: 18px 18px 20px;
}

.natura-home-product-card__model {
	display: block;
	margin-bottom: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #94a3b8;
}

.natura-home-product-card__body h3 {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}

.natura-home-product-card__body h3 a {
	color: #3A1F0D;
	text-decoration: none;
}

.natura-home-product-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #3A1F0D;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.natura-home-quicklinks {
	padding: 8px 0 0;
	background: #fff;
}

.natura-home-quicklinks__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.natura-home-quicklink {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 22px 20px;
	border-radius: 20px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.06);
	text-decoration: none;
	color: inherit;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.natura-home-quicklink:hover {
	transform: translateY(-3px);
	background: #fff;
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.natura-home-quicklink__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(135deg, #faf5ef 0%, #efe1d4 100%);
	color: #3A1F0D;
	font-size: 18px;
}

.natura-home-quicklink strong {
	font-size: 16px;
	color: #3A1F0D;
}

.natura-home-quicklink span {
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
}

.natura-home-cta {
	padding: 64px 0 88px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 38%, #f1f5f9 68%, #f4f6f8 100%);
}

.natura-home-cta__band {
	position: relative;
	width: 100%;
	overflow: hidden;
	background:
		radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 42%),
		radial-gradient(circle at 82% 100%, rgba(0, 0, 0, 0.08) 0%, transparent 40%),
		linear-gradient(135deg, #3A1F0D 0%, #3A1F0D 52%, #3A1F0D 100%);
	box-shadow: 0 22px 50px rgba(58, 31, 13, 0.16);
}

.natura-home-cta__container {
	position: relative;
	z-index: 2;
}

.natura-home-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	width: 100%;
	padding: 44px var(--natura-layout-gutter, 18px);
}

.natura-home-cta__copy {
	position: relative;
	z-index: 2;
}

.natura-home-cta__copy h2 {
	margin: 0 0 8px;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 700;
	color: #fff;
}

.natura-home-cta__copy p {
	margin: 0;
	max-width: 620px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	line-height: 1.65;
}

.natura-home-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

@media (max-width: 1199px) {
	.natura-home-products__grid,
	.natura-home-quicklinks__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.natura-home-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.natura-home-about__grid {
		grid-template-columns: 1fr;
	}

	.natura-home-cta {
		padding: 48px 0 72px;
	}

	.natura-home-cta__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 36px var(--natura-layout-gutter, 18px);
	}

	.natura-home-cta__copy p {
		max-width: none;
	}

	.natura-home-cta__actions {
		justify-content: center;
		width: 100%;
	}

	.natura-home-section__head--row {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 767px) {
	.natura-home-hero__slider,
	.natura-home-hero__slide,
	.natura-home-hero__content {
		min-height: 72vh;
		height: auto;
	}

	.natura-home-why__grid,
	.natura-home-products__grid,
	.natura-home-quicklinks__grid {
		grid-template-columns: 1fr;
	}

	.natura-home-about,
	.natura-home-why,
	.natura-home-products {
		padding: 52px 0;
	}

	.natura-home-cta__inner {
		padding: 30px 18px;
	}
}

/* CMS corporate pages */
.natura-cms-page .boxed_wrapper {
	background: #f8fafc;
}

.natura-cms-section {
	padding: 28px 0 64px;
}

.natura-cms-layout {
	display: grid;
	grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.natura-cms-sidebar {
	position: sticky;
	top: 96px;
	padding: 22px 20px;
	border-radius: 22px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.natura-cms-sidebar__eyebrow {
	margin: 0 0 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #3A1F0D;
}

.natura-cms-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.natura-cms-nav a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 12px;
	border-radius: 14px;
	color: #334155;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}

.natura-cms-nav__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #cbd5e1;
	flex-shrink: 0;
	transition: background .2s ease, transform .2s ease;
}

.natura-cms-nav li.is-active a,
.natura-cms-nav a:hover,
.natura-cms-nav a:focus-visible {
	background: rgba(58, 31, 13, 0.08);
	color: #3A1F0D;
}

.natura-cms-nav li.is-active .natura-cms-nav__dot,
.natura-cms-nav a:hover .natura-cms-nav__dot {
	background: #3A1F0D;
	transform: scale(1.15);
}

.natura-cms-card {
	border-radius: 24px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
	overflow: hidden;
}

.natura-cms-card__head {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 28px 30px 0;
}

.natura-cms-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(58, 31, 13, 0.14), rgba(58, 31, 13, 0.08));
	color: #3A1F0D;
	font-size: 20px;
	flex-shrink: 0;
}

.natura-cms-card__head h2 {
	margin: 0 0 6px;
	font-size: clamp(22px, 2.5vw, 28px);
	font-weight: 700;
	color: #3A1F0D;
}

.natura-cms-card__head p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
}

.natura-cms-card__body {
	padding: 22px 30px 8px;
}

.natura-cms-prose {
	color: #334155;
	font-size: 15px;
	line-height: 1.75;
}

.natura-cms-prose p {
	margin: 0 0 16px;
}

.natura-cms-prose p:last-child {
	margin-bottom: 0;
}

.natura-cms-prose strong,
.natura-cms-prose b {
	color: #3A1F0D;
}

.natura-cms-features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.natura-cms-feature {
	display: flex;
	gap: 14px;
	padding: 18px 18px 16px;
	border-radius: 18px;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
	border: 1px solid rgba(15, 23, 42, 0.07);
}

.natura-cms-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(58, 31, 13, 0.12);
	color: #3A1F0D;
	font-size: 16px;
	flex-shrink: 0;
}

.natura-cms-feature__body h3 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	color: #3A1F0D;
	line-height: 1.35;
}

.natura-cms-feature__body p {
	margin: 0;
	color: #475569;
	font-size: 14px;
	line-height: 1.65;
}

.natura-cms-process__intro {
	margin: 0 0 22px;
	padding: 18px 20px;
	border-radius: 16px;
	background: rgba(58, 31, 13, 0.08);
	border: 1px solid rgba(58, 31, 13, 0.14);
	color: #3A1F0D;
	font-size: 15px;
	line-height: 1.7;
}

.natura-cms-process__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.natura-cms-process__steps li {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding: 16px 18px;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.natura-cms-process__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #3A1F0D;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
}

.natura-cms-process__steps p {
	margin: 8px 0 0;
	color: #475569;
	font-size: 14px;
	line-height: 1.65;
}

.natura-cms-media {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin-top: 22px;
}

.natura-cms-media__item {
	margin: 0;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
}

.natura-cms-media__item img {
	display: block;
	width: 100%;
	height: auto;
}

.natura-cms-card__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 20px 30px 28px;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
	margin-top: 18px;
}

.natura-cms-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.natura-cms-cta-btn--primary {
	background: #3A1F0D;
	color: #fff;
	box-shadow: 0 10px 24px rgba(58, 31, 13, 0.24);
}

.natura-cms-cta-btn--ghost {
	background: #fff;
	color: #3A1F0D;
	border: 1px solid rgba(58, 31, 13, 0.22);
}

.natura-cms-cta-btn:hover {
	transform: translateY(-1px);
	color: inherit;
}

.natura-cms-cta-btn--primary:hover {
	background: #3A1F0D;
	color: #fff;
}

@media (max-width: 991px) {
	.natura-cms-layout {
		grid-template-columns: 1fr;
	}

	.natura-cms-sidebar {
		position: static;
	}

	.natura-cms-features {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.natura-cms-card__head,
	.natura-cms-card__body,
	.natura-cms-card__cta {
		padding-left: 20px;
		padding-right: 20px;
	}

	.natura-cms-card__head {
		flex-direction: column;
	}
}

/* Blog page */
.natura-blog-page .boxed_wrapper {
	background: #f8fafc;
}

.natura-blog-section {
	padding: 28px 0 64px;
}

.natura-blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	gap: 28px;
	align-items: start;
}

.natura-blog-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.natura-blog-card {
	display: grid;
	grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
	gap: 0;
	border-radius: 22px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.natura-blog-card__media {
	display: block;
	min-height: 100%;
}

.natura-blog-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
}

.natura-blog-card__body {
	padding: 24px 26px;
}

.natura-blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 12px;
	color: #64748b;
	font-size: 12px;
	font-weight: 600;
}

.natura-blog-card__meta i {
	color: #3A1F0D;
	margin-right: 4px;
}

.natura-blog-card__title {
	margin: 0 0 12px;
	font-size: clamp(20px, 2.2vw, 24px);
	line-height: 1.3;
}

.natura-blog-card__title a {
	color: #3A1F0D;
	text-decoration: none;
}

.natura-blog-card__excerpt {
	margin: 0 0 16px;
	color: #475569;
	font-size: 14px;
	line-height: 1.7;
}

.natura-blog-card__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #3A1F0D;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.natura-blog-empty {
	padding: 28px;
	border-radius: 18px;
	background: #fff;
	border: 1px dashed rgba(15, 23, 42, 0.12);
	color: #64748b;
	text-align: center;
}

.natura-blog-sidebar {
	position: sticky;
	top: 96px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.natura-blog-sidebar__panel {
	padding: 22px 20px;
	border-radius: 22px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.natura-blog-sidebar__panel h3 {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 700;
	color: #3A1F0D;
}

.natura-blog-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.natura-blog-sidebar__item {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.natura-blog-sidebar__thumb {
	display: block;
	overflow: hidden;
	border-radius: 12px;
}

.natura-blog-sidebar__thumb img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: cover;
}

.natura-blog-sidebar__copy strong {
	display: block;
	margin-bottom: 4px;
	font-size: 13px;
	line-height: 1.45;
	color: #3A1F0D;
}

.natura-blog-sidebar__copy small {
	color: #64748b;
	font-size: 12px;
}

.natura-blog-pagination {
	margin-top: 24px;
}

.natura-blog-pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.natura-blog-pagination a,
.natura-blog-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	color: #334155;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.natura-blog-pagination li.is-active span {
	background: #3A1F0D;
	border-color: #3A1F0D;
	color: #fff;
}

@media (max-width: 991px) {
	.natura-blog-layout {
		grid-template-columns: 1fr;
	}

	.natura-blog-sidebar {
		position: static;
	}

	.natura-blog-card {
		grid-template-columns: 1fr;
	}
}

/* Search page */
.natura-search-page .boxed_wrapper {
	background: #f8fafc;
}

.natura-search-section {
	padding: 28px 0 64px;
}

.natura-search-panel {
	margin-bottom: 28px;
	padding: 24px;
	border-radius: 22px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.natura-search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
	gap: 12px;
	align-items: end;
}

.natura-search-form--extended .natura-products-filters {
	grid-column: 1 / -1;
}

.natura-search-form__field {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 16px;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.08);
}

.natura-search-form__field i {
	color: #3A1F0D;
	font-size: 16px;
}

.natura-search-form__field input {
	flex: 1;
	min-width: 0;
	height: 52px;
	border: 0;
	background: transparent;
	color: #3A1F0D;
	font-size: 15px;
	outline: none;
}

.natura-search-form__field input::placeholder {
	color: #94a3b8;
}

.natura-search-form__submit {
	min-width: 120px;
	padding: 0 22px;
	border: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, #3A1F0D 0%, #3A1F0D 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(58, 31, 13, 0.24);
	transition: transform .2s ease, box-shadow .2s ease;
}

.natura-search-form__submit:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(58, 31, 13, 0.3);
}

.natura-search-summary {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.natura-search-summary h2 {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
	color: #3A1F0D;
}

.natura-search-summary p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
}

.natura-search-summary strong {
	color: #3A1F0D;
}

.natura-search-empty {
	padding: 28px;
	border-radius: 18px;
	background: #fff;
	border: 1px dashed rgba(15, 23, 42, 0.12);
	color: #64748b;
	text-align: center;
}

.natura-search-grid {
	margin-top: 0;
}

@media (max-width: 767px) {
	.natura-search-form {
		grid-template-columns: 1fr;
	}

	.natura-search-form__submit {
		min-height: 48px;
	}
}

/* Anasayfa istatistik bandı */
.natura-home-stats {
	position: relative;
	padding: 88px 0 96px;
	background-color: #3A1F0D;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.natura-home-stats__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
	transform: scale(1.04);
	transition: transform 12s ease;
}

.natura-home-stats.is-visible .natura-home-stats__video {
	transform: scale(1);
}

.natura-home-stats__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(115deg, rgba(58, 31, 13, 0.22) 0%, transparent 42%),
		linear-gradient(
			180deg,
			rgba(15, 23, 42, calc(var(--natura-stats-overlay-opacity, 0.72) - 0.06)) 0%,
			rgba(15, 23, 42, calc(var(--natura-stats-overlay-opacity, 0.72) + 0.14)) 100%
		);
}

.natura-home-stats__glow {
	position: absolute;
	inset: auto -10% -30% -10%;
	height: 55%;
	z-index: 1;
	background: radial-gradient(ellipse at center, rgba(198, 113, 39, 0.18) 0%, transparent 68%);
	pointer-events: none;
}

.natura-home-stats__inner {
	position: relative;
	z-index: 2;
}

.natura-home-stats__top {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) auto;
	gap: 32px;
	align-items: end;
	margin-bottom: 40px;
}

.natura-home-stats__eyebrow {
	margin: 0 0 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(134, 239, 172, 0.92);
}

.natura-home-stats__copy h2 {
	margin: 0 0 16px;
	color: #fff;
	font-size: clamp(34px, 5vw, 54px);
	font-weight: 700;
	line-height: 1.08;
	max-width: 14ch;
	letter-spacing: -0.02em;
}

.natura-home-stats__copy p {
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(15px, 1.6vw, 18px);
	line-height: 1.75;
	max-width: 56ch;
}

.natura-home-stats__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 28px;
	border-radius: 14px;
	background: #fff;
	color: #3A1F0D;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
	transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.natura-home-stats__btn i {
	font-size: 13px;
	transition: transform 0.28s ease;
}

.natura-home-stats__btn:hover {
	background: #faf5ef;
	color: #3A1F0D;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.22);
}

.natura-home-stats__btn:hover i {
	transform: translateX(4px);
}

.natura-home-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.natura-home-stats__card {
	position: relative;
	overflow: hidden;
	padding: 28px 24px 30px;
	border-radius: 24px;
	background: rgba(255, 252, 248, 0.14);
	-webkit-backdrop-filter: blur(22px) saturate(150%);
	backdrop-filter: blur(22px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.2);
	text-align: left;
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.natura-home-stats__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 48%);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.natura-home-stats__card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 255, 255, 0.34);
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.28);
}

.natura-home-stats__card:hover::before {
	opacity: 1;
}

.natura-home-stats__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 18px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(198, 113, 39, 0.22) 0%, rgba(58, 31, 13, 0.14) 100%);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #e3d2c0;
	font-size: 20px;
}

.natura-home-stats__value {
	display: block;
	margin-bottom: 10px;
	color: #fff;
	font-size: clamp(36px, 4.8vw, 56px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
}

.natura-home-stats__label {
	display: block;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
}

.natura-home-stats__accent {
	display: block;
	width: 0;
	height: 3px;
	margin-top: 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, #C67127 0%, rgba(198, 113, 39, 0.15) 100%);
	transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--stat-delay, 0ms);
}

.natura-home-stats.is-visible .natura-home-stats__accent {
	width: 56px;
}

.natura-home-stats__reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--stat-delay, 0ms);
}

.natura-home-stats.is-visible .natura-home-stats__reveal {
	opacity: 1;
	transform: translateY(0);
}

.natura-home-stats__top.natura-home-stats__reveal {
	transition-delay: 0ms;
}

@media (max-width: 991px) {
	.natura-home-stats {
		padding: 72px 0 80px;
	}

	.natura-home-stats__top {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 28px;
	}

	.natura-home-stats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.natura-home-stats__card {
		padding: 24px 20px 26px;
	}
}

@media (max-width: 575px) {
	.natura-home-stats__grid {
		grid-template-columns: 1fr;
	}

	.natura-home-stats__value {
		font-size: clamp(32px, 10vw, 44px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.natura-home-stats__video,
	.natura-home-stats__reveal,
	.natura-home-stats__accent,
	.natura-home-stats__card,
	.natura-home-stats__btn {
		transition: none;
	}

	.natura-home-stats__reveal {
		opacity: 1;
		transform: none;
	}

	.natura-home-stats.is-visible .natura-home-stats__accent {
		width: 56px;
	}
}

/* Ürün detay açıklama alt bölüm */
.natura-pdetail-description {
	padding: 56px 0 96px;
	background: #f1f5f9;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.natura-pdetail-description__card {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
	padding: 36px 40px 40px;
}

.natura-pdetail-description__head {
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.natura-pdetail-description__head h2 {
	margin: 0;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	color: #3A1F0D;
	letter-spacing: -0.02em;
}

.natura-pdetail-description .natura-pdetail-rich {
	color: #334155;
	font-size: 15px;
	line-height: 1.85;
}

.natura-pdetail-description .natura-pdetail-rich > *:first-child {
	margin-top: 0;
}

.natura-pdetail-description .natura-pdetail-rich h3,
.natura-pdetail-description .natura-pdetail-rich h4,
.natura-pdetail-description .natura-pdetail-rich h5 {
	margin: 32px 0 14px;
	padding-left: 14px;
	border-left: 4px solid #3A1F0D;
	font-size: 18px;
	font-weight: 700;
	color: #3A1F0D;
	line-height: 1.35;
}

.natura-pdetail-description .natura-pdetail-rich h3:first-child,
.natura-pdetail-description .natura-pdetail-rich h4:first-child {
	margin-top: 0;
}

.natura-pdetail-description .natura-pdetail-rich p {
	margin: 0 0 16px;
	color: #475569;
}

.natura-pdetail-description .natura-pdetail-rich ul,
.natura-pdetail-description .natura-pdetail-rich ol {
	margin: 0 0 18px;
	padding-left: 1.25rem;
	color: #475569;
}

.natura-pdetail-description .natura-pdetail-rich li {
	margin-bottom: 8px;
}

.natura-pdetail-description .natura-pdetail-rich table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin: 20px 0 24px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 14px;
	overflow: hidden;
	background: #f8fafc;
	display: table;
}

.natura-pdetail-description .natura-pdetail-rich table td,
.natura-pdetail-description .natura-pdetail-rich table th {
	padding: 12px 16px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	font-size: 14px;
	vertical-align: top;
}

.natura-pdetail-description .natura-pdetail-rich table tr:last-child td {
	border-bottom: 0;
}

.natura-pdetail-description .natura-pdetail-rich table td:first-child {
	font-weight: 600;
	color: #3A1F0D;
	width: 38%;
	background: rgba(255, 255, 255, 0.7);
}

.natura-pdetail-description .natura-pdetail-rich strong,
.natura-pdetail-description .natura-pdetail-rich b {
	color: #3A1F0D;
	font-weight: 700;
}

@media (max-width: 767px) {
	.natura-pdetail-description {
		padding: 40px 0 64px;
	}

	.natura-pdetail-description__card {
		padding: 24px 20px 28px;
		border-radius: 18px;
	}

	.natura-pdetail-related {
		padding-top: 48px;
	}
}
