:root {
	--ink: #102633;
	--muted: #667987;
	--line: #dce5eb;
	--soft: #f4f8fa;
	--panel: #ffffff;
	--brand: #0c6d8f;
	--brand-dark: #064c68;
	--accent: #d8a24a;
	--shadow: 0 16px 42px rgba(16, 38, 51, .1);
	--shadow-soft: 0 10px 28px rgba(16, 38, 51, .07);
	--container: 1180px;
}

* { box-sizing: border-box; }
body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--ink);
	background: #f7fafc;
	font-size: 15px;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	display: grid;
	grid-template-columns: auto minmax(280px, 520px) auto;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: min(calc(100% - 32px), var(--container));
	margin: 12px auto 0;
	padding: 10px 16px;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(220, 229, 235, .9);
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(16, 38, 51, .05);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo {
	width: 108px;
	max-height: 46px;
	object-fit: contain;
}
.brand-mark {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	color: #fff;
	font-weight: 800;
	background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.brand strong { display: block; letter-spacing: .08em; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.brand-text { display: none; }
.header-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(16, 38, 51, .06);
}
.header-search input {
	min-width: 0;
	border: 0;
	outline: 0;
	padding: 11px 13px;
	color: var(--ink);
	font-size: 14px;
}
.header-search button {
	align-self: stretch;
	border: 0;
	background: var(--brand);
	color: #fff;
	font-weight: 800;
	padding: 0 15px;
	cursor: pointer;
	font-size: 14px;
}
.nav { display: flex; align-items: center; gap: 16px; color: #294554; font-size: 14px; font-weight: 650; }
.wishlist-toggle {
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 8px;
	padding: 8px 11px;
	cursor: pointer;
	color: var(--ink);
}
.wishlist-toggle span {
	display: inline-grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	margin-left: 6px;
	border-radius: 999px;
	background: var(--brand);
	color: #fff;
	font-size: 12px;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr);
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
	width: min(calc(100% - 32px), var(--container));
	margin: 18px auto 0;
	padding: clamp(38px, 6vw, 68px);
	border: 1px solid var(--line);
	border-radius: 8px;
	background:
		radial-gradient(circle at 92% 8%, rgba(216, 162, 74, .2), transparent 28%),
		linear-gradient(135deg, #f9fcfd 0%, #edf5f8 100%);
	box-shadow: var(--shadow-soft);
}
.home-hero { min-height: 520px; }
.hero h1, .page-hero h1 {
	margin: 0;
	max-width: 720px;
	font-size: clamp(34px, 4.4vw, 56px);
	line-height: 1.04;
	letter-spacing: 0;
}
.hero p, .page-hero p { color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 610px; }
.eyebrow {
	margin: 0 0 12px;
	text-transform: uppercase;
	letter-spacing: .13em;
	font-size: 11px;
	font-weight: 800;
	color: var(--brand);
}
.hero-actions, .detail-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 24px; }
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 8px;
	border: 1px solid var(--brand);
	background: var(--brand);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
	font-size: 14px;
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-ghost { background: #fff; color: var(--brand-dark); border-color: var(--line); }
.btn-light { background: #fff; color: var(--brand-dark); border-color: #fff; }
.btn.small { min-height: 38px; padding: 0 12px; font-size: 13px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.trust-row span, .product-specs span {
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	padding: 7px 11px;
	color: #3b5665;
	font-weight: 700;
	font-size: 12px;
}
.hero-showcase { position: relative; min-height: 390px; }
.hero-card.main {
	position: relative;
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow);
	padding: 14px;
	overflow: hidden;
}
.hero-product-card img, .hero-product-card svg {
	width: 100%;
	height: 360px;
	object-fit: cover;
	object-position: center;
	border-radius: 8px;
	background: #f7fafc;
}
.hero-product-card img[src*="/saavi-seed/"] {
	transform: scale(1.22);
}
.hero-product-caption {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 28px;
	display: grid;
	gap: 4px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 8px;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-soft);
}
.hero-product-caption span {
	color: var(--brand);
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .12em;
}
.hero-product-caption strong {
	font-size: 18px;
	line-height: 1.25;
}
.mini-stat {
	position: absolute;
	right: 4%;
	bottom: 34px;
	min-width: 150px;
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow);
	padding: 14px;
}
.mini-stat.second { left: 0; right: auto; top: 36px; bottom: auto; }
.mini-stat strong { display: block; font-size: 26px; }
.mini-stat span { color: var(--muted); font-size: 13px; font-weight: 700; }

.category-band {
	display: grid;
	grid-template-columns: repeat(9, minmax(120px, 1fr));
	gap: 10px;
	width: min(calc(100% - 32px), var(--container));
	margin: 16px auto 0;
	padding: 12px;
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}
.category-band a {
	display: grid;
	place-items: center;
	min-height: 54px;
	white-space: nowrap;
	border-radius: 8px;
	background: var(--soft);
	color: #234454;
	font-weight: 800;
}
.category-band a:hover { background: #e6f0f4; color: var(--brand-dark); }

.section, .split-section, .editorial-section, .why-editorial {
	width: min(calc(100% - 32px), var(--container));
	margin-inline: auto;
	padding: clamp(38px, 5vw, 62px) 0;
}
.section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 26px;
}
.section-head h2, .split-section h2, .editorial-copy h2 {
	margin: 0;
	font-size: clamp(25px, 2.6vw, 36px);
	line-height: 1.15;
}
.featured-products { background: #fff; }
.featured-products, .why-editorial {
	margin-top: 18px;
	padding: clamp(30px, 4vw, 46px);
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow-soft);
}
.featured-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.editorial-section {
	display: grid;
	grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
	margin-top: 18px;
	padding: clamp(34px, 5vw, 54px);
	border: 1px solid var(--line);
	border-radius: 8px;
	background: linear-gradient(180deg, #f8fbfc 0%, #fff 100%);
	box-shadow: var(--shadow-soft);
}
.editorial-media {
	position: relative;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow-soft);
}
.editorial-media img, .editorial-media svg {
	width: 100%;
	aspect-ratio: 1.18;
	object-fit: contain;
	border-radius: 8px;
	background: #f6fafc;
}
.media-note {
	position: absolute;
	left: 32px;
	right: 32px;
	bottom: 32px;
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 8px;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-soft);
}
.media-note strong { font-size: 14px; }
.media-note span { color: var(--muted); font-size: 13px; }
.editorial-copy p {
	color: var(--muted);
	font-size: 15.5px;
	line-height: 1.75;
}
.quality-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 22px 0 10px;
}
.quality-list span {
	border-left: 3px solid var(--accent);
	background: var(--soft);
	border-radius: 8px;
	padding: 12px;
	color: #2e4b5a;
	font-size: 13px;
	font-weight: 750;
}
.split-section {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: clamp(24px, 5vw, 70px);
	align-items: start;
	background: var(--soft);
}
.split-section p {
	margin-top: 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.75;
}
.text-link {
	display: inline-flex;
	margin-top: 8px;
	color: var(--brand-dark);
	font-weight: 800;
	font-size: 14px;
}
.why-editorial { background: #fff; }
.centered-head {
	justify-content: center;
	text-align: center;
}
.centered-head h2 { max-width: 720px; }
.feature-story-grid {
	display: grid;
	grid-template-columns: 1.25fr .82fr .82fr;
	grid-template-rows: auto auto;
	gap: 16px;
}
.story-card {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	padding: 20px;
	box-shadow: var(--shadow-soft);
}
.story-card.large {
	grid-row: span 2;
	display: grid;
	gap: 18px;
}
.story-card strong {
	display: block;
	font-size: 18px;
	line-height: 1.25;
}
.story-card p {
	margin: 8px 0 0;
	color: var(--muted);
	line-height: 1.65;
}
.story-image, .image-card {
	display: grid;
	place-items: center;
	background: #f8fbfc;
}
.story-image img, .story-image svg, .image-card img, .image-card svg {
	width: 100%;
	aspect-ratio: 1.35;
	object-fit: contain;
}
.story-card.accent {
	background: linear-gradient(135deg, var(--brand-dark), var(--brand));
	color: #fff;
}
.story-card.accent p { color: rgba(255, 255, 255, .82); }
.image-card { padding: 12px; }

.catalog {
	width: min(calc(100% - 32px), var(--container));
	margin: 18px auto 0;
	padding: clamp(34px, 5vw, 54px);
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow-soft);
}
.catalog-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 26px;
}
.catalog-head h2, .inquiry-strip h2, .detail-section h2, .story-grid h2 {
	margin: 0;
	font-size: clamp(25px, 2.6vw, 36px);
	line-height: 1.15;
}
.search-box { width: min(100%, 420px); display: grid; gap: 7px; color: var(--muted); font-weight: 700; }
.search-box input, .filters select, .contact-form input, .contact-form select, .contact-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	padding: 13px 14px;
	outline: none;
}
.search-box input:focus, .filters select:focus, .contact-form input:focus, .contact-form textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(12, 109, 143, .12); }
.catalog-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 26px; align-items: start; }
.filters {
	position: sticky;
	top: 86px;
	display: grid;
	gap: 15px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}
.filters h3 { margin: 0; }
.filters label, .contact-form label { display: grid; gap: 7px; color: var(--muted); font-weight: 700; }
.budget-filter span { color: var(--ink); }
.budget-filter input[type="range"] {
	width: 100%;
	accent-color: var(--brand);
}
.link-btn { border: 0; background: transparent; color: var(--brand); font-weight: 800; cursor: pointer; padding: 8px 0; text-align: left; }
.product-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}
.result-count { color: var(--muted); font-weight: 700; }
.muted-note { margin: 0; color: var(--muted); font-size: 14px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.product-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(16, 38, 51, .045);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card[hidden], .product-card.is-filtered-out { display: none !important; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c8d8e0; }
.product-art {
	position: relative;
	display: grid;
	place-items: center;
	height: 220px;
	padding: 10px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(239, 247, 250, .7)),
		#f8fbfc;
	overflow: hidden;
}
.product-art:after {
	content: "";
	position: absolute;
	inset: auto 18px 14px 18px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(12, 109, 143, .18), transparent);
}
.product-art img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 8px;
	background: transparent;
}
.product-art img[src*="/saavi-seed/"] {
	width: 126%;
	height: 126%;
	max-width: none;
	object-fit: cover;
	object-position: center 52%;
}
.compact-card .product-art { height: 218px; }
.featured-grid .compact-card .product-art { height: 210px; }
.compact-card .product-art svg { width: 100%; height: 100%; object-fit: contain; }
.product-info {
	display: grid;
	gap: 10px;
	padding: 15px;
	min-height: 148px;
	align-content: start;
}
.product-meta { display: flex; justify-content: space-between; gap: 8px; color: var(--brand); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.product-category {
	color: var(--brand);
	font-size: 10.5px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.product-card h3 { margin: 0; min-height: 44px; font-size: 17px; line-height: 1.3; }
.product-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.product-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.product-specs span { padding: 7px 10px; background: var(--soft); }
.product-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.icon-btn {
	min-width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	color: var(--brand-dark);
	font-weight: 900;
}
.icon-btn.active { background: #fff3f3; border-color: #ffc9c9; color: #c82935; }
.icon-btn.large { width: auto; padding: 0 15px; }
.empty-state {
	border: 1px dashed var(--line);
	border-radius: 8px;
	padding: 42px;
	text-align: center;
	color: var(--muted);
	background: var(--soft);
}

.detail-layout, .contact-layout {
	display: grid;
	grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
	gap: clamp(28px, 5vw, 64px);
	width: min(calc(100% - 32px), var(--container));
	margin: 18px auto 0;
	padding: clamp(32px, 5vw, 56px);
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow-soft);
	align-items: start;
}
.detail-media {
	position: sticky;
	top: 94px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow);
	padding: 18px;
}
.product-gallery {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}
.gallery-main {
	order: 2;
	display: grid;
	place-items: center;
	min-height: 440px;
	border-radius: 8px;
	background: #f8fbfc;
	overflow: hidden;
}
.gallery-main img, .gallery-main svg {
	width: 100%;
	height: 100%;
	max-height: 560px;
	object-fit: contain;
}
.gallery-thumbs {
	order: 1;
	display: grid;
	gap: 10px;
	max-height: 560px;
	overflow: auto;
	padding-right: 2px;
}
.gallery-thumbs button {
	width: 76px;
	height: 76px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	padding: 4px;
	cursor: pointer;
	overflow: hidden;
}
.gallery-thumbs button.active {
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(12, 109, 143, .14);
}
.gallery-thumbs img, .gallery-thumbs svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}
.fallback-thumb svg text { display: none; }
.back-link { display: inline-block; margin-bottom: 20px; color: var(--brand); font-weight: 800; }
.detail-copy h1 { margin: 0; font-size: clamp(31px, 4vw, 48px); line-height: 1.08; }
.detail-summary { color: var(--muted); font-size: 16px; line-height: 1.65; }
.price-line { font-size: 16px; color: var(--muted); margin: 18px 0; }
.price-line strong { color: var(--ink); font-size: 28px; }
.detail-spec-grid, .reason-grid, .story-grid, .contact-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}
.detail-spec-grid div, .reason-grid div, .story-grid div, .contact-cards a {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	padding: 16px;
}
.detail-spec-grid span { display: block; color: var(--muted); font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.feature-list {
	display: grid;
	gap: 10px;
	margin: 22px 0;
	padding: 0;
	list-style: none;
}
.feature-list li { padding: 12px 14px; background: var(--soft); border-radius: 8px; font-weight: 700; }
.product-description {
	margin: 18px 0 0;
	color: var(--muted);
	line-height: 1.7;
}
.product-description p { margin-top: 0; }
.detail-section, .page-hero, .story-grid {
	width: min(calc(100% - 32px), var(--container));
	margin: 18px auto 0;
	padding: clamp(34px, 5vw, 54px);
	border-radius: 8px;
}
.page-hero {
	border: 1px solid var(--line);
	background: linear-gradient(135deg, #f8fbfc, #edf5f8);
	box-shadow: var(--shadow-soft);
}
.page-hero.compact { background: transparent; padding-block: clamp(28px, 5vw, 60px); }
.reason-grid { margin-top: 22px; }
.reason-grid p, .story-grid p { color: var(--muted); line-height: 1.65; }
.contact-form {
	display: grid;
	gap: 16px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow);
}
.contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 22px; }
.contact-cards span { display: block; color: var(--muted); margin-top: 6px; }

.inquiry-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(calc(100% - 32px), var(--container));
	margin: 18px auto 26px;
	padding: 28px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--brand-dark), var(--brand));
	color: #fff;
}
.inquiry-strip .eyebrow { color: #bfe8f5; }
.site-footer {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto;
	padding: 22px 0 28px;
	border-top: 1px solid var(--line);
	color: var(--muted);
}
.site-footer div { display: flex; gap: 16px; }

.wishlist-drawer {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: rgba(16, 38, 51, .38);
	opacity: 0;
	pointer-events: none;
	transition: opacity .18s ease;
}
.wishlist-drawer.open { opacity: 1; pointer-events: auto; }
.wishlist-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(420px, 92vw);
	height: 100%;
	padding: 22px;
	background: #fff;
	box-shadow: var(--shadow);
	overflow: auto;
}
.wishlist-panel h3 { margin: 0 48px 18px 0; font-size: 28px; }
.wishlist-panel .close { position: absolute; top: 18px; right: 18px; }
.wishlist-items { display: grid; gap: 12px; }
.wishlist-item {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 12px;
	align-items: center;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
}
.wishlist-item svg { border-radius: 8px; }
.wishlist-item strong { display: block; }
.wishlist-item a { color: var(--brand); font-weight: 800; font-size: 14px; }

@media (max-width: 1080px) {
	.product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.feature-story-grid { grid-template-columns: 1fr 1fr; }
	.story-card.large { grid-column: span 2; }
	.category-band { grid-template-columns: repeat(9, 160px); }
	.site-header { grid-template-columns: 1fr; }
	.header-search { width: 100%; }
}
@media (max-width: 820px) {
	.nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
	.hero, .catalog-layout, .detail-layout, .contact-layout, .split-section, .editorial-section { grid-template-columns: 1fr; }
	.hero-showcase { min-height: 300px; }
	.filters, .detail-media { position: static; }
	.product-gallery { grid-template-columns: 1fr; }
	.gallery-main { order: 1; min-height: 320px; }
	.gallery-thumbs { order: 2; grid-template-columns: repeat(5, 76px); max-height: none; overflow-x: auto; }
	.catalog-head, .inquiry-strip, .site-footer { align-items: flex-start; flex-direction: column; }
	.detail-spec-grid, .reason-grid, .story-grid { grid-template-columns: 1fr; }
	.quality-list, .feature-story-grid { grid-template-columns: 1fr; }
	.story-card.large { grid-column: auto; }
}
@media (max-width: 560px) {
	.product-grid, .featured-grid, .contact-cards { grid-template-columns: 1fr; }
	.hero h1, .page-hero h1 { font-size: 31px; }
	.mini-stat { position: static; margin-top: 12px; }
	.header-search { grid-template-columns: 1fr; }
	.header-search button { min-height: 40px; }
	.media-note { position: static; margin-top: 12px; flex-direction: column; }
}

/* Homepage redesign layer */
.premium-hero,
.home-section {
	width: min(calc(100% - 32px), var(--container));
	margin-inline: auto;
	border-radius: 8px;
}
.premium-hero {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
	gap: clamp(26px, 5vw, 58px);
	align-items: center;
	margin-top: 18px;
	padding: clamp(34px, 5vw, 58px);
	color: #fff;
	background:
		linear-gradient(135deg, rgba(6, 45, 61, .96), rgba(10, 103, 136, .88)),
		radial-gradient(circle at 88% 8%, rgba(216, 162, 74, .5), transparent 28%);
	box-shadow: var(--shadow);
	overflow: hidden;
}
.premium-hero .eyebrow { color: #8ed5eb; }
.premium-hero h1 {
	margin: 0;
	max-width: 640px;
	font-size: clamp(34px, 4.2vw, 54px);
	line-height: 1.04;
}
.premium-hero p {
	max-width: 570px;
	color: rgba(255, 255, 255, .74);
	line-height: 1.7;
}
.light-ghost {
	background: rgba(255, 255, 255, .09);
	border-color: rgba(255, 255, 255, .25);
	color: #fff;
}
.hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 28px;
}
.hero-metrics div {
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 8px;
	background: rgba(255, 255, 255, .08);
}
.hero-metrics strong {
	display: block;
	font-size: 23px;
}
.hero-metrics span {
	color: rgba(255, 255, 255, .7);
	font-size: 12px;
}
.premium-hero-visual {
	position: relative;
	min-height: 390px;
}
.hero-product-frame {
	position: absolute;
	inset: 18px 0 18px 42px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 8px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
	overflow: hidden;
}
.hero-product-frame img,
.hero-product-frame svg {
	width: 128%;
	height: 128%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}
.floating-card {
	position: absolute;
	display: grid;
	gap: 4px;
	padding: 14px 16px;
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	box-shadow: var(--shadow);
}
.floating-card span {
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .1em;
}
.floating-card strong { font-size: 15px; }
.top-card { top: 0; left: 0; }
.bottom-card { right: 12px; bottom: 0; }

.home-section {
	margin-top: 18px;
	padding: clamp(28px, 4vw, 44px);
	border: 1px solid var(--line);
	background: #fff;
	box-shadow: var(--shadow-soft);
}
.featured-modern .section-head { margin-bottom: 20px; }
.featured-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
	gap: 18px;
}
.featured-lead {
	display: grid;
	grid-template-columns: minmax(220px, .9fr) minmax(0, 1fr);
	min-height: 310px;
	box-shadow: none;
}
.featured-lead-media,
.mini-product-media {
	display: grid;
	place-items: center;
	background: linear-gradient(180deg, #f6fbfd, #edf5f8);
	overflow: hidden;
}
.featured-lead-media img,
.featured-lead-media svg {
	width: 132%;
	height: 132%;
	max-width: none;
	object-fit: cover;
}
.featured-lead-copy {
	display: grid;
	align-content: center;
	gap: 12px;
	padding: 24px;
}
.featured-lead-copy h3 {
	margin: 0;
	font-size: 28px;
	line-height: 1.12;
}
.featured-lead-copy p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}
.featured-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.mini-product {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	min-height: 150px;
	box-shadow: none;
}
.mini-product-media img,
.mini-product-media svg {
	width: 150%;
	height: 150%;
	max-width: none;
	object-fit: cover;
}
.mini-product > div {
	display: grid;
	align-content: center;
	gap: 8px;
	padding: 14px;
}
.mini-product h3 {
	min-height: 0;
	margin: 0;
	font-size: 16px;
}
.mini-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.mini-actions a {
	color: var(--brand);
	font-size: 13px;
	font-weight: 850;
}
.mini-actions .icon-btn {
	min-width: 34px;
	height: 34px;
}

.brand-story {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr);
	gap: clamp(24px, 5vw, 58px);
	align-items: center;
	background:
		linear-gradient(90deg, #fff 0%, #fff 58%, #eef6f9 58%, #eef6f9 100%);
}
.story-copy h2 {
	margin: 0;
	font-size: clamp(28px, 3.2vw, 42px);
	line-height: 1.12;
}
.story-copy p {
	color: var(--muted);
	line-height: 1.75;
}
.story-points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 22px;
}
.story-points span {
	padding: 12px;
	border-radius: 8px;
	background: var(--soft);
	border-left: 3px solid var(--accent);
	font-size: 13px;
	font-weight: 800;
}
.story-panel {
	display: grid;
	gap: 14px;
	padding: 18px;
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow);
}
.story-panel img,
.story-panel svg {
	width: 100%;
	height: 260px;
	object-fit: cover;
}
.story-panel img { transform: scale(1.14); }
.story-panel p {
	margin: 6px 0 0;
	color: var(--muted);
}

.why-premium {
	display: grid;
	grid-template-columns: 1.15fr .8fr .8fr;
	gap: 14px;
}
.why-card {
	min-height: 190px;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}
.why-card.dark {
	grid-row: span 2;
	color: #fff;
	background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}
.why-card.dark .eyebrow { color: #a9e2f2; }
.why-card h2 {
	margin: 0;
	font-size: clamp(26px, 3vw, 40px);
	line-height: 1.12;
}
.why-card strong {
	display: block;
	font-size: 18px;
}
.why-card p {
	color: var(--muted);
	line-height: 1.65;
}
.why-card.visual {
	display: grid;
	place-items: center;
	padding: 0;
	overflow: hidden;
	background: #f5fafc;
}
.why-card.visual img,
.why-card.visual svg {
	width: 132%;
	height: 132%;
	max-width: none;
	object-fit: cover;
}

@media (max-width: 980px) {
	.premium-hero,
	.featured-layout,
	.brand-story,
	.why-premium {
		grid-template-columns: 1fr;
	}
	.premium-hero-visual { min-height: 320px; }
	.hero-product-frame { inset: 0; }
	.featured-lead { grid-template-columns: 1fr; }
	.featured-lead-media { min-height: 260px; }
	.brand-story { background: #fff; }
	.why-card.dark { grid-row: auto; }
}

@media (max-width: 640px) {
	.premium-hero h1 { font-size: 32px; }
	.hero-metrics,
	.featured-list,
	.story-points {
		grid-template-columns: 1fr;
	}
	.mini-product { grid-template-columns: 96px minmax(0, 1fr); }
}

/* Collection template inspired by premium D2C category pages */
.top-offer {
	background: #075b9b;
	color: #fff;
	text-align: center;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .05em;
	padding: 7px 12px;
}
.store-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: #fff;
	border-bottom: 1px solid #101820;
}
.store-header-main,
.store-nav,
.collection-wrap,
.store-footer {
	width: min(100% - 32px, 1120px);
	margin-inline: auto;
}
.store-header-main {
	position: relative;
	display: grid;
	grid-template-columns: 240px 1fr 120px;
	align-items: center;
	min-height: 58px;
}
.store-logo {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.store-logo img {
	width: 172px;
	max-height: 42px;
	object-fit: contain;
}
.store-header .header-search {
	width: 230px;
	border: 1px solid #c9cfd4;
	border-radius: 999px;
	box-shadow: none;
}
.store-header .header-search input {
	padding: 10px 16px;
	font-size: 14px;
}
.store-header .header-search button { display: none; }
.header-icons {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 12px;
}
.header-icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 1px solid #17242d;
	border-radius: 999px;
	background: #fff;
	color: #17242d;
	font-weight: 800;
	cursor: pointer;
}
.cart-icon span {
	position: absolute;
	top: -7px;
	right: -7px;
	display: grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	border-radius: 999px;
	background: #075b9b;
	color: #fff;
	font-size: 10px;
}
.store-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	min-height: 45px;
	font-size: 14px;
	font-weight: 750;
}
.store-nav a { color: #1c252c; }
.store-nav .active {
	padding: 9px 16px;
	border-radius: 999px;
	background: #075b9b;
	color: #fff;
}
.collection-banner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: stretch;
	min-height: 280px;
	background: linear-gradient(90deg, #f4f4f4, #fff 48%, #dff8ff);
}
.banner-photo {
	display: grid;
	align-items: end;
	padding: 28px 34px;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .12)),
		linear-gradient(135deg, #111, #bbb);
}
.banner-photo strong {
	display: block;
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.banner-photo span { color: rgba(255, 255, 255, .78); }
.banner-copy {
	display: grid;
	align-content: center;
	justify-items: center;
	text-align: center;
}
.banner-copy h1 {
	margin: 0;
	font-size: clamp(44px, 6vw, 76px);
	font-weight: 300;
	line-height: .88;
	letter-spacing: -.04em;
	color: #1d1d1d;
}
.banner-copy p {
	margin: 18px 0 0;
	color: #555;
	font-size: 18px;
}
.banner-product {
	display: grid;
	place-items: center;
	overflow: hidden;
}
.banner-product svg {
	width: 92%;
	transform: scale(1.08);
}
.collection-wrap {
	padding: 26px 0 58px;
	background: #fff;
}
.collection-head h1 {
	margin: 0;
	font-size: 32px;
	font-weight: 650;
	color: #3f3f3f;
}
.collection-head p {
	margin: 6px 0 28px;
	color: #777;
	font-size: 14px;
	font-weight: 600;
}
.collection-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
	color: #666;
	font-size: 13px;
}
.filter-inline,
.sort-inline {
	display: flex;
	align-items: center;
	gap: 18px;
}
.filter-inline label,
.sort-inline label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}
.filter-inline select,
.sort-inline select {
	border: 0;
	background: transparent;
	color: #555;
	font-size: 13px;
	outline: 0;
}
.budget-filter input[type="range"] {
	width: 118px;
	accent-color: #075b9b;
}
.collection-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}
.collection-product {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 430px;
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}
.collection-product[hidden],
.collection-product.is-filtered-out { display: none !important; }
.discount-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 2;
	padding: 6px 11px;
	border-radius: 3px;
	background: #ffd400;
	color: #1a1a1a;
	font-size: 11px;
	font-weight: 900;
}
.collection-art {
	height: 245px;
	padding: 10px;
	background: #fff;
	border-bottom: 1px solid #e2e2e2;
}
.collection-art:after { display: none; }
.collection-art img,
.collection-art svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform: none;
}
.collection-art img[src*="/saavi-seed/"] {
	width: 128%;
	height: 128%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}
.collection-info {
	display: grid;
	align-content: start;
	gap: 5px;
	padding: 12px 10px 14px;
	flex: 1;
}
.collection-info h3 {
	min-height: 44px;
	margin: 0;
	font-size: 14px;
	line-height: 1.28;
	font-weight: 750;
	color: #444;
}
.stars {
	color: #ffc400;
	font-size: 14px;
	letter-spacing: .02em;
}
.stars span { color: #777; }
.price {
	font-size: 16px;
	font-weight: 900;
	color: #111;
}
.mrp,
.emi {
	font-size: 11px;
	font-weight: 750;
	color: #333;
}
.mrp s { color: #d01f1f; }
.emi span {
	display: inline-block;
	margin-left: 4px;
	padding: 2px 5px;
	border-radius: 2px;
	background: #075b9b;
	color: #fff;
	font-size: 9px;
}
.collection-actions {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	align-items: center;
	margin-top: auto;
}
.inquiry-btn {
	display: grid;
	place-items: center;
	min-height: 38px;
	border: 1px solid #111;
	border-radius: 999px;
	color: #111;
	background: #fff;
	font-size: 12px;
	font-weight: 900;
}
.mini-wishlist {
	width: 38px;
	height: 38px;
	border: 1px solid #d7d7d7;
	border-radius: 999px;
	background: #fff;
	color: #075b9b;
	font-weight: 900;
	cursor: pointer;
}
.pagination-lite {
	display: flex;
	justify-content: center;
	gap: 28px;
	margin: 48px 0 0;
	color: #777;
}
.pagination-lite span {
	color: #111;
	border-bottom: 1px solid #111;
}
.store-footer {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 56px;
	padding: 54px 0;
	border-top: 1px solid #eee;
	background: #fff;
}
.store-footer h3 {
	margin: 0 0 20px;
	font-size: 16px;
}
.store-footer a,
.store-footer p {
	display: block;
	margin: 0 0 14px;
	color: #222;
	font-size: 14px;
	line-height: 1.55;
}
.social-lite {
	display: flex;
	gap: 12px;
	color: #075b9b;
	font-weight: 900;
}
.copyright {
	padding: 18px 0;
	text-align: center;
	border-top: 1px solid #eee;
	background: #fff;
	color: #555;
	font-size: 12px;
}

@media (max-width: 980px) {
	.store-header-main { grid-template-columns: 1fr; gap: 10px; padding: 12px 0; }
	.store-logo, .header-icons { justify-self: center; }
	.store-header .header-search { width: 100%; }
	.store-nav { overflow-x: auto; justify-content: flex-start; gap: 18px; }
	.collection-banner { grid-template-columns: 1fr; }
	.collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.collection-controls { align-items: flex-start; flex-direction: column; }
	.store-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
	.collection-grid,
	.store-footer { grid-template-columns: 1fr; }
	.filter-inline, .sort-inline { flex-wrap: wrap; }
	.banner-copy h1 { font-size: 44px; }
}

/* WaterScience-style header and homepage banner */
body {
	font-family: Arial, Helvetica, sans-serif;
	background: #fff;
	color: #111;
}
.top-offer {
	height: 38px;
	display: grid;
	place-items: center;
	padding: 0 12px;
	background: #07599a;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .06em;
}
.store-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 0;
	background: #fff;
}
.store-header-main,
.store-nav {
	width: min(100% - 32px, 1360px);
}
.store-header-main {
	grid-template-columns: 320px 1fr 320px;
	min-height: 92px;
	border-bottom: 2px solid #222;
}
.store-header .header-search {
	width: 315px;
	height: 50px;
	border: 1px solid #cfcfcf;
	border-radius: 999px;
}
.store-header .header-search:before {
	content: "⌕";
	display: grid;
	place-items: center;
	width: 42px;
	color: #111;
	font-size: 34px;
	line-height: 1;
}
.store-header .header-search {
	grid-template-columns: 42px 1fr;
}
.store-header .header-search input {
	padding: 0 18px 0 0;
	font-size: 21px;
	color: #222;
}
.store-header .header-search input::placeholder {
	color: #777;
	opacity: 1;
}
.store-logo img {
	width: 300px;
	max-height: 68px;
	object-fit: contain;
}
.header-icons {
	gap: 16px;
}
.header-icon {
	width: 43px;
	height: 43px;
	border: 2px solid #111;
	font-size: 25px;
	line-height: 1;
}
.cart-icon {
	border-color: #07599a;
	background: #07599a;
	color: #fff;
}
.cart-icon span {
	top: -9px;
	right: -9px;
	min-width: 22px;
	height: 22px;
	border: 2px solid #fff;
	background: #07599a;
	font-size: 12px;
}
.store-nav {
	min-height: 76px;
	gap: 42px;
	font-size: 23px;
	font-weight: 500;
}
.store-nav .active {
	padding: 13px 24px;
	border-radius: 999px;
	background: #07599a;
	color: #fff;
}
.home-banner-hero {
	width: 100%;
	margin: 0;
	background: #fff;
	overflow: hidden;
}
.home-banner-hero img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 1100px) {
	.store-header-main {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 14px 0;
	}
	.store-header .header-search,
	.store-logo,
	.header-icons {
		justify-self: center;
	}
	.store-nav {
		justify-content: flex-start;
		gap: 24px;
		overflow-x: auto;
		font-size: 18px;
	}
}

@media (max-width: 620px) {
	.top-offer { font-size: 11px; height: 32px; }
	.store-logo img { width: 190px; }
	.store-header .header-search { width: min(100%, 320px); }
	.store-header .header-search input { font-size: 16px; }
	.header-icon { width: 36px; height: 36px; font-size: 20px; }
	.store-nav { min-height: 56px; font-size: 15px; }
}

.home-collection-section {
	width: min(100% - 32px, 1120px);
	margin: 34px auto 0;
	padding-bottom: 22px;
	background: #fff;
}
.home-collection-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}
.home-collection-head h1 {
	margin: 0;
	color: #3f3f3f;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 34px;
	font-weight: 600;
	line-height: 1.08;
}
.home-collection-head p {
	margin: 7px 0 0;
	color: #777;
	font-size: 14px;
	font-weight: 600;
}
.home-collection-head a {
	color: #07599a;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .02em;
}
.home-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}
.home-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 410px;
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}
.home-product-image {
	display: grid;
	place-items: center;
	height: 235px;
	padding: 10px;
	border-bottom: 1px solid #e2e2e2;
	background: #fff;
	overflow: hidden;
}
.home-product-image img,
.home-product-image svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.home-product-image img[src*="/saavi-seed/"] {
	width: 128%;
	height: 128%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}
.home-product-info {
	display: grid;
	gap: 6px;
	padding: 12px 10px 14px;
	flex: 1;
}
.home-product-category {
	color: #07599a;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.home-product-info h3 {
	min-height: 42px;
	margin: 0;
	color: #444;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.28;
}
.home-price-row {
	display: grid;
	gap: 2px;
	margin-top: 2px;
}
.home-price-row strong {
	color: #111;
	font-size: 16px;
	font-weight: 900;
}
.home-price-row span {
	color: #333;
	font-size: 11px;
	font-weight: 750;
}
.home-price-row s { color: #d01f1f; }
.home-card-actions {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	align-items: center;
	margin-top: auto;
}
.home-inquiry-btn {
	display: grid;
	place-items: center;
	min-height: 38px;
	border: 1px solid #111;
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-size: 12px;
	font-weight: 900;
}

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

@media (max-width: 560px) {
	.home-collection-head { align-items: flex-start; flex-direction: column; }
	.home-product-grid { grid-template-columns: 1fr; }
}

/* About editorial theme */
.green-kicker {
	margin: 0 0 16px;
	color: #63ad2f;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
}
.about-intro {
	display: grid;
	grid-template-columns: 1.15fr .9fr .9fr;
	gap: clamp(48px, 8vw, 120px);
	width: min(100% - 32px, 1120px);
	margin: 0 auto;
	padding: 76px 0;
	border-top: 4px solid #f58220;
}
.about-intro h1 {
	max-width: 360px;
	margin: 0;
	color: #2c2c2c;
	font-size: 32px;
	line-height: 1.2;
}
.about-intro h3 {
	margin: 0 0 14px;
	color: #252525;
	font-size: 16px;
}
.about-intro p {
	margin: 0 0 16px;
	color: #777;
	font-size: 13px;
	line-height: 1.9;
}
.about-intro a,
.about-copy a,
.home-about-teaser a {
	color: #111;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.about-editorial {
	display: grid;
	grid-template-columns: 1fr .8fr;
	gap: clamp(54px, 9vw, 120px);
	align-items: center;
	width: min(100% - 32px, 1120px);
	margin: 0 auto;
	padding: 48px 0;
}
.about-editorial.reverse {
	grid-template-columns: .8fr 1fr;
}
.about-image {
	display: grid;
	place-items: center;
	min-height: 430px;
	background: #f4f6f6;
	overflow: hidden;
}
.about-image.dark-frame {
	background: #161616;
}
.about-image img,
.about-image svg {
	width: 116%;
	height: 116%;
	max-width: none;
	object-fit: cover;
}
.about-copy {
	max-width: 430px;
}
.about-copy h2 {
	margin: 0 0 14px;
	color: #303030;
	font-size: 32px;
	line-height: 1.15;
}
.about-copy h4 {
	margin: 0 0 18px;
	color: #222;
	font-size: 13px;
	font-weight: 800;
}
.about-copy p {
	margin: 0;
	color: #777;
	font-size: 13px;
	line-height: 1.9;
}
.home-about-teaser {
	display: grid;
	grid-template-columns: .9fr .75fr .75fr;
	gap: 28px;
	align-items: center;
	width: min(100% - 32px, 1120px);
	margin: 54px auto 0;
	padding: 44px 0;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
}
.teaser-copy h2 {
	max-width: 420px;
	margin: 0 0 16px;
	color: #2d2d2d;
	font-size: 30px;
	line-height: 1.18;
}
.teaser-copy p {
	max-width: 460px;
	margin: 0 0 18px;
	color: #777;
	font-size: 13px;
	line-height: 1.9;
}
.teaser-image {
	height: 300px;
	background: #f4f6f6;
	overflow: hidden;
}
.teaser-image.second {
	background: #151515;
}
.teaser-image img,
.teaser-image svg {
	width: 120%;
	height: 120%;
	max-width: none;
	object-fit: cover;
}

@media (max-width: 900px) {
	.about-intro,
	.about-editorial,
	.about-editorial.reverse,
	.home-about-teaser {
		grid-template-columns: 1fr;
	}
	.about-image { min-height: 320px; }
	.teaser-image { height: 260px; }
}

.home-category-showcase {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 44px;
	width: min(100% - 32px, 1120px);
	margin: 58px auto 0;
	padding: 42px 0;
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}
.showcase-copy h2 {
	max-width: 430px;
	margin: 0 0 14px;
	color: #2d2d2d;
	font-size: 30px;
	line-height: 1.16;
}
.showcase-copy p {
	max-width: 430px;
	margin: 0 0 18px;
	color: #777;
	font-size: 13px;
	line-height: 1.8;
}
.showcase-copy a {
	color: #07599a;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 4px;
}
.showcase-categories {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.showcase-categories a {
	display: grid;
	gap: 8px;
	min-height: 150px;
	padding: 22px;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	background: linear-gradient(180deg, #fff, #f8fbfc);
}
.showcase-categories span {
	color: #07599a;
	font-size: 12px;
	font-weight: 900;
}
.showcase-categories strong {
	color: #252525;
	font-size: 20px;
	line-height: 1.2;
}
.showcase-categories em {
	color: #777;
	font-size: 13px;
	font-style: normal;
}
.home-inquiry-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	width: min(100% - 32px, 1120px);
	margin: 28px auto 0;
	padding: 34px 38px;
	border-radius: 8px;
	background: #075b75;
	color: #fff;
}
.home-inquiry-panel .green-kicker {
	color: #9bd578;
}
.home-inquiry-panel h2 {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1.15;
}
.home-inquiry-panel p {
	max-width: 620px;
	margin: 0;
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
	line-height: 1.7;
}
.home-inquiry-panel a {
	display: grid;
	place-items: center;
	min-width: 150px;
	min-height: 44px;
	border-radius: 999px;
	background: #fff;
	color: #075b75;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}
.home-process {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	width: min(100% - 32px, 1120px);
	margin: 24px auto 58px;
}
.home-process div {
	padding: 24px;
	border: 1px solid #dfdfdf;
	border-radius: 8px;
	background: #fff;
}
.home-process span {
	color: #07599a;
	font-size: 12px;
	font-weight: 900;
}
.home-process strong {
	display: block;
	margin: 10px 0 8px;
	color: #252525;
	font-size: 19px;
}
.home-process p {
	margin: 0;
	color: #777;
	font-size: 13px;
	line-height: 1.65;
}

@media (max-width: 860px) {
	.home-category-showcase,
	.home-process {
		grid-template-columns: 1fr;
	}
	.home-inquiry-panel {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.showcase-categories {
		grid-template-columns: 1fr;
	}
}

/* Final typography system */
:root {
	--font-sans: Arial, Helvetica, sans-serif;
	--text-xs: 11px;
	--text-sm: 13px;
	--text-md: 14px;
	--text-lg: 16px;
	--text-xl: 20px;
	--heading-sm: 24px;
	--heading-md: 32px;
	--heading-lg: 42px;
}
html { font-size: 14px; }
body,
button,
input,
select,
textarea {
	font-family: var(--font-sans);
}
body {
	font-size: var(--text-md);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
.top-offer {
	height: 34px;
	font-size: var(--text-sm);
	line-height: 1;
	letter-spacing: .045em;
}
.store-header-main {
	min-height: 82px;
}
.store-header .header-search {
	height: 46px;
}
.store-header .header-search:before {
	width: 38px;
	font-size: 26px;
}
.store-header .header-search input {
	font-size: var(--text-lg);
	font-weight: 400;
}
.store-logo img {
	width: 240px;
	max-height: 58px;
}
.header-icon {
	width: 38px;
	height: 38px;
	font-size: 20px;
}
.cart-icon span {
	min-width: 19px;
	height: 19px;
	font-size: 10px;
}
.store-nav {
	min-height: 62px;
	gap: 34px;
	font-size: var(--text-xl);
	font-weight: 500;
	line-height: 1;
}
.store-nav .active {
	padding: 12px 21px;
}
.home-collection-head h1,
.collection-head h1 {
	font-size: var(--heading-md);
	font-weight: 600;
	line-height: 1.14;
}
.home-collection-head p,
.collection-head p {
	font-size: var(--text-md);
	line-height: 1.45;
}
.home-collection-head a,
.filter-inline,
.sort-inline {
	font-size: var(--text-sm);
}
.home-product-category,
.product-category,
.green-kicker {
	font-size: var(--text-xs);
	line-height: 1.25;
}
.home-product-info h3,
.collection-info h3 {
	font-size: var(--text-md);
	line-height: 1.32;
	font-weight: 700;
}
.home-price-row strong,
.price {
	font-size: var(--text-lg);
	line-height: 1.2;
}
.home-price-row span,
.mrp,
.emi {
	font-size: var(--text-xs);
	line-height: 1.35;
}
.home-inquiry-btn,
.inquiry-btn {
	font-size: var(--text-xs);
	letter-spacing: .02em;
}
.about-intro h1,
.about-copy h2,
.teaser-copy h2,
.story-copy h2 {
	font-size: var(--heading-md);
	line-height: 1.18;
	font-weight: 700;
}
.about-intro h3,
.story-panel strong,
.why-card strong {
	font-size: var(--text-lg);
	line-height: 1.3;
}
.about-intro p,
.about-copy p,
.teaser-copy p,
.story-copy p,
.story-panel p,
.why-card p {
	font-size: var(--text-sm);
	line-height: 1.75;
}
.about-copy h4 {
	font-size: var(--text-sm);
	line-height: 1.35;
}
.store-footer h3 {
	font-size: var(--text-lg);
	line-height: 1.25;
}
.store-footer a,
.store-footer p,
.copyright {
	font-size: var(--text-sm);
	line-height: 1.55;
}

@media (max-width: 1100px) {
	.store-nav {
		font-size: var(--text-lg);
		gap: 22px;
	}
}

@media (max-width: 640px) {
	:root {
		--heading-md: 27px;
		--heading-lg: 34px;
	}
	.top-offer {
		height: 30px;
		font-size: 10px;
	}
	.store-logo img {
		width: 180px;
	}
	.store-header .header-search input {
		font-size: var(--text-md);
	}
	.store-nav {
		min-height: 52px;
		font-size: var(--text-md);
	}
}

/* Final header polish */
.top-offer {
	height: 30px;
	background: #07599a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
}
.store-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 8px 24px rgba(17, 24, 39, .05);
}
.store-header-main {
	width: min(100% - 40px, 1120px);
	grid-template-columns: 260px 1fr 116px;
	min-height: 64px;
	border-bottom: 1px solid #1d1d1d;
}
.store-header .header-search {
	width: 250px;
	height: 38px;
	grid-template-columns: 34px 1fr;
	border-color: #d7d7d7;
	background: #fff;
}
.store-header .header-search:before {
	width: 34px;
	font-size: 20px;
}
.store-header .header-search input {
	padding-right: 14px;
	font-size: 14px;
}
.store-logo {
	align-self: center;
	justify-self: center;
}
.store-logo img {
	width: 122px;
	max-height: 48px;
}
.header-icons {
	justify-self: end;
	gap: 12px;
}
.header-icon {
	width: 32px;
	height: 32px;
	border-width: 1.5px;
	font-size: 17px;
}
.cart-icon span {
	top: -7px;
	right: -7px;
	min-width: 17px;
	height: 17px;
	border-width: 1px;
	font-size: 9px;
}
.store-nav {
	width: min(100% - 40px, 1120px);
	min-height: 50px;
	justify-content: center;
	gap: 30px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
}
.store-nav .active {
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 600;
}
.home-banner-hero {
	margin-top: 0;
}

@media (max-width: 900px) {
	.store-header-main {
		grid-template-columns: 1fr;
		width: min(100% - 28px, 1120px);
		gap: 10px;
		padding: 12px 0;
	}
	.store-header .header-search {
		width: min(100%, 340px);
		justify-self: center;
	}
	.header-icons {
		justify-self: center;
	}
	.store-nav {
		width: min(100% - 28px, 1120px);
		justify-content: flex-start;
		overflow-x: auto;
		gap: 20px;
		font-size: 14px;
	}
}
