:root {
	--jsb-primary: #245a16;
	--jsb-deep: #13270f;
	--jsb-text: #192617;
	--jsb-muted: #64745e;
	--jsb-soft: #eef2ec;
	--jsb-cream: #fafaf7;
	--jsb-line: rgba(25, 38, 23, 0.12);
	--jsb-shadow: 0 24px 60px rgba(20, 35, 16, 0.15);
	--jsb-serif: Georgia, "Times New Roman", serif;
	--jsb-sans: ui-rounded, "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--jsb-cream);
	color: var(--jsb-text);
	font-family: var(--jsb-sans);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

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

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

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

button,
input,
textarea {
	font: inherit;
}

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

.skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 14px;
	left: 14px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: #fff;
	color: var(--jsb-text);
	clip: auto;
	border-radius: 4px;
}

.jsb-container {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.jsb-header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	padding: 28px 0 14px;
	color: #fff;
	border-bottom: 1px solid transparent;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.jsb-header.is-scrolled,
body:not(.home) .jsb-header {
	padding-top: 18px;
	background: rgba(250, 250, 247, 0.95);
	color: var(--jsb-text);
	border-bottom-color: var(--jsb-line);
	box-shadow: 0 10px 30px rgba(20, 30, 15, 0.06);
	backdrop-filter: blur(16px);
}

.jsb-header__inner {
	display: grid;
	grid-template-columns: 270px minmax(420px, 1fr) 230px;
	align-items: start;
	gap: 26px;
	width: min(1320px, calc(100% - 56px));
	margin: 0 auto;
}

.jsb-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	font-family: var(--jsb-serif);
	font-size: 1.55rem;
	font-weight: 700;
	line-height: 1;
}

.jsb-brand__mark,
.jsb-footer__brand span {
	display: inline-flex;
	width: 24px;
	height: 24px;
	color: currentColor;
}

.jsb-brand svg,
.jsb-footer svg,
.jsb-link-button svg,
.jsb-button svg,
.jsb-contact-item svg,
.jsb-value-card svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.custom-logo {
	max-width: 180px;
	max-height: 48px;
	width: auto;
	height: auto;
}

.jsb-nav {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	justify-self: center;
}

.jsb-nav ul {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(25, 38, 23, 0.12);
	border-radius: 999px;
	box-shadow: 0 8px 28px rgba(23, 38, 17, 0.08);
	backdrop-filter: blur(16px);
}

.jsb-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 78px;
	min-height: 38px;
	padding: 8px 17px;
	color: #343d31;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1;
	transition: background 160ms ease, color 160ms ease;
}

.jsb-nav a:hover,
.jsb-nav a:focus-visible,
.jsb-nav a.is-active {
	background: var(--jsb-primary);
	color: #fff;
	outline: none;
}

.jsb-language-switcher {
	position: relative;
	display: block;
	flex: 0 0 auto;
	color: var(--jsb-text);
}

.jsb-language-switcher details {
	position: relative;
}

.jsb-language-switcher summary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 50px;
	padding: 0 14px;
	border: 1px solid rgba(25, 38, 23, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 28px rgba(23, 38, 17, 0.08);
	color: #343d31;
	cursor: pointer;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	backdrop-filter: blur(16px);
}

.jsb-language-switcher summary::-webkit-details-marker {
	display: none;
}

.jsb-language-switcher summary::after {
	width: 7px;
	height: 7px;
	margin-left: 2px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: rotate(45deg) translateY(-2px);
}

.jsb-language-switcher details[open] summary,
.jsb-language-switcher summary:hover,
.jsb-language-switcher summary:focus-visible {
	background: var(--jsb-primary);
	color: #fff;
	outline: none;
}

.jsb-language-switcher__menu {
	position: absolute;
	z-index: 30;
	top: calc(100% + 10px);
	right: 0;
	display: grid;
	width: 220px;
	max-height: min(70vh, 420px);
	overflow: auto;
	padding: 8px;
	border: 1px solid var(--jsb-line);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 20px 48px rgba(20, 30, 15, 0.14);
}

.jsb-language-switcher__menu a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	width: auto;
	min-width: 0;
	min-height: 40px;
	padding: 0 10px;
	border-radius: 8px;
	color: var(--jsb-muted);
	font-size: 0.86rem;
	font-weight: 800;
}

.jsb-language-switcher__menu a:hover,
.jsb-language-switcher__menu a:focus-visible,
.jsb-language-switcher__menu a.is-active {
	background: rgba(36, 90, 22, 0.1);
	color: var(--jsb-primary);
	outline: none;
}

.jsb-language-switcher__menu span,
.jsb-language-switcher summary span {
	min-width: 26px;
	font-weight: 900;
}

.jsb-language-switcher__menu strong {
	font-weight: 800;
}

.jsb-google-translate-holder {
	position: absolute !important;
	top: auto !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt {
	display: none !important;
}

body.translated-ltr,
body.translated-rtl {
	top: 0 !important;
}

iframe.skiptranslate {
	display: none !important;
}

.jsb-header__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 0.73rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.jsb-header.is-scrolled .jsb-header__cta,
body:not(.home) .jsb-header__cta {
	color: var(--jsb-primary);
}

.jsb-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: currentColor;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 999px;
	cursor: pointer;
}

.jsb-menu-toggle svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}

.jsb-button,
.jsb-outline-button,
.jsb-link-button,
.jsb-footer__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 0 30px;
	border-radius: 999px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.jsb-button {
	color: #fff;
	background: var(--jsb-primary);
	box-shadow: 0 12px 26px rgba(36, 90, 22, 0.22);
}

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

.jsb-button--small {
	min-height: 44px;
	padding: 0 24px;
	font-size: 0.83rem;
	text-transform: none;
}

.jsb-button--full {
	width: 100%;
	border: 0;
	cursor: pointer;
}

.jsb-button--full svg {
	width: 18px;
	height: 18px;
}

.jsb-outline-button {
	min-height: 40px;
	padding: 0 18px;
	color: var(--jsb-text);
	background: #fff;
	border: 1px solid var(--jsb-line);
	font-size: 0.82rem;
	box-shadow: none;
}

.jsb-link-button {
	color: #fff;
	background: transparent;
}

.jsb-link-button svg,
.jsb-footer__button svg {
	width: 18px;
	height: 18px;
}

.jsb-main {
	overflow: hidden;
}

.jsb-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 672px;
	padding: 138px 0 70px;
	background-color: var(--jsb-deep);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.jsb-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(10, 23, 9, 0.32), rgba(10, 23, 9, 0.15) 48%, rgba(250, 250, 247, 0.72) 100%),
		linear-gradient(90deg, rgba(11, 30, 12, 0.78) 0%, rgba(11, 30, 12, 0.42) 46%, rgba(11, 30, 12, 0.18) 100%);
}

.jsb-hero__inner {
	position: relative;
	z-index: 1;
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.jsb-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	margin: 0 0 35px;
	padding: 0 38px;
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 800;
	line-height: 1;
}

.jsb-pill--glass {
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.33);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(12px);
}

.jsb-hero h1 {
	max-width: 760px;
	margin: 0;
	font-family: var(--jsb-serif);
	font-size: 4.45rem;
	line-height: 0.96;
}

.jsb-hero h1 span,
.jsb-hero h1 em {
	display: block;
}

.jsb-hero h1 em {
	font-style: italic;
	font-weight: 400;
}

.jsb-hero__text {
	max-width: 720px;
	margin: 28px 0 34px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.35rem;
	line-height: 1.45;
}

.jsb-hero__actions {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.jsb-section {
	padding: 86px 0;
	scroll-margin-top: 92px;
}

.jsb-section-head {
	max-width: 560px;
	margin: 0 auto 54px;
	text-align: center;
}

.jsb-section-head--left {
	margin-left: 0;
	text-align: left;
}

.jsb-section h2,
.jsb-section-head h2,
.jsb-featured__title {
	margin: 0;
	color: var(--jsb-text);
	font-family: var(--jsb-serif);
	font-size: 3.25rem;
	line-height: 1.04;
}

.jsb-section-head p,
.jsb-products__top p,
.jsb-company__content p,
.jsb-contact__info > p {
	margin: 18px 0 0;
	color: var(--jsb-muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

.jsb-company {
	background: var(--jsb-cream);
}

.jsb-company__grid {
	display: grid;
	grid-template-columns: minmax(420px, 0.95fr) minmax(390px, 0.85fr);
	align-items: center;
	gap: 86px;
}

.jsb-company__media {
	position: relative;
}

.jsb-company__media img {
	width: 100%;
	aspect-ratio: 0.82;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 28px 68px rgba(30, 27, 20, 0.16);
}

.jsb-company__badge {
	position: absolute;
	right: -28px;
	bottom: -26px;
	width: min(270px, 62%);
	padding: 28px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 22px 45px rgba(17, 24, 13, 0.16);
}

.jsb-company__badge strong {
	display: block;
	color: var(--jsb-primary);
	font-family: var(--jsb-serif);
	font-size: 2.45rem;
	line-height: 1;
}

.jsb-company__badge span {
	display: block;
	margin-top: 10px;
	color: #172014;
	font-size: 0.91rem;
	font-weight: 800;
	line-height: 1.5;
}

.jsb-company__content h2 {
	max-width: 560px;
	margin-bottom: 24px;
}

.jsb-divider {
	height: 1px;
	margin: 42px 0 34px;
	background: var(--jsb-line);
}

.jsb-company__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(120px, 1fr));
	gap: 32px;
}

.jsb-company__stats strong {
	display: block;
	color: var(--jsb-text);
	font-family: var(--jsb-serif);
	font-size: 1.85rem;
	line-height: 1;
}

.jsb-company__stats span {
	display: block;
	margin-top: 8px;
	color: var(--jsb-primary);
	font-size: 0.9rem;
}

.jsb-vision {
	background: var(--jsb-primary);
	color: #fff;
}

.jsb-vision .jsb-section-head h2,
.jsb-vision .jsb-section-head p {
	color: #fff;
}

.jsb-vision .jsb-section-head {
	max-width: 720px;
	margin-bottom: 50px;
}

.jsb-vision__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.jsb-value-card {
	min-height: 214px;
	padding: 30px 28px 28px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 10px;
}

.jsb-value-card__icon {
	display: inline-flex;
	width: 34px;
	height: 34px;
	margin-bottom: 24px;
	color: #fff;
}

.jsb-value-card h3 {
	margin: 0 0 12px;
	color: #fff;
	font-family: var(--jsb-serif);
	font-size: 1.55rem;
	line-height: 1.1;
}

.jsb-value-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.95rem;
}

.jsb-products {
	background: var(--jsb-cream);
}

.jsb-products__top {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 54px;
}

.jsb-products__top .jsb-section-head {
	margin-bottom: 0;
}

.jsb-product-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.95fr);
	grid-template-rows: repeat(2, minmax(230px, 1fr));
	gap: 22px;
}

.jsb-collection-card {
	position: relative;
	min-height: 245px;
	overflow: hidden;
	border-radius: 18px;
	background: var(--jsb-deep);
	isolation: isolate;
}

.jsb-collection-card--large {
	grid-row: span 2;
	min-height: 520px;
}

.jsb-collection-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.9);
}

.jsb-collection-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(13, 24, 10, 0.06) 0%, rgba(13, 24, 10, 0.75) 100%);
}

.jsb-collection-card__content {
	position: absolute;
	z-index: 2;
	left: 34px;
	right: 34px;
	bottom: 30px;
	color: #fff;
}

.jsb-collection-card__content span {
	display: inline-flex;
	margin-bottom: 10px;
	padding: 5px 10px;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1;
}

.jsb-collection-card__content h3 {
	margin: 0;
	font-family: var(--jsb-serif);
	font-size: 1.6rem;
	line-height: 1.08;
}

.jsb-collection-card--large h3 {
	font-size: 1.85rem;
}

.jsb-collection-card__content p {
	max-width: 540px;
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	line-height: 1.5;
}

.jsb-featured {
	background: #fff;
}

.jsb-featured__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 68px;
}

.jsb-featured__title {
	margin: 0;
	text-align: center;
	font-family: var(--jsb-sans);
	font-weight: 500;
}

.jsb-featured__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 76px 42px;
	align-items: start;
}

.jsb-featured-product {
	display: block;
	margin: 0;
	min-height: 190px;
}

.jsb-featured-product img {
	width: 100%;
	aspect-ratio: 1.62;
	object-fit: cover;
	background: #f6f6f2;
}

.jsb-featured-product__caption {
	display: block;
	margin-top: 16px;
	text-align: center;
}

.jsb-featured-product__category {
	display: inline-block;
	color: #8b8b8b;
	font-size: 0.96rem;
	font-weight: 900;
	letter-spacing: 0;
}

.jsb-product-archive,
.jsb-single-product-page {
	background: #fff;
}

.jsb-product-hero {
	padding: 160px 0 74px;
	background: var(--jsb-soft);
	text-align: center;
}

.jsb-product-eyebrow {
	margin: 0 0 14px;
	color: var(--jsb-primary);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.jsb-product-hero h1 {
	margin: 0;
	color: var(--jsb-text);
	font-family: var(--jsb-serif);
	font-size: 3.4rem;
	line-height: 1.05;
}

.jsb-product-hero p:not(.jsb-product-eyebrow) {
	max-width: 680px;
	margin: 18px auto 0;
	color: var(--jsb-muted);
	font-size: 1.05rem;
}

.jsb-product-catalog {
	padding: 58px 0 96px;
}

.jsb-product-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 46px;
}

.jsb-product-filter a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 40px;
	padding: 0 16px;
	color: var(--jsb-muted);
	background: #fff;
	border: 1px solid var(--jsb-line);
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1;
}

.jsb-product-filter a.is-active,
.jsb-product-filter a:hover,
.jsb-product-filter a:focus-visible {
	color: #fff;
	background: var(--jsb-primary);
	outline: none;
}

.jsb-product-filter span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 7px;
	color: inherit;
	background: rgba(100, 116, 94, 0.12);
	border-radius: 999px;
	font-size: 0.72rem;
}

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

.jsb-product-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--jsb-line);
	border-radius: 14px;
	box-shadow: 0 18px 45px rgba(20, 30, 15, 0.08);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.jsb-product-card:hover,
.jsb-product-card:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 24px 54px rgba(20, 30, 15, 0.13);
	outline: none;
}

.jsb-product-card__media {
	background: #f6f6f2;
}

.jsb-product-card__media img {
	width: 100%;
	aspect-ratio: 1.24;
	object-fit: cover;
}

.jsb-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px;
}

.jsb-product-card__body span,
.jsb-product-tax-link {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 10px;
	color: var(--jsb-primary);
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.jsb-product-card__body h2 {
	margin: 0;
	color: var(--jsb-text);
	font-family: var(--jsb-serif);
	font-size: 1.28rem;
	line-height: 1.15;
}

.jsb-product-card__body p {
	margin: 10px 0 18px;
	color: var(--jsb-muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.jsb-product-card__body strong {
	margin-top: auto;
	color: var(--jsb-text);
	font-size: 0.84rem;
}

.jsb-product-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 50px;
}

.jsb-product-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	border: 1px solid var(--jsb-line);
	border-radius: 999px;
	color: var(--jsb-text);
	font-weight: 800;
}

.jsb-product-pagination .current,
.jsb-product-pagination a:hover,
.jsb-product-pagination a:focus-visible {
	color: #fff;
	background: var(--jsb-primary);
	outline: none;
}

.jsb-product-empty {
	padding: 52px;
	background: var(--jsb-soft);
	border-radius: 14px;
	text-align: center;
}

.jsb-single-product {
	padding: 160px 0 86px;
	background: #fff;
}

.jsb-single-product__grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 0.8fr);
	gap: 70px;
	align-items: center;
}

.jsb-single-product__gallery {
	min-width: 0;
}

.jsb-single-product__media {
	overflow: hidden;
	background: #f6f6f2;
	border-radius: 18px;
	box-shadow: 0 28px 68px rgba(30, 27, 20, 0.13);
	cursor: zoom-in;
}

.jsb-single-product__media img {
	width: 100%;
	aspect-ratio: 1.05;
	object-fit: cover;
	transition: transform 220ms ease;
	transform-origin: center;
	will-change: transform;
}

.jsb-single-product__media.is-zoomed img {
	transform: scale(1.75);
}

.jsb-single-product__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.jsb-single-product__thumbs button {
	overflow: hidden;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 10px;
	background: #f6f6f2;
	cursor: pointer;
}

.jsb-single-product__thumbs button.is-active,
.jsb-single-product__thumbs button:focus-visible {
	border-color: var(--jsb-primary);
	outline: none;
}

.jsb-single-product__thumbs img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.jsb-single-product__content h1 {
	margin: 0;
	color: var(--jsb-text);
	font-family: var(--jsb-serif);
	font-size: 3.2rem;
	line-height: 1.05;
}

.jsb-single-product__lead {
	margin: 20px 0 0;
	color: var(--jsb-muted);
	font-size: 1.08rem;
	line-height: 1.65;
}

.jsb-single-product__description {
	margin-top: 28px;
	color: var(--jsb-muted);
}

.jsb-single-product__description p:first-child {
	margin-top: 0;
}

.jsb-single-product__specs {
	margin-top: 30px;
	padding-top: 28px;
	border-top: 1px solid var(--jsb-line);
}

.jsb-single-product__specs h2 {
	margin: 0 0 18px;
	color: var(--jsb-text);
	font-family: var(--jsb-serif);
	font-size: 1.65rem;
	line-height: 1.1;
}

.jsb-single-product__specs dl {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin: 0;
	border: 1px solid var(--jsb-line);
	border-radius: 14px;
	overflow: hidden;
}

.jsb-single-product__specs div {
	display: grid;
	grid-template-columns: minmax(150px, 0.48fr) 1fr;
	gap: 18px;
	padding: 13px 16px;
	background: #fff;
}

.jsb-single-product__specs div:nth-child(odd) {
	background: var(--jsb-cream);
}

.jsb-single-product__specs dt {
	color: var(--jsb-text);
	font-weight: 900;
}

.jsb-single-product__specs dd {
	margin: 0;
	color: var(--jsb-muted);
}

.jsb-single-product__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.jsb-related-products {
	padding: 76px 0 96px;
	background: var(--jsb-soft);
}

.jsb-related-products__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 36px;
}

.jsb-related-products__top h2 {
	margin: 0;
	font-family: var(--jsb-serif);
	font-size: 2.3rem;
	line-height: 1.1;
}

.jsb-team {
	background: var(--jsb-soft);
	padding: 110px 0 118px;
}

.jsb-team .jsb-section-head {
	margin-bottom: 56px;
}

.jsb-team__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 74px;
	width: min(760px, 100%);
	margin: 0 auto;
}

.jsb-team-member {
	text-align: center;
}

.jsb-team-member img {
	width: 188px;
	height: 188px;
	margin: 0 auto 22px;
	object-fit: cover;
	filter: grayscale(1);
	border-radius: 18px;
}

.jsb-team-member h3 {
	margin: 0;
	font-family: var(--jsb-serif);
	font-size: 1.22rem;
	line-height: 1.2;
}

.jsb-team-member p {
	margin: 6px 0 0;
	color: var(--jsb-primary);
	font-size: 0.9rem;
	font-weight: 700;
}

.jsb-contact {
	background: #fff;
}

.jsb-contact__grid {
	display: grid;
	grid-template-columns: minmax(330px, 0.82fr) minmax(420px, 0.92fr);
	gap: 84px;
	align-items: center;
}

.jsb-contact__info h2 {
	margin-bottom: 18px;
}

.jsb-contact-list {
	display: grid;
	gap: 28px;
	margin-top: 34px;
}

.jsb-contact-item {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.jsb-contact-item > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: var(--jsb-primary);
	background: var(--jsb-soft);
	border-radius: 999px;
}

.jsb-contact-item svg {
	width: 20px;
	height: 20px;
}

.jsb-contact-item strong {
	display: block;
	margin-bottom: 2px;
	font-family: var(--jsb-serif);
	font-size: 1.05rem;
}

.jsb-contact-item p {
	margin: 0;
	color: var(--jsb-muted);
	line-height: 1.55;
}

.jsb-contact-form {
	padding: 38px 36px 34px;
	background: #fff;
	border: 1px solid var(--jsb-line);
	border-radius: 16px;
	box-shadow: 0 18px 42px rgba(20, 30, 15, 0.13);
}

.jsb-contact-form h2 {
	margin: 0 0 24px;
	font-size: 1.6rem;
}

.jsb-contact-form label {
	display: block;
	margin-bottom: 20px;
}

.jsb-contact-form label span {
	display: block;
	margin-bottom: 7px;
	font-size: 0.82rem;
	font-weight: 800;
}

.jsb-contact-form input,
.jsb-contact-form textarea {
	width: 100%;
	color: var(--jsb-text);
	background: #fbfbf8;
	border: 1px solid rgba(25, 38, 23, 0.18);
	border-radius: 9px;
	outline: none;
	transition: border-color 140ms ease, box-shadow 140ms ease;
}

.jsb-contact-form input {
	min-height: 40px;
	padding: 0 14px;
}

.jsb-contact-form textarea {
	min-height: 104px;
	padding: 13px 14px;
	resize: vertical;
}

.jsb-contact-form input:focus,
.jsb-contact-form textarea:focus {
	border-color: var(--jsb-primary);
	box-shadow: 0 0 0 3px rgba(36, 90, 22, 0.12);
}

.jsb-honeypot {
	position: absolute;
	left: -9999px;
}

.jsb-form-status {
	margin: -6px 0 18px;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 800;
}

.jsb-form-status.is-success {
	color: #15551c;
	background: #e6f5e8;
}

.jsb-form-status.is-error {
	color: #8a1d1d;
	background: #fae7e7;
}

.jsb-footer {
	background: var(--jsb-deep);
	color: rgba(255, 255, 255, 0.72);
}

.jsb-footer__inner {
	display: grid;
	grid-template-columns: minmax(260px, 1.1fr) minmax(160px, 0.6fr) minmax(260px, 0.9fr);
	gap: 86px;
	width: min(1148px, calc(100% - 48px));
	margin: 0 auto;
	padding: 68px 0 54px;
}

.jsb-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	color: #fff;
	font-family: var(--jsb-serif);
	font-size: 1.35rem;
	font-weight: 700;
}

.jsb-footer__about p {
	max-width: 340px;
	margin: 0 0 28px;
	line-height: 1.65;
}

.jsb-footer h2 {
	margin: 0 0 22px;
	color: #fff;
	font-family: var(--jsb-serif);
	font-size: 1rem;
}

.jsb-footer ul {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jsb-footer__nav a,
.jsb-footer__contact a {
	color: rgba(255, 255, 255, 0.72);
}

.jsb-footer__contact li {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
}

.jsb-footer__contact svg {
	width: 18px;
	height: 18px;
}

.jsb-footer__button {
	min-height: 36px;
	padding: 0 14px;
	color: #fff;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.84rem;
}

.jsb-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(1148px, calc(100% - 48px));
	margin: 0 auto;
	padding: 28px 0 36px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.82rem;
}

.jsb-footer__bottom p {
	margin: 0;
}

.jsb-footer__bottom div {
	display: flex;
	gap: 28px;
}

.jsb-floating {
	position: fixed;
	z-index: 95;
	right: 20px;
	bottom: 18px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	pointer-events: none;
}

.jsb-whatsapp,
.jsb-back-top {
	pointer-events: auto;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.jsb-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 58px;
	padding: 0 20px;
	color: #fff;
	background: #23d366;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 800;
}

.jsb-whatsapp svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.jsb-back-top {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: #fff;
	background: #07073b;
}

.jsb-back-top svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.jsb-page {
	min-height: 60vh;
	padding: 140px 0 80px;
	background: var(--jsb-cream);
}

.jsb-entry {
	padding: 28px 0;
	border-bottom: 1px solid var(--jsb-line);
}

.jsb-entry h1 {
	margin: 0 0 12px;
	font-family: var(--jsb-serif);
}

@media (max-width: 1120px) {
	.jsb-header__inner {
		grid-template-columns: 220px minmax(340px, 1fr) 190px;
		gap: 16px;
	}

	.jsb-nav a {
		min-width: 66px;
		padding-inline: 13px;
	}

	.jsb-company__grid,
	.jsb-contact__grid {
		gap: 54px;
	}

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

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

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

	.jsb-header,
	.jsb-header.is-scrolled,
	body:not(.home) .jsb-header {
		padding: 14px 0;
	}

	.jsb-header__inner {
		position: relative;
		grid-template-columns: 1fr auto;
		align-items: center;
		width: min(100% - 34px, 760px);
	}

	.jsb-header__cta {
		display: none;
	}

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

	.jsb-header.is-scrolled .jsb-menu-toggle,
	body:not(.home) .jsb-menu-toggle {
		background: #fff;
		border-color: var(--jsb-line);
	}

	.jsb-nav {
		position: absolute;
		top: calc(100% + 12px);
		right: 0;
		display: none;
		width: min(280px, calc(100vw - 34px));
	}

	.jsb-nav.is-open {
		display: block;
	}

	.jsb-nav ul {
		display: grid;
		gap: 5px;
		padding: 10px;
		border-radius: 18px;
	}

	.jsb-nav a {
		justify-content: flex-start;
		width: 100%;
		min-height: 42px;
	}

	.jsb-language-switcher {
		margin-top: 10px;
	}

	.jsb-language-switcher summary {
		width: 100%;
		min-height: 44px;
		justify-content: center;
	}

	.jsb-language-switcher__menu {
		left: 0;
		right: auto;
		width: 100%;
	}

	.jsb-hero {
		min-height: 660px;
		padding-top: 128px;
		background-position: 58% center;
	}

	.jsb-hero h1 {
		max-width: 620px;
		font-size: 3.45rem;
	}

	.jsb-hero__text {
		font-size: 1.1rem;
	}

	.jsb-section {
		padding: 70px 0;
	}

	.jsb-section h2,
	.jsb-section-head h2,
	.jsb-featured__title {
		font-size: 2.55rem;
	}

	.jsb-company__grid,
	.jsb-contact__grid {
		grid-template-columns: 1fr;
	}

	.jsb-company__media {
		max-width: 610px;
	}

	.jsb-vision__cards,
	.jsb-team__grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.jsb-product-showcase {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.jsb-collection-card,
	.jsb-collection-card--large {
		min-height: 360px;
		grid-row: auto;
	}

	.jsb-featured__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 34px 22px;
	}

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

	.jsb-single-product__grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.jsb-footer__inner {
		grid-template-columns: 1fr;
		gap: 38px;
	}
}

@media (max-width: 640px) {
	.jsb-container,
	.jsb-hero__inner {
		width: min(100% - 32px, 560px);
	}

	.jsb-brand {
		font-size: 1.28rem;
	}

	.jsb-hero {
		min-height: 620px;
		background-position: 62% center;
	}

	.jsb-hero h1 {
		font-size: 2.65rem;
	}

	.jsb-pill {
		min-height: 34px;
		padding-inline: 18px;
	}

	.jsb-hero__actions {
		align-items: stretch;
		flex-direction: column;
		max-width: 260px;
	}

	.jsb-section h2,
	.jsb-section-head h2,
	.jsb-featured__title {
		font-size: 2.12rem;
	}

	.jsb-featured__title {
		margin-bottom: 42px;
	}

	.jsb-featured__top,
	.jsb-related-products__top {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 42px;
	}

	.jsb-featured__top .jsb-featured__title {
		margin-bottom: 0;
	}

	.jsb-company__badge {
		position: static;
		width: 100%;
		margin-top: 14px;
	}

	.jsb-company__stats {
		grid-template-columns: 1fr;
	}

	.jsb-products__top {
		align-items: flex-start;
		flex-direction: column;
	}

	.jsb-collection-card,
	.jsb-collection-card--large {
		min-height: 320px;
	}

	.jsb-collection-card__content {
		left: 22px;
		right: 22px;
		bottom: 22px;
	}

	.jsb-featured__grid {
		grid-template-columns: 1fr;
	}

	.jsb-product-hero {
		padding: 128px 0 56px;
		text-align: left;
	}

	.jsb-product-hero h1,
	.jsb-single-product__content h1 {
		font-size: 2.4rem;
	}

	.jsb-product-catalog,
	.jsb-related-products {
		padding: 54px 0 70px;
	}

	.jsb-product-grid {
		grid-template-columns: 1fr;
	}

	.jsb-product-filter {
		gap: 9px;
		margin-bottom: 34px;
	}

	.jsb-product-filter a {
		min-height: 38px;
		padding-inline: 13px;
	}

	.jsb-single-product {
		padding: 128px 0 64px;
	}

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

	.jsb-single-product__specs div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.jsb-single-product__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.jsb-team-member img {
		width: 170px;
		height: 170px;
	}

	.jsb-contact-form {
		padding: 28px 20px 24px;
	}

	.jsb-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.jsb-floating {
		right: 14px;
		bottom: 14px;
	}

	.jsb-whatsapp {
		min-height: 48px;
		padding-inline: 14px;
		font-size: 0.9rem;
	}

	.jsb-whatsapp svg {
		width: 24px;
		height: 24px;
	}
}
