:root {
	--ink: #1f1d1a;
	--muted: #6f675d;
	--line: #e8ddd0;
	--paper: #fbf7f1;
	--paper-strong: #fffdf9;
	--accent: #ef8d32;
	--accent-deep: #d76b14;
	--accent-soft: #fff0df;
	--dark: #22201d;
	--dark-soft: #34302b;
	--shadow: 0 18px 45px rgba(52, 42, 31, 0.12);
	--radius-xl: 30px;
	--radius-lg: 24px;
	--radius-md: 18px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.homcom-page {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(255, 217, 176, 0.26), transparent 30%),
		linear-gradient(180deg, #fdfbf8 0%, #f6efe6 100%);
	color: var(--ink);
	font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
	font-size: 15px;
	line-height: 1.6;
}

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

img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.site-main {
	padding-bottom: 36px;
}

.section-shell {
	width: min(1280px, calc(100% - 32px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(18px);
	background: rgba(255, 251, 246, 0.92);
	border-bottom: 1px solid rgba(232, 221, 208, 0.72);
}

.promo-bar {
	background: linear-gradient(90deg, #2b241e, #3d2f22);
	color: #fff4eb;
	font-size: 12px;
}

.promo-track {
	width: min(1280px, calc(100% - 32px));
	min-height: 38px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	overflow: auto;
}

.promo-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.main-nav {
	width: min(1320px, calc(100% - 32px));
	min-height: 86px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 152px minmax(360px, 1fr) auto;
	align-items: center;
	gap: 24px;
}

.main-nav--english {
	grid-template-columns: 146px minmax(400px, 1fr) auto;
	gap: 22px;
}

.main-nav--english .nav-links {
	gap: 30px;
}

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

.brand-logo {
	display: block;
	width: 146px;
	aspect-ratio: 280 / 80;
	height: auto;
	object-fit: contain;
}

.footer-brand .brand-logo {
	width: 188px;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-wrap: nowrap;
	position: relative;
	white-space: nowrap;
}

.nav-item {
	position: relative;
	display: flex;
	align-items: center;
}

.nav-item-has-children {
	padding-bottom: 14px;
	margin-bottom: -14px;
	z-index: 6;
}

.nav-link,
.nav-dropdown a {
	position: relative;
}

.nav-link {
	display: inline-flex;
	align-items: center;
	padding: 10px 0;
	font-size: 13px;
	font-weight: 650;
}

.nav-link::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-item:focus-within > .nav-link::after,
.nav-item:hover > .nav-link::after,
.nav-item.is-featured > .nav-link::after {
	transform: scaleX(1);
}

.nav-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	min-width: 250px;
	padding: 20px 22px;
	border: 1px solid rgba(232, 221, 208, 0.95);
	border-radius: 28px;
	background: rgba(255, 251, 246, 0.98);
	box-shadow: 0 24px 50px rgba(38, 28, 18, 0.16);
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) translateY(10px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	white-space: normal;
	z-index: 14;
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown,
.nav-item.is-open > .nav-dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.nav-item.is-featured > .nav-dropdown {
	left: 0;
	width: min(1200px, calc(100vw - 28px));
	padding: 26px 28px;
	transform: translateX(-120px) translateY(10px);
}

.nav-item.is-featured:hover > .nav-dropdown,
.nav-item.is-featured:focus-within > .nav-dropdown,
.nav-item.is-featured.is-open > .nav-dropdown {
	transform: translateX(-120px) translateY(0);
}

.nav-dropdown-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.nav-item.is-featured .nav-dropdown-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px;
}

.nav-dropdown-column {
	display: grid;
	gap: 12px;
	align-content: start;
	min-width: 0;
}

.nav-dropdown-column h3 {
	margin: 0;
	font-family: "Canela", "Georgia", serif;
	font-size: 16px;
	line-height: 1.28;
	overflow-wrap: anywhere;
	white-space: normal;
	word-break: normal;
}

.nav-dropdown-column a {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
	color: var(--muted);
	hyphens: auto;
	overflow-wrap: anywhere;
	transition: color 0.18s ease;
	white-space: normal;
}

.nav-dropdown-column a:hover,
.nav-dropdown-column a:focus-visible {
	color: var(--ink);
}

.nav-dropdown-column a::after {
	display: none;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-width: 0;
}

.main-nav--english .header-actions {
	gap: 14px;
}

.language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 3px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
}

.language-switcher a {
	min-width: 28px;
	padding: 5px 6px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	text-align: center;
	color: var(--muted);
}

.language-switcher a[aria-current="true"] {
	background: var(--dark);
	color: #fff;
}

.main-nav--english .search-box {
	width: clamp(220px, 21vw, 320px);
	flex-basis: 320px;
}

.language-switcher--dropdown {
	position: relative;
	padding: 0;
	border: 0;
	background: transparent;
	flex: 0 0 auto;
	align-self: center;
}

.language-switcher--dropdown summary {
	list-style: none;
}

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

.language-switcher__toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 54px;
	padding: 9px 11px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	font: inherit;
	font-size: 11px;
	font-weight: 800;
	color: var(--muted);
	cursor: pointer;
}

.language-switcher__toggle svg {
	width: 14px;
	height: 14px;
	stroke-width: 2;
	transition: transform 0.18s ease;
}

.language-switcher--dropdown[open] .language-switcher__toggle svg,
.language-switcher--dropdown.is-open .language-switcher__toggle svg {
	transform: rotate(180deg);
}

.language-switcher__menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	display: none;
	gap: 6px;
	min-width: 74px;
	padding: 8px;
	border: 1px solid rgba(232, 221, 208, 0.95);
	border-radius: 18px;
	background: rgba(255, 251, 246, 0.98);
	box-shadow: 0 20px 38px rgba(38, 28, 18, 0.14);
	z-index: 40;
}

.language-switcher--dropdown[open] .language-switcher__menu,
.language-switcher--dropdown.is-open .language-switcher__menu {
	display: grid;
}

.language-switcher__menu a {
	min-width: 0;
	padding: 8px 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 800;
	text-align: center;
	color: var(--muted);
}

.language-switcher__menu a:hover,
.language-switcher__menu a:focus-visible,
.language-switcher__menu a[aria-current="true"] {
	background: var(--dark);
	color: #fff;
}

.search-box {
	position: relative;
	width: clamp(190px, 18vw, 280px);
	flex: 0 1 280px;
	display: flex;
	align-items: center;
	background: var(--paper-strong);
	border: 1px solid var(--line);
	border-radius: 999px;
}

.search-box input {
	width: 100%;
	height: 44px;
	border: 0;
	padding: 0 48px 0 16px;
	background: transparent;
	font: inherit;
	color: inherit;
	outline: 0;
}

.search-box .icon-button {
	position: absolute;
	right: 4px;
}

.search-results {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: 0;
	z-index: 60;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.search-results a,
.search-empty {
	display: block;
	padding: 13px 16px;
	border-bottom: 1px solid rgba(232, 221, 208, 0.65);
}

.search-results a:last-child {
	border-bottom: 0;
}

.search-results small {
	display: block;
	margin-bottom: 2px;
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.search-empty {
	color: var(--muted);
}

.button {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
	background: linear-gradient(135deg, var(--accent), var(--accent-deep));
	color: #fff;
}

.button-secondary {
	background: rgba(255, 255, 255, 0.84);
	border-color: var(--accent);
	color: var(--accent-deep);
}

.header-cta {
	white-space: nowrap;
	padding-inline: 18px;
}

.icon-button {
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: inherit;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
	background: rgba(239, 141, 50, 0.12);
	outline: 0;
}

.mobile-nav-toggle {
	display: none;
}

.hero {
	position: relative;
	margin: 26px auto 0;
	width: min(1280px, calc(100% - 32px));
	min-height: 620px;
	border-radius: var(--radius-xl);
	background-image:
		linear-gradient(100deg, rgba(255, 253, 249, 0.94), rgba(255, 253, 249, 0.84) 38%, rgba(255, 253, 249, 0.18) 72%),
		var(--hero-image);
	background-position: center;
	background-size: cover;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.hero::after {
	content: "";
	position: absolute;
	inset: auto -8% -26% auto;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(239, 141, 50, 0.18), transparent 68%);
}

.hero-copy {
	position: relative;
	z-index: 1;
	max-width: 560px;
	padding: 88px 0 88px 68px;
}

.eyebrow {
	display: inline-block;
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-deep);
}

.hero h1,
.section-heading h2,
.split-copy h2,
.about-copy h2,
.support-copy h2,
.official-card h2,
.page-hero h1,
.newsletter-copy h2 {
	margin: 0;
	font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
	line-height: 1.08;
	color: var(--dark);
}

.hero h1 {
	font-size: clamp(42px, 6vw, 72px);
}

.hero-text {
	margin: 18px 0 28px;
	font-size: 18px;
	color: #443d36;
}

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

.hero-badges {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: -54px;
	position: relative;
	z-index: 2;
}

.feature-pill,
.soft-card,
.soft-panel,
.official-card,
.about-story-card,
.cta-banner,
.faq-surface {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(232, 221, 208, 0.9);
	box-shadow: var(--shadow);
}

.feature-pill {
	border-radius: 22px;
	padding: 22px 18px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	backdrop-filter: blur(10px);
}

.feature-pill strong,
.confidence-card h3,
.category-card h3,
.product-card h3,
.support-card h3,
.resource-card h3,
.contact-form h2,
.contact-details h2 {
	margin: 0;
	font-size: 17px;
	line-height: 1.25;
}

.feature-pill span,
.section-heading p,
.card-copy p,
.confidence-card p,
.support-card p,
.resource-card p,
.review-card p,
.product-copy h3,
.contact-detail-item span,
.contact-detail-item a {
	color: var(--muted);
}

.section {
	padding-top: 44px;
}

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

.section-heading.centered {
	display: block;
	text-align: center;
	max-width: 820px;
	margin-inline: auto;
}

.section-heading h2,
.split-copy h2,
.about-copy h2,
.support-copy h2,
.official-card h2,
.page-hero h1,
.newsletter-copy h2 {
	font-size: clamp(28px, 3vw, 42px);
}

.section-heading p,
.split-copy p,
.about-copy p,
.support-copy p,
.official-card p,
.page-hero p,
.newsletter-copy p {
	margin: 12px 0 0;
	font-size: 16px;
}

.section-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--accent-deep);
}

.intro-section {
	padding-top: 52px;
}

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

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

.soft-card,
.soft-panel,
.official-card,
.about-story-card,
.cta-banner,
.faq-surface {
	border-radius: var(--radius-lg);
}

.confidence-card,
.support-card,
.resource-card,
.review-card,
.detailed-review-card,
.stat-card,
.contact-form {
	padding: 24px;
}

.confidence-card svg {
	margin-bottom: 16px;
	color: var(--accent-deep);
}

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

.category-card,
.product-card,
.support-card,
.resource-card {
	overflow: hidden;
	border-radius: var(--radius-lg);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.product-card:hover,
.support-card:hover,
.resource-card:hover {
	transform: translateY(-3px);
}

.category-card img {
	aspect-ratio: 1.26;
}

.card-copy {
	padding: 18px 20px 20px;
}

.card-copy span,
.support-card span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	font-size: 12px;
	font-weight: 700;
	color: var(--accent-deep);
}

.product-card {
	display: flex;
	flex-direction: column;
}

.product-image img {
	aspect-ratio: 1.1;
}

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

.product-badge {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 700;
	color: var(--accent-deep);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rating {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #d58a2d;
	font-size: 15px;
}

.rating small {
	font-size: 12px;
	color: var(--muted);
}

.product-copy h3 {
	margin: 12px 0 14px;
	font-size: 18px;
	color: var(--ink);
}

.price-row {
	margin-bottom: 18px;
}

.price-row strong {
	font-size: 26px;
	color: var(--dark);
}

.product-cta {
	margin-top: auto;
}

.support-section {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 20px;
}

.support-copy {
	padding: 34px;
}

.support-grid,
.resource-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.check-list {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.check-list li {
	position: relative;
	padding-left: 28px;
	color: var(--dark-soft);
}

.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(239, 141, 50, 0.14);
	color: var(--accent-deep);
	display: grid;
	place-items: center;
	font-size: 12px;
	font-weight: 700;
}

.split-panel {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 18px;
	align-items: start;
}

.split-copy,
.official-card,
.about-story-card,
.cta-banner,
.faq-surface {
	padding: 34px;
}

.official-card {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 28px;
	align-items: center;
}

.about-section {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 20px;
	align-items: start;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin: 24px 0 30px;
}

.stats-grid.wide {
	grid-template-columns: repeat(4, 1fr);
	margin: 0;
}

.stat-card strong {
	display: block;
	font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
	font-size: 30px;
	color: var(--dark);
}

.stat-card span {
	color: var(--muted);
}

.about-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 160px;
	gap: 14px;
}

.gallery-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.gallery-card-1 {
	grid-column: 1 / -1;
	grid-row: span 2;
}

.reviews-layout {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 18px;
	align-items: stretch;
}

.review-score {
	padding: 26px;
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.review-score strong {
	font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
	font-size: 56px;
	line-height: 1;
}

.review-score span {
	margin: 12px 0 6px;
	font-size: 20px;
	color: #d58a2d;
}

.review-score small {
	color: var(--muted);
}

.reviews-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(250px, 1fr);
	gap: 18px;
	overflow-x: auto;
	scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
	display: none;
}

.review-card {
	min-height: 220px;
}

.review-card p {
	margin: 14px 0 18px;
	font-size: 15px;
}

.review-card strong,
.review-card small {
	display: block;
}

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

.faq-item {
	padding: 0;
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 20px 22px;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item[open] summary span {
	transform: rotate(45deg);
}

.faq-item p {
	margin: 0;
	padding: 0 22px 22px;
	color: var(--muted);
}

.newsletter-strip {
	width: min(1280px, calc(100% - 32px));
	margin: 0 auto 26px;
	padding: 32px;
	border-radius: var(--radius-xl);
	background: linear-gradient(135deg, #231f1b, #443021);
	color: #f7efe7;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
	gap: 26px;
}

.newsletter-copy h2,
.newsletter-copy p {
	color: inherit;
}

.newsletter-copy .eyebrow {
	color: #ffbb7d;
}

.newsletter-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	align-content: start;
}

.newsletter-form input,
.contact-form input,
.contact-form textarea {
	width: 100%;
	min-height: 48px;
	border: 1px solid rgba(232, 221, 208, 0.9);
	border-radius: 16px;
	padding: 0 16px;
	background: #fff;
	font: inherit;
	color: inherit;
}

.contact-form textarea {
	min-height: 132px;
	padding-top: 12px;
	resize: vertical;
}

.newsletter-form small,
.newsletter-form .form-message {
	grid-column: 1 / -1;
}

.form-message {
	min-height: 18px;
	font-size: 12px;
	color: #ffdaac;
}

.form-message-dark {
	color: var(--accent-deep);
}

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

.footer-grid {
	width: min(1280px, calc(100% - 32px));
	margin: 0 auto;
	padding: 12px 0 26px;
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 24px;
}

.footer-intro,
.footer-grid > div {
	padding: 26px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(232, 221, 208, 0.9);
}

.footer-brand {
	margin-bottom: 14px;
}

.footer-grid h3 {
	margin: 0 0 14px;
	font-size: 15px;
}

.footer-grid a {
	display: block;
	margin-bottom: 8px;
	color: var(--muted);
}

.footer-official-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	color: var(--accent-deep);
	font-weight: 700;
}

.footer-bottom {
	width: min(1280px, calc(100% - 32px));
	margin: 0 auto;
	padding-top: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	border-top: 1px solid rgba(232, 221, 208, 0.8);
	font-size: 13px;
	color: var(--muted);
}

.footer-bottom nav {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.page-main {
	padding-top: 12px;
}

.page-hero {
	padding: 46px 34px 18px;
}

.category-page {
	padding-top: 12px;
}

.category-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
	gap: 24px;
	align-items: center;
	padding: 46px 0 18px;
}

.category-hero__copy {
	max-width: 760px;
}

.category-hero__copy h1 {
	margin: 0 0 18px;
	font-family: var(--serif);
	font-size: clamp(42px, 5vw, 72px);
	line-height: 0.98;
}

.category-hero__copy p:not(.eyebrow) {
	max-width: 680px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.7;
}

.category-hero__media {
	overflow: hidden;
	padding: 0;
}

.category-hero__media img {
	aspect-ratio: 1.18;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-product-text {
	margin: 0 0 14px;
	color: var(--muted);
	line-height: 1.65;
}

.category-guide-grid .confidence-card svg {
	width: 24px;
	height: 24px;
}

.category-theme-page {
	background:
		radial-gradient(circle at top left, rgba(239, 141, 50, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 253, 249, 0.7), rgba(251, 247, 241, 0));
}

.category-theme-page .section-shell {
	width: min(1080px, calc(100% - 32px));
}

.category-theme-page .section {
	padding-block: 18px;
}

.category-theme-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
	gap: 48px;
	align-items: center;
	padding: 48px 0 22px;
}

.category-theme-hero__copy {
	min-width: 0;
}

.category-theme-hero__copy h1 {
	margin: 0 0 18px;
	max-width: 560px;
	font-size: clamp(38px, 4.6vw, 64px);
	line-height: 1.02;
	letter-spacing: 0;
	hyphens: auto;
	overflow-wrap: anywhere;
}

.category-theme-hero__copy p:not(.eyebrow) {
	max-width: 540px;
	margin: 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.75;
}

.category-theme-hero__media {
	overflow: hidden;
	border: 1px solid rgba(232, 221, 208, 0.9);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 22px 54px rgba(52, 42, 31, 0.12);
}

.category-theme-hero__media img {
	aspect-ratio: 1.28;
	object-fit: cover;
}

.category-feature-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	overflow: hidden;
	margin-top: 12px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 14px 38px rgba(52, 42, 31, 0.08);
}

.category-feature-strip__item {
	display: grid;
	grid-template-columns: 36px 1fr;
	gap: 12px;
	align-items: center;
	padding: 18px 20px;
	border-left: 1px solid var(--line);
}

.category-feature-strip__item:first-child {
	border-left: 0;
}

.category-feature-strip__item svg {
	width: 28px;
	height: 28px;
	color: var(--accent-deep);
}

.category-feature-strip__item strong,
.category-feature-strip__item span {
	display: block;
}

.category-feature-strip__item strong {
	font-size: 13px;
}

.category-feature-strip__item span {
	color: var(--muted);
	font-size: 12px;
	line-height: 1.35;
}

.category-theme-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 14px;
}

.category-theme-heading h2 {
	margin: 0;
	font-family: var(--serif);
	font-size: 30px;
	line-height: 1.15;
}

.category-theme-heading a {
	color: var(--accent-deep);
	font-size: 13px;
	font-weight: 800;
}

.category-style-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}

.category-style-card,
.category-featured-card,
.category-choice-panel,
.category-faq-list {
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 32px rgba(52, 42, 31, 0.08);
}

.category-style-card {
	display: flex;
	min-height: 246px;
	flex-direction: column;
	overflow: hidden;
	padding: 10px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-style-card:hover,
.category-featured-card:hover {
	transform: translateY(-3px);
}

.category-style-card img {
	aspect-ratio: 1.06;
	border-radius: 9px;
	background: #f7f0e7;
	object-fit: cover;
}

.category-style-card strong {
	margin-top: 12px;
	font-size: 13px;
	line-height: 1.25;
}

.category-style-card p {
	margin: 5px 0 10px;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.45;
}

.category-style-card span {
	margin-top: auto;
	color: var(--accent-deep);
	font-size: 12px;
	font-weight: 800;
}

.category-featured-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.category-featured-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-featured-card__image {
	display: block;
	padding: 12px 12px 0;
}

.category-featured-card__image img {
	aspect-ratio: 1.05;
	border-radius: 10px;
	background: #f7f0e7;
	object-fit: cover;
}

.category-featured-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 14px 16px 16px;
}

.category-featured-card__body h3 {
	margin: 8px 0 8px;
	font-size: 15px;
	line-height: 1.35;
	hyphens: auto;
	overflow-wrap: anywhere;
}

.category-featured-card__body p:not(.product-badge) {
	margin: 0 0 12px;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.5;
}

.category-featured-card__body .product-cta {
	width: 100%;
	margin-top: auto;
	justify-content: center;
	padding-block: 10px;
	font-size: 12px;
}

.category-choice-panel {
	margin-top: 18px;
	padding: 24px;
}

.category-choice-panel h2,
.category-seo-copy h2 {
	margin: 0 0 18px;
	font-family: var(--serif);
	font-size: 30px;
	line-height: 1.2;
}

.category-choice-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.category-choice-grid article {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 14px;
	padding-right: 14px;
	border-right: 1px solid var(--line);
}

.category-choice-grid article:last-child {
	border-right: 0;
}

.category-choice-grid svg {
	width: 32px;
	height: 32px;
	color: var(--accent-deep);
}

.category-choice-grid strong {
	display: block;
	font-size: 13px;
}

.category-choice-grid p {
	margin: 5px 0 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.5;
}

.category-seo-copy {
	max-width: 1080px;
}

.category-seo-copy p {
	max-width: 980px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.9;
}

.category-faq-list {
	overflow: hidden;
}

.category-faq-item {
	border-top: 1px solid var(--line);
}

.category-faq-item:first-child {
	border-top: 0;
}

.category-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 20px;
	cursor: pointer;
	font-weight: 800;
	list-style: none;
}

.category-faq-item summary span {
	width: 18px;
	font-size: 0;
	text-align: center;
}

.category-faq-item summary span::after {
	content: "+";
	font-size: 18px;
}

.category-faq-item[open] summary span::after {
	content: "-";
}

.category-faq-item summary::-webkit-details-marker {
	display: none;
}

.category-faq-item p {
	margin: 0;
	padding: 0 20px 18px;
	color: var(--muted);
}

.category-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.category-blog-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.category-blog-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 32px rgba(52, 42, 31, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-blog-card:hover {
	transform: translateY(-3px);
}

.category-blog-card img {
	aspect-ratio: 1.58;
	background: #f7f0e7;
}

.category-blog-card div {
	padding: 18px 20px 20px;
}

.category-blog-card span,
.blog-page-note {
	color: var(--accent-deep);
	font-size: 12px;
	font-weight: 800;
}

.category-blog-card h3 {
	margin: 8px 0 8px;
	font-size: 19px;
	line-height: 1.25;
}

.category-blog-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
}

.category-blog-card--compact {
	max-width: none;
	display: grid;
	grid-template-rows: 190px 1fr;
}

.category-blog-card--compact img {
	width: 100%;
	height: 190px;
	object-fit: contain;
	padding: 12px;
	background: #fff;
}

.category-blog-card--compact div {
	padding: 14px 16px 16px;
	border-top: 1px solid var(--line);
}

.category-blog-card--compact h3 {
	margin: 0;
	font-size: 17px;
	line-height: 1.35;
}

.category-blog-card--compact p {
	display: -webkit-box;
	margin-top: 8px;
	overflow: hidden;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.55;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.blog-hero {
	padding-bottom: 0;
}

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

.blog-page-grid .category-blog-card {
	display: grid;
	grid-template-rows: 190px 1fr;
	min-height: 100%;
}

.blog-page-grid .category-blog-card img {
	width: 100%;
	height: 190px;
	padding: 16px;
	object-fit: contain;
	background: #fff;
	border-bottom: 1px solid var(--line);
}

.blog-page-grid .category-blog-card div {
	display: flex;
	min-height: 170px;
	flex-direction: column;
	padding: 16px 18px 18px;
}

.blog-page-grid .category-blog-card h3 {
	display: -webkit-box;
	margin: 8px 0 10px;
	overflow: hidden;
	font-size: 18px;
	line-height: 1.32;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.blog-page-grid .category-blog-card p {
	display: -webkit-box;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.55;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.blog-empty-state {
	padding: 28px;
}

.blog-empty-state h2 {
	margin-top: 0;
}

.single-post-article {
	padding-top: 38px;
}

.single-post-hero {
	max-width: 900px;
	margin: 0 auto;
}

.single-post-hero h1 {
	margin: 0 0 14px;
	font-size: clamp(42px, 5vw, 66px);
	line-height: 1.05;
}

.single-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 24px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
}

.single-post-meta a {
	color: var(--accent-deep);
}

.single-post-hero img {
	aspect-ratio: 1.78;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: #f7f0e7;
	box-shadow: 0 18px 45px rgba(52, 42, 31, 0.1);
}

.single-post-content {
	max-width: 820px;
	margin: 34px auto 0;
	color: var(--ink);
	font-size: 18px;
	line-height: 1.85;
}

.single-post-content h2,
.single-post-content h3 {
	margin: 34px 0 12px;
	line-height: 1.2;
}

.single-post-content p,
.single-post-content ul,
.single-post-content ol {
	margin: 0 0 22px;
}

.single-post-content a {
	color: var(--accent-deep);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.contact-layout {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 20px;
}

.contact-details {
	padding: 28px;
}

.contact-detail-list {
	display: grid;
	gap: 16px;
	margin-top: 22px;
}

.contact-detail-item strong,
.contact-detail-item span,
.contact-detail-item a {
	display: block;
}

.contact-detail-item strong {
	margin-bottom: 4px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent-deep);
}

.contact-detail-item a {
	color: var(--dark);
	font-weight: 600;
}

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

.contact-form label {
	display: grid;
	gap: 8px;
}

.about-story-card {
	display: grid;
	gap: 24px;
}

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

.reviews-deep-intro {
	align-items: stretch;
}

.detailed-review-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.detailed-review-card {
	display: grid;
	gap: 16px;
	overflow: hidden;
}

.detailed-review-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.detailed-review-card h3,
.detailed-review-card p,
.detailed-review-card blockquote {
	margin: 0;
}

.detailed-review-product {
	font-size: 13px;
	font-weight: 700;
	color: var(--accent-deep);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	overflow-wrap: anywhere;
}

.detailed-review-card blockquote {
	padding: 4px 0 4px 16px;
	border-left: 3px solid rgba(215, 107, 20, 0.28);
	font-size: 18px;
	line-height: 1.6;
	color: var(--dark);
	overflow-wrap: anywhere;
}

.generic-page {
	padding-bottom: 28px;
}

.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1180px) {
	.main-nav {
		grid-template-columns: auto auto 1fr;
	}

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

	.nav-links {
		position: absolute;
		top: calc(100% + 1px);
		left: 16px;
		right: 16px;
		display: grid;
		gap: 4px;
		padding: 14px 18px;
		border-radius: 22px;
		background: rgba(255, 251, 246, 0.98);
		border: 1px solid var(--line);
		box-shadow: var(--shadow);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: opacity 0.18s ease, transform 0.18s ease;
		white-space: normal;
	}

	.nav-item {
		display: block;
	}

	.nav-item-has-children {
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.nav-link {
		display: inline-flex;
		width: 100%;
	}

	.nav-dropdown {
		display: none;
	}

	.nav-links.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.hero-badges,
	.confidence-grid,
	.confidence-grid.compact,
	.category-feature-strip,
	.category-style-grid,
	.category-featured-grid,
	.category-blog-grid,
	.category-grid,
	.product-grid,
	.support-grid,
	.resource-grid,
	.detailed-review-grid,
	.stats-grid.wide {
		grid-template-columns: repeat(2, 1fr);
	}

	.support-section,
	.split-panel,
	.about-section,
	.category-hero,
	.category-theme-hero,
	.contact-layout,
	.official-card,
	.newsletter-strip,
	.footer-grid,
	.reviews-layout {
		grid-template-columns: 1fr;
	}

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

	.category-choice-grid {
		grid-template-columns: 1fr;
	}

	.category-feature-strip__item {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.category-feature-strip__item:first-child,
	.category-feature-strip__item:nth-child(2) {
		border-top: 0;
	}

	.category-choice-grid article {
		padding-right: 0;
		padding-bottom: 16px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.category-choice-grid article:last-child {
		padding-bottom: 0;
		border-bottom: 0;
	}
}

@media (max-width: 760px) {
	.section-shell,
	.hero,
	.newsletter-strip,
	.footer-grid,
	.footer-bottom,
	.main-nav,
	.promo-track {
		width: min(100% - 24px, 1280px);
	}

	.main-nav {
		min-height: 70px;
		gap: 10px;
	}

	.brand-logo {
		width: 132px;
	}

	.header-actions {
		gap: 8px;
	}

	.search-box {
		width: 42px;
		flex: 0 0 42px;
	}

	.main-nav--english .search-box {
		width: 42px;
		flex: 0 0 42px;
		flex-basis: 42px;
	}

	.search-box:focus-within {
		position: fixed;
		top: 104px;
		left: 12px;
		right: 12px;
		width: auto;
		z-index: 70;
		box-shadow: var(--shadow);
	}

	.search-box input {
		width: 0;
		min-width: 0;
		opacity: 0;
		padding: 0;
	}

	.search-box:focus-within input {
		width: 100%;
		opacity: 1;
		padding: 0 48px 0 14px;
	}

	.header-cta {
		display: none;
	}

	.language-switcher {
		display: none;
	}

	.hero {
		min-height: 540px;
	}

	.hero-copy {
		padding: 46px 24px 42px;
	}

	.hero h1 {
		font-size: 40px;
	}

	.hero-badges,
	.confidence-grid,
	.confidence-grid.compact,
	.category-feature-strip,
	.category-style-grid,
	.category-featured-grid,
	.category-choice-grid,
	.category-blog-grid,
	.category-grid,
	.product-grid,
	.support-grid,
	.resource-grid,
	.detailed-review-grid,
	.stats-grid,
	.stats-grid.wide,
	.faq-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.feature-pill,
	.confidence-card,
	.support-card,
	.resource-card,
	.review-card,
	.stat-card,
	.contact-form,
	.contact-details,
	.split-copy,
	.official-card,
	.about-story-card,
	.cta-banner,
	.faq-surface,
	.newsletter-strip {
		padding: 22px;
	}

	.about-gallery {
		grid-template-columns: 1fr;
		grid-auto-rows: 180px;
	}

	.category-hero {
		padding-top: 28px;
	}

	.category-hero__copy h1 {
		font-size: 40px;
	}

	.category-theme-hero {
		gap: 22px;
		padding-top: 28px;
	}

	.category-theme-hero__copy h1 {
		font-size: 38px;
	}

	.category-theme-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.category-feature-strip__item,
	.category-feature-strip__item:nth-child(2) {
		border-top: 1px solid var(--line);
	}

	.category-feature-strip__item:first-child {
		border-top: 0;
	}

	.category-choice-panel {
		padding: 20px;
	}

	.gallery-card-1 {
		grid-column: auto;
		grid-row: auto;
	}

	.newsletter-form {
		grid-template-columns: 1fr;
	}

	.cta-banner {
		align-items: flex-start;
	}

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

/* Mobile-first refinements for Google mobile indexing and small-screen usability. */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

.site-header,
.main-nav,
.nav-links,
.header-actions,
.section-shell,
.category-theme-page .section-shell {
	min-width: 0;
}

.main-nav {
	position: relative;
}

.button,
.nav-link,
.category-featured-card__body h3,
.category-style-card strong,
.category-blog-card h3,
.faq-item summary,
.category-faq-item summary {
	overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
	.main-nav,
	.main-nav--english {
		grid-template-columns: auto minmax(92px, auto) minmax(0, 1fr);
	}

	.nav-links {
		max-height: min(74vh, 680px);
		overflow-y: auto;
		overscroll-behavior: contain;
	}

	.nav-item-has-children > .nav-link {
		font-weight: 800;
	}

	.nav-dropdown,
	.nav-item.is-featured > .nav-dropdown {
		position: static;
		display: block;
		width: 100%;
		min-width: 0;
		margin: 0 0 10px;
		padding: 8px 0 4px 12px;
		border: 0;
		border-left: 2px solid rgba(239, 141, 50, 0.28);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.nav-item.is-featured .nav-dropdown-grid,
	.nav-dropdown-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px 18px;
	}

	.nav-dropdown-column {
		gap: 7px;
	}

	.nav-dropdown-column h3 {
		font-size: 13px;
	}

	.nav-dropdown-column a {
		font-size: 13px;
	}

	.search-results {
		left: auto;
		right: 0;
		width: min(360px, calc(100vw - 32px));
	}

	.category-theme-page .section-shell {
		width: min(100% - 28px, 1080px);
	}

	.category-theme-hero__media img,
	.category-hero__media img {
		max-height: 420px;
	}
}

@media (max-width: 760px) {
	body.homcom-page {
		font-size: 14px;
	}

	.site-main {
		padding-bottom: 24px;
	}

	.promo-track {
		justify-content: flex-start;
		min-height: 34px;
		padding-inline: 2px;
		gap: 16px;
	}

	.main-nav,
	.main-nav--english {
		grid-template-columns: 42px minmax(96px, 1fr) auto;
		min-height: 66px;
	}

	.mobile-nav-toggle {
		justify-self: start;
	}

	.brand {
		justify-self: start;
	}

	.brand-logo {
		width: clamp(82px, 26vw, 112px);
	}

	.header-actions {
		justify-self: end;
	}

	.language-switcher--dropdown {
		display: inline-flex;
	}

	.language-switcher__toggle {
		min-width: 46px;
		padding: 8px;
	}

	.language-switcher__menu {
		max-height: 56vh;
		overflow-y: auto;
	}

	.nav-links {
		left: 0;
		right: 0;
		padding: 12px;
		border-radius: 18px;
	}

	.nav-link {
		min-height: 40px;
		padding: 8px 2px;
	}

	.nav-item.is-featured .nav-dropdown-grid,
	.nav-dropdown-grid {
		grid-template-columns: 1fr;
	}

	.search-box:focus-within {
		top: 8px;
	}

	.search-results {
		width: calc(100vw - 24px);
	}

	.hero {
		min-height: auto;
		border-radius: 22px;
		background-image:
			linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.78)),
			var(--hero-image);
		background-position: center bottom;
	}

	.hero-copy {
		max-width: none;
	}

	.hero-badges {
		margin-top: 14px;
	}

	.hero h1,
	.category-hero__copy h1,
	.category-theme-hero__copy h1,
	.single-post-hero h1 {
		font-size: clamp(32px, 10vw, 40px);
		line-height: 1.08;
	}

	.hero-text,
	.category-theme-hero__copy p:not(.eyebrow),
	.category-hero__copy p:not(.eyebrow),
	.page-hero p {
		font-size: 15px;
		line-height: 1.65;
	}

	.hero-actions,
	.cta-banner {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-actions .button,
	.cta-banner .button,
	.newsletter-form .button,
	.product-cta {
		width: 100%;
	}

	.section {
		padding-top: 34px;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 18px;
	}

	.section-heading h2,
	.split-copy h2,
	.about-copy h2,
	.support-copy h2,
	.official-card h2,
	.page-hero h1,
	.newsletter-copy h2,
	.category-theme-heading h2,
	.category-choice-panel h2,
	.category-seo-copy h2 {
		font-size: clamp(26px, 8vw, 34px);
	}

	.category-card img,
	.product-image img,
	.category-style-card img,
	.category-featured-card__image img,
	.category-blog-card img,
	.blog-page-grid .category-blog-card img,
	.category-blog-card--compact img,
	.single-post-hero img {
		height: auto;
	}

	.category-style-card {
		min-height: 0;
	}

	.category-style-card img {
		aspect-ratio: 1.5;
	}

	.category-featured-card__image img {
		aspect-ratio: 1.28;
		object-fit: contain;
		padding: 8px;
		background: #fff;
	}

	.category-feature-strip {
		border-radius: 12px;
	}

	.category-feature-strip__item {
		grid-template-columns: 30px 1fr;
		padding: 14px;
	}

	.category-feature-strip__item svg {
		width: 24px;
		height: 24px;
	}

	.category-theme-hero__media,
	.category-hero__media {
		max-height: none;
	}

	.category-theme-hero__media img,
	.category-hero__media img {
		aspect-ratio: 1.35;
		max-height: none;
	}

	.category-featured-card__body,
	.product-copy,
	.card-copy {
		padding: 16px;
	}

	.price-row strong {
		font-size: 24px;
	}

	.faq-item summary,
	.category-faq-item summary {
		align-items: flex-start;
		padding: 16px;
	}

	.faq-item p,
	.category-faq-item p {
		padding-inline: 16px;
	}

	.newsletter-strip {
		border-radius: 22px;
	}

	.newsletter-form input {
		min-width: 0;
	}

	.footer-grid > div,
	.footer-intro {
		padding: 20px;
	}

	.footer-brand .brand-logo {
		width: 150px;
	}

	.blog-page-grid .category-blog-card,
	.category-blog-card--compact {
		grid-template-rows: auto 1fr;
	}

	.blog-page-grid .category-blog-card img,
	.category-blog-card--compact img {
		aspect-ratio: 1.55;
		height: auto;
	}

	.single-post-content {
		margin-top: 24px;
		font-size: 16px;
		line-height: 1.75;
	}
}

@media (max-width: 420px) {
	.section-shell,
	.hero,
	.newsletter-strip,
	.footer-grid,
	.footer-bottom,
	.main-nav,
	.promo-track,
	.category-theme-page .section-shell {
		width: min(100% - 18px, 1280px);
	}

	.main-nav,
	.main-nav--english {
		grid-template-columns: 40px minmax(76px, 1fr) auto;
		gap: 8px;
	}

	.icon-button {
		width: 36px;
		height: 36px;
	}

	.search-box {
		width: 38px;
		flex: 0 0 38px;
		position: relative;
	}

	.main-nav--english .search-box {
		width: 38px;
		flex: 0 0 38px;
		flex-basis: 38px;
	}

	.search-box input {
		width: 0;
		min-width: 0;
		padding: 0;
	}

	.search-box .icon-button {
		right: 0;
	}

	.search-box:focus-within {
		position: fixed;
		top: 104px;
		left: 9px;
		right: 9px;
		width: auto;
		z-index: 90;
		box-shadow: var(--shadow);
	}

	.search-box:focus-within input {
		width: 100%;
		padding: 0 48px 0 14px;
	}

	.search-box:focus-within .icon-button {
		right: 4px;
	}

	.language-switcher__toggle {
		min-width: 44px;
		gap: 5px;
		padding-inline: 8px;
	}

	.hero-copy {
		padding: 34px 18px 36px;
	}

	.hero-badges {
		margin-top: 12px;
	}

	.feature-pill {
		align-items: flex-start;
	}

	.feature-pill,
	.confidence-card,
	.support-card,
	.resource-card,
	.review-card,
	.stat-card,
	.contact-form,
	.contact-details,
	.split-copy,
	.official-card,
	.about-story-card,
	.cta-banner,
	.faq-surface,
	.newsletter-strip {
		padding: 18px;
	}

	.category-theme-hero {
		padding-top: 22px;
	}

	.category-theme-heading {
		gap: 8px;
	}

	.category-featured-grid,
	.category-style-grid,
	.category-blog-grid,
	.blog-page-grid {
		gap: 12px;
	}
}
