@charset "UTF-8";
/* =========================================================
   Sentali Labs — design system
   Adapted from the approved static prototype (site.css) to
   drive the theme's custom Gutenberg blocks. Class names are
   kept identical to the prototype wherever the block markup
   allows, so the design matches 1:1.
========================================================= */

@font-face {
	font-family: "Fraunces";
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url("../fonts/fraunces-variable.woff2") format("woff2");
}
@font-face {
	font-family: "Fraunces";
	font-style: italic;
	font-weight: 300 700;
	font-display: swap;
	src: url("../fonts/fraunces-variable-italic.woff2") format("woff2");
}
@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/manrope-variable.woff2") format("woff2");
}

:root {
	--navy: #0a2540;
	--navy-2: #0d2a47;
	--blue: #1763e0;
	--sky: #5fa0ff;
	--cyan: #1aa6c4;
	--ice: #eef4ff;
	--mist: #f5f8fc;
	--line: #d8dfe9;
	--slate: #44566b;
	--muted: #6b7a8d;
	--white: #ffffff;
	--radius: 20px;
	--font-display: "Fraunces", Georgia, serif;
	--font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }

body {
	font-family: var(--font-body);
	background: var(--white);
	color: var(--navy);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	font-optical-sizing: auto;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { width: min(1200px, 92vw); margin: 0 auto; }
ul { list-style: none; }

/* ---------- helpers ---------- */
.label {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
	color: var(--blue);
}
.label::before { content: ""; width: 24px; height: 2px; background: var(--cyan); border-radius: 2px; }
.h2 {
	font-family: var(--font-display);
	font-weight: 450;
	font-size: clamp(34px, 4.6vw, 58px);
	line-height: 1.06;
	letter-spacing: -.01em;
}
.h2 em { font-style: italic; color: var(--blue); }
.btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 16px 28px; border-radius: 100px;
	font-size: 15px; font-weight: 700; letter-spacing: .01em;
	transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, background .3s, color .3s;
}
.btn svg { transition: transform .35s cubic-bezier(.22,1,.36,1); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 30px rgba(23,99,224,.28); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(23,99,224,.35); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,255,255,.15); }

/* ---------- loader (driven by the GSAP intro timeline in interactions.js) ---------- */
.loader {
	position: fixed; inset: 0; z-index: 1000;
	background: var(--navy);
	display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
}
.loader-word {
	font-family: var(--font-display); font-style: italic; font-weight: 400;
	font-size: clamp(38px, 6vw, 72px); color: #fff; overflow: hidden; margin: 0;
}
.loader-word span { display: inline-block; }
.loader-bar { width: 160px; height: 2px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; }
.loader-bar i { display: block; width: 100%; height: 100%; background: var(--sky); transform: scaleX(0); transform-origin: left; }
.reduced .loader,
.no-js .loader { display: none; }

/* ---------- nav ---------- */
.nav {
	position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
	width: min(1200px, 94vw); z-index: 900;
	display: flex; align-items: center; justify-content: space-between;
	padding: 12px 12px 12px 24px; border-radius: 100px;
	background: rgba(255,255,255,.75);
	backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(216,223,233,.7);
	transition: box-shadow .4s;
}
.nav.scrolled { box-shadow: 0 12px 40px rgba(10,37,64,.1); }
.nav-logo { font-family: var(--font-display); font-size: 24px; font-weight: 550; letter-spacing: -.01em; display: flex; align-items: center; gap: 10px; }
.nav-logo .dot { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); flex: none; }
.nav-logo img.custom-logo { max-height: 32px; width: auto; }
.nav-links { display: flex; gap: 6px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--slate); padding: 9px 16px; border-radius: 100px; transition: background .25s, color .25s; display: inline-block; }
.nav-links a:hover { background: var(--ice); color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-cart { position: relative; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); transition: border-color .25s; color: var(--navy); }
.nav-cart:hover { border-color: var(--navy); }
.nav-cart .count { position: absolute; top: -3px; right: -3px; width: 18px; height: 18px; border-radius: 50%; background: var(--cyan); color: #fff; font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.nav-cta { padding: 12px 22px; font-size: 14px; }

.menu-toggle {
	display: none; flex-direction: column; justify-content: center; gap: 4px;
	width: 40px; height: 40px; border-radius: 50%; flex: none;
}
.menu-toggle span { width: 18px; height: 2px; background: var(--navy); margin: 0 auto; transition: transform .3s, opacity .3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
	position: relative; min-height: 100vh;
	display: flex; align-items: center;
	background:
		radial-gradient(900px 600px at 85% 10%, rgba(95,160,255,.22), transparent 60%),
		radial-gradient(700px 500px at 5% 90%, rgba(26,166,196,.14), transparent 60%),
		linear-gradient(180deg, var(--ice) 0%, #fff 90%);
	overflow: hidden;
	padding: 140px 0 60px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero-badges { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 100px; background: #fff; border: 1px solid var(--line); font-size: 12.5px; font-weight: 700; color: var(--slate); box-shadow: 0 4px 14px rgba(10,37,64,.05); }
.pill .pdot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); flex: none; }
.hero h1 { font-family: var(--font-display); font-weight: 420; font-size: clamp(46px, 6.6vw, 92px); line-height: 1.0; letter-spacing: -.02em; margin-bottom: 26px; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 em { font-style: italic; color: var(--blue); }
.hero-sub { font-size: 17px; color: var(--muted); max-width: 440px; margin-bottom: 36px; font-weight: 500; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-mini { display: flex; gap: 36px; }
.hero-mini .m b { font-family: var(--font-display); font-size: 26px; font-weight: 550; display: block; line-height: 1.1; }
.hero-mini .m span { font-size: 12.5px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 520px; }
.hero-vial { width: min(380px, 72%); position: relative; z-index: 3; filter: drop-shadow(0 40px 50px rgba(10,37,64,.25)); will-change: transform; }
.hero-visual::after {
	content: ""; position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%);
	width: 46%; height: 40px; border-radius: 50%; z-index: 2;
	background: radial-gradient(ellipse at center, rgba(10,37,64,.16), transparent 70%);
}
.hero-ring { position: absolute; z-index: 1; width: 520px; height: 520px; border-radius: 50%; border: 1.5px dashed rgba(23,99,224,.3); }
.hero-ring.r2 { width: 640px; height: 640px; border-color: rgba(26,166,196,.18); }

.hero-chip { position: absolute; z-index: 4; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 16px; padding: 12px 18px; box-shadow: 0 16px 40px rgba(10,37,64,.1); font-size: 13px; font-weight: 700; }
.hero-chip small { display: block; font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.chip-1 { top: 16%; left: 2%; }
.chip-2 { bottom: 20%; right: 0%; }
.chip-3 { top: 58%; left: -4%; }
@media (max-width: 900px) { .hero-chip { display: none; } }

.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); font-weight: 700; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll i { width: 1.5px; height: 36px; background: linear-gradient(var(--blue), transparent); display: block; }

/* ---------- marquee ---------- */
.marquee { background: var(--navy); color: #fff; padding: 20px 0; overflow: hidden; transform: rotate(-1.2deg) scale(1.02); margin: -14px 0 0; position: relative; z-index: 5; }
.marquee-track { display: flex; width: max-content; will-change: transform; }
.marquee-track span { font-family: var(--font-display); font-size: 22px; font-weight: 450; white-space: nowrap; padding-right: 18px; display: flex; align-items: center; gap: 18px; }
.marquee-track span i { font-style: normal; color: var(--sky); font-size: 14px; }
.marquee-track em { font-style: italic; color: var(--sky); }

/* ---------- section shell ---------- */
section { position: relative; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 56px; flex-wrap: wrap; }
.sec-head .h2 { max-width: 560px; }
.sec-head p { max-width: 340px; color: var(--muted); font-size: 15px; font-weight: 500; }

/* ---------- products ---------- */
.products { padding: 130px 0 110px; background: #fff; }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { position: relative; border-radius: var(--radius); overflow: hidden; background: linear-gradient(180deg, var(--ice) 0%, var(--mist) 100%); border: 1px solid rgba(216,223,233,.6); padding: 22px; transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s; }
.card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(10,37,64,.12); }
.card .tag { position: absolute; top: 16px; left: 16px; z-index: 2; font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; background: var(--navy); color: #fff; padding: 6px 12px; border-radius: 100px; }
.card .tag.new { background: var(--cyan); }
.card .tag.limited { background: var(--sky); }
.card .purity { position: absolute; top: 16px; right: 16px; z-index: 2; font-size: 11px; font-weight: 800; letter-spacing: .04em; background: rgba(255,255,255,.85); backdrop-filter: blur(6px); border: 1px solid var(--line); color: var(--blue); padding: 5px 10px; border-radius: 100px; }
.card .purity::before { content: "▲ "; font-size: 9px; }
.card-img { height: 230px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card-img img { height: 100%; width: auto; mix-blend-mode: multiply; filter: brightness(1.08) contrast(1.02); transition: transform .5s cubic-bezier(.22,1,.36,1); }
.card:hover .card-img img { transform: scale(1.06) rotate(-2deg); }
.card .cat-label { display: block; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px; }
.card h3 { font-size: 16px; font-weight: 800; margin-bottom: 2px; }
.card .dose { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; }
.card .price { font-family: var(--font-display); font-size: 22px; font-weight: 550; }
.card .price small { font-size: 12px; color: var(--muted); font-family: var(--font-body); font-weight: 600; }
.card .price ins { text-decoration: none; }
.card .price del { font-size: 0.65em; font-weight: 400; opacity: .6; margin-right: 6px; }
.card .add { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 400; transition: background .3s, transform .3s; }
.card .add:hover { background: var(--blue); transform: rotate(90deg); }

/* WooCommerce injects a "View cart" link after the add-to-cart button on
   success — the original design uses a toast notification instead, so this
   would just break the tight card-foot layout. */
.card-foot .added_to_cart { display: none !important; }

/* ---------- toast (mirrors the original cart.js notification) ---------- */
.toast {
	position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 80px);
	background: var(--navy); color: #fff; padding: 14px 26px; border-radius: 100px;
	font-size: 14px; font-weight: 700; z-index: 950; opacity: 0; pointer-events: none;
	box-shadow: 0 20px 50px rgba(10,37,64,.35); display: flex; gap: 10px; align-items: center;
}
.toast .tdot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); flex: none; }

/* ---------- categories ---------- */
.cats { padding: 130px 0; background: #fff; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat { position: relative; border-radius: 28px; overflow: hidden; min-height: 340px; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; gap: 14px; transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s; }
.cat:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(10,37,64,.16); }
.cat img { position: absolute; right: -8%; top: -6%; height: 82%; transform: rotate(10deg); filter: drop-shadow(0 24px 30px rgba(10,37,64,.28)); transition: transform .55s cubic-bezier(.22,1,.36,1); }
.cat:hover img { transform: rotate(4deg) scale(1.06) translateY(-6px); }
.cat .cat-count { font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .7; position: relative; z-index: 2; }
.cat h3 { font-family: var(--font-display); font-weight: 470; font-size: 30px; line-height: 1.08; letter-spacing: -.01em; max-width: 230px; position: relative; z-index: 2; }
.cat h3 em { font-style: italic; }
.cat .btn { padding: 12px 22px; font-size: 13.5px; position: relative; z-index: 2; }
.cat-blue { background: linear-gradient(150deg, var(--blue) 8%, #0f4cb5 92%); color: #fff; }
.cat-blue h3 em { color: #cfe0fd; }
.cat-ice { background: linear-gradient(150deg, var(--ice), #dbe6f7); color: var(--navy); }
.cat-ice img { filter: drop-shadow(0 24px 30px rgba(10,37,64,.18)); }
.cat-ice h3 em { color: var(--blue); }
.cat-navy { background: linear-gradient(150deg, var(--navy), var(--navy-2)); color: #fff; }
.cat-navy h3 em { color: var(--sky); }

/* ---------- credentials ---------- */
.creds { padding: 0 0 130px; background: #fff; }
.creds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cred { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; background: var(--mist); transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s; }
.cred:hover { transform: translateY(-6px); border-color: var(--sky); }
.cred .ic { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 18px; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; display: flex; align-items: center; justify-content: center; }
.cred b { display: block; font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.cred span { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------- dark / COA ---------- */
.coa { background: var(--navy); color: #fff; padding: 140px 0; overflow: hidden; position: relative; }
.coa::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(800px 500px at 90% 0%, rgba(23,99,224,.25), transparent 55%),
	            radial-gradient(600px 400px at 0% 100%, rgba(26,166,196,.15), transparent 55%);
}
.coa .container { position: relative; z-index: 2; }
.coa-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.coa .label { color: var(--sky); }
.coa .h2 { color: #fff; }
.coa .h2 em { color: var(--sky); }
.coa-num { font-family: var(--font-display); font-weight: 400; font-size: clamp(110px, 15vw, 200px); line-height: .95; letter-spacing: -.03em; background: linear-gradient(120deg, #fff 30%, var(--sky)); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 20px 0 14px; }
.coa-num sup { font-size: .35em; vertical-align: super; }
.coa-note { color: #aebfd8; font-size: 16px; max-width: 420px; margin-bottom: 36px; font-weight: 500; }
.coa-list { list-style: none; display: grid; gap: 14px; margin-bottom: 40px; }
.coa-list li { display: flex; gap: 14px; align-items: center; font-weight: 600; font-size: 15px; color: #e6eaf0; }
.coa-list .check { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(95,160,255,.15); border: 1px solid rgba(95,160,255,.4); display: flex; align-items: center; justify-content: center; color: var(--sky); font-size: 13px; }

.cert { background: #fff; border-radius: 24px; color: var(--navy); padding: 34px; box-shadow: 0 50px 100px rgba(0,0,0,.4); transform: rotate(2deg); }
.cert-top { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 20px; }
.cert-top b { font-family: var(--font-display); font-size: 20px; font-weight: 550; }
.cert-top .stamp { font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); border: 1.5px solid var(--cyan); padding: 6px 12px; border-radius: 100px; }
.cert-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.cert-row span { color: var(--muted); font-weight: 600; }
.cert-row b { font-weight: 800; }
.cert-bar { margin-top: 22px; }
.cert-bar .cb-head { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.cert-bar .cb-track { height: 8px; border-radius: 100px; background: var(--ice); overflow: hidden; }
.cert-bar .cb-fill { height: 100%; width: 0; border-radius: 100px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.no-js .cb-fill { width: 100%; }

/* ---------- stats ---------- */
.stats { padding: 110px 0; background: var(--mist); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 30px; text-align: left; }
.stat b { font-family: var(--font-display); font-weight: 450; font-size: clamp(40px, 4.5vw, 58px); line-height: 1; display: block; margin-bottom: 10px; letter-spacing: -.02em; }
.stat b i { font-style: normal; color: var(--blue); }
.stat span { font-size: 13px; color: var(--muted); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* ---------- standard (process) ---------- */
.standard { background: #fff; padding: 130px 0 0; overflow: hidden; }
.standard .sec-head { width: min(1200px, 92vw); margin-left: auto; margin-right: auto; }
.std-wrap { position: relative; }
.std-track { display: flex; gap: 24px; padding: 10px 4vw 130px; width: max-content; }
.std-card {
	width: min(430px, 80vw); flex: none; scroll-snap-align: start;
	border-radius: 28px; padding: 44px 40px; min-height: 380px;
	display: flex; flex-direction: column; justify-content: space-between;
	background: linear-gradient(160deg, var(--ice), var(--mist));
	border: 1px solid var(--line);
}
.std-card.dark { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #fff; border-color: transparent; }
.std-card.blue { background: linear-gradient(160deg, var(--blue), #0f4cb5); color: #fff; border-color: transparent; }
.std-card .num { font-family: var(--font-display); font-style: italic; font-size: 18px; opacity: .55; margin-bottom: 26px; display: block; }
.std-card h3 { font-family: var(--font-display); font-weight: 480; font-size: 30px; line-height: 1.12; margin-bottom: 14px; letter-spacing: -.01em; }
.std-card p { font-size: 14.5px; opacity: .75; font-weight: 500; max-width: 320px; }

/* ---------- banner split ---------- */
.banners { padding: 0 0 130px; background: #fff; }
.ban-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.ban { border-radius: 28px; padding: 54px; min-height: 420px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; }
.ban-blue { background: linear-gradient(140deg, var(--blue) 10%, #0f4cb5 90%); color: #fff; }
.ban-blue h3 { font-family: var(--font-display); font-weight: 450; font-size: clamp(32px, 3.4vw, 46px); line-height: 1.05; margin-bottom: 22px; max-width: 340px; position: relative; z-index: 2; }
.ban-blue h3 em { font-style: italic; color: #cfe0fd; }
.ban-blue img { position: absolute; right: -10px; top: 50%; transform: translateY(-46%) rotate(8deg); height: 104%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.3)); }
.ban-dark { background: var(--navy); color: #fff; justify-content: space-between; }
.ban-dark h3 { font-family: var(--font-display); font-weight: 430; font-size: clamp(28px, 2.8vw, 38px); line-height: 1.18; }
.ban-dark h3 em { font-style: italic; color: var(--sky); }
.ban-dark p { color: #aebfd8; font-size: 14.5px; max-width: 320px; margin-top: 18px; font-weight: 500; }

/* ---------- FAQ ---------- */
.faq { padding: 0 0 130px; background: #fff; }
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0; text-align: left; font-size: 17px; font-weight: 700; color: var(--navy); }
.faq-q .fx { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; transition: background .3s, border-color .3s, transform .4s cubic-bezier(.22,1,.36,1); font-size: 18px; font-weight: 400; }
.faq-item.open .fx { background: var(--navy); color: #fff; border-color: var(--navy); transform: rotate(45deg); }
.faq-a { overflow: hidden; height: 0; }
.faq-a p { padding: 0 60px 26px 0; color: var(--muted); font-size: 15px; font-weight: 500; }

/* ---------- support CTA (full-bleed, image behind, copy overlaid) ---------- */
.support-cta { padding: 0; background: #fff; }
.scta { position: relative; overflow: hidden; width: 100%; aspect-ratio: 2/1; min-height: 420px; max-height: 780px; background: #fff; }
.scta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.scta-copy { position: absolute; top: 50%; right: 6%; transform: translateY(-50%); width: min(400px, 42%); color: #fff; }
.scta-copy .scta-label { display: block; font-size: 12px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: var(--sky); margin-bottom: 16px; }
.scta-copy h2 { font-family: var(--font-display); font-weight: 440; font-size: clamp(30px, 3.6vw, 50px); line-height: 1.05; letter-spacing: -.01em; margin-bottom: 18px; }
.scta-copy h2 em { font-style: italic; color: var(--sky); }
.scta-copy p { font-size: 15px; color: #c9d8ef; font-weight: 500; margin-bottom: 28px; }
.scta-copy .btns { display: flex; gap: 12px; flex-wrap: wrap; }
.scta-copy .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.scta-copy .btn-ghost:hover { border-color: #fff; }
@media (max-width: 900px) {
	.scta { aspect-ratio: auto; min-height: 0; background: var(--navy); }
	.scta > img { position: static; height: 280px; object-position: left 30% center; }
	.scta-copy { position: static; transform: none; width: auto; padding: 34px 30px 44px; }
}

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #fff; padding: 110px 0 0; overflow: hidden; position: relative; }
.foot-top { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: start; padding-bottom: 70px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-top h3 { font-family: var(--font-display); font-weight: 430; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.1; max-width: 480px; }
.foot-top h3 em { font-style: italic; color: var(--sky); }
.news { display: flex; gap: 10px; margin-top: 34px; max-width: 460px; }
.news input { flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: 100px; padding: 16px 24px; color: #fff; font-family: inherit; font-size: 14px; outline: none; transition: border-color .3s; }
.news input::placeholder { color: #7e95b6; }
.news input:focus { border-color: var(--sky); }
.news button { flex: none; width: 54px; height: 54px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s; }
.news button:hover { background: var(--sky); transform: translateX(3px); }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.foot-cols h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #7e95b6; margin-bottom: 20px; }
.foot-cols ul { display: grid; gap: 12px; }
.foot-cols a { color: #d8dfe9; font-size: 14.5px; font-weight: 500; transition: color .25s; }
.foot-cols a:hover { color: var(--sky); }
.foot-word { font-family: var(--font-display); font-weight: 450; text-align: center; font-size: clamp(64px, 13vw, 190px); line-height: 1; letter-spacing: -.02em; padding: 70px 0 0; white-space: nowrap; background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(95,160,255,.15)); -webkit-background-clip: text; background-clip: text; color: transparent; user-select: none; }
.foot-legal { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 30px 0 34px; font-size: 12.5px; color: #5e7596; font-weight: 500; }
.foot-disclaimer { text-align: center; font-size: 11.5px; color: #44566b; max-width: 720px; margin: 26px auto 0; line-height: 1.7; }

/* ---------- sub-page hero (About / Contact / Quality / FAQ) ---------- */
.page-hero {
	padding: 170px 0 70px; position: relative; overflow: hidden;
	background:
		radial-gradient(800px 500px at 90% 0%, rgba(95,160,255,.2), transparent 60%),
		linear-gradient(180deg, var(--ice) 0%, #fff 100%);
}
.page-hero .label { margin-bottom: 14px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 430; font-size: clamp(40px, 6vw, 74px); line-height: 1.02; letter-spacing: -.02em; }
.page-hero h1 em { font-style: italic; color: var(--blue); }
.page-hero p.sub { color: var(--muted); font-size: 16px; max-width: 520px; margin-top: 18px; font-weight: 500; }

/* ---------- about page ---------- */
.about-main { padding: 60px 0 0; background: #fff; }
.mission { font-family: var(--font-display); font-weight: 430; font-size: clamp(24px, 2.8vw, 38px); line-height: 1.35; letter-spacing: -.01em; max-width: 900px; margin-bottom: 70px; padding-top: 60px; }
.mission em { font-style: italic; color: var(--blue); }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 110px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 110px; }
.value { border: 1px solid var(--line); border-radius: 24px; padding: 38px 32px; background: var(--mist); transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s; }
.value:hover { transform: translateY(-6px); border-color: var(--sky); }
.value .vnum { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--blue); display: block; margin-bottom: 20px; }
.value h3 { font-family: var(--font-display); font-weight: 500; font-size: 24px; margin-bottom: 10px; }
.value p { color: var(--muted); font-size: 14.5px; font-weight: 500; }
.promise-ban {
	border-radius: 32px; overflow: hidden;
	background: var(--navy);
	background-size: cover; background-position: right center; background-repeat: no-repeat;
	min-height: 420px; display: flex; align-items: center;
	padding: 64px; color: #fff; margin-bottom: 130px;
}
.promise-ban .p-copy { max-width: 480px; }
.promise-ban h2 { font-family: var(--font-display); font-weight: 440; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.06; letter-spacing: -.01em; margin-bottom: 18px; }
.promise-ban h2 em { font-style: italic; color: var(--sky); }
.promise-ban p { font-size: 15px; color: #c9d8ef; font-weight: 500; margin-bottom: 30px; }
.promise-ban .btns { display: flex; gap: 12px; flex-wrap: wrap; }
.promise-ban .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.promise-ban .btn-ghost:hover { border-color: #fff; }

@media (max-width: 1024px) {
	.values-grid { grid-template-columns: 1fr; }
	.about-stats { grid-template-columns: repeat(2, 1fr); }
	.promise-ban { background-position: 75% center; padding: 44px 34px; }
}

/* ---------- contact page ---------- */
.contact-main { padding: 60px 0 130px; background: #fff; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.cinfo { display: grid; gap: 16px; }
.cinfo .ci-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: var(--mist); }
.cinfo .ci-card b { display: block; font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.cinfo .ci-card span { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.cinfo .ci-card span a { color: var(--blue); font-weight: 700; }
.form { display: grid; gap: 18px; }
.form .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: block; font-size: 12.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--slate); margin-bottom: 8px; }
.form input, .form textarea, .form select,
.form .form-row .input-text, .form .form-row select {
	width: 100% !important; padding: 16px 20px !important; border-radius: 16px !important; border: 1.5px solid var(--line) !important;
	font-family: inherit !important; font-size: 14.5px !important; color: var(--navy) !important; outline: none; background: #fff !important;
	transition: border-color .3s; height: auto !important; margin: 0 !important;
}
.form input:focus, .form textarea:focus, .form select:focus,
.form .form-row .input-text:focus, .form .form-row select:focus { border-color: var(--blue) !important; }
.form .form-row { margin: 0 !important; padding: 0 !important; }
.form .form-row label { margin-bottom: 8px !important; }
.form .woocommerce-input-wrapper { display: block; }
.form textarea { min-height: 150px; resize: vertical; }
/* WooCommerce forces .form-row-first/-last to 47% width (for its own float
   layout) — our .frow is a CSS grid, which doesn't ignore that width like
   it ignores float, so it needs to be reset back to fill its own grid cell. */
.form .form-row-first, .form .form-row-last, .form .form-row-wide {
	width: 100% !important; float: none !important;
}
/* WooCommerce swaps the real <select> for a select2 widget (a styled <span>),
   so ".form select" above never reaches what's actually visible — restyle
   the select2 widget itself to match. */
.form .select2-container { width: 100% !important; }
.form .select2-container .select2-selection--single {
	height: 54px !important; border-radius: 16px !important; border: 1.5px solid var(--line) !important;
	background: #fff !important; display: flex !important; align-items: center; margin: 0 !important;
}
.form .select2-container .select2-selection__rendered {
	padding: 0 20px !important; line-height: normal !important; color: var(--navy) !important;
	font-size: 14.5px !important; font-family: inherit !important;
}
.form .select2-container .select2-selection__arrow { height: 100% !important; top: 0 !important; right: 14px !important; }
.form .select2-container--default .select2-selection--single .select2-selection__arrow b { border-color: var(--navy) transparent transparent transparent !important; }
.form .select2-container--default.select2-container--open .select2-selection--single { border-color: var(--blue) !important; }
/* WooCommerce's own field validation (real, not the original static
   design's fake JS check) marks an invalid <p class="form-row"> with a
   ".woocommerce-invalid" class — its default red border/label got
   silently overridden by the !important rules above. Matches the design's
   #d33 red used elsewhere (e.g. the cart "Remove" hover state). */
.form .form-row.woocommerce-invalid .input-text,
.form .form-row.woocommerce-invalid select,
.form .form-row.woocommerce-invalid .select2-container .select2-selection--single {
	border-color: #d33 !important;
}
.form .form-row.woocommerce-invalid label { color: #d33; }
.form-ok {
	border: 1px solid rgba(26,166,196,.4); background: rgba(26,166,196,.08);
	color: var(--navy); border-radius: 16px; padding: 18px 22px; font-weight: 600; font-size: 14.5px;
}
.form .btn-submit { justify-self: start; }

@media (max-width: 1024px) {
	.contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.form .frow { grid-template-columns: 1fr; }
}

/* ---------- quality page ---------- */
.qual-main { padding: 60px 0 0; background: #fff; }
.qual-main .container > .creds-grid { margin-bottom: 110px; }
.steps-v { display: grid; gap: 0; margin: 0 0 130px; }
.step-v { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.step-v .sn { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--blue); }
.step-v h3 { font-family: var(--font-display); font-size: 26px; font-weight: 500; margin-bottom: 8px; }
.step-v p { color: var(--muted); font-size: 15px; font-weight: 500; max-width: 560px; }
.lookup {
	background: var(--navy); border-radius: 28px; padding: 54px; color: #fff;
	display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; overflow: hidden; position: relative;
	margin-bottom: 130px;
}
.lookup h3 { font-family: var(--font-display); font-weight: 440; font-size: clamp(26px, 3vw, 38px); line-height: 1.1; }
.lookup h3 em { font-style: italic; color: var(--sky); }
.lookup p { color: #aebfd8; font-size: 14.5px; margin-top: 14px; font-weight: 500; }
.lookup .cert { justify-self: stretch; }
.lookup-form { display: flex; gap: 10px; margin-top: 26px; }
.lookup-form input {
	flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
	border-radius: 100px; padding: 16px 24px; color: #fff; font-family: inherit; font-size: 14px; outline: none;
}
.lookup-form input::placeholder { color: #7e95b6; }
.lookup .cert.cert-not-found { box-shadow: 0 30px 70px rgba(0,0,0,.35); }
.lookup .cert.cert-not-found .cert-top { border-bottom: none; margin-bottom: 10px; padding-bottom: 0; }
.lookup .cert.cert-not-found .cert-top b { color: #d33; }

@media (max-width: 1024px) {
	.lookup { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.lookup { padding: 34px; }
}

/* ---------- FAQ page (distinct wrapper — homepage reuses .faq-grid/.faq-item as-is) ---------- */
.faq-page { padding: 60px 0 130px; background: #fff; }

/* ---------- WooCommerce notices (add-to-cart, cart, checkout, etc.) ----------
   .woocommerce-message / .woocommerce-info render as a single <div> — the div
   itself is the notice box. .woocommerce-error renders as <ul><li> (one <li>
   per validation error), so each <li> is its own box and the <ul> is just a
   reset wrapper that stacks them. */
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	list-style: none !important; margin: 0 0 24px !important; padding: 0 !important;
}
.woocommerce-error { display: flex; flex-direction: column; gap: 10px; }
.woocommerce-message::before, .woocommerce-error::before, .woocommerce-info::before { display: none !important; }
.woocommerce-message, .woocommerce-info, .woocommerce-error li {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
	padding: 18px 22px !important; border-radius: 16px; font-family: var(--font-body);
	font-weight: 600; font-size: 14.5px; line-height: 1.5; list-style: none !important;
}
.woocommerce-message { border: 1px solid rgba(26,166,196,.35) !important; background: rgba(26,166,196,.08) !important; color: var(--navy) !important; }
.woocommerce-info { border: 1px solid rgba(23,99,224,.3) !important; background: rgba(23,99,224,.06) !important; color: var(--navy) !important; }
.woocommerce-error li { border: 1px solid rgba(211,51,51,.3) !important; background: rgba(211,51,51,.06) !important; color: #b32626 !important; }
.woocommerce-message a.button, .woocommerce-info a.button, .woocommerce-error li a.button {
	flex-shrink: 0; display: inline-flex; align-items: center; padding: 10px 20px; border-radius: 100px;
	background: var(--navy) !important; color: #fff !important; font-size: 12.5px; font-weight: 700;
	letter-spacing: .02em; white-space: nowrap; transition: transform .3s, background .3s;
}
.woocommerce-message a.button:hover, .woocommerce-info a.button:hover, .woocommerce-error li a.button:hover {
	background: var(--blue) !important; transform: translateY(-2px);
}

/* ---------- shop page (WooCommerce archive-product.php override) ---------- */
.shop-main { padding: 60px 0 130px; background: #fff; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.fpill { padding: 11px 22px; border-radius: 100px; border: 1.5px solid var(--line); font-size: 13.5px; font-weight: 700; color: var(--slate); background: #fff; transition: all .3s; display: inline-block; }
.fpill:hover { border-color: var(--navy); color: var(--navy); }
.fpill.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.fpill .n { opacity: .55; font-size: 11.5px; margin-left: 4px; }
.shop-empty { padding: 80px 0; text-align: center; color: var(--muted); font-weight: 600; }
.shop-main .woocommerce-pagination { margin-top: 50px; text-align: center; }
.shop-main .woocommerce-pagination ul { display: inline-flex; gap: 8px; list-style: none; }
.shop-main .woocommerce-pagination a, .shop-main .woocommerce-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; border-radius: 100px; border: 1.5px solid var(--line); font-size: 13.5px; font-weight: 700; color: var(--slate); }
.shop-main .woocommerce-pagination .current { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---------- single product page (WooCommerce single-product.php override) ---------- */
.breadcrumb { display: flex; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--blue); }
.pd { padding: 150px 0 90px; background: linear-gradient(180deg, var(--ice) 0%, #fff 60%); }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pd-stage {
	position: sticky; top: 120px;
	border-radius: 28px; background: linear-gradient(160deg, #fff, var(--ice));
	border: 1px solid var(--line); min-height: 520px;
	display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pd-stage img { height: 78%; filter: drop-shadow(0 40px 50px rgba(10,37,64,.22)); }
.pd-stage .pstamp { position: absolute; top: 20px; left: 20px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; background: var(--navy); color: #fff; padding: 7px 14px; border-radius: 100px; }
.pd-stage .ppur { position: absolute; top: 20px; right: 20px; font-size: 12px; font-weight: 800; color: var(--blue); background: rgba(255,255,255,.9); border: 1px solid var(--line); padding: 7px 14px; border-radius: 100px; }
.pd-info .cat-label { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); }
.pd-info h1 { font-family: var(--font-display); font-weight: 450; font-size: clamp(34px, 4vw, 54px); line-height: 1.05; margin: 10px 0 14px; letter-spacing: -.01em; }
.pd-info .pd-desc { color: var(--muted); font-size: 15.5px; font-weight: 500; max-width: 480px; }
.pd-price { font-family: var(--font-display); font-size: 42px; font-weight: 500; margin: 26px 0 6px; }
.pd-price ins { text-decoration: none; }
.pd-price del { font-size: 0.6em; font-weight: 400; opacity: .6; margin-right: 8px; }
.pd-ship { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 26px; }
.pd-buy { display: flex; gap: 14px; align-items: center; margin-bottom: 34px; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 100px; background: #fff; }
.qty button { width: 46px; height: 52px; font-size: 20px; color: var(--navy); transition: color .2s; }
.qty button:hover { color: var(--blue); }
.qty .qty-input {
	min-width: 34px; width: 34px; text-align: center; font-size: 16px; font-family: inherit;
	border: none; background: none; color: var(--navy); -moz-appearance: textfield;
}
.qty .qty-input::-webkit-outer-spin-button, .qty .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pd-meta { border-top: 1px solid var(--line); margin-top: 8px; }
.pd-meta .pm { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.pd-meta .pm span { color: var(--muted); font-weight: 600; }
.pd-meta .pm b { font-weight: 800; }
.pd-acc { margin-top: 8px; }
.related { padding: 80px 0 130px; background: #fff; }

/* ---------- cart page (WooCommerce cart/cart.php override) ---------- */
.cart-main { padding: 60px 0 130px; background: #fff; min-height: 40vh; }
.cart-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: start; }
.cart-list { display: grid; gap: 16px; }
.ci { display: grid; grid-template-columns: 96px 1fr auto auto; gap: 20px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; background: #fff; }
.ci .ci-img { width: 96px; height: 96px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--ice), var(--mist)); }
.ci .ci-img img { height: 82%; }
.ci h3 { font-size: 15.5px; font-weight: 800; }
.ci .ci-cat { font-size: 12px; color: var(--muted); font-weight: 600; }
.ci .ci-price { font-family: var(--font-display); font-size: 19px; font-weight: 550; }
.ci .rm { font-size: 12px; color: var(--muted); font-weight: 700; margin-top: 6px; transition: color .2s; background: none; border: none; cursor: pointer; }
.ci .rm:hover { color: #d33; }
.cart-sum { border: 1px solid var(--line); border-radius: 24px; padding: 32px; background: var(--mist); position: sticky; top: 110px; }
.cart-sum h3 { font-family: var(--font-display); font-size: 24px; font-weight: 550; margin-bottom: 20px; }
.cart-sum .row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 10px 0; font-weight: 600; color: var(--slate); }
.cart-sum .row.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 18px; font-size: 18px; font-weight: 800; color: var(--navy); }
.cart-sum .btn { width: 100%; justify-content: center; margin-top: 22px; }
.cart-sum .note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; font-weight: 600; }
.cart-empty { text-align: center; padding: 70px 0; }
.cart-empty .big { font-family: var(--font-display); font-size: 34px; font-weight: 500; margin-bottom: 12px; }
.cart-empty p { color: var(--muted); font-weight: 500; margin-bottom: 28px; }
.free-bar { margin-bottom: 18px; }
.free-bar .fb-txt { font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--slate); }
.free-bar .fb-track { height: 8px; border-radius: 100px; background: #e6ecf5; overflow: hidden; }
.free-bar .fb-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--blue), var(--cyan)); width: 0%; transition: width .6s cubic-bezier(.22,1,.36,1); }

/* ---------- checkout page (WooCommerce checkout/* overrides) ---------- */
.co-main { padding: 60px 0 130px; background: #fff; }
.co-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.co-step { border: 1px solid var(--line); border-radius: 24px; padding: 34px; margin-bottom: 20px; background: #fff; }
.co-step h3 { display: flex; align-items: center; gap: 14px; font-size: 17px; font-weight: 800; margin-bottom: 24px; }
.co-sn {
	flex: none; width: 32px; height: 32px; border-radius: 50%;
	background: var(--navy); color: #fff; font-size: 14px;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-style: italic; font-weight: 400;
}
.ship-opts, .pay-opts { display: grid; gap: 12px; list-style: none; }
.opt {
	border: 1.5px solid var(--line); border-radius: 16px; padding: 18px 20px;
	display: flex; gap: 14px; align-items: center; cursor: pointer;
	transition: border-color .25s, background .25s; list-style: none;
}
.opt:hover { border-color: var(--sky); }
.opt:has(input:checked) { border-color: var(--blue); background: var(--ice); }
.opt input { accent-color: var(--blue); width: 18px; height: 18px; flex: none; }
.opt label { display: flex; gap: 14px; align-items: center; flex: 1; cursor: pointer; }
.opt .opt-body { flex: 1; }
.opt b { font-size: 14.5px; display: block; }
.opt small { font-size: 12.5px; color: var(--muted); font-weight: 600; display: block; margin-top: 2px; }
.opt .opt-price { font-weight: 800; font-size: 14px; white-space: nowrap; }
.opt .payment_box.pay-note {
	flex-basis: 100%; margin-top: 14px; font-size: 13.5px; color: var(--slate);
	background: var(--mist); border: 1px solid var(--line); border-radius: 14px;
	padding: 16px 18px; font-weight: 600; line-height: 1.6;
}
.opt .payment_box.pay-note p { margin: 0; }
.opt .payment_box.pay-note p + p { margin-top: 10px; }
/* Order summary (.cart-sum) and the payment box (#payment, holding just
   the Place order button once assets/js/checkout.js relocates the
   payment-method radios out of it) are two separate WooCommerce AJAX
   fragments, refreshed independently — but should still read as one
   continuous card. They're plain block siblings in .co-sum-wrap, so
   margin/border alone (no grid gap involved) is enough to fuse them:
   drop the touching borders/corners and let them sit flush. Scoped to
   .co-sum-wrap so the standalone Cart page's identical .cart-sum card is
   untouched. */
.co-sum-wrap .cart-sum { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom: none; padding-bottom: 16px; }
.co-sum-wrap #payment.woocommerce-checkout-payment {
	border: 1px solid var(--line); border-top: none; border-radius: 24px; border-top-left-radius: 0; border-top-right-radius: 0;
	background: var(--mist); padding: 8px 32px 32px; margin: 0;
}
.co-sum-wrap #payment .btn { width: 100%; justify-content: center; }
.co-items { margin-bottom: 4px; }
.ci-mini { display: flex; gap: 14px; align-items: center; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.ci-mini .mi-img {
	flex: none; width: 52px; height: 52px; border-radius: 12px;
	background: linear-gradient(160deg, var(--ice), var(--mist));
	display: flex; align-items: center; justify-content: center; position: relative;
}
.ci-mini .mi-img img { height: 80%; }
.ci-mini .mi-img .mi-qty {
	position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; border-radius: 100px;
	background: var(--navy); color: #fff; font-size: 11px; font-weight: 800;
	display: flex; align-items: center; justify-content: center; padding: 0 5px;
}
.ci-mini .mi-name { flex: 1; font-size: 13.5px; font-weight: 700; line-height: 1.35; }
.ci-mini .mi-price { font-weight: 800; font-size: 14px; white-space: nowrap; }
.checkout_coupon { margin: 18px 0 6px; }
.promo { display: flex; gap: 8px; }
.promo input {
	flex: 1; padding: 13px 18px; border-radius: 100px; border: 1.5px solid var(--line);
	font-family: inherit; font-size: 13px; outline: none; text-transform: uppercase;
}
.promo input:focus { border-color: var(--blue); }
.promo button {
	padding: 13px 22px; border-radius: 100px; background: var(--navy); color: #fff;
	font-size: 13px; font-weight: 700; transition: background .25s;
}
.promo button:hover { background: var(--blue); }
.checkout_coupon.processing { opacity: .6; pointer-events: none; }
.coupon-notices:empty { display: none; }
.coupon-notices .woocommerce-message, .coupon-notices .woocommerce-error { margin: 10px 0 0 !important; }
.row.discount b { color: var(--cyan); }
.co-secure {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 16px;
}
.woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper { margin: 16px 0; font-size: 13px; }
/* order confirmation */
.order-done { max-width: 620px; margin: 0 auto; text-align: center; padding: 30px 0 0; }
.order-done .ok-ic {
	width: 78px; height: 78px; border-radius: 50%;
	background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff;
	display: flex; align-items: center; justify-content: center; margin: 0 auto 28px;
}
.order-done h2 { font-family: var(--font-display); font-weight: 450; font-size: clamp(32px, 4vw, 48px); line-height: 1.05; margin-bottom: 14px; }
.order-done h2 em { font-style: italic; color: var(--blue); }
.order-done .od-sub { color: var(--muted); font-size: 15px; font-weight: 500; max-width: 440px; margin: 0 auto 30px; }
.order-done .od-num {
	display: inline-block; font-family: var(--font-display); font-size: 20px;
	border: 1.5px dashed var(--sky); border-radius: 100px; padding: 12px 30px;
	color: var(--blue); margin-bottom: 34px; letter-spacing: .04em;
}
.order-done .row { max-width: 320px; margin: 0 auto; }
.order-done .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1024px) {
	.pd-grid, .cart-grid, .co-grid { grid-template-columns: 1fr; }
	.co-sum-wrap { order: -1; }
	.pd-stage { position: static; min-height: 420px; }
	.cart-sum { position: static; }
}

/* ---------- scroll reveal (animated in by GSAP ScrollTrigger.batch) ---------- */
.reveal { opacity: 0; transform: translateY(40px); }
.no-js .reveal, .reduced .reveal { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
	.prod-grid { grid-template-columns: repeat(2, 1fr); }
	.cat-grid { grid-template-columns: 1fr; }
	.cat { min-height: 300px; }
	.creds-grid { grid-template-columns: repeat(2, 1fr); }
	.hero-grid { grid-template-columns: 1fr; gap: 10px; }
	.hero-visual { min-height: 420px; }
	.coa-grid { grid-template-columns: 1fr; gap: 60px; }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.ban-grid { grid-template-columns: 1fr; }
	.faq-grid { grid-template-columns: 1fr; gap: 40px; }
	.foot-top { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.nav-links { display: none; }
	.nav-links.is-open { display: flex; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; background: #fff; border-radius: 24px; padding: 12px; box-shadow: 0 20px 50px rgba(10,37,64,.15); gap: 4px; }
	.menu-toggle { display: flex; }
	.prod-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: 1fr; }
	.creds-grid { grid-template-columns: 1fr; }
	.ci { grid-template-columns: 72px 1fr; grid-template-rows: auto auto; }
	.ci .ci-img { width: 72px; height: 72px; }
	.hero h1 { font-size: 15vw; }
	.ban { padding: 34px; min-height: 340px; }
	.ban-blue img { opacity: .35; }
}
