/* Aquatics To Your Door: storefront design system
   Evolves the existing theme: light pages, navy structure, cyan accent,
   fish photography carries the colour. */

/* ---------- Tokens ---------- */
:root {
	--navy: #00427c;
	--navy-deep: #022c52;
	--navy-ink: #011d38;
	--cyan: #2db4db;
	--cyan-dark: #1d95b8;
	--cyan-light: #7fd0e8;
	--aqua-tint: #eaf6fa;
	--aqua-line: #cfe8f2;
	--canvas: #f7fafc;
	--white: #ffffff;
	--ink: #12283c;
	--ink-soft: #44586c;
	--ink-faint: #7f93a6;
	--line: #dfe7ee;
	--sale: #d92b2b;
	--gold: #f0b429;
	--stock-in: #1a8a4a;

	--radius: 12px;
	--radius-sm: 8px;
	--radius-lg: 20px;
	--shadow: 0 1px 2px rgb(2 44 82 / .06), 0 8px 24px rgb(2 44 82 / .08);
	--shadow-lift: 0 2px 4px rgb(2 44 82 / .08), 0 20px 48px rgb(2 44 82 / .18);

	--container: 1360px;
	--gutter: clamp(16px, 4vw, 32px);
	--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}
@media (min-width: 981px) { body { font-size: 17px; } }
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
/* Base size for inline icons. Every specific rule below overrides this, but
   without it an unstyled inline SVG expands to fill its container. */
svg { width: 18px; height: 18px; flex: 0 0 auto; }
a { color: var(--cyan-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.14; font-weight: 800; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.8vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 3px; }
.sr { position: absolute !important; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 10px 16px; z-index: 999; }
.skip:focus { left: 0; }

.wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1600px; margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
/* Image wipe: the photo uncovers itself as the section arrives */
.wipe { clip-path: inset(0 100% 0 0); transition: clip-path 1s cubic-bezier(.7,0,.2,1); }
.wipe.in { clip-path: inset(0 0 0 0); }
/* Masked heading: lines rise out from behind their own edge */
.mask { overflow: hidden; display: block; }
.mask > span { display: block; transform: translateY(105%); transition: transform .85s cubic-bezier(.2,.8,.25,1); }
.mask.in > span { transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal, .wipe, .mask > span { transition: none !important; }
	.reveal { opacity: 1; transform: none; }
	.wipe { clip-path: none; }
	.mask > span { transform: none; }
	html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
	font-weight: 700; font-size: 15px; cursor: pointer; text-decoration: none;
	background: var(--cyan); color: #fff; line-height: 1.2; white-space: nowrap;
	transition: transform .15s, background .15s, box-shadow .15s;
}
.btn:hover { background: var(--cyan-dark); color: #fff; text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 22px rgb(29 149 184 / .35); }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-navy { background: var(--navy); }
.btn-navy:hover { background: var(--navy-deep); box-shadow: 0 8px 22px rgb(2 44 82 / .35); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--aqua-tint); color: var(--navy); box-shadow: 0 8px 22px rgb(0 0 0 / .2); }
.btn-ghost { background: transparent; border-color: rgb(255 255 255 / .55); color: #fff; }
.btn-ghost:hover { background: rgb(255 255 255 / .14); color: #fff; box-shadow: none; }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 16.5px; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ---------- Header ---------- */
.announce {
	background: var(--navy-deep); color: #cfe0ee; font-size: 13px;
	padding: 8px 0;
}
.announce .wrap { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.announce .spacer { flex: 1 1 auto; }
.announce a { color: #fff; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.announce a:hover { text-decoration: underline; color: #fff; }
.announce .star { color: var(--gold); }

.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-main { display: flex; align-items: center; gap: 22px; padding: 14px 0; }
/* The customer's own logo. Fixed height, width follows the artwork, so the
   400x130 original is never distorted. */
.brand { display: flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { height: 48px; width: auto; }

.headsearch { flex: 1 1 auto; position: relative; max-width: 620px; }
.headsearch input {
	width: 100%; height: 46px; border: 2px solid var(--aqua-line); border-radius: 999px;
	padding: 0 54px 0 20px; font-size: 15px; background: var(--canvas); color: var(--ink);
}
.headsearch input:focus { outline: 0; border-color: var(--cyan); background: #fff; }
.headsearch button {
	position: absolute; right: 4px; top: 4px; width: 38px; height: 38px; border: 0;
	border-radius: 50%; background: var(--cyan); color: #fff; display: grid; place-items: center; cursor: pointer;
}
.headsearch button:hover { background: var(--cyan-dark); }
.headsearch button svg { width: 18px; height: 18px; }

.headlinks { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.headlink {
	display: flex; flex-direction: column; align-items: center; gap: 2px;
	padding: 6px 12px; border-radius: 10px; text-decoration: none; color: var(--navy);
	font-size: 11.5px; font-weight: 700; position: relative;
}
.headlink:hover { background: var(--aqua-tint); color: var(--navy); text-decoration: none; }
.headlink svg { width: 21px; height: 21px; }
.headlink .count {
	position: absolute; top: 2px; right: 6px; background: var(--cyan); color: #fff;
	font-size: 10.5px; min-width: 18px; height: 18px; border-radius: 999px;
	display: grid; place-items: center; font-weight: 800; padding: 0 5px;
}

.site-nav { background: var(--navy); }
.site-nav .wrap { display: flex; align-items: center; gap: 4px; }
.site-nav a {
	color: #fff; text-decoration: none; font-weight: 700; font-size: 15px;
	padding: 13px 16px; display: inline-flex; align-items: center; gap: 6px;
}
.site-nav a:hover, .site-nav a.on { background: rgb(255 255 255 / .12); color: #fff; }
.site-nav svg { width: 14px; height: 14px; opacity: .8; }
.site-nav .spacer { flex: 1 1 auto; }
.site-nav .accent { color: var(--gold); }
.site-nav .accent:hover { color: var(--gold); }

.navtoggle { display: none; }
/* Mobile header. It is sticky, so it has to stay compact: brand and account
   icons share one row, search sits under them, nav scrolls sideways. Left to
   wrap freely it took over half the viewport and never gave it back. */
@media (max-width: 980px) {
	.announce { font-size: 12px; padding: 7px 0; }
	.announce .wrap { gap: 20px; justify-content: center; }
	.announce .wrap > span { display: none; }
	.header-main { flex-wrap: wrap; gap: 10px; padding: 10px 0; }
	.brand img { height: 38px; }
	.headlinks { margin-left: auto; gap: 0; }
	.headlink { padding: 4px 9px; font-size: 10.5px; }
	.headlink svg { width: 19px; height: 19px; }
	.headsearch { order: 3; flex-basis: 100%; max-width: none; }
	.headsearch input { height: 40px; font-size: 14.5px; padding-right: 46px; }
	.headsearch button { width: 32px; height: 32px; top: 4px; right: 4px; }
	.site-nav .wrap { overflow-x: auto; scrollbar-width: none; }
	.site-nav .wrap::-webkit-scrollbar { display: none; }
	.site-nav a { padding: 10px 12px; font-size: 14px; white-space: nowrap; }
	.site-nav .spacer { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-deep); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(100deg, rgb(2 29 56 / .95) 0%, rgb(2 29 56 / .82) 42%, rgb(2 29 56 / .25) 72%, rgb(2 29 56 / .05) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: clamp(48px, 7vw, 88px) 0; }
.hero h1 { color: #fff; max-width: 17ch; margin-bottom: .35em; }
.hero h1 em { font-style: normal; color: var(--cyan-light); }
.hero .lede { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: #cfe0ee; max-width: 54ch; margin-bottom: 26px; }
.hero-search { display: flex; gap: 10px; max-width: 560px; margin-bottom: 18px; }
.hero-search input {
	flex: 1 1 auto; height: 54px; border: 0; border-radius: 999px; padding: 0 22px;
	font-size: 16px; background: #fff; color: var(--ink);
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-chips a {
	background: rgb(255 255 255 / .12); border: 1px solid rgb(255 255 255 / .26);
	color: #fff; padding: 7px 16px; border-radius: 999px; font-size: 14px;
	font-weight: 600; text-decoration: none;
}
.hero-chips a:hover { background: rgb(255 255 255 / .24); color: #fff; }

/* ---------- Trust bar ---------- */
.trustbar { background: #fff; border-bottom: 1px solid var(--line); }
.trustbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 18px var(--gutter); }
.trust { display: flex; align-items: flex-start; gap: 11px; }
.trust svg { width: 22px; height: 22px; color: var(--cyan); flex: 0 0 auto; margin-top: 2px; }
.trust b { display: block; color: var(--navy); font-size: 14.5px; font-weight: 700; line-height: 1.3; }
.trust span { display: block; color: var(--ink-faint); font-size: 12.5px; }
@media (max-width: 900px) { .trustbar .wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trustbar .wrap { grid-template-columns: 1fr; } }

/* ---------- Sections ---------- */
.section { padding: clamp(48px, 6vw, 84px) 0; position: relative; }
.section.tint { background: var(--aqua-tint); }
.section.canvas { background: var(--canvas); }
.section.navy { background: var(--navy-deep); color: #fff; }
.section.navy h2, .section.navy h3 { color: #fff; }
.section-head { display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 30px; }
.section-head .grow { flex: 1 1 420px; }
.section-head h2 { margin-bottom: .2em; }
.section-head p { color: var(--ink-soft); font-size: 17px; margin: 0; }
.section.navy .section-head p { color: #b9d2e6; }
.eyebrow {
	display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800;
	letter-spacing: .12em; text-transform: uppercase; color: var(--cyan-dark); margin-bottom: 10px;
}
.section.navy .eyebrow { color: var(--cyan-light); }
.eyebrow::before { content: ''; width: 22px; height: 2px; background: currentColor; }

/* Decorative water texture so no band is ever flat */
.section.tint::before, .section.canvas::before {
	content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
	background:
		radial-gradient(650px 320px at 88% -10%, rgb(45 180 219 / .18), transparent 70%),
		radial-gradient(520px 280px at -8% 110%, rgb(0 66 124 / .10), transparent 70%);
}
.section > .wrap, .section > .wrap-wide { position: relative; z-index: 1; }

/* ---------- Promo pair ---------- */
.promos { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.promo {
	position: relative; overflow: hidden; border-radius: var(--radius-lg);
	min-height: 230px; display: flex; align-items: center; color: #fff;
	padding: 32px 34px; text-decoration: none;
}
.promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(95deg, rgb(0 66 124 / .95) 20%, rgb(0 66 124 / .55) 62%, rgb(0 66 124 / .18) 100%); }
.promo.alt::after { background: linear-gradient(95deg, rgb(2 29 56 / .95) 20%, rgb(2 29 56 / .55) 62%, rgb(2 29 56 / .15) 100%); }
.promo .t { position: relative; z-index: 1; max-width: 30ch; }
.promo h3 { color: #fff; font-size: clamp(1.3rem, 2.2vw, 1.75rem); margin-bottom: .35em; }
.promo p { color: #d3e5f2; font-size: 15px; margin-bottom: 18px; }
.promo:hover img { transform: scale(1.05); }
.promo img { transition: transform .8s cubic-bezier(.2,.7,.3,1); }
@media (prefers-reduced-motion: reduce) { .promo img { transition: none; } .promo:hover img { transform: none; } }
@media (max-width: 860px) { .promos { grid-template-columns: 1fr; } }

/* ---------- Range grid ---------- */
.ranges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.range {
	position: relative; overflow: hidden; border-radius: var(--radius);
	aspect-ratio: 16 / 10; display: flex; align-items: flex-end; text-decoration: none;
	box-shadow: var(--shadow);
}
.range img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.3,1); }
.range::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgb(2 29 56 / .92) 0%, rgb(2 29 56 / .45) 42%, rgb(2 29 56 / 0) 78%); }
.range .t { position: relative; z-index: 1; padding: 20px 22px; color: #fff; width: 100%; }
.range b { display: block; font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.range span { display: block; font-size: 13.5px; color: #b9d2e6; }
.range:hover img { transform: scale(1.06); }
.range.feature { background: linear-gradient(150deg, var(--navy), var(--cyan-dark)); align-items: center; justify-content: center; text-align: center; }
.range.feature::after { display: none; }
.range.feature .t { width: auto; }
.range.feature svg { width: 30px; height: 30px; color: var(--gold); margin: 0 auto 10px; }
@media (prefers-reduced-motion: reduce) { .range img { transition: none; } .range:hover img { transform: none; } }
@media (max-width: 980px) { .ranges { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ranges { grid-template-columns: 1fr; } }

/* ---------- Product cards ---------- */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.products.cols5 { grid-template-columns: repeat(5, 1fr); }
.products.cols3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1180px) { .products.cols5 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 980px) { .products, .products.cols5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .products, .products.cols5, .products.cols3 { grid-template-columns: repeat(2, 1fr); } }

.pcard {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; display: flex; flex-direction: column; position: relative;
	transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--aqua-line); }
.pcard-media { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--canvas); }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.pcard:hover .pcard-media img { transform: scale(1.07); }
.flag {
	position: absolute; top: 10px; left: 10px; background: var(--sale); color: #fff;
	font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
	padding: 4px 10px; border-radius: 5px; z-index: 2;
}
.flag.exact { background: var(--navy); left: 10px; right: 10px; text-align: center; top: auto; bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.flag.exact svg { width: 13px; height: 13px; }
.flag.out { background: var(--ink-soft); }
.pcard-body { padding: 13px 15px 16px; display: flex; flex-direction: column; flex: 1 1 auto; }
.pcard-body h3 { font-size: 14.5px; font-weight: 700; margin: 0 0 6px; line-height: 1.35; color: var(--navy); }
.pcard-body h3 a { color: inherit; text-decoration: none; }
.pcard-body h3 a:hover { color: var(--cyan-dark); }
.pcard .cat { font-size: 12px; color: var(--ink-faint); margin-bottom: 8px; }
.pcard .price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pcard .was { text-decoration: line-through; color: var(--ink-faint); font-size: 13.5px; }
.pcard .now { color: var(--sale); font-weight: 800; font-size: 18px; letter-spacing: -.02em; }
.pcard .stock { font-size: 12px; font-weight: 700; color: var(--stock-in); margin-top: 6px; display: flex; align-items: center; gap: 5px; }
.pcard .stock.low { color: #b7791f; }
.pcard .stock.none { color: var(--ink-faint); }
.pcard .stock i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.pcard .btn { margin-top: 12px; }
@media (prefers-reduced-motion: reduce) { .pcard, .pcard-media img { transition: none; } .pcard:hover { transform: none; } .pcard:hover .pcard-media img { transform: none; } }

/* ---------- Split band (media + copy, never a dead column) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.split.top { align-items: start; }
.split.wide-media { grid-template-columns: 1.15fr .85fr; }
.split .media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.split .media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split .media.tall img { aspect-ratio: 3 / 4; }
.split .copy p { color: var(--ink-soft); font-size: 17px; }
.section.navy .split .copy p { color: #b9d2e6; }
.split .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
@media (max-width: 900px) { .split, .split.wide-media { grid-template-columns: 1fr; } }

.media-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.media-stack img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 1; box-shadow: var(--shadow); }
.media-stack img:first-child { grid-row: span 2; aspect-ratio: 3 / 4; height: 100%; }

/* Feature list inside a split */
.featlist { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 14px; }
.featlist li { display: flex; gap: 12px; align-items: flex-start; }
.featlist svg { width: 20px; height: 20px; color: var(--cyan); flex: 0 0 auto; margin-top: 3px; }
.section.navy .featlist svg { color: var(--cyan-light); }
.featlist b { display: block; color: var(--navy); font-size: 16px; }
.section.navy .featlist b { color: #fff; }
.featlist span { display: block; color: var(--ink-soft); font-size: 14.5px; }
.section.navy .featlist span { color: #b9d2e6; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.step img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.step .t { padding: 18px 20px 22px; }
.step .n {
	position: absolute; top: 14px; left: 14px; width: 34px; height: 34px; border-radius: 50%;
	background: var(--cyan); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 15px;
	box-shadow: 0 4px 12px rgb(2 44 82 / .3);
}
.step b { display: block; color: var(--navy); font-size: 17px; margin-bottom: 5px; }
.step p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Blog cards ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; text-decoration: none; }
.post:hover { box-shadow: var(--shadow-lift); }
.post img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.post:hover img { transform: scale(1.05); }
.post .t { padding: 18px 20px 22px; flex: 1 1 auto; display: flex; flex-direction: column; }
.post .date { font-size: 12.5px; color: var(--ink-faint); font-weight: 600; margin-bottom: 6px; }
.post h3 { font-size: 18px; margin-bottom: 8px; }
.post p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 14px; }
.post .more { margin-top: auto; color: var(--cyan-dark); font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 5px; }
.post .more svg { width: 15px; height: 15px; }
.post > div { overflow: hidden; }
@media (max-width: 900px) { .posts { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .post img { transition: none; } .post:hover img { transform: none; } }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: 13.5px; color: var(--ink-faint); padding: 16px 0; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--navy); text-decoration: underline; }
.crumbs span { margin: 0 7px; }

/* ---------- Category page ---------- */
.cat-hero { position: relative; overflow: hidden; background: var(--navy-deep); color: #fff; }
.cat-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(95deg, rgb(2 29 56 / .95) 15%, rgb(2 29 56 / .72) 55%, rgb(2 29 56 / .2) 100%); }
.cat-hero .wrap { position: relative; z-index: 1; padding: clamp(34px, 4.5vw, 56px) var(--gutter); }
.cat-hero h1 { color: #fff; margin-bottom: .3em; }
.cat-hero p { color: #cfe0ee; max-width: 68ch; font-size: 17px; margin: 0; }
.cat-hero .crumbs { color: #9fc0d9; padding-top: 0; }
.cat-hero .crumbs a { color: #cfe0ee; }
.cat-stats { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 22px; }
.cat-stats div b { display: block; font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.cat-stats div span { display: block; font-size: 13px; color: #9fc0d9; }

.shop-layout { display: grid; grid-template-columns: 268px minmax(0, 1fr); gap: 32px; align-items: start; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }

.facets { position: sticky; top: 108px; }
.facet { border-bottom: 1px solid var(--line); padding: 18px 0; }
.facet:first-child { padding-top: 0; }
.facet h3 { font-size: 15px; margin-bottom: 12px; display: flex; align-items: center; }
.facet h3 svg { width: 16px; height: 16px; margin-left: auto; color: var(--ink-faint); }
.facet label { display: flex; align-items: center; gap: 9px; padding: 4px 0; font-size: 14.5px; cursor: pointer; color: var(--ink-soft); }
.facet label:hover { color: var(--navy); }
.facet input { width: 16px; height: 16px; accent-color: var(--cyan); cursor: pointer; }
.facet label .c { margin-left: auto; font-size: 12.5px; color: var(--ink-faint); }
.facet .more { font-size: 13.5px; font-weight: 700; color: var(--cyan-dark); background: none; border: 0; padding: 6px 0 0; cursor: pointer; }
.facet .swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.facet .swatch { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--line); cursor: pointer; }
.facet .swatch.on { border-color: var(--navy); box-shadow: 0 0 0 2px #fff inset; }
.facet .range-row { display: flex; align-items: center; gap: 8px; }
.facet .range-row input[type=text] { width: 100%; border: 1px solid var(--line); border-radius: 7px; padding: 7px 10px; font-size: 14px; }

.shop-toolbar {
	display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
	padding: 14px 18px; background: var(--aqua-tint); border: 1px solid var(--aqua-line);
	border-radius: var(--radius); margin-bottom: 22px;
}
.shop-toolbar .spacer { flex: 1 1 auto; }
.shop-toolbar select { border: 1px solid var(--aqua-line); border-radius: 8px; padding: 8px 12px; font-size: 14.5px; background: #fff; color: var(--ink); }
.applied { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.applied .chip {
	display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--aqua-line);
	color: var(--navy); font-size: 13.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
}
.applied .chip button { border: 0; background: none; cursor: pointer; color: var(--ink-faint); padding: 0; display: grid; }
.applied .chip svg { width: 13px; height: 13px; }
.applied .clear { font-size: 13.5px; font-weight: 700; color: var(--cyan-dark); text-decoration: none; align-self: center; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 36px; }
.pagination a, .pagination span {
	min-width: 42px; height: 42px; padding: 0 13px; border-radius: 10px; border: 1px solid var(--line);
	background: #fff; display: inline-flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: 15px; color: var(--ink-soft); text-decoration: none;
}
.pagination a:hover { border-color: var(--cyan); color: var(--navy); background: var(--aqua-tint); }
.pagination .on { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---------- Product page ---------- */
.pdp { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }
.gallery-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); background: var(--canvas); }
.gallery-main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.gallery-thumbs button { padding: 0; border: 2px solid transparent; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; background: none; }
.gallery-thumbs button.on { border-color: var(--cyan); }
.gallery-thumbs img { aspect-ratio: 1; object-fit: cover; width: 100%; }

.pdp h1 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: .2em; }
.pdp .latin { font-style: italic; color: var(--ink-faint); font-size: 16px; margin-bottom: 16px; }
.pdp .pricing { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.pdp .pricing .was { text-decoration: line-through; color: var(--ink-faint); font-size: 20px; }
.pdp .pricing .now { color: var(--sale); font-weight: 800; font-size: clamp(1.9rem, 3vw, 2.4rem); letter-spacing: -.03em; }
.pdp .pricing .off { background: var(--sale); color: #fff; font-size: 13px; font-weight: 800; padding: 4px 10px; border-radius: 6px; }

.qty-table { width: 100%; border-collapse: collapse; margin: 18px 0; border: 1px solid var(--aqua-line); border-radius: var(--radius-sm); overflow: hidden; }
.qty-table th { background: var(--aqua-tint); color: var(--navy); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; padding: 10px 14px; text-align: left; }
.qty-table td { padding: 10px 14px; border-top: 1px solid var(--aqua-line); font-size: 15px; }
.qty-table td:last-child, .qty-table th:last-child { text-align: right; font-weight: 700; color: var(--navy); }

.buybox { display: flex; gap: 12px; align-items: stretch; margin: 20px 0; flex-wrap: wrap; }
.qty-stepper { display: flex; align-items: center; border: 2px solid var(--aqua-line); border-radius: 999px; overflow: hidden; background: #fff; }
.qty-stepper button { width: 44px; height: 52px; border: 0; background: none; cursor: pointer; color: var(--navy); font-size: 20px; font-weight: 700; }
.qty-stepper button:hover { background: var(--aqua-tint); }
.qty-stepper input { width: 54px; height: 52px; border: 0; text-align: center; font-size: 17px; font-weight: 700; color: var(--navy); }
.buybox .btn { flex: 1 1 200px; padding-block: 16px; }

.assure { background: var(--aqua-tint); border: 1px solid var(--aqua-line); border-radius: var(--radius); padding: 18px 20px; }
.assure h3 { font-size: 15.5px; display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.assure h3 svg { width: 19px; height: 19px; color: var(--cyan-dark); }
.assure ul { list-style: none; margin: 0 0 12px; padding: 0; display: grid; gap: 9px; }
.assure li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.assure li svg { width: 17px; height: 17px; color: var(--cyan-dark); flex: 0 0 auto; margin-top: 3px; }

.exact-panel {
	background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff;
	border-radius: var(--radius); padding: 20px 22px; margin-bottom: 20px;
}
.exact-panel h3 { color: #fff; font-size: 16.5px; display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.exact-panel h3 svg { width: 20px; height: 20px; color: var(--gold); }
.exact-panel p { color: #cfe0ee; font-size: 14.5px; margin: 0; }
.exact-panel .ref { display: inline-block; margin-top: 10px; background: rgb(255 255 255 / .14); border-radius: 6px; padding: 4px 11px; font-size: 13px; font-weight: 700; letter-spacing: .05em; }

.care { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 26px 0; }
.care div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; text-align: center; }
.care svg { width: 22px; height: 22px; color: var(--cyan); margin: 0 auto 7px; }
.care b { display: block; color: var(--navy); font-size: 17px; font-weight: 800; }
.care span { display: block; color: var(--ink-faint); font-size: 12.5px; }
@media (max-width: 760px) { .care { grid-template-columns: repeat(2, 1fr); } }

.pdp-tabs { border-bottom: 2px solid var(--line); display: flex; gap: 4px; overflow-x: auto; }
.pdp-tabs a { padding: 14px 20px; font-weight: 700; color: var(--ink-soft); text-decoration: none; border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap; }
.pdp-tabs a.on, .pdp-tabs a:hover { color: var(--navy); border-bottom-color: var(--cyan); }
.prose { max-width: none; }
.prose h3 { font-size: 19px; margin: 26px 0 8px; }
.prose h3:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); }
.prose ul { color: var(--ink-soft); padding-left: 22px; }

/* ---------- Basket ---------- */
.basket-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 32px; align-items: start; }
@media (max-width: 980px) { .basket-layout { grid-template-columns: 1fr; } }

.line {
	display: grid; grid-template-columns: 108px minmax(0, 1fr) auto; gap: 18px;
	padding: 20px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.line img { width: 108px; height: 108px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.line h3 { font-size: 17px; margin-bottom: 4px; }
.line h3 a { color: inherit; text-decoration: none; }
.line .meta { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 10px; }
.line .savings { font-size: 13.5px; color: var(--stock-in); font-weight: 700; }
.line .right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.line .linetotal { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.line .remove { border: 0; background: none; color: var(--ink-faint); font-size: 13.5px; cursor: pointer; text-decoration: underline; padding: 0; }
.line .remove:hover { color: var(--sale); }
.qty-stepper.sm button { width: 34px; height: 38px; font-size: 17px; }
.qty-stepper.sm input { width: 42px; height: 38px; font-size: 15px; }
@media (max-width: 640px) {
	.line { grid-template-columns: 84px minmax(0, 1fr); }
	.line img { width: 84px; height: 84px; }
	.line .right { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
}

.summary { background: var(--aqua-tint); border: 1px solid var(--aqua-line); border-radius: var(--radius); padding: 24px; position: sticky; top: 108px; }
.summary h2 { font-size: 20px; margin-bottom: 16px; }
.sumrow { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; font-size: 15.5px; color: var(--ink-soft); }
.sumrow b { color: var(--navy); font-weight: 700; }
.sumrow.save b, .sumrow.save { color: var(--stock-in); }
.sumtotal { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; border-top: 2px solid var(--aqua-line); margin-top: 12px; padding-top: 14px; }
.sumtotal span { font-size: 17px; font-weight: 800; color: var(--navy); }
.sumtotal b { font-size: 30px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.progress-note { background: #fff; border: 1px solid var(--aqua-line); border-radius: var(--radius-sm); padding: 13px 15px; font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.progress-note b { color: var(--navy); }
.progress-bar { height: 8px; border-radius: 999px; background: var(--aqua-line); overflow: hidden; margin-top: 9px; }
.progress-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--navy)); border-radius: 999px; }
.paylogos { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.paylogos span { background: #fff; border: 1px solid var(--aqua-line); border-radius: 6px; padding: 5px 11px; font-size: 11.5px; font-weight: 800; color: var(--navy); letter-spacing: .03em; }

.voucher { display: flex; gap: 8px; margin-top: 16px; }
.voucher input { flex: 1 1 auto; border: 1px solid var(--aqua-line); border-radius: 999px; padding: 11px 18px; font-size: 14.5px; background: #fff; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 36px; align-items: start; }
@media (max-width: 980px) { .checkout-layout { grid-template-columns: 1fr; } }

.stepbar { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.stepbar .s { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14.5px; color: var(--ink-faint); }
.stepbar .s i { width: 28px; height: 28px; border-radius: 50%; background: var(--line); color: #fff; display: grid; place-items: center; font-size: 13px; font-style: normal; }
.stepbar .s.done i { background: var(--stock-in); }
.stepbar .s.on { color: var(--navy); }
.stepbar .s.on i { background: var(--cyan); }
.stepbar .bar { flex: 1 1 20px; height: 2px; background: var(--line); min-width: 16px; }

.co-block { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 20px; overflow: hidden; background: #fff; }
.co-block > h2 { font-size: 18px; padding: 18px 22px; margin: 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; background: #fcfeff; }
.co-block > h2 i { width: 26px; height: 26px; border-radius: 50%; background: var(--cyan); color: #fff; display: grid; place-items: center; font-size: 13px; font-style: normal; font-weight: 800; flex: 0 0 auto; }
.co-body { padding: 22px; }

.fld { margin-bottom: 16px; }
.fld:last-child { margin-bottom: 0; }
.fld label { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.fld input, .fld select, .fld textarea {
	width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm);
	padding: 12px 14px; font-size: 15.5px; background: #fff; color: var(--ink); font-family: inherit;
}
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: 0; border-color: var(--cyan); box-shadow: 0 0 0 3px rgb(45 180 219 / .18); }
.fld textarea { min-height: 84px; resize: vertical; }
.fld .hint { font-size: 13px; color: var(--ink-faint); margin-top: 5px; }
.fld2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fld3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 620px) { .fld2, .fld3 { grid-template-columns: 1fr; } }

.choice {
	display: flex; gap: 13px; align-items: flex-start; border: 2px solid var(--line);
	border-radius: var(--radius); padding: 15px 17px; cursor: pointer; margin-bottom: 11px; background: #fff;
}
.choice:hover { border-color: var(--aqua-line); background: #fcfeff; }
.choice.on { border-color: var(--cyan); background: var(--aqua-tint); }
.choice input { width: 19px; height: 19px; accent-color: var(--cyan); margin-top: 2px; flex: 0 0 auto; }
.choice .t { flex: 1 1 auto; min-width: 0; }
.choice b { display: block; color: var(--navy); font-size: 15.5px; }
.choice span { display: block; color: var(--ink-soft); font-size: 13.5px; }
.choice .p { font-weight: 800; color: var(--navy); font-size: 16px; white-space: nowrap; }
.choice .p.free { color: var(--stock-in); }
.choice img { width: 46px; height: 30px; object-fit: contain; }

/* Delivery date picker */
.datepick { border: 1px solid var(--aqua-line); border-radius: var(--radius); overflow: hidden; }
.datepick-head { display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: var(--aqua-tint); border-bottom: 1px solid var(--aqua-line); }
.datepick-head b { color: var(--navy); font-size: 15.5px; }
.datepick-head .spacer { flex: 1 1 auto; }
.datepick-head button { width: 32px; height: 32px; border: 1px solid var(--aqua-line); background: #fff; border-radius: 8px; cursor: pointer; display: grid; place-items: center; color: var(--navy); }
.datepick-head button:hover { background: var(--cyan); color: #fff; border-color: var(--cyan); }
.datepick-head svg { width: 16px; height: 16px; }
.datepick-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; padding: 14px; }
.datepick-grid .dh { text-align: center; font-size: 11.5px; font-weight: 800; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .06em; padding-bottom: 4px; }
.dcell {
	aspect-ratio: 1; border: 1px solid var(--line); border-radius: 9px; background: #fff;
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
	cursor: pointer; font-size: 15px; font-weight: 700; color: var(--navy); padding: 2px;
}
.dcell small { font-size: 10px; font-weight: 600; color: var(--stock-in); }
.dcell:hover { border-color: var(--cyan); background: var(--aqua-tint); }
.dcell.on { background: var(--cyan); border-color: var(--cyan); color: #fff; }
.dcell.on small { color: #e6f7fc; }
.dcell.off { background: var(--canvas); color: var(--ink-faint); cursor: not-allowed; border-style: dashed; }
.dcell.off small { color: var(--ink-faint); font-size: 9.5px; }
.dcell.full { background: #fdf3e2; border-color: #f0dcb4; color: #b7791f; cursor: not-allowed; }
.dcell.full small { color: #b7791f; }
.datepick-key { display: flex; gap: 16px; flex-wrap: wrap; padding: 0 16px 14px; font-size: 12.5px; color: var(--ink-soft); }
.datepick-key span { display: flex; align-items: center; gap: 6px; }
.datepick-key i { width: 12px; height: 12px; border-radius: 4px; display: block; }

.co-summary { border: 1px solid var(--aqua-line); border-radius: var(--radius); overflow: hidden; position: sticky; top: 108px; background: #fff; }
.co-summary > h2 { font-size: 18px; padding: 16px 20px; margin: 0; background: var(--aqua-tint); border-bottom: 1px solid var(--aqua-line); }
.co-lines { padding: 6px 20px; max-height: 330px; overflow-y: auto; }
.co-line { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.co-line:last-child { border-bottom: 0; }
.co-line img { width: 56px; height: 56px; object-fit: cover; border-radius: 7px; border: 1px solid var(--line); }
.co-line b { display: block; font-size: 14px; color: var(--navy); font-weight: 700; line-height: 1.35; }
.co-line span { display: block; font-size: 12.5px; color: var(--ink-faint); }
.co-line .p { font-weight: 800; color: var(--navy); font-size: 15px; white-space: nowrap; }
.co-totals { padding: 16px 20px; background: var(--aqua-tint); border-top: 1px solid var(--aqua-line); }
.secure-note { display: flex; align-items: center; gap: 9px; justify-content: center; font-size: 13px; color: var(--ink-soft); margin-top: 14px; }
.secure-note svg { width: 16px; height: 16px; color: var(--stock-in); }

/* Reassurance cards under the checkout summary. They also stop the column
   running out of content long before the form does. */
.travelcard { margin-top: 20px; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.travelcard img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.travelcard .t { padding: 18px 20px 20px; }
.travelcard h3 { font-size: 17px; margin-bottom: 7px; }
.travelcard p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 12px; }
.travelcard a { font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 5px; }
.travelcard a svg { width: 15px; height: 15px; }

.helpcard { margin-top: 20px; border-radius: var(--radius); padding: 20px; background: linear-gradient(140deg, var(--navy), var(--navy-deep)); color: #cfe0ee; }
.helpcard h3 { color: #fff; font-size: 17px; display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.helpcard h3 svg { width: 18px; height: 18px; color: var(--cyan-light); }
.helpcard p { font-size: 14.5px; margin-bottom: 14px; }
.helpcard .hrs { font-size: 13px; color: #9fc0d9; margin: 10px 0 0; text-align: center; }

/* ---------- Alerts ---------- */
.alert { display: flex; gap: 12px; padding: 15px 18px; border-radius: var(--radius); font-size: 15px; margin-bottom: 20px; align-items: flex-start; border: 1px solid var(--aqua-line); background: var(--aqua-tint); }
.alert svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; color: var(--cyan-dark); }
.alert b { color: var(--navy); }
.alert.warn { background: #fdf3e2; border-color: #f0dcb4; }
.alert.warn svg { color: #b7791f; }
.alert.good { background: #e8f6ee; border-color: #bfe3ce; }
.alert.good svg { color: var(--stock-in); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy-deep); color: #fff; }
/* Direct child only. A nested .media img must not be pulled out of flow. */
.cta-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(95deg, rgb(2 29 56 / .96) 25%, rgb(2 29 56 / .7) 62%, rgb(2 29 56 / .25) 100%); }
.cta-band .wrap { position: relative; z-index: 1; padding: clamp(44px, 5.5vw, 76px) var(--gutter); }
.cta-band h2 { color: #fff; max-width: 20ch; }
/* Needs to outrank `.split .copy p`, which is more specific than a bare
   `.cta-band p` and was painting body copy navy-on-navy. */
.cta-band p, .cta-band .split .copy p { color: #cfe0ee; font-size: 17.5px; max-width: 60ch; }
.cta-band .featlist b { color: #fff; }
.cta-band .featlist span { color: #b9d2e6; }
.cta-band .featlist svg { color: var(--cyan-light); }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #b9d2e6; padding: 54px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 34px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: #b9d2e6; text-decoration: none; font-size: 15px; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .brand { margin-bottom: 4px; }
.site-footer .brand img { height: 52px; }
.site-footer .about { font-size: 14.5px; line-height: 1.65; margin: 16px 0; max-width: 42ch; }
.site-footer .contact { display: grid; gap: 8px; font-size: 15px; }
.site-footer .contact a { display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 700; }
.site-footer .contact svg { width: 17px; height: 17px; color: var(--cyan-light); }
.site-footer .promise li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; }
.site-footer .promise svg { width: 17px; height: 17px; color: var(--cyan-light); flex: 0 0 auto; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgb(255 255 255 / .12); margin-top: 40px; padding: 20px 0; }
.footer-bottom .wrap { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom .spacer { flex: 1 1 auto; }
.footer-pay { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 16px; }
.footer-pay span { background: rgb(255 255 255 / .1); border-radius: 5px; padding: 5px 10px; font-size: 11px; font-weight: 800; color: #fff; letter-spacing: .04em; }
