/* =========================================================================
   SEO Audit Agency — main stylesheet
   1. Tokens        6. Sections
   2. Reset         7. Forms
   3. Layout        8. Blog
   4. Buttons       9. WooCommerce
   5. Header/Footer 10. Responsive
   ========================================================================= */

/* 1. Tokens ------------------------------------------------------------- */
:root {
	--ink: #0a1226;
	--ink-soft: #131e3a;
	--body: #45536e;
	--muted: #6b7a99;
	--line: #e5eaf3;
	--line-soft: #eef2f9;
	--bg: #ffffff;
	--soft: #f5f8fd;
	--brand: #00a774;
	--brand-ink: #007d57;
	--brand-2: #0a6fe8;
	--brand-grad: linear-gradient(120deg, #00b37e 0%, #0a84ff 100%);
	--warn: #b45309;
	--danger: #c02626;

	--radius-sm: 8px;
	--radius: 14px;
	--radius-lg: 22px;

	--shadow-sm: 0 1px 2px rgba(10, 18, 38, .06), 0 2px 8px rgba(10, 18, 38, .04);
	--shadow: 0 4px 12px rgba(10, 18, 38, .06), 0 18px 40px -18px rgba(10, 18, 38, .18);
	--shadow-lg: 0 8px 24px rgba(10, 18, 38, .08), 0 40px 80px -30px rgba(10, 18, 38, .28);

	--font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
	--font-body: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

	--wrap: 1180px;
	--gap: 28px;
	--section-y: 96px;
}

/* 2. Reset -------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--body);
	font-family: var(--font-body);
	font-size: 16.5px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font);
	color: var(--ink);
	line-height: 1.18;
	margin: 0 0 .6em;
	font-weight: 800;
	letter-spacing: -.02em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand-ink); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--brand-2); }

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

ul, ol { padding-left: 1.25em; }
li { margin-bottom: .4em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

blockquote {
	margin: 1.8rem 0;
	padding: 1.2rem 1.6rem;
	border-left: 4px solid var(--brand);
	background: var(--soft);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-size: 1.05rem;
	color: var(--ink-soft);
}

code, pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .9em;
}

code { background: var(--soft); padding: .15em .4em; border-radius: 5px; }

pre {
	background: var(--ink);
	color: #d7e3f5;
	padding: 1.2rem;
	border-radius: var(--radius);
	overflow-x: auto;
}

table { border-collapse: collapse; width: 100%; margin: 0 0 1.5rem; }
th, td { border: 1px solid var(--line); padding: .7rem .9rem; text-align: left; }
th { background: var(--soft); font-family: var(--font); color: var(--ink); font-weight: 700; }

:focus-visible {
	outline: 3px solid var(--brand-2);
	outline-offset: 2px;
	border-radius: 4px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--ink); color: #fff;
	padding: .8rem 1.2rem; z-index: 999;
	border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* 3. Layout ------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 24px;
}

.container--narrow { max-width: 820px; }

.section { padding: var(--section-y) 0; }
.section--tight { padding: 64px 0; }
.section--soft { background: var(--soft); }
.section--dark { background: var(--ink); color: #b9c6dd; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.08rem; color: var(--muted); margin-bottom: 0; }
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--brand-ink);
	background: rgba(0, 179, 126, .1);
	border: 1px solid rgba(0, 179, 126, .22);
	padding: .4rem .85rem;
	border-radius: 999px;
	margin-bottom: 18px;
}

.section--dark .eyebrow {
	color: #6ff0c0;
	background: rgba(0, 179, 126, .16);
	border-color: rgba(0, 179, 126, .3);
}

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.lede { font-size: 1.14rem; color: var(--muted); }

/* 4. Buttons ------------------------------------------------------------ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--font);
	font-weight: 700;
	font-size: .97rem;
	line-height: 1;
	padding: 15px 26px;
	border-radius: var(--radius-sm);
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
	text-align: center;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
	background: var(--brand-grad);
	color: #fff;
	box-shadow: 0 6px 18px -6px rgba(0, 140, 100, .6);
}
.btn--primary:hover { color: #fff; box-shadow: 0 12px 26px -8px rgba(0, 140, 100, .65); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { color: #fff; background: var(--ink-soft); }

.btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }

/* Ghost buttons sitting on any dark ground need light text, not ink. */
.section--dark .btn--ghost,
.hero .btn--ghost,
.cta-band .btn--ghost,
.page-hero .btn--ghost,
.info-panel .btn--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, .3);
}
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover,
.cta-band .btn--ghost:hover,
.page-hero .btn--ghost:hover,
.info-panel .btn--ghost:hover {
	border-color: #fff;
	color: #fff;
	background: rgba(255, 255, 255, .08);
}

.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { color: var(--ink); }

.btn--lg { padding: 17px 32px; font-size: 1.02rem; }
.btn--sm { padding: 10px 16px; font-size: .85rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row--center { justify-content: center; }

.icon { flex-shrink: 0; }

/* 5. Header / Footer ---------------------------------------------------- */
.topbar {
	background: var(--ink);
	color: #9fb0cc;
	font-size: .86rem;
	padding: 9px 0;
}
.topbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.topbar a { color: #cfdcef; }
.topbar a:hover { color: #fff; }
.topbar-items { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar-items span, .topbar-items a { display: inline-flex; align-items: center; gap: 7px; }
.topbar .icon { color: var(--brand); }

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--line-soft);
	transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand:hover { color: inherit; }

.brand-mark {
	width: 40px; height: 40px;
	border-radius: 11px;
	background: var(--brand-grad);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--font);
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: -.03em;
	flex-shrink: 0;
	box-shadow: 0 4px 12px -4px rgba(0, 140, 100, .7);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
	font-family: var(--font);
	font-weight: 800;
	font-size: 1.16rem;
	color: var(--ink);
	letter-spacing: -.02em;
}
.brand-tag { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }

/* Brand logo. The artwork is a wide lockup (~4.4:1), so height drives the size
   and width follows; it shrinks on small screens to leave room for the cart
   button and the nav toggle. */
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	line-height: 0;
}
.site-header .custom-logo,
.custom-logo {
	height: 46px;
	width: auto;
	max-height: 46px;
	max-width: 320px;
	object-fit: contain;
}

@media (max-width: 900px) {
	.site-header .custom-logo, .custom-logo { height: 40px; max-height: 40px; max-width: 220px; }
}

@media (max-width: 480px) {
	.site-header .custom-logo, .custom-logo { height: 32px; max-height: 32px; max-width: 180px; }
}

.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: var(--radius-sm);
	cursor: pointer;
	position: relative;
	padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
	position: absolute;
	left: 50%; translate: -50% 0;
	width: 19px; height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: .22s ease;
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { content: ""; top: -6px; left: 0; translate: 0 0; }
.nav-toggle span::after { content: ""; top: 6px; left: 0; translate: 0 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; rotate: 45deg; }
.nav-toggle[aria-expanded="true"] span::after { top: 0; rotate: -45deg; }

.main-nav ul {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	align-items: center;
	gap: 4px;
}
.main-nav li { margin: 0; position: relative; }
.main-nav a {
	display: block;
	font-family: var(--font);
	font-weight: 600;
	font-size: .95rem;
	color: var(--ink-soft);
	padding: 10px 13px;
	border-radius: var(--radius-sm);
}
.main-nav a:hover { color: var(--brand-ink); background: var(--soft); }
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-parent > a { color: var(--brand-ink); }

.main-nav .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 6px; height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	rotate: 45deg;
	margin-left: 7px;
	translate: 0 -2px;
	opacity: .55;
}

.main-nav .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 260px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 8px;
	display: block;
	flex-direction: column;
	align-items: stretch;
	gap: 2px;
	opacity: 0;
	visibility: hidden;
	translate: 0 8px;
	transition: .18s ease;
	z-index: 30;
}
.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu {
	opacity: 1; visibility: visible; translate: 0 0;
}
.main-nav .sub-menu a { padding: 10px 12px; font-weight: 500; font-size: .92rem; }

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

.cart-link {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 44px; height: 44px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	color: var(--ink);
}
.cart-link:hover { border-color: var(--ink); color: var(--ink); }
.cart-count {
	position: absolute;
	top: -6px; right: -6px;
	min-width: 20px; height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--brand);
	color: #fff;
	font-size: .68rem;
	font-weight: 700;
	display: grid;
	place-items: center;
	font-family: var(--font);
}

/* Footer */
.site-footer {
	background: var(--ink);
	color: #94a6c2;
	padding: 76px 0 0;
	font-size: .95rem;
}
.site-footer h4 {
	color: #fff;
	font-size: .82rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.site-footer a { color: #b6c5dd; }
.site-footer a:hover { color: #fff; }

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: 44px;
	padding-bottom: 56px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 11px; }

.footer-about .brand-name { color: #fff; }
.footer-about .brand-tag { color: #7f92b0; }
.footer-about p { margin-top: 18px; max-width: 34ch; }

.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact .icon { color: var(--brand); margin-top: 4px; flex-shrink: 0; }

.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-row a {
	width: 38px; height: 38px;
	display: grid; place-items: center;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 10px;
	font-size: .72rem;
	font-weight: 700;
	font-family: var(--font);
	letter-spacing: .02em;
}
.social-row a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	font-size: .88rem;
}
.footer-bottom ul {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: 22px; flex-wrap: wrap;
}
.footer-bottom li { margin: 0; }

/* 6. Sections ----------------------------------------------------------- */

/* Hero */
.hero {
	position: relative;
	background: var(--ink);
	color: #b9c6dd;
	padding: 104px 0 116px;
	overflow: hidden;
}
.hero::before,
.hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: .32;
	pointer-events: none;
}
.hero::before { width: 520px; height: 520px; background: #00b37e; top: -160px; right: -120px; }
.hero::after { width: 460px; height: 460px; background: #0a84ff; bottom: -220px; left: -140px; opacity: .26; }

.hero .container { position: relative; z-index: 2; }

.hero-grid {
	display: grid;
	grid-template-columns: 1.08fr .92fr;
	gap: 60px;
	align-items: center;
}

.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent {
	background: linear-gradient(120deg, #34e2ab, #6bb6ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero-sub { font-size: 1.14rem; max-width: 54ch; margin-bottom: 32px; }

.hero-points {
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
	display: grid;
	gap: 12px;
}
.hero-points li { display: flex; gap: 11px; align-items: flex-start; margin: 0; }
.hero-points .icon { color: #34e2ab; margin-top: 4px; }

/* Hero audit card */
.audit-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 30px;
	box-shadow: var(--shadow-lg);
	color: var(--body);
}
.audit-card-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 22px;
}
.audit-card-head strong {
	font-family: var(--font);
	color: var(--ink);
	font-size: 1.05rem;
}
.audit-score {
	width: 62px; height: 62px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-family: var(--font);
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--ink);
	background:
		conic-gradient(var(--brand) 0 72%, var(--line-soft) 72% 100%);
	position: relative;
	flex-shrink: 0;
}
.audit-score::after {
	content: "";
	position: absolute;
	inset: 6px;
	background: #fff;
	border-radius: 50%;
}
.audit-score span { position: relative; z-index: 2; }

.audit-rows { display: grid; gap: 15px; }
.audit-row { display: grid; gap: 7px; }
.audit-row-top {
	display: flex;
	justify-content: space-between;
	font-size: .88rem;
	font-family: var(--font);
	font-weight: 600;
	color: var(--ink-soft);
}
.audit-row-top em { font-style: normal; color: var(--muted); font-weight: 500; }
.audit-bar { height: 7px; background: var(--line-soft); border-radius: 999px; overflow: hidden; }
.audit-bar i {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: var(--brand-grad);
	width: 0;
	transition: width 1.1s cubic-bezier(.22, 1, .36, 1);
}
.audit-bar--warn i { background: linear-gradient(120deg, #f5a524, #f97316); }
.audit-bar--bad i { background: linear-gradient(120deg, #f43f5e, #e11d48); }

.audit-card-foot {
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
	font-size: .85rem;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 8px;
}
.audit-card-foot .icon { color: var(--brand); }

/* Logo / trust strip */
.trust-strip { background: var(--soft); padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.trust-strip-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 46px;
	flex-wrap: wrap;
	font-family: var(--font);
	font-weight: 700;
	color: #9aa8c2;
	letter-spacing: .04em;
	font-size: .93rem;
	text-transform: uppercase;
}

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.stat { text-align: center; }
.stat strong {
	display: block;
	font-family: var(--font);
	font-size: clamp(2rem, 3.4vw, 2.8rem);
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -.03em;
	line-height: 1;
	margin-bottom: 8px;
}
.section--dark .stat strong { color: #fff; }
/* Tabular figures stop the number jittering while it counts up. */
.stat .counter { font-variant-numeric: tabular-nums; }
.stat span { font-size: .95rem; color: var(--muted); }
.section--dark .stat span { color: #93a5c1; }

/* Cards */
.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 28px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: transparent;
}
.card h3 { margin-bottom: .5em; }
.card p { color: var(--muted); font-size: .97rem; }

.card-icon {
	width: 52px; height: 52px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: rgba(0, 179, 126, .1);
	color: var(--brand-ink);
	margin-bottom: 20px;
}
.card:nth-child(3n+2) .card-icon { background: rgba(10, 132, 255, .1); color: var(--brand-2); }
.card:nth-child(3n) .card-icon { background: rgba(124, 92, 255, .1); color: #6d4df6; }

.card-link {
	margin-top: auto;
	padding-top: 18px;
	font-family: var(--font);
	font-weight: 700;
	font-size: .92rem;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--brand-ink);
	transition: color .25s ease;
}
.card-link .icon { transition: translate .18s ease; }
.card-link:hover .icon { translate: 4px 0; }

/* "What we audit" cards recolour on hover */
#services .card {
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
#services .card h3,
#services .card p { transition: color .25s ease; }
#services .card .card-icon { transition: background .25s ease, color .25s ease; }

#services .card:hover {
	background: var(--ink);
	border-color: var(--ink);
	box-shadow: 0 18px 44px -18px rgba(10, 18, 38, .55);
}
#services .card:hover h3 { color: #fff; }
#services .card:hover p { color: #9fb0cc; }
#services .card:hover .card-icon,
#services .card:hover:nth-child(3n+2) .card-icon,
#services .card:hover:nth-child(3n) .card-icon {
	background: rgba(0, 179, 126, .18);
	color: #34e2ab;
}
#services .card:hover .card-link { color: #34e2ab; }

/* The inverse card in the same grid: already dark, so it brightens instead */
.card--dark {
	background: var(--ink);
	border-color: var(--ink);
}
.card--dark h3 { color: #fff; }
.card--dark p { color: #9fb0cc; }
.card--dark .card-icon { background: rgba(0, 179, 126, .18); color: #34e2ab; }
.card--dark .card-link { color: #34e2ab; }

#services .card--dark:hover {
	background: var(--ink-soft);
	border-color: rgba(0, 179, 126, .55);
	box-shadow: 0 18px 44px -18px rgba(0, 179, 126, .5);
}

/* Process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

.step {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 26px;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.step:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: transparent;
}

.step-num {
	width: 46px; height: 46px;
	border-radius: 13px;
	background: var(--ink);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--font);
	font-weight: 800;
	margin-bottom: 20px;
	transition: background .22s ease;
}
.step:hover .step-num { background: var(--brand-grad); }

.step h3 { font-size: 1.15rem; }
.step p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }

/* Plan grid — six tiers, 3 across on desktop */
.plan-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}

.plan {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px 26px;
	display: flex;
	flex-direction: column;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.plan:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: transparent;
}

/* The highlighted tier */
.plan--featured {
	border-color: transparent;
	box-shadow: var(--shadow-lg);
	background:
		linear-gradient(#fff, #fff) padding-box,
		var(--brand-grad) border-box;
	border: 2px solid transparent;
}
.plan--featured:hover { transform: translateY(-6px); }

.plan-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	translate: -50% 0;
	background: var(--brand-grad);
	color: #fff;
	font-family: var(--font);
	font-weight: 700;
	font-size: .72rem;
	letter-spacing: .07em;
	text-transform: uppercase;
	padding: .4rem .85rem;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: 0 4px 12px -4px rgba(0, 140, 100, .7);
}

.plan-name { font-size: 1.2rem; margin-bottom: 8px; }
.plan-tagline {
	color: var(--muted);
	font-size: .92rem;
	line-height: 1.55;
	margin-bottom: 22px;
	min-height: 3.1em;
}

.plan-amount {
	display: flex;
	align-items: flex-start;
	gap: 3px;
	font-family: var(--font);
	color: var(--ink);
	margin-bottom: 6px;
}
.plan-amount .cur { font-size: 1.15rem; font-weight: 700; margin-top: 7px; }
.plan-amount .val { font-size: 2.6rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.plan-amount .per { font-size: .92rem; color: var(--muted); font-weight: 600; align-self: flex-end; margin-bottom: 6px; }

.plan-bestfor {
	font-size: .85rem;
	color: var(--brand-ink);
	font-family: var(--font);
	font-weight: 600;
	margin-bottom: 22px;
}

.plan .btn { margin-bottom: 24px; }

.plan-features {
	list-style: none;
	margin: 0;
	padding: 22px 0 0;
	border-top: 1px solid var(--line-soft);
	display: grid;
	gap: 11px;
}
.plan-features li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 0;
	font-size: .91rem;
	line-height: 1.5;
}
.plan-features .icon { color: var(--brand); margin-top: 3px; flex-shrink: 0; }

.plan-foot {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 34px 0 0;
	font-size: .92rem;
	color: var(--muted);
	text-align: center;
}
.plan-foot .icon { color: var(--brand); flex-shrink: 0; }

@media (max-width: 1080px) {
	.plan-grid { grid-template-columns: repeat(2, 1fr); }
	.plan-tagline { min-height: 0; }
}

@media (max-width: 700px) {
	.plan-grid { grid-template-columns: 1fr; }
	.plan-foot { align-items: flex-start; text-align: left; }
}

/* Plan comparison table — scrolls sideways on narrow screens rather than
   forcing the page to. */
.plan-table-wrap {
	overflow-x: auto;
	margin: 8px 0 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	-webkit-overflow-scrolling: touch;
}

.plan-table {
	width: 100%;
	min-width: 880px;
	margin: 0;
	border-collapse: collapse;
	font-size: .9rem;
}

.plan-table th,
.plan-table td {
	border: 0;
	border-bottom: 1px solid var(--line-soft);
	padding: 13px 14px;
	text-align: center;
	vertical-align: middle;
}

.plan-table thead th {
	background: var(--soft);
	font-family: var(--font);
	font-weight: 700;
	color: var(--ink);
	font-size: .88rem;
	position: sticky;
	top: 0;
	border-bottom: 1px solid var(--line);
}

.plan-table tbody th[scope="row"] {
	text-align: left;
	font-family: var(--font-body);
	font-weight: 500;
	color: var(--ink-soft);
	background: #fff;
	white-space: nowrap;
	position: sticky;
	left: 0;
	z-index: 2;
	border-right: 1px solid var(--line-soft);
}

.plan-table thead th:first-child {
	text-align: left;
	position: sticky;
	left: 0;
	z-index: 3;
	background: var(--soft);
}

.plan-table tbody tr:last-child th,
.plan-table tbody tr:last-child td { border-bottom: 0; }

.plan-table .is-featured { background: rgba(0, 179, 126, .05); }
.plan-table thead th.is-featured { background: rgba(0, 179, 126, .13); color: var(--brand-ink); }

.plan-table .cell-yes { color: var(--brand); display: inline-flex; }
.plan-table .cell-no { color: var(--line); font-weight: 700; }
.plan-table .cell-val { color: var(--ink); font-family: var(--font); font-weight: 600; font-size: .87rem; }

/* Pricing */
.pricing-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.price-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}
.price-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 5px;
	background: var(--brand-grad);
}
.price-badge {
	position: absolute;
	top: 26px; right: 26px;
	background: rgba(0, 179, 126, .12);
	color: var(--brand-ink);
	font-family: var(--font);
	font-weight: 700;
	font-size: .74rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .35rem .7rem;
	border-radius: 999px;
}
.price-name { font-size: 1.3rem; margin-bottom: 6px; }
.price-desc { color: var(--muted); font-size: .96rem; margin-bottom: 24px; }

.price-amount {
	display: flex;
	align-items: flex-start;
	gap: 4px;
	font-family: var(--font);
	color: var(--ink);
	margin-bottom: 6px;
}
.price-amount .cur { font-size: 1.6rem; font-weight: 700; margin-top: 10px; }
.price-amount .val { font-size: clamp(3rem, 6vw, 4rem); font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.price-amount .per { font-size: 1rem; color: var(--muted); font-weight: 600; align-self: flex-end; margin-bottom: 12px; }
.price-note { font-size: .89rem; color: var(--muted); margin-bottom: 26px; }

.price-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 12px; }
.price-list li { display: flex; gap: 11px; align-items: flex-start; margin: 0; font-size: .96rem; }
.price-list .icon { color: var(--brand); margin-top: 4px; flex-shrink: 0; }

.price-fine {
	margin-top: 18px;
	font-size: .84rem;
	color: var(--muted);
	text-align: center;
}

/* Feature list beside pricing */
.feature-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 22px; }
.feature-list li { display: flex; gap: 16px; margin: 0; }
.feature-list .icon-wrap {
	width: 44px; height: 44px;
	border-radius: 12px;
	background: rgba(0, 179, 126, .1);
	color: var(--brand-ink);
	display: grid; place-items: center;
	flex-shrink: 0;
}
.feature-list strong { display: block; font-family: var(--font); color: var(--ink); margin-bottom: 3px; }
.feature-list p { font-size: .95rem; color: var(--muted); margin: 0; }

/* Testimonials */
.quote {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.quote-stars { color: #f5a524; display: flex; gap: 2px; margin-bottom: 16px; }
.quote p { font-size: 1rem; color: var(--ink-soft); }
.quote-by {
	margin-top: auto;
	padding-top: 20px;
	display: flex;
	align-items: center;
	gap: 13px;
}
.quote-avatar {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--brand-grad);
	color: #fff;
	display: grid; place-items: center;
	font-family: var(--font);
	font-weight: 700;
	font-size: .95rem;
	flex-shrink: 0;
}
.quote-by strong { display: block; font-family: var(--font); color: var(--ink); font-size: .95rem; }
.quote-by span { font-size: .85rem; color: var(--muted); }

/* Testimonials on a dark section */
.section--dark .quote {
	background: rgba(255, 255, 255, .045);
	border-color: rgba(255, 255, 255, .12);
	transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.section--dark .quote:hover {
	background: rgba(255, 255, 255, .07);
	border-color: rgba(0, 179, 126, .45);
	transform: translateY(-4px);
}
.section--dark .quote p { color: #d4deed; }
.section--dark .quote-by { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: auto; }
.section--dark .quote-by strong { color: #fff; }
.section--dark .quote-by span { color: #8fa2bf; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 4px 24px;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.faq details[open] { border-color: rgba(0, 179, 126, .4); box-shadow: var(--shadow-sm); }
.faq summary {
	cursor: pointer;
	list-style: none;
	font-family: var(--font);
	font-weight: 700;
	color: var(--ink);
	padding: 20px 34px 20px 0;
	position: relative;
	font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "";
	position: absolute;
	right: 4px; top: 50%;
	width: 9px; height: 9px;
	border-right: 2px solid var(--muted);
	border-bottom: 2px solid var(--muted);
	rotate: 45deg;
	translate: 0 -60%;
	transition: rotate .2s ease;
}
.faq details[open] summary::after { rotate: -135deg; translate: 0 -20%; }
.faq-body { padding: 0 0 22px; color: var(--muted); }

/* CTA band */
.cta-band {
	background: var(--ink);
	border-radius: var(--radius-lg);
	padding: 60px;
	color: #b9c6dd;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.cta-band::before {
	content: "";
	position: absolute;
	width: 480px; height: 480px;
	background: #00b37e;
	filter: blur(110px);
	opacity: .3;
	top: -220px; right: -120px;
	border-radius: 50%;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 56ch; margin-inline: auto; margin-bottom: 30px; }

/* Page hero */
.page-hero {
	background: var(--ink);
	color: #a9b9d3;
	padding: 76px 0;
	position: relative;
	overflow: hidden;
}
.page-hero::before {
	content: "";
	position: absolute;
	width: 460px; height: 460px;
	background: #0a84ff;
	filter: blur(110px);
	opacity: .22;
	top: -200px; right: -100px;
	border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { max-width: 62ch; font-size: 1.08rem; margin: 0; }

.crumbs {
	font-size: .87rem;
	color: #7f92b0;
	margin-bottom: 16px;
	display: flex;
	gap: 9px;
	flex-wrap: wrap;
	align-items: center;
}
.crumbs a { color: #a9b9d3; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { opacity: .45; }

/* Long form page content */
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 { margin-top: 2.2em; }
.entry-content h3 { margin-top: 1.8em; }
.entry-content ul, .entry-content ol { margin-bottom: 1.3em; }
.entry-content li { margin-bottom: .5em; }
.entry-content .wp-block-image { margin: 2rem 0; border-radius: var(--radius); overflow: hidden; }

.legal-meta {
	background: var(--soft);
	border: 1px solid var(--line);
	border-left: 4px solid var(--brand);
	border-radius: var(--radius);
	padding: 18px 22px;
	font-size: .92rem;
	color: var(--muted);
	margin-bottom: 36px;
}
.legal-meta strong { color: var(--ink); font-family: var(--font); }

.callout {
	background: var(--soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px 26px;
	margin: 30px 0;
}
.callout h3 { margin-top: 0; }

/* Contact info cards */
/* auto-fit so the row stays balanced whatever number of cards are shown. */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--gap); }
.contact-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
	text-align: center;
}
.contact-card .icon-wrap {
	width: 52px; height: 52px;
	margin: 0 auto 16px;
	border-radius: 14px;
	background: rgba(0, 179, 126, .1);
	color: var(--brand-ink);
	display: grid; place-items: center;
}
.contact-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.contact-card p { color: var(--muted); font-size: .96rem; margin: 0; }
.contact-card a { font-weight: 600; }

.contact-layout {
	display: grid;
	grid-template-columns: 1.35fr .85fr;
	gap: 56px;
	align-items: start;
}

.info-panel {
	background: var(--ink);
	color: #a9b9d3;
	border-radius: var(--radius-lg);
	padding: 36px;
}
.info-panel h3 { color: #fff; }
.info-panel ul { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 20px; }
.info-panel li { display: flex; gap: 14px; margin: 0; }
.info-panel .icon { color: var(--brand); margin-top: 4px; flex-shrink: 0; }
.info-panel strong { display: block; color: #fff; font-family: var(--font); font-size: .93rem; margin-bottom: 3px; }
.info-panel a { color: #cfdcef; }
.info-panel a:hover { color: #fff; }

/* Team */
.team-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 26px;
	text-align: center;
}
.team-avatar {
	width: 84px; height: 84px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--brand-grad);
	color: #fff;
	display: grid; place-items: center;
	font-family: var(--font);
	font-weight: 800;
	font-size: 1.5rem;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-role { color: var(--brand-ink); font-family: var(--font); font-weight: 600; font-size: .88rem; margin-bottom: 12px; }
.team-card p { font-size: .94rem; color: var(--muted); margin: 0; }

/* Values */
.value-card {
	border-left: 3px solid var(--brand);
	padding: 4px 0 4px 24px;
}
.value-card h3 { font-size: 1.12rem; }
.value-card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* 7. Forms -------------------------------------------------------------- */
.sa-form-wrap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 38px;
	box-shadow: var(--shadow-sm);
}

.sa-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 26px;
}
.sa-field--full { grid-column: 1 / -1; }
.sa-field label {
	display: block;
	font-family: var(--font);
	font-weight: 600;
	font-size: .9rem;
	color: var(--ink);
	margin-bottom: 7px;
}
.sa-field .req { color: var(--danger); margin-left: 2px; }

.sa-form input[type="text"],
.sa-form input[type="email"],
.sa-form input[type="tel"],
.sa-form input[type="url"],
.sa-form input[type="date"],
.sa-form input[type="number"],
.sa-form select,
.sa-form textarea,
.search-field,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: .98rem;
	color: var(--ink);
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 13px 15px;
	transition: border-color .16s ease, box-shadow .16s ease;
}
.sa-form textarea { resize: vertical; min-height: 140px; }

.sa-form input:focus,
.sa-form select:focus,
.sa-form textarea:focus,
.search-field:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 4px rgba(0, 179, 126, .13);
}

.sa-form select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7a99' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 42px;
}

.sa-check { display: flex; gap: 11px; align-items: flex-start; cursor: pointer; }
.sa-check input { margin-top: 4px; width: 17px; height: 17px; accent-color: var(--brand); flex-shrink: 0; }
.sa-check span { font-family: var(--font-body); font-weight: 400; font-size: .92rem; color: var(--muted); line-height: 1.55; }
.sa-field--check label { margin-bottom: 0; }

.sa-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-notice {
	border-radius: var(--radius);
	padding: 16px 20px;
	margin-bottom: 26px;
	font-size: .95rem;
	border: 1px solid;
}
.form-notice--success { background: rgba(0, 179, 126, .09); border-color: rgba(0, 179, 126, .35); color: var(--brand-ink); }
.form-notice--error { background: rgba(192, 38, 38, .07); border-color: rgba(192, 38, 38, .3); color: var(--danger); }

/* 8. Blog --------------------------------------------------------------- */
.blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 56px;
	align-items: start;
}
body.no-sidebar .blog-layout { grid-template-columns: minmax(0, 1fr); }

.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }

.post-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--soft); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: scale .35s ease; }
.post-card:hover .post-thumb img { scale: 1.05; }

.post-thumb--fallback {
	background: var(--brand-grad);
	display: grid;
	place-items: center;
	color: rgba(255, 255, 255, .85);
}

.post-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta {
	font-size: .82rem;
	color: var(--muted);
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 12px;
}
.post-meta .sep { opacity: .5; }
.post-card h3 { font-size: 1.16rem; margin-bottom: .5em; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--brand-ink); }
.post-card p { font-size: .95rem; color: var(--muted); }
.post-card .card-link { margin-top: auto; }

.cat-pill {
	display: inline-block;
	background: rgba(0, 179, 126, .1);
	color: var(--brand-ink);
	font-family: var(--font);
	font-weight: 700;
	font-size: .72rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: .3rem .6rem;
	border-radius: 6px;
}

.widget {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px;
	margin-bottom: 26px;
}
.widget-title { font-size: 1.05rem; margin-bottom: 16px; }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { margin-bottom: 10px; font-size: .95rem; }

.pagination {
	margin-top: 48px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}
.pagination .page-numbers {
	min-width: 44px; height: 44px;
	display: grid; place-items: center;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	font-family: var(--font);
	font-weight: 600;
	color: var(--ink);
}
.pagination .page-numbers:hover { border-color: var(--ink); }
.pagination .current { background: var(--ink); border-color: var(--ink); color: #fff; }

.single-hero-meta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
	color: #8fa2bf;
	font-size: .92rem;
	margin-top: 18px;
}

.post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 56px;
	padding-top: 40px;
	border-top: 1px solid var(--line);
}
.post-nav a {
	display: block;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px 24px;
}
.post-nav a:hover { border-color: var(--brand); }
.post-nav span { display: block; font-size: .8rem; color: var(--muted); margin-bottom: 5px; }
.post-nav strong { font-family: var(--font); color: var(--ink); font-size: .98rem; }
.post-nav .next { text-align: right; }

.comments-area { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }
.comment-list { list-style: none; padding: 0; }
.comment-body { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 18px; }

/* 9. WooCommerce -------------------------------------------------------- */
.wc-main { padding: 72px 0 96px; }

.woocommerce .woocommerce-breadcrumb { font-size: .88rem; color: var(--muted); margin-bottom: 26px; }

.woocommerce div.product { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 56px; }
.woocommerce div.product div.images,
.woocommerce div.product div.summary { float: none; width: auto; margin: 0; }
.woocommerce div.product div.images img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .product_meta { grid-column: 1 / -1; }

.woocommerce div.product .product_title { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 14px; }

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--ink);
	font-family: var(--font);
	font-size: 2.4rem;
	font-weight: 800;
	letter-spacing: -.03em;
	margin-bottom: 8px;
}
.price-period { font-size: 1rem; color: var(--muted); font-weight: 600; }

.woocommerce div.product .woocommerce-product-details__short-description { color: var(--muted); margin-bottom: 26px; }

.woocommerce div.product form.cart { margin-bottom: 26px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.woocommerce div.product form.cart .quantity input { width: 78px; text-align: center; }

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
	font-family: var(--font);
	font-weight: 700;
	font-size: .97rem;
	line-height: 1;
	padding: 16px 28px;
	border-radius: var(--radius-sm);
	background: var(--brand-grad);
	color: #fff;
	border: 0;
	transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
	box-shadow: 0 6px 18px -6px rgba(0, 140, 100, .6);
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	background: var(--brand-grad);
	color: #fff;
	transform: translateY(-2px);
	filter: brightness(1.05);
}

.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce input[type="number"],
.woocommerce textarea,
.woocommerce select,
.woocommerce .select2-container .select2-selection--single {
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 12px 14px;
	font-family: var(--font-body);
	font-size: .97rem;
	height: auto;
	color: var(--ink);
}

.wc-trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 20px;
	width: 100%;
	margin-top: 6px;
}
.wc-trust li {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	font-size: .9rem;
	color: var(--muted);
}
.wc-trust .icon { color: var(--brand); flex-shrink: 0; }

.woocommerce ul.products li.product {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease;
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font); font-size: 1.1rem; color: var(--ink); }
.woocommerce ul.products li.product img { border-radius: var(--radius-sm); margin-bottom: 16px; }

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
	border-top-color: var(--brand);
	background: var(--soft);
	border-radius: var(--radius);
	font-size: .96rem;
}
.woocommerce .woocommerce-error { border-top-color: var(--danger); }

.woocommerce-tabs ul.tabs { padding-left: 0 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { font-family: var(--font); font-weight: 700; }

.woocommerce table.shop_table { border-radius: var(--radius); border-color: var(--line); }
.woocommerce-cart table.cart img { width: 72px; border-radius: var(--radius-sm); }

/* ---------------------------------------------------------------------------
   9b. Cart & Checkout (classic shortcode templates)
   WooCommerce ships these as floated tables; everything below rebuilds them as
   a two-column layout with a sticky order summary.
   ------------------------------------------------------------------------ */

.woocommerce-cart .entry-content > .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(0, .85fr);
	gap: 20px 44px;
	align-items: start;
}

.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(0, .85fr);
	gap: 16px 44px;
	align-items: start;
}

/* Notices and the coupon/login toggles always span the full width. */
.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-form-login-toggle,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout form.woocommerce-form-login,
.woocommerce-checkout form.checkout_coupon,
.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop {
	grid-column: 1 / -1;
}

/* --- Notices ------------------------------------------------------------ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	background: var(--soft);
	border: 1px solid var(--line);
	border-left: 4px solid var(--brand);
	border-radius: var(--radius);
	padding: 16px 20px;
	margin: 0 0 24px;
	list-style: none;
	font-size: .95rem;
	color: var(--ink-soft);
}
.woocommerce-error { border-left-color: var(--danger); color: var(--danger); }
.woocommerce-info { border-left-color: var(--brand-2); }
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before { content: none; }
.woocommerce-message .button,
.woocommerce-info .button { margin-left: auto; }

/* --- Cart table --------------------------------------------------------- */
.woocommerce-cart-form {
	grid-column: 1;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.woocommerce table.shop_table.cart {
	width: 100%;
	margin: 0;
	border: 0;
	border-radius: 0;
	border-collapse: collapse;
}

.woocommerce table.shop_table.cart thead th {
	background: var(--soft);
	border: 0;
	border-bottom: 1px solid var(--line);
	font-family: var(--font);
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--muted);
	padding: 15px 16px;
	text-align: left;
}

.woocommerce table.shop_table.cart td {
	border: 0;
	border-bottom: 1px solid var(--line-soft);
	padding: 22px 16px;
	vertical-align: middle;
}

.woocommerce table.shop_table.cart .product-thumbnail { width: 96px; }
.woocommerce table.shop_table.cart .product-thumbnail img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: var(--radius-sm);
	border: 1px solid var(--line);
}

.woocommerce table.shop_table.cart .product-name a {
	font-family: var(--font);
	font-weight: 700;
	font-size: 1.02rem;
	color: var(--ink);
}
.woocommerce table.shop_table.cart .product-name a:hover { color: var(--brand-ink); }

.woocommerce table.shop_table.cart .product-price,
.woocommerce table.shop_table.cart .product-subtotal {
	font-family: var(--font);
	font-weight: 700;
	color: var(--ink);
	white-space: nowrap;
}

.woocommerce table.shop_table.cart td.product-remove { width: 44px; padding-right: 0; }
.woocommerce a.remove {
	width: 30px;
	height: 30px;
	line-height: 28px;
	font-size: 1.2rem;
	color: var(--muted) !important;
	border: 1px solid var(--line);
	border-radius: 50%;
	display: inline-grid;
	place-items: center;
	transition: .16s ease;
}
.woocommerce a.remove:hover {
	background: var(--danger) !important;
	border-color: var(--danger);
	color: #fff !important;
}

.woocommerce .quantity .qty {
	width: 74px;
	padding: 10px 8px;
	text-align: center;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	font-family: var(--font);
	font-weight: 600;
	color: var(--ink);
}

/* Coupon + update row */
.woocommerce table.shop_table.cart td.actions {
	background: var(--soft);
	border-bottom: 0;
	padding: 20px 16px;
}
.woocommerce table.shop_table.cart td.actions .coupon {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	float: none;
}
.woocommerce table.shop_table.cart td.actions .coupon label { display: none; }
.woocommerce table.shop_table.cart td.actions .coupon .input-text {
	width: auto;
	min-width: 220px;
	flex: 1 1 220px;
	margin: 0;
	padding: 13px 15px;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
}
.woocommerce table.shop_table.cart td.actions > .button { float: none; margin-left: auto; }

/* --- Totals / order summary card --------------------------------------- */
.woocommerce-cart .cart-collaterals {
	grid-column: 2;
	width: 100%;
	float: none;
	position: sticky;
	top: 100px;
}
.woocommerce-cart .cart-collaterals .cart_totals { width: 100%; float: none; }
.woocommerce-cart .cross-sells { display: none; }

.woocommerce .cart_totals > h2,
.woocommerce-checkout #order_review_heading {
	font-size: 1.15rem;
	margin: 0 0 16px;
	padding: 0;
}

.woocommerce .cart_totals table.shop_table,
.woocommerce-checkout .woocommerce-checkout-review-order-table {
	width: 100%;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	background: #fff;
}

.woocommerce .cart_totals table.shop_table th,
.woocommerce .cart_totals table.shop_table td,
.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
	border: 0;
	border-bottom: 1px solid var(--line-soft);
	padding: 15px 20px;
	font-size: .95rem;
	vertical-align: middle;
}

.woocommerce .cart_totals table.shop_table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table th {
	font-family: var(--font);
	font-weight: 600;
	color: var(--ink-soft);
	background: transparent;
	text-align: left;
	white-space: nowrap;
}

.woocommerce .cart_totals table.shop_table td,
.woocommerce-checkout .woocommerce-checkout-review-order-table td { text-align: right; }

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
	background: var(--soft);
	border-bottom: 1px solid var(--line);
	font-size: .76rem;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 700;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table thead th:last-child { text-align: right; }

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
	font-family: var(--font-body);
	font-weight: 500;
	color: var(--ink);
	line-height: 1.5;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-quantity {
	color: var(--muted);
	font-weight: 600;
}

.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total td {
	border-bottom: 0;
	background: var(--soft);
	font-family: var(--font);
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--ink);
	padding-top: 18px;
	padding-bottom: 18px;
}
.woocommerce .cart_totals .order-total .woocommerce-Price-amount,
.woocommerce-checkout tfoot .order-total .woocommerce-Price-amount { color: var(--ink); }

.woocommerce .wc-proceed-to-checkout { padding: 20px 0 0; }
.woocommerce .wc-proceed-to-checkout a.checkout-button {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1rem;
	padding: 17px 24px;
	margin: 0;
}

/* Reassurance list under the totals card */
.sa-reassure {
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
	display: grid;
	gap: 11px;
}
.sa-reassure li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 0;
	font-size: .88rem;
	color: var(--muted);
	line-height: 1.5;
}
.sa-reassure .icon { color: var(--brand); flex-shrink: 0; margin-top: 2px; }

/* --- Checkout form ------------------------------------------------------ */
.woocommerce-checkout #customer_details {
	grid-column: 1;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px;
}

/* Billing and "additional info" stack rather than sitting side by side. */
.woocommerce-checkout #customer_details.col2-set,
.woocommerce-checkout #customer_details .col2-set { display: block; }
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	width: 100%;
	float: none;
	margin: 0;
}
.woocommerce-checkout #customer_details .col-2 { margin-top: 8px; }

.woocommerce-checkout #customer_details h3 {
	font-size: 1.15rem;
	margin: 0 0 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line-soft);
}
.woocommerce-checkout #customer_details .col-2 h3 { margin-top: 28px; }

/* Field grid */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 4px 18px;
}

.woocommerce form .form-row {
	display: block;
	grid-column: 1 / -1;
	padding: 0;
	margin: 0 0 18px;
}
.woocommerce form .form-row-first { grid-column: 1; }
.woocommerce form .form-row-last { grid-column: 2; }

.woocommerce form .form-row label {
	display: block;
	font-family: var(--font);
	font-weight: 600;
	font-size: .88rem;
	color: var(--ink);
	margin-bottom: 7px;
	line-height: 1.4;
}
.woocommerce form .form-row label .required {
	color: var(--danger);
	border: 0;
	text-decoration: none;
}
.woocommerce form .form-row .optional { color: var(--muted); font-weight: 400; }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
	width: 100%;
	padding: 13px 15px;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: .97rem;
	color: var(--ink);
	background-color: #fff;
	line-height: 1.4;
	box-shadow: none;
	transition: border-color .16s ease, box-shadow .16s ease;
}
.woocommerce form .form-row textarea { min-height: 110px; resize: vertical; }

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 4px rgba(0, 179, 126, .13);
}

.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select { border-color: var(--danger); }
.woocommerce form .form-row.woocommerce-validated input.input-text { border-color: rgba(0, 179, 126, .5); }

/* select2 (country / state) matched to the plain inputs */
.woocommerce-checkout .select2-container .select2-selection--single { height: auto; }
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 1.4;
	padding: 0;
	color: var(--ink);
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow { top: 50%; translate: 0 -50%; right: 10px; }

/* Checkboxes */
.woocommerce form .form-row .input-checkbox { width: auto; margin-right: 8px; accent-color: var(--brand); }
.woocommerce-checkout .woocommerce-form__label-for-checkbox {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-weight: 400;
	font-size: .92rem;
	color: var(--muted);
}

/* --- Order review column ------------------------------------------------ */
.woocommerce-checkout #order_review_heading { grid-column: 2; grid-row: 1; align-self: end; }
.woocommerce-checkout #order_review { grid-column: 2; grid-row: 2; position: sticky; top: 100px; }
.woocommerce-checkout #customer_details { grid-column: 1; grid-row: 1 / span 2; }

/* --- Payment ------------------------------------------------------------ */
.woocommerce-checkout #payment {
	background: transparent;
	border-radius: 0;
	margin-top: 22px;
}
.woocommerce-checkout #payment ul.payment_methods {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	padding: 8px;
	margin: 0 0 18px;
	list-style: none;
}
.woocommerce-checkout #payment ul.payment_methods li {
	margin: 0;
	padding: 0;
	list-style: none;
	border-radius: var(--radius);
	transition: background .16s ease;
}
.woocommerce-checkout #payment ul.payment_methods li:hover { background: var(--soft); }
.woocommerce-checkout #payment ul.payment_methods li > label {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 15px 14px;
	font-family: var(--font);
	font-weight: 600;
	font-size: .96rem;
	color: var(--ink);
	cursor: pointer;
	margin: 0;
}
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
	width: 18px;
	height: 18px;
	accent-color: var(--brand);
	margin: 0;
	flex-shrink: 0;
}
.woocommerce-checkout #payment div.payment_box {
	background: var(--soft);
	border-radius: var(--radius);
	margin: 0 14px 14px;
	padding: 15px 18px;
	font-size: .9rem;
	color: var(--muted);
	line-height: 1.6;
}
.woocommerce-checkout #payment div.payment_box::before { display: none; }
.woocommerce-checkout #payment div.payment_box p:last-child { margin-bottom: 0; }

.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper {
	padding: 0 0 18px;
	font-size: .9rem;
}
.woocommerce-checkout #payment .form-row.place-order { padding: 0; margin: 0; }
.woocommerce-checkout #payment #place_order {
	width: 100%;
	float: none;
	font-size: 1.02rem;
	padding: 18px 24px;
}
.woocommerce-checkout #payment .woocommerce-privacy-policy-text {
	font-size: .85rem;
	color: var(--muted);
	margin-bottom: 16px;
}

/* --- Coupon / login toggles -------------------------------------------- */
.woocommerce-checkout .woocommerce-form-coupon,
.woocommerce-checkout .woocommerce-form-login {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 26px;
	margin: 0 0 24px;
}
.woocommerce-checkout .woocommerce-form-coupon .form-row,
.woocommerce-checkout .woocommerce-form-login .form-row { margin-bottom: 14px; }

/* --- Empty cart --------------------------------------------------------- */
.woocommerce-cart .cart-empty {
	text-align: center;
	font-size: 1.1rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 48px 28px 12px;
	margin-bottom: 0;
}
.woocommerce-cart .return-to-shop {
	text-align: center;
	background: #fff;
	border: 1px solid var(--line);
	border-top: 0;
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
	padding: 0 28px 48px;
	margin-top: -1px;
}

/* --- Order received / thank you ---------------------------------------- */
.woocommerce-order {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 36px;
}
.woocommerce-order .woocommerce-thankyou-order-received {
	font-family: var(--font);
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 24px;
}
.woocommerce-order ul.woocommerce-order-overview {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 16px;
	border: 0;
}
.woocommerce-order ul.woocommerce-order-overview li {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 16px 18px;
	margin: 0;
	font-size: .78rem;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--muted);
	font-family: var(--font);
	font-weight: 700;
}
.woocommerce-order ul.woocommerce-order-overview li strong {
	display: block;
	margin-top: 7px;
	font-size: 1.02rem;
	letter-spacing: 0;
	text-transform: none;
	color: var(--ink);
}

/* --- My account --------------------------------------------------------- */
.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 240px;
	float: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation li { margin: 0 0 4px; }
.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 11px 15px;
	border-radius: var(--radius-sm);
	font-family: var(--font);
	font-weight: 600;
	font-size: .94rem;
	color: var(--ink-soft);
}
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover { background: var(--soft); }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--ink); color: #fff; }
.woocommerce-account .woocommerce-MyAccount-content { width: auto; float: none; }

.woocommerce-account .entry-content > .woocommerce {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}
.woocommerce-account.logged-out .entry-content > .woocommerce { display: block; max-width: 460px; margin: 0 auto; }
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px;
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1080px) {
	.woocommerce-cart .entry-content > .woocommerce {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}
	.woocommerce-cart-form,
	.woocommerce-cart .cart-collaterals,
	.woocommerce-checkout #customer_details,
	.woocommerce-checkout #order_review_heading,
	.woocommerce-checkout #order_review { grid-column: 1; position: static; }
	.woocommerce-checkout form.checkout { grid-template-columns: minmax(0, 1fr); gap: 24px; }
	.woocommerce-checkout #customer_details { grid-row: auto; }
	.woocommerce-checkout #order_review_heading { grid-row: auto; margin-top: 8px; }
	.woocommerce-checkout #order_review { grid-row: auto; }
	.woocommerce-account .entry-content > .woocommerce { grid-template-columns: minmax(0, 1fr); gap: 26px; }
	.woocommerce-account .woocommerce-MyAccount-navigation { width: 100%; }
	.woocommerce-account .woocommerce-MyAccount-navigation ul { display: flex; flex-wrap: wrap; gap: 6px; }
}

@media (max-width: 700px) {
	.woocommerce-checkout #customer_details { padding: 24px 20px; }
	.woocommerce-billing-fields__field-wrapper,
	.woocommerce-shipping-fields__field-wrapper,
	.woocommerce-additional-fields__field-wrapper { grid-template-columns: minmax(0, 1fr); }
	.woocommerce form .form-row-first,
	.woocommerce form .form-row-last { grid-column: 1; }

	/* Cart table collapses into stacked cards. */
	.woocommerce table.shop_table.cart thead { display: none; }
	.woocommerce table.shop_table.cart,
	.woocommerce table.shop_table.cart tbody,
	.woocommerce table.shop_table.cart tr,
	.woocommerce table.shop_table.cart td { display: block; width: 100%; }
	.woocommerce table.shop_table.cart tr.cart_item {
		position: relative;
		border-bottom: 1px solid var(--line);
		padding: 20px 16px 20px 108px;
		min-height: 120px;
	}
	.woocommerce table.shop_table.cart tr.cart_item td {
		border: 0;
		padding: 0 0 8px;
		text-align: left;
	}
	.woocommerce table.shop_table.cart td.product-thumbnail {
		position: absolute;
		left: 16px;
		top: 20px;
		width: 80px;
		padding: 0;
	}
	.woocommerce table.shop_table.cart td.product-remove {
		position: absolute;
		right: 12px;
		top: 20px;
		width: auto;
		padding: 0;
	}
	.woocommerce table.shop_table.cart td.product-price::before,
	.woocommerce table.shop_table.cart td.product-subtotal::before {
		content: attr(data-title) ": ";
		font-weight: 500;
		color: var(--muted);
		font-family: var(--font-body);
	}
	.woocommerce table.shop_table.cart td.actions { padding: 18px 16px; }
	.woocommerce table.shop_table.cart td.actions > .button { margin-left: 0; width: 100%; }
	.woocommerce table.shop_table.cart td.actions .coupon .input-text { min-width: 0; }
}

/* 10. Responsive -------------------------------------------------------- */
@media (max-width: 1080px) {
	.footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
	.hero-grid { gap: 44px; }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
	.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
	.blog-layout { grid-template-columns: minmax(0, 1fr); }
	.contact-layout { grid-template-columns: minmax(0, 1fr); gap: 40px; }
	.woocommerce div.product { grid-template-columns: minmax(0, 1fr); gap: 36px; }
}

@media (max-width: 900px) {
	:root { --section-y: 68px; }

	.nav-toggle { display: block; }

	.main-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(360px, 86vw);
		background: #fff;
		border-left: 1px solid var(--line);
		padding: 88px 24px 32px;
		overflow-y: auto;
		translate: 100% 0;
		transition: translate .28s cubic-bezier(.4, 0, .2, 1);
		box-shadow: var(--shadow-lg);
		z-index: 120;
	}
	.main-nav.is-open { translate: 0 0; }
	.main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
	.main-nav a { padding: 13px 14px; font-size: 1rem; }
	.main-nav .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		translate: 0 0;
		box-shadow: none;
		border: 0;
		border-left: 2px solid var(--line);
		border-radius: 0;
		padding: 0 0 0 12px;
		margin: 2px 0 6px 14px;
		min-width: 0;
	}
	.main-nav .menu-item-has-children > a::after { float: right; margin-top: 7px; }

	.nav-backdrop {
		position: fixed;
		inset: 0;
		background: rgba(10, 18, 38, .5);
		opacity: 0;
		visibility: hidden;
		transition: .25s ease;
		z-index: 110;
	}
	.nav-backdrop.is-open { opacity: 1; visibility: visible; }
	body.nav-open { overflow: hidden; }

	.nav-toggle { position: relative; z-index: 130; }

	.hero-grid { grid-template-columns: 1fr; }
	.hero { padding: 72px 0 84px; }
	.pricing-wrap { grid-template-columns: 1fr; gap: 40px; }
	.grid--3, .grid--2 { grid-template-columns: 1fr; }
	.contact-cards { grid-template-columns: 1fr; }
	.post-grid { grid-template-columns: 1fr; }
	.topbar { display: none; }
	.header-cta .btn { display: none; }
	.cta-band { padding: 44px 28px; }
}

@media (max-width: 640px) {
	body { font-size: 16px; }
	.container { padding: 0 18px; }
	.sa-form-grid { grid-template-columns: 1fr; }
	.sa-form-wrap { padding: 26px 20px; }
	.price-card { padding: 30px 24px; }
	.steps, .grid--4, .stats-grid { grid-template-columns: 1fr; }
	.info-panel { padding: 28px 24px; }
	.post-nav { grid-template-columns: 1fr; }
	.post-nav .next { text-align: left; }
	.footer-grid { grid-template-columns: 1fr; }
	.wc-trust { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}
