/*
Theme Name: H2Ozon
Theme URI: https://h2ozon.nl/
Author: H2Ozon
Description: Custom WooCommerce theme centered on the H2Ozon Cleaning Sprayer with selected accessories.
Version: 0.3.1
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: h2ozon
*/

:root {
	--h2o-blue: #0796d8;
	--h2o-blue-dark: #075f99;
	--h2o-navy: #083f58;
	--h2o-green: #58b63f;
	--h2o-green-dark: #2f8b35;
	--h2o-mint: #eaf9f4;
	--h2o-sky: #ecf8ff;
	--h2o-ink: #0d2430;
	--h2o-muted: #5d7180;
	--h2o-line: #dceaf0;
	--h2o-surface: #ffffff;
	--h2o-soft: #f5fbfd;
	--h2o-shadow: 0 18px 55px rgba(7, 63, 88, 0.12);
	--h2o-radius: 8px;
	--h2o-wrap: min(1160px, calc(100vw - 40px));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--h2o-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	background: #ffffff;
	text-rendering: optimizeLegibility;
}

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

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

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

button,
input,
select,
textarea {
	font: inherit;
}

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

.skip-link:focus {
	z-index: 100000;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	color: #ffffff;
	background: var(--h2o-navy);
	border-radius: 6px;
}

.wrap {
	width: var(--h2o-wrap);
	margin-inline: auto;
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid rgba(220, 234, 240, 0.82);
	backdrop-filter: blur(16px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 78px;
}

.site-branding {
	display: inline-flex;
	align-items: center;
	min-width: 168px;
}

.site-branding img {
	width: 196px;
	max-height: 58px;
	object-fit: contain;
}

.site-branding__fallback {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--h2o-navy);
	font-weight: 800;
	font-size: 1.15rem;
}

.site-branding__fallback span {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	color: #ffffff;
	background: linear-gradient(135deg, var(--h2o-blue), var(--h2o-green));
	border-radius: 50%;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 26px;
	color: var(--h2o-navy);
	font-size: 0.95rem;
	font-weight: 700;
}

.site-nav a {
	position: relative;
	padding: 4px 0;
}

.site-nav a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--h2o-blue), var(--h2o-green));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
	transform: scaleX(1);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cart-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: var(--h2o-navy);
	background: var(--h2o-sky);
	border: 1px solid var(--h2o-line);
	border-radius: 50%;
}

.cart-link__count {
	position: absolute;
	top: -7px;
	right: -7px;
	display: grid;
	place-items: center;
	min-width: 21px;
	height: 21px;
	padding: 0 6px;
	color: #ffffff;
	background: var(--h2o-green);
	border: 2px solid #ffffff;
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 800;
	line-height: 1;
}

.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
button[type="submit"],
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 13px 22px;
	color: #ffffff;
	background: linear-gradient(135deg, var(--h2o-blue), var(--h2o-green));
	border: 0;
	border-radius: 999px;
	box-shadow: 0 12px 26px rgba(7, 150, 216, 0.22);
	font-weight: 800;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
	color: #ffffff;
	background: linear-gradient(135deg, var(--h2o-blue-dark), var(--h2o-green-dark));
	box-shadow: 0 16px 32px rgba(7, 150, 216, 0.28);
	transform: translateY(-1px);
}

.button--ghost {
	color: var(--h2o-navy);
	background: #ffffff;
	border: 1px solid var(--h2o-line);
	box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
	color: var(--h2o-navy);
	background: var(--h2o-sky);
	box-shadow: none;
}

.hero {
	position: relative;
	min-height: calc(100vh - 78px);
	display: flex;
	align-items: stretch;
	isolation: isolate;
	background:
		radial-gradient(circle at 82% 28%, rgba(7, 150, 216, 0.1), transparent 30%),
		linear-gradient(135deg, #ffffff 0%, var(--h2o-soft) 100%);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	right: max(20px, calc((100vw - 1160px) / 2));
	bottom: 0;
	left: max(20px, calc((100vw - 1160px) / 2));
	z-index: -2;
	background-image: var(--hero-image);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.91) 43%, rgba(255, 255, 255, 0.5) 68%, rgba(255, 255, 255, 0.12) 100%),
		linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08));
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
	align-items: center;
	gap: 56px;
	padding: 76px 0 68px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding: 7px 11px;
	color: var(--h2o-blue-dark);
	background: rgba(234, 249, 244, 0.92);
	border: 1px solid rgba(88, 182, 63, 0.22);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.eyebrow::before {
	content: "";
	width: 8px;
	height: 8px;
	background: var(--h2o-green);
	border-radius: 50%;
}

.hero h1,
.page-header h1 {
	max-width: 720px;
	margin: 18px 0 18px;
	color: var(--h2o-navy);
	font-size: clamp(2.35rem, 4.9vw, 4.85rem);
	line-height: 0.98;
	letter-spacing: 0;
}

.hero h1 span {
	color: var(--h2o-blue);
}

.hero__lead {
	max-width: 620px;
	margin: 0 0 30px;
	color: #315161;
	font-size: clamp(1.04rem, 1.55vw, 1.22rem);
	line-height: 1.55;
}

.hero__mobile-product {
	display: none;
}

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

.trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.trust-list li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 11px;
	color: var(--h2o-navy);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(220, 234, 240, 0.85);
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 800;
}

.trust-list li::before {
	content: "";
	width: 9px;
	height: 9px;
	background: linear-gradient(135deg, var(--h2o-blue), var(--h2o-green));
	border-radius: 50%;
}

.hero-buy-card {
	align-self: end;
	margin-left: auto;
	max-width: 410px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(220, 234, 240, 0.9);
	border-radius: var(--h2o-radius);
	box-shadow: var(--h2o-shadow);
	backdrop-filter: blur(18px);
}

.hero-buy-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.hero-buy-card h2 {
	margin: 0;
	color: var(--h2o-navy);
	font-size: 1.18rem;
	line-height: 1.2;
}

.stock-pill,
.woocommerce span.onsale {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 10px;
	color: var(--h2o-green-dark);
	background: var(--h2o-mint);
	border: 1px solid rgba(88, 182, 63, 0.24);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 900;
	white-space: nowrap;
}

.hero-buy-card__price {
	margin: 0 0 16px;
	color: var(--h2o-navy);
	font-size: 2.25rem;
	font-weight: 900;
	line-height: 1;
}

.hero-buy-card__price small {
	display: block;
	margin-top: 7px;
	color: var(--h2o-muted);
	font-size: 0.86rem;
	font-weight: 700;
}

.quick-buy-form {
	display: grid;
	grid-template-columns: 118px 1fr;
	gap: 12px;
}

.quick-buy-form label {
	display: grid;
	gap: 6px;
	color: var(--h2o-muted);
	font-size: 0.82rem;
	font-weight: 800;
}

.quick-buy-form input.qty,
.quantity .qty {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	color: var(--h2o-navy);
	background: #ffffff;
	border: 1px solid var(--h2o-line);
	border-radius: 999px;
	font-weight: 800;
	text-align: center;
}

.quick-buy-form button {
	align-self: end;
	width: 100%;
}

.hero-buy-card__note {
	margin: 13px 0 0;
	color: var(--h2o-muted);
	font-size: 0.88rem;
}

.section {
	padding: 86px 0;
}

.section--soft {
	background:
		radial-gradient(circle at top right, rgba(7, 150, 216, 0.1), transparent 32%),
		linear-gradient(180deg, #ffffff 0%, var(--h2o-soft) 100%);
}

.section__heading {
	max-width: 720px;
	margin-bottom: 34px;
}

.section__heading h2 {
	margin: 10px 0 12px;
	color: var(--h2o-navy);
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1.02;
	letter-spacing: 0;
}

.section__heading p {
	margin: 0;
	color: var(--h2o-muted);
	font-size: 1.08rem;
}

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

.benefit {
	padding: 26px;
	background: #ffffff;
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius);
	box-shadow: 0 12px 34px rgba(7, 63, 88, 0.06);
}

.benefit__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	color: #ffffff;
	background: linear-gradient(135deg, var(--h2o-blue), var(--h2o-green));
	border-radius: 50%;
	font-size: 1.35rem;
	font-weight: 900;
}

.benefit h3,
.use-case h3,
.product-detail h3 {
	margin: 0 0 9px;
	color: var(--h2o-navy);
	font-size: 1.2rem;
	line-height: 1.25;
}

.benefit p,
.use-case p,
.product-detail p {
	margin: 0;
	color: var(--h2o-muted);
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: 48px;
}

.image-panel {
	position: relative;
	overflow: hidden;
	min-height: 460px;
	border-radius: var(--h2o-radius);
	box-shadow: var(--h2o-shadow);
}

.image-panel img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.image-panel--soft img {
	object-position: 68% 50%;
}

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

.check-list li {
	position: relative;
	padding-left: 34px;
	color: #315161;
	font-weight: 750;
}

.check-list li::before {
	content: "";
	position: absolute;
	top: 0.35em;
	left: 0;
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, var(--h2o-blue), var(--h2o-green));
	border-radius: 50%;
}

.check-list li::after {
	content: "";
	position: absolute;
	top: calc(0.35em + 5px);
	left: 6px;
	width: 8px;
	height: 5px;
	border-bottom: 2px solid #ffffff;
	border-left: 2px solid #ffffff;
	transform: rotate(-45deg);
}

.use-case-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.use-case {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius);
	box-shadow: 0 12px 34px rgba(7, 63, 88, 0.07);
}

.use-case img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.use-case__body {
	padding: 20px;
}

.section--accessories {
	background: #ffffff;
}

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

.accessory-card {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	min-width: 0;
	background: #ffffff;
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius);
	box-shadow: 0 12px 34px rgba(7, 63, 88, 0.07);
}

.accessory-card__image {
	display: grid;
	place-items: center;
	overflow: hidden;
	aspect-ratio: 1 / 0.86;
	padding: 16px;
	background: var(--h2o-soft);
}

.accessory-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 180ms ease;
}

.accessory-card__image:hover img,
.accessory-card__image:focus-visible img {
	transform: scale(1.025);
}

.accessory-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px;
}

.accessory-card h3 {
	margin: 0 0 10px;
	color: var(--h2o-navy);
	font-size: 1.1rem;
	line-height: 1.3;
}

.accessory-card__price {
	margin-bottom: 18px;
	color: var(--h2o-blue-dark);
	font-size: 1.22rem;
	font-weight: 900;
	line-height: 1.25;
}

.accessory-card__price del {
	margin-right: 5px;
	color: var(--h2o-muted);
	font-size: 0.88em;
	opacity: 1;
}

.accessory-card__price ins {
	color: var(--h2o-blue-dark);
	text-decoration: none;
}

.accessory-card__button {
	width: 100%;
	margin-top: auto;
	padding-inline: 16px;
	font-size: 0.92rem;
}

.accessory-card .added_to_cart {
	margin-top: 10px;
	color: var(--h2o-blue-dark);
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.product-band {
	padding: 32px;
	color: #ffffff;
	background:
		linear-gradient(135deg, rgba(7, 63, 88, 0.94), rgba(7, 150, 216, 0.86)),
		url("assets/images/sprayer-detail.jpg") center/cover;
	border-radius: var(--h2o-radius);
	box-shadow: var(--h2o-shadow);
}

.product-band__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
	align-items: center;
	gap: 28px;
}

.product-band h2,
.product-band p {
	margin-top: 0;
}

.product-band h2 {
	margin-bottom: 10px;
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1.05;
}

.product-band p {
	max-width: 620px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.84);
}

.product-band .eyebrow {
	color: var(--h2o-blue-dark);
	background: #ffffff;
	border-color: rgba(255, 255, 255, 0.7);
}

.product-band .hero-buy-card {
	margin: 0;
	color: var(--h2o-ink);
	background: #ffffff;
}

.product-band .hero-buy-card__price,
.product-band .hero-buy-card__price .amount {
	color: var(--h2o-navy);
}

.product-band .hero-buy-card__price del,
.product-band .hero-buy-card__price del .amount {
	color: #526b78;
	opacity: 1;
}

.product-band .hero-buy-card__price ins,
.product-band .hero-buy-card__price ins .amount {
	color: var(--h2o-blue-dark);
	text-decoration: none;
}

.faq-sections {
	display: grid;
	gap: 34px;
}

.faq-section {
	display: grid;
	gap: 18px;
}

.faq-section h3 {
	margin: 0;
	color: var(--h2o-navy);
	font-size: clamp(1.25rem, 2vw, 1.7rem);
	line-height: 1.2;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: 18px;
}

.faq-item {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius);
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 24px;
	cursor: pointer;
	list-style: none;
}

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

.faq-item__question {
	color: var(--h2o-navy);
	font-size: 1.12rem;
	font-weight: 800;
	line-height: 1.25;
}

.faq-item__icon {
	position: relative;
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	background: var(--h2o-sky);
	border: 1px solid var(--h2o-line);
	border-radius: 50%;
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: var(--h2o-blue-dark);
	border-radius: 999px;
	transform: translate(-50%, -50%);
	transition: transform 160ms ease;
}

.faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-item__answer {
	padding: 0 24px 24px;
	color: var(--h2o-muted);
}

.faq-item__answer > :first-child {
	margin-top: 0;
}

.faq-item__answer > :last-child {
	margin-bottom: 0;
}

.site-footer {
	color: rgba(255, 255, 255, 0.86);
	background: var(--h2o-navy);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	padding: 34px 0;
}

.site-footer img {
	width: 190px;
	padding: 8px 10px;
	background: #ffffff;
	border-radius: 6px;
}

.site-footer p {
	margin: 8px 0 0;
}

.footer-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 16px;
	font-weight: 750;
}

.footer-social-link {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		transform 160ms ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.42);
	transform: translateY(-1px);
}

.footer-social-link svg {
	width: 20px;
	height: 20px;
}

.footer-legal-links {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
	padding-top: 18px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.92rem;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-legal-links a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.page-header {
	padding: 78px 0 44px;
	background: linear-gradient(180deg, var(--h2o-soft), #ffffff);
}

.page-header h1 {
	margin-bottom: 12px;
	font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.page-header p {
	max-width: 720px;
	margin: 0;
	color: var(--h2o-muted);
	font-size: 1.12rem;
}

.content-area {
	width: var(--h2o-wrap);
	margin: 0 auto;
	padding: 56px 0 86px;
}

.entry-content {
	color: #2f4b58;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content a {
	color: var(--h2o-blue-dark);
	font-weight: 750;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.site-main--legal {
	min-height: calc(100svh - 78px);
	color: #ffffff;
	background: var(--h2o-navy);
}

.page-header--legal {
	padding: 78px 0 24px;
	background: transparent;
}

.page-header--legal h1 {
	color: #ffffff;
}

.content-area--legal {
	width: min(820px, calc(100vw - 40px));
	padding-top: 0;
}

.content-area--legal .entry-content {
	color: rgba(255, 255, 255, 0.84);
	font-size: 1rem;
}

.content-area--legal .entry-content h2,
.content-area--legal .entry-content h3,
.content-area--legal .entry-content strong {
	color: #ffffff;
}

.content-area--legal .entry-content a {
	color: #ffffff;
}

.woocommerce-page .content-area,
.woocommerce .content-area {
	max-width: var(--h2o-wrap);
}

.woocommerce .woocommerce-breadcrumb {
	margin: 24px auto 0;
	width: var(--h2o-wrap);
	color: var(--h2o-muted);
}

.woocommerce div.product {
	width: var(--h2o-wrap);
	margin: 54px auto 86px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	margin-bottom: 0;
}

.woocommerce div.product .product_title {
	color: var(--h2o-navy);
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1.05;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--h2o-blue-dark);
	font-size: 2rem;
	font-weight: 900;
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.woocommerce div.product form.cart div.quantity {
	float: none;
	margin: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #payment,
.woocommerce table.shop_table {
	border-color: var(--h2o-line);
	border-radius: var(--h2o-radius);
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout h3,
.woocommerce-cart .cart_totals h2 {
	color: var(--h2o-navy);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce input.input-text,
.woocommerce textarea {
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid var(--h2o-line);
	border-radius: 6px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	width: var(--h2o-wrap);
	margin: 24px auto;
	border-top-color: var(--h2o-blue);
	border-radius: var(--h2o-radius);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--h2o-blue);
}

@media (max-width: 980px) {
	.site-header__inner {
		min-height: 68px;
	}

	body.admin-bar .site-header {
		top: 46px;
	}

	.site-nav {
		display: none;
	}

	.hero {
		min-height: auto;
	}

	.hero h1 {
		font-size: clamp(2.25rem, 7vw, 3.7rem);
	}

	.hero__lead {
		max-width: 560px;
		margin-bottom: 22px;
	}

	.hero::before {
		background-position: right -90px center;
		background-size: auto 92%;
	}

	.hero::after {
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.76) 62%, rgba(255, 255, 255, 0.28));
	}

	.hero__inner,
	.split,
	.product-band__inner {
		grid-template-columns: 1fr;
	}

	.hero__inner {
		padding: 54px 0;
	}

	.hero-buy-card {
		margin: 0;
	}

	.benefit-grid,
	.use-case-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

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

	.image-panel {
		min-height: 360px;
	}
}

@media (max-width: 640px) {
	:root {
		--h2o-wrap: min(100vw - 28px, 1160px);
	}

	.site-branding img {
		width: 158px;
	}

	.header-actions .button {
		display: none;
	}

	.hero {
		min-height: calc(100svh - 68px);
		background:
			radial-gradient(circle at 50% 36%, rgba(7, 150, 216, 0.12), transparent 42%),
			linear-gradient(180deg, #ffffff 0%, var(--h2o-soft) 100%);
	}

	.hero::before {
		content: none;
	}

	.hero::after {
		content: none;
	}

	.hero__inner {
		gap: 16px;
		padding: 20px 0 24px;
	}

	.hero__copy {
		display: grid;
		gap: 10px;
	}

	.hero .eyebrow {
		padding: 6px 10px;
		font-size: 0.7rem;
	}

	.hero h1 {
		max-width: 11ch;
		margin: 0;
		font-size: clamp(2rem, 10.8vw, 2.85rem);
		line-height: 0.98;
	}

	.hero__lead {
		max-width: 34rem;
		margin: 0;
		font-size: 0.98rem;
		line-height: 1.4;
	}

	.hero__mobile-product {
		display: block;
		width: min(78vw, 300px);
		height: clamp(150px, 42vw, 220px);
		margin: -2px auto 0;
		background-image: var(--hero-image);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}

	.quick-buy-form {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero__actions {
		display: flex;
		gap: 10px;
	}

	.hero__actions .button {
		flex: 1 1 auto;
		min-height: 44px;
		padding: 12px 14px;
		font-size: 0.96rem;
	}

	.hero__actions .button--ghost {
		display: none;
	}

	.quick-buy-form button {
		width: 100%;
	}

	.trust-list {
		gap: 8px;
		margin-top: 2px;
	}

	.trust-list li {
		padding: 7px 9px;
		font-size: 0.82rem;
	}

	.hero .hero-buy-card {
		display: none;
	}

	.section {
		padding: 62px 0;
	}

	.benefit,
	.product-band {
		padding: 20px;
	}

	.accessory-grid {
		grid-template-columns: 1fr;
	}

	.faq-item summary {
		padding: 18px;
	}

	.faq-item__answer {
		padding: 0 18px 18px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.footer-links {
		justify-content: flex-start;
	}

	.footer-actions {
		justify-content: flex-start;
	}
}
