/* =====================================================================
   A Seal Webstore — design system
   Contemporary, corporate, spacious. Inter + a refined navy/red palette.
   ===================================================================== */

:root {
	--navy: #0A1F3D;
	--navy-700: #14315c;
	--navy-900: #081426;
	--red: #C8102E;
	--red-600: #a50d26;
	--btn-ink: #fbf4f1; /* off-white text for solid/active buttons */

	--ink: #0f1e34;
	--text: #3a465b;
	--muted: #6b7890;

	--bg: #f5f7fb;
	--surface: #ffffff;
	--line: #e5e9f0;

	--r: 14px;
	--r-sm: 10px;

	--shadow-sm: 0 1px 2px rgba(10, 31, 61, .06);
	--shadow: 0 4px 14px rgba(10, 31, 61, .08), 0 1px 3px rgba(10, 31, 61, .06);
	--shadow-lg: 0 24px 60px rgba(10, 31, 61, .16);

	--maxw: 1160px;
	--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.asw {
	margin: 0;
	font-family: var(--font);
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100vh; display: flex; flex-direction: column; /* footer anchors to the bottom */
}
.asw-main { flex: 1 0 auto; }
.asw-footer { flex-shrink: 0; }
body.asw a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ----- Top bar (light, so the A Seal logo reads crisply) ----- */
.asw-topbar { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.asw-topbar__inner {
	max-width: var(--maxw); margin: 0 auto; height: 78px; padding: 0 28px;
	display: flex; align-items: center; justify-content: space-between;
}
.asw-brand { display: flex; align-items: center; gap: 12px; }
.asw-brand__logo { height: 42px; width: auto; }
.asw-brand__tag {
	font-size: 17px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
	color: var(--navy); padding-left: 16px; border-left: 2px solid var(--line); line-height: 1;
}
.asw-dot { color: var(--red); }

/* ----- Buttons ----- */
.asw-btn {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: inherit; font-weight: 600; font-size: 15px; line-height: 1;
	padding: 12px 20px; border-radius: var(--r-sm); border: 1.5px solid transparent;
	cursor: pointer; transition: background .16s ease, transform .06s ease, box-shadow .16s ease, border-color .16s ease;
	white-space: nowrap;
}
.asw-btn--lg { padding: 15px 26px; font-size: 16px; border-radius: 12px; }
.asw-btn--primary { background: var(--red); color: var(--btn-ink); box-shadow: 0 6px 16px rgba(200, 16, 46, .24); }
.asw-btn--primary:hover { background: var(--red-600); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(200, 16, 46, .30); }
.asw-btn--outline { background: #fff; color: var(--navy); border-color: var(--line); }
.asw-btn--outline:hover { border-color: var(--navy); }
.asw-btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .16); padding: 10px 18px; }
.asw-btn--ghost:hover { background: rgba(255, 255, 255, .16); }

/* ----- Hero ----- */
.asw-hero {
	position: relative; overflow: hidden;
	background:
		radial-gradient(120% 120% at 92% -10%, rgba(200, 16, 46, .10), transparent 42%),
		radial-gradient(90% 90% at -5% -10%, rgba(10, 31, 61, .07), transparent 46%),
		var(--bg);
}
.asw-hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 100px 28px 76px; }
.asw-eyebrow { margin: 0 0 18px; color: var(--red); font-weight: 700; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; }
.asw-hero__title { margin: 0 0 20px; font-size: clamp(38px, 6vw, 66px); line-height: 1.04; letter-spacing: -.03em; font-weight: 800; color: var(--ink); }
.asw-hero__sub { margin: 0 0 34px; font-size: clamp(17px, 2.1vw, 21px); color: var(--muted); max-width: 40ch; }
.asw-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ----- Feature cards ----- */
.asw-features { max-width: var(--maxw); margin: 0 auto; padding: 24px 28px 100px; }
.asw-features__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.asw-feature {
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
	padding: 26px 24px; box-shadow: var(--shadow-sm);
	transition: transform .18s ease, box-shadow .18s ease;
}
.asw-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.asw-feature__icon {
	width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
	background: rgba(10, 31, 61, .06); color: var(--navy); margin-bottom: 16px;
}
.asw-feature__icon svg { width: 24px; height: 24px; }
.asw-feature h3 { margin: 0 0 6px; font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.asw-feature p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ----- Footer ----- */
.asw-footer { background: var(--navy-900); color: rgba(255, 255, 255, .6); }
.asw-footer__inner {
	max-width: var(--maxw); margin: 0 auto; padding: 26px 28px;
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px;
}

/* ----- Generic placeholder (routes not yet built) ----- */
.asw-placeholder { max-width: var(--maxw); margin: 0 auto; padding: 80px 28px; text-align: center; }
.asw-placeholder h1 { font-size: 30px; color: var(--ink); letter-spacing: -.02em; margin: 0 0 10px; }
.asw-placeholder p { color: var(--muted); }

@media (max-width: 640px) {
	.asw-topbar__inner { padding: 0 18px; }
	.asw-hero__inner { padding: 66px 18px 48px; }
	.asw-features { padding: 8px 18px 64px; }
	.asw-footer__inner { padding: 22px 18px; }
}

/* ----- Button variants ----- */
.asw-btn--block { width: 100%; justify-content: center; }
.asw-btn--sm { padding: 9px 16px; font-size: 14px; }

/* ----- Form fields ----- */
.asw-field { margin: 0 0 16px; }
.asw-field label { display: block; font-weight: 600; font-size: 13px; color: var(--ink); margin: 0 0 7px; }
.asw-field input {
	width: 100%; padding: 14px 15px; border: 1px solid #d9d5cb; border-radius: 10px;
	font-family: inherit; font-size: 15px; background: #fff; box-sizing: border-box;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.asw-field input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10, 31, 61, .12); }
.asw-code { letter-spacing: 10px; font-size: 24px; font-weight: 700; text-align: center; }
.asw-check { display: inline-flex; align-items: center; gap: 8px; color: var(--text); cursor: pointer; }
.asw-linkbtn { background: none; border: 0; color: var(--navy); text-decoration: underline; cursor: pointer; font-family: inherit; font-size: 14px; padding: 0; }

/* ----- Notices ----- */
.asw-notice { border-radius: 10px; padding: 12px 15px; margin: 0 0 20px; font-size: 14px; border: 1px solid; }
.asw-notice--error { background: #fdecef; border-color: #f3c0c9; color: #8a1023; }

/* ----- Split-panel auth (login / 2FA) ----- */
.asw-auth { display: flex; min-height: 100vh; width: 100%; background: #faf7f1; }
.asw-auth__brand {
	flex: 1 1 46%; padding: 56px 52px; color: #fff; display: flex; flex-direction: column; justify-content: flex-end;
	background:
		radial-gradient(120% 90% at 85% 8%, rgba(200, 16, 46, .26), transparent 46%),
		linear-gradient(155deg, #0e2750 0%, #0A1F3D 60%, #07162c 100%);
}
.asw-auth__tagline { margin: 0; font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -.01em; }
.asw-auth__brandfoot { margin: 26px 0 0; color: rgba(255, 255, 255, .6); font-size: 14px; max-width: 34ch; }

.asw-auth__panel { flex: 1 1 54%; display: flex; align-items: center; justify-content: center; padding: 40px; }
.asw-auth__inner { width: 100%; max-width: 390px; }
.asw-auth__logo { height: 74px; width: auto; margin: 0 0 16px; }
.asw-auth__eyebrow { margin: 0 0 10px; color: var(--red); font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.asw-auth__title { margin: 0 0 6px; font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 40px; line-height: 1.05; color: var(--ink); letter-spacing: -.01em; }
.asw-auth__sub { margin: 0 0 26px; color: var(--muted); font-size: 15.5px; }
.asw-auth__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 2px 0 22px; font-size: 14px; }
.asw-auth__forgot { color: var(--navy); text-decoration: underline; white-space: nowrap; }
.asw-auth__foot { margin: 22px 0 0; color: #a49d8b; font-size: 12.5px; }
.asw-auth__resend { margin-top: 16px; text-align: center; }

/* ----- App page + info card (account placeholder) ----- */
.asw-page { max-width: var(--maxw); margin: 0 auto; padding: 64px 28px; }
.asw-page__inner { max-width: 720px; }
.asw-page__title { margin: 8px 0 12px; font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(30px, 4vw, 44px); color: var(--ink); letter-spacing: -.01em; }
.asw-page__lead { color: var(--muted); font-size: 17px; margin: 0 0 30px; max-width: 56ch; }
.asw-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); overflow: hidden; max-width: 520px; }
.asw-card__row { display: flex; justify-content: space-between; gap: 16px; padding: 15px 22px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.asw-card__row:last-child { border-bottom: 0; }
.asw-card__row span { color: var(--muted); }
.asw-card__row strong { color: var(--ink); }

@media (max-width: 820px) {
	.asw-auth { flex-direction: column; min-height: 0; }
	.asw-auth__brand { padding: 40px 30px; min-height: 220px; }
	.asw-auth__panel { padding: 36px 26px 56px; }
}

/* =====================================================================
   Store — nav, catalogue, basket, checkout, order, admin (v0.3)
   ===================================================================== */

/* ----- Topbar nav + basket ----- */
.asw-topbar__inner { gap: 20px; }
.asw-topnav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: flex-end; margin: 0 18px; }
.asw-navlink { position: relative; padding: 10px 2px; margin: 0 10px; font-size: 14.5px; font-weight: 500; color: var(--text); white-space: nowrap; }
.asw-navlink::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2.5px; border-radius: 2px;
	background: var(--red); transform: scaleX(0); transform-origin: left center; transition: transform .25s ease;
}
.asw-navlink:hover { color: var(--ink); }
.asw-navlink:hover::after { transform: scaleX(1); }
.asw-navlink.is-active { color: var(--ink); font-weight: 700; }
.asw-navlink.is-active::after { transform: scaleX(1); }
.asw-topbar__actions { display: flex; align-items: center; gap: 14px; }
.asw-basket { position: relative; display: inline-flex; color: var(--navy); padding: 6px; }
.asw-basket svg { width: 24px; height: 24px; }
.asw-basket__badge { position: absolute; top: -4px; right: -6px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* ----- Flash notices ----- */
.asw-flash { border-bottom: 1px solid var(--line); }
.asw-flash__inner { max-width: var(--maxw); margin: 0 auto; padding: 12px 28px; font-size: 14.5px; font-weight: 600; }
.asw-flash--ok { background: #eaf6ed; color: #17612f; }
.asw-flash--err { background: #fdecef; color: #8a1023; }

/* ----- Shared button variants ----- */
.asw-btn--ghost-dark { background: rgba(10,31,61,.05); color: var(--navy); border-color: transparent; }
.asw-btn--ghost-dark:hover { background: rgba(10,31,61,.1); }

/* ----- Shop head + tabs ----- */
.asw-shop, .asw-page { max-width: var(--maxw); margin: 0 auto; padding: 44px 28px 90px; }
.asw-shop__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin: 0 0 22px; }
.asw-shop__title, .asw-page__title { margin: 4px 0 0; font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(30px, 4vw, 44px); color: var(--ink); letter-spacing: -.01em; }
.asw-shop__count { color: var(--muted); font-size: 14px; font-weight: 600; }
.asw-tabs { display: flex; gap: 6px; flex-wrap: wrap; border-bottom: 1px solid var(--line); margin: 0 0 26px; }
.asw-tab { position: relative; padding: 12px 16px; font-weight: 600; font-size: 15px; color: var(--muted); }
.asw-tab::after {
	content: ""; position: absolute; left: 12px; right: 12px; bottom: -1px; height: 2.5px; border-radius: 2px;
	background: var(--red); transform: scaleX(0); transform-origin: left center; transition: transform .25s ease;
}
.asw-tab:hover { color: var(--ink); }
.asw-tab:hover::after, .asw-tab.is-active::after { transform: scaleX(1); }
.asw-tab.is-active { color: var(--navy); }
.asw-tab.is-empty { opacity: .4; }
.asw-tab__n { font-size: 12px; color: var(--muted); font-weight: 700; }

/* ----- Shop layout ----- */
.asw-shop__grid { display: grid; grid-template-columns: 268px 1fr; gap: 28px; align-items: start; }
.asw-filters { position: sticky; top: 94px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 18px; box-shadow: var(--shadow-sm); }
.asw-filters__h { margin: 20px 0 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.asw-facet { list-style: none; margin: 0; padding: 0; }
.asw-facet a { display: flex; justify-content: space-between; gap: 8px; padding: 6px 8px; border-radius: 7px; font-size: 13.5px; color: var(--text); }
.asw-facet a:hover { background: rgba(10,31,61,.05); }
.asw-facet a.is-active { background: var(--navy); color: #fff; }
.asw-facet a span { color: inherit; opacity: .6; font-size: 12px; }
.asw-check--block { display: flex; margin: 6px 0 14px; font-size: 14px; }

/* ----- Product grid + cards ----- */
.asw-prodgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(216px, 1fr)); gap: 18px; }
.asw-prod { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .16s ease, box-shadow .16s ease; }
.asw-prod:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.asw-prod__head { position: relative; display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: linear-gradient(135deg, #f7f9fc, #eef2f8); border-bottom: 1px solid var(--line); }
.asw-prod__swatch { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); flex: none; }
.asw-prod__meta { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.asw-prod__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.asw-prod__title { margin: 0; font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.asw-prod__dims { margin: 0; font-size: 13px; color: var(--text); }
.asw-prod__ref { margin: 0; font-size: 11.5px; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.asw-prod__price { margin: 8px 0 4px; }
.asw-prod__add { display: flex; gap: 8px; margin-top: auto; }
.asw-qty { width: 62px; padding: 9px 8px; border: 1px solid #d9d5cb; border-radius: 8px; font-family: inherit; font-size: 14px; text-align: center; }
.asw-prod__add .asw-btn { flex: 1; justify-content: center; }

/* ----- Price + badges + stock ----- */
.asw-price__now { font-weight: 800; color: var(--ink); font-size: 15px; }
.asw-price__was { text-decoration: line-through; color: var(--muted); font-size: 13px; }
.asw-poa { font-weight: 700; color: var(--muted); font-size: 14px; }
.asw-badge { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 3px 7px; border-radius: 6px; }
.asw-badge--new { background: var(--navy); color: #fff; }
.asw-badge--sale { background: var(--red); color: #fff; }
.asw-badge--disc { background: #e8eefb; color: var(--navy); }
.asw-prod__head .asw-badge { position: absolute; top: 10px; right: 10px; }
.asw-stock { margin: 2px 0; font-size: 12.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.asw-stock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.asw-stock--uk { color: #17843a; }
.asw-stock--cn { color: #b7791f; }
.asw-stock--mto { color: var(--muted); }

/* ----- Pager ----- */
.asw-pager { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 34px 0 0; }
.asw-pager__now { font-size: 14px; color: var(--muted); font-weight: 600; }

/* ----- Empty states ----- */
.asw-empty { text-align: center; padding: 40px 20px; border: 1px dashed var(--line); border-radius: var(--r); background: var(--surface); }
.asw-empty--page { max-width: 560px; margin: 30px auto; padding: 60px 24px; }
.asw-empty h3 { margin: 0 0 8px; color: var(--ink); font-size: 20px; }
.asw-empty p { color: var(--muted); margin: 0 0 18px; }

/* ----- Product detail ----- */
.asw-crumb { color: var(--muted); font-size: 13px; margin: 0 0 18px; }
.asw-crumb a { color: var(--navy); text-decoration: underline; }
.asw-crumb span { padding: 0 6px; }
.asw-pdp { max-width: var(--maxw); margin: 0 auto; padding: 36px 28px 90px; }
.asw-pdp__grid { display: grid; grid-template-columns: 420px 1fr; gap: 44px; align-items: start; }
.asw-pdp__visual { position: relative; aspect-ratio: 1/1; border-radius: var(--r); border: 1px solid var(--line); background: radial-gradient(circle at 50% 40%, #fff, #eef2f8); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.asw-pdp__ring { width: 56%; aspect-ratio: 1/1; border-radius: 50%; background: var(--sw); box-shadow: inset 0 0 0 14px rgba(255,255,255,.55), inset 0 0 40px rgba(0,0,0,.25); }
.asw-pdp__visual .asw-badge { position: absolute; top: 16px; left: 16px; }
.asw-pdp__title { margin: 4px 0 12px; font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 34px; color: var(--ink); letter-spacing: -.01em; }
.asw-pdp__desc { color: var(--text); margin: 0 0 16px; }
.asw-pdp__price { margin: 14px 0; font-size: 20px; }
.asw-pdp__add { display: flex; gap: 12px; align-items: center; margin: 18px 0 24px; }
.asw-specs { width: 100%; border-collapse: collapse; margin-top: 8px; }
.asw-specs th, .asw-specs td { text-align: left; padding: 10px 4px; border-bottom: 1px solid var(--line); font-size: 14px; }
.asw-specs th { color: var(--muted); font-weight: 600; width: 40%; }
.asw-specs td { color: var(--ink); font-weight: 600; }

/* ----- Basket + tables ----- */
.asw-basketgrid { display: grid; grid-template-columns: 1fr 336px; gap: 30px; align-items: start; }
.asw-linetable { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.asw-linetable th, .asw-linetable td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: middle; }
.asw-linetable thead th { background: #f7f9fc; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.asw-linetable tbody tr:last-child td { border-bottom: 0; }
.asw-linetable .num { text-align: right; }
.asw-linetable__name { display: block; font-weight: 700; color: var(--ink); }
.asw-linetable__sub { display: block; font-size: 12px; color: var(--muted); font-family: ui-monospace, Menlo, monospace; }
.asw-basket__actions { display: flex; gap: 10px; margin-top: 16px; }
.asw-summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow-sm); position: sticky; top: 88px; }
.asw-summary h3 { margin: 0 0 14px; font-size: 17px; color: var(--ink); }
.asw-summary__items { list-style: none; margin: 0 0 14px; padding: 0 0 14px; border-bottom: 1px solid var(--line); }
.asw-summary__items li { display: flex; justify-content: space-between; gap: 10px; font-size: 13.5px; padding: 4px 0; color: var(--text); }
.asw-summary__row { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; font-size: 14.5px; color: var(--text); }
.asw-summary__row--save strong { color: #17843a; }
.asw-summary__row--total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; font-size: 18px; }
.asw-summary__row--total strong { color: var(--ink); }
.asw-summary .asw-btn { margin-top: 14px; }
.asw-summary__note { margin: 12px 0 0; font-size: 12px; color: var(--muted); }

/* ----- Checkout ----- */
.asw-steps { display: flex; list-style: none; gap: 6px; margin: 0 0 26px; padding: 0; flex-wrap: wrap; }
.asw-steps li { display: flex; align-items: center; gap: 8px; padding: 8px 16px 8px 8px; border-radius: 30px; background: var(--surface); border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; color: var(--muted); }
.asw-steps li span { width: 22px; height: 22px; border-radius: 50%; background: #e5e9f0; color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: 12px; }
.asw-steps li.is-done { color: var(--ink); } .asw-steps li.is-done span { background: #17843a; color: #fff; }
.asw-steps li.is-current { color: var(--navy); border-color: var(--navy); } .asw-steps li.is-current span { background: var(--red); color: #fff; }
.asw-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; box-shadow: var(--shadow-sm); margin: 0 0 20px; }
.asw-block--narrow { max-width: 520px; }
.asw-block h3 { margin: 0 0 14px; font-size: 17px; color: var(--ink); }
.asw-block__head { display: flex; justify-content: space-between; align-items: baseline; }
.asw-h { margin: 30px 0 12px; font-size: 17px; color: var(--ink); }
.asw-muted { color: var(--muted); font-size: 14px; }
.asw-field2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.asw-field3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.asw-field textarea { width: 100%; padding: 12px 14px; border: 1px solid #d9d5cb; border-radius: 10px; font-family: inherit; font-size: 15px; }
.asw-field select { width: 100%; padding: 13px 14px; border: 1px solid #d9d5cb; border-radius: 10px; font-family: inherit; font-size: 15px; background: #fff; }
.asw-addrs { display: grid; gap: 10px; }
.asw-addr { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; font-size: 14px; }
.asw-addr:hover { border-color: var(--navy); }
.asw-addr input { margin-top: 3px; }

/* ----- Order acknowledgement / print ----- */
.asw-order { max-width: 900px; margin: 0 auto; padding: 36px 28px 90px; }
.asw-order__hero { display: flex; gap: 18px; align-items: center; background: linear-gradient(135deg, #eaf6ed, #f5faf6); border: 1px solid #cfe6d5; border-radius: var(--r); padding: 22px 24px; margin: 0 0 26px; }
.asw-order__tick { width: 46px; height: 46px; border-radius: 50%; background: #17843a; color: #fff; font-size: 24px; display: flex; align-items: center; justify-content: center; flex: none; }
.asw-order__hero h1 { margin: 0 0 4px; font-size: 22px; color: var(--ink); }
.asw-order__hero p { margin: 0; color: var(--text); font-size: 14.5px; }
.asw-doc { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 34px; box-shadow: var(--shadow-sm); }
.asw-doc__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; border-bottom: 2px solid var(--navy); padding-bottom: 20px; margin-bottom: 22px; }
.asw-doc__logo { height: 42px; }
.asw-doc__meta { text-align: right; }
.asw-doc__meta h2 { margin: 0 0 6px; font-size: 18px; color: var(--navy); }
.asw-doc__meta p { margin: 2px 0; font-size: 13px; color: var(--text); }
.asw-doc__addrs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.asw-doc__addrs h4 { margin: 0 0 6px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.asw-doc__addrs p { margin: 0; font-size: 13.5px; color: var(--ink); line-height: 1.5; }
.asw-doc__lines { width: 100%; border-collapse: collapse; }
.asw-doc__lines th, .asw-doc__lines td { padding: 10px 8px; text-align: left; border-bottom: 1px solid var(--line); font-size: 13px; }
.asw-doc__lines thead th { color: var(--muted); text-transform: uppercase; font-size: 11px; letter-spacing: .05em; }
.asw-doc__lines .num { text-align: right; }
.asw-doc__lines tfoot td { border-bottom: 0; font-weight: 600; color: var(--text); }
.asw-doc__grand td { font-size: 16px; font-weight: 800; color: var(--ink); border-top: 2px solid var(--navy); }
.asw-doc__notes { margin-top: 20px; }
.asw-doc__notes h4 { margin: 0 0 4px; font-size: 12px; text-transform: uppercase; color: var(--muted); }
.asw-doc__foot { margin: 26px 0 0; font-size: 11.5px; color: var(--muted); text-align: center; }
.asw-order__actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* ----- Status pills ----- */
.asw-status { font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: capitalize; }
.asw-status--received, .asw-status--active { background: #e8eefb; color: var(--navy); }
.asw-status--pending { background: #fff4e5; color: #9a6400; }

/* ----- Admin ----- */
.asw-statgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(126px, 1fr)); gap: 14px; margin: 0 0 24px; }
.asw-stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 15px; box-shadow: var(--shadow-sm); }
.asw-stat span { display: block; font-size: 12px; color: var(--muted); margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.asw-stat strong { font-size: 24px; font-weight: 800; color: var(--ink); font-family: 'Fraunces', Georgia, serif; white-space: nowrap; }
.asw-quick { display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 30px; }
.asw-importgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 10px; }
.asw-file { display: block; margin: 0 0 14px; font-size: 13px; width: 100%; min-width: 0; max-width: 100%; }

/* ----- Account ----- */
.asw-acctgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.asw-addrlist { list-style: none; margin: 0 0 12px; padding: 0; }
.asw-addrlist li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.asw-details { margin-top: 10px; }
.asw-details summary { cursor: pointer; }

/* ----- Responsive ----- */
@media (max-width: 900px) {
	.asw-shop__grid, .asw-basketgrid, .asw-pdp__grid, .asw-acctgrid, .asw-importgrid, .asw-doc__addrs { grid-template-columns: 1fr; }
	.asw-filters, .asw-summary { position: static; }
	.asw-pdp__visual { max-width: 360px; }
}
@media (max-width: 720px) {
	.asw-topnav { display: none; }
	.asw-shop, .asw-page, .asw-pdp, .asw-order { padding-left: 18px; padding-right: 18px; }
	.asw-field2, .asw-field3 { grid-template-columns: 1fr; }
}

/* ----- Print: only the order document ----- */
@media print {
	.asw-topbar, .asw-footer, .asw-flash, .asw-noprint, .asw-order__hero { display: none !important; }
	body.asw { background: #fff; }
	.asw-order { padding: 0; max-width: none; }
	.asw-doc { border: 0; box-shadow: none; padding: 0; }
}

/* Solid button text stays off-white even as an <a> (beats `body.asw a { color: inherit }`). */
body.asw a.asw-btn--primary,
body.asw a.asw-btn--primary:hover,
body.asw a.asw-btn--ghost,
body.asw a.asw-btn--ghost:hover { color: var(--btn-ink); }

/* ----- Catalogue: dense table view ----- */
.asw-cattable__wrap { overflow-x: auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); }
.asw-cattable { width: 100%; border-collapse: collapse; min-width: 720px; }
.asw-cattable thead th { background: #f7f9fc; text-align: left; white-space: nowrap; padding: 12px 18px; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); border-bottom: 1px solid var(--line); }
.asw-cattable th.num { text-align: right; }
.asw-cattable tbody td { padding: 11px 18px; border-bottom: 1px solid var(--line); font-size: 13.5px; vertical-align: middle; }
.asw-cattable tbody tr:last-child td { border-bottom: 0; }
.asw-cattable tbody tr:hover { background: rgba(10, 31, 61, .028); }
.asw-cattable__prod { display: flex; align-items: center; gap: 10px; min-width: 180px; }
.asw-cattable__swatch { width: 14px; height: 14px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); flex: none; }
.asw-cattable__nm { display: flex; flex-direction: column; gap: 3px; line-height: 1.2; }
.asw-cattable__nmrow { display: flex; align-items: center; gap: 8px; }
.asw-cattable__prod strong { color: var(--ink); font-weight: 700; font-size: 13.5px; }
.asw-cattable__prod span { color: var(--muted); font-size: 10.5px; text-transform: uppercase; letter-spacing: .04em; }
.asw-cattable__size { white-space: nowrap; font-variant-numeric: tabular-nums; color: var(--text); font-weight: 600; }
.asw-cattable__ref { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; color: var(--muted); white-space: nowrap; }
.asw-cattable__list, .asw-cattable__mine { white-space: nowrap; font-variant-numeric: tabular-nums; }
.asw-cattable__addcol { text-align: right; width: 150px; }
.asw-cattable__add form { display: flex; gap: 6px; justify-content: flex-end; align-items: center; }
.asw-cattable__add .asw-qty { width: 48px; padding: 5px 5px; }
.asw-cattable__add .asw-btn { padding: 6px 14px; font-size: 13px; }

/* Compact stock indicator for table rows */
.asw-dotstock { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.asw-dotstock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex: none; }
.asw-dotstock--uk { color: #17843a; }
.asw-dotstock--cn { color: #b7791f; }
.asw-dotstock--mto { color: var(--muted); }

.asw-pager { justify-content: space-between; }
.asw-pager__range { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.asw-pager__ctrls { display: inline-flex; align-items: center; gap: 14px; }

@media (max-width: 720px) {
	.asw-pager { flex-direction: column; gap: 12px; align-items: stretch; }
}

/* ----- Dual stock cells (catalogue table) ----- */
.asw-stockcell { font-variant-numeric: tabular-nums; font-weight: 700; white-space: nowrap; }
.asw-stockcell--uk { color: #17843a; }
.asw-stockcell--cn { color: #b7791f; }
.asw-stockcell--zero { color: #c2c8d2; font-weight: 500; }
.asw-filters__h--tight { margin-top: 14px; }

/* ----- Admin: linkable stat cards + variance grid ----- */
.asw-importgrid { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.asw-importgrid .asw-block { display: flex; flex-direction: column; margin-bottom: 0; min-width: 0; }
.asw-importgrid form, .asw-importgrid .asw-exportwrap { margin-top: auto; }
.asw-exportwrap { display: flex; flex-direction: column; gap: 10px; }
.asw-exportinc { display: flex; font-size: 12.5px; margin: 2px 0 8px; }
.asw-btn--navy { background: var(--navy); color: var(--btn-ink); border-color: var(--navy); box-shadow: 0 4px 12px rgba(10, 31, 61, .24); }
.asw-btn--navy:hover { background: var(--navy-700); transform: translateY(-1px); }
.asw-importgrid--half { grid-template-columns: 1fr 1fr; }
@media (max-width: 1024px) { .asw-importgrid { grid-template-columns: 1fr 1fr; } .asw-importgrid .asw-block { margin-bottom: 0; } }
@media (max-width: 640px) { .asw-importgrid, .asw-importgrid--half { grid-template-columns: 1fr; } }
.asw-stat--link { display: block; transition: transform .14s ease, box-shadow .14s ease; }
.asw-stat--link:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.asw-stat--link.is-active { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(10,31,61,.12); }


/* ----- Catalogue table -> stacked cards on phones (no horizontal scroll) ----- */
@media (max-width: 720px) {
	.asw-cattable__wrap { overflow-x: visible; border: 0; background: transparent; box-shadow: none; max-width: 100%; }
	.asw-cattable { display: block; width: 100%; min-width: 0; }
	.asw-cattable thead { display: none; }
	.asw-cattable tbody, .asw-cattable tr, .asw-cattable td { display: block; }
	.asw-cattable__prod { min-width: 0; }
	.asw-cattable__size { white-space: normal; }
	.asw-cattable tr { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); padding: 6px 16px 14px; margin: 0 0 14px; }
	.asw-cattable tbody tr:hover { background: var(--surface); }
	.asw-cattable td { padding: 0; border: 0; }

	/* Product name = card header */
	.asw-cattable__prod { padding: 10px 0 12px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
	.asw-cattable__prod .asw-cattable__nm strong { font-size: 15px; }

	/* Label : value rows */
	.asw-cattable td[data-label] { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 8px 0; border-bottom: 1px solid var(--line); text-align: right; }
	.asw-cattable td[data-label]::before { content: attr(data-label); color: var(--muted); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; text-align: left; }
	.asw-cattable td.asw-cattable__ref { font-size: 12px; word-break: break-all; }
	.asw-cattable td[data-label].asw-stockcell--zero::before,
	.asw-cattable td[data-label].asw-cattable__mine::before { align-self: center; }

	/* Add form = full-width action at the foot of the card */
	.asw-cattable__add { padding-top: 14px; }
	.asw-cattable__add form { justify-content: stretch; gap: 10px; }
	.asw-cattable__add .asw-qty { width: 72px; }
	.asw-cattable__add .asw-btn { flex: 1; justify-content: center; padding: 11px 16px; }
}

@media (max-width: 720px) {
	.asw-shop__head { flex-direction: column; align-items: flex-start; gap: 4px; }
	.asw-shop__count { white-space: nowrap; }
	.asw-shop, .asw-page { overflow-x: hidden; }
}

/* Required-field marker */
.asw-req { color: var(--red); font-weight: 700; }

/* Checkout review step — 3-column summary */
.asw-review3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.asw-review3 p { margin: 0; font-size: 13.5px; color: var(--ink); line-height: 1.55; }
.asw-review__h { margin: 0 0 6px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
@media (max-width: 720px) { .asw-review3 { grid-template-columns: 1fr; } }

/* Filter drawer: dimension inputs (ID / OD / L) side by side */
.asw-dims { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 4px 0 2px; }
.asw-dims .asw-field { margin-bottom: 10px; }
.asw-dims .asw-field label { font-size: 11.5px; }
.asw-dims .asw-field input { padding: 10px 10px; font-size: 14px; }

/* Order-row actions: View link + Reorder button side by side */
.asw-orderactions { white-space: nowrap; }
.asw-orderactions form { display: inline-block; margin-left: 10px; }

/* ----- Aligned price columns ----- */
.asw-cattable__list { color: var(--muted); }
.asw-cattable__list--was { text-decoration: line-through; }
.asw-cattable__mine { font-weight: 800; color: var(--ink); font-size: 14px; }
.asw-cattable__nmrow .asw-badge {
	flex: none; font-size: 9px; font-weight: 700; letter-spacing: .05em;
	padding: 1.5px 7px; border-radius: 5px; line-height: 1.5;
	background: #fdecef; color: #a50d26; border: 1px solid #f3c0c9;
}

/* ----- Catalogue discount banner ----- */
.asw-discbar {
	display: flex; align-items: center; gap: 14px; margin: 0 0 22px; padding: 13px 20px;
	background: linear-gradient(120deg, #eef3fb, #f8fafd); border: 1px solid #d7e2f2; border-radius: var(--r);
	font-size: 14px; color: var(--ink); box-shadow: var(--shadow-sm);
}
.asw-discbar__pct {
	background: var(--red); color: var(--btn-ink); font-weight: 800; font-size: 16px;
	padding: 7px 13px; border-radius: 10px; flex: none; box-shadow: 0 4px 10px rgba(200,16,46,.25);
}
.asw-discbar__note { margin-left: auto; color: var(--muted); font-size: 12.5px; white-space: nowrap; }

/* ----- Account page discount hero ----- */
.asw-dischero {
	display: flex; align-items: center; gap: 20px; margin: 0 0 28px; padding: 22px 26px; max-width: 640px;
	color: #fff; border-radius: var(--r); box-shadow: var(--shadow);
	background:
		radial-gradient(120% 130% at 90% -20%, rgba(200,16,46,.35), transparent 50%),
		linear-gradient(140deg, #14315c 0%, #0A1F3D 70%);
}
.asw-dischero__pct {
	font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 44px; line-height: 1; flex: none;
	background: var(--red); padding: 14px 18px; border-radius: 14px; box-shadow: 0 8px 20px rgba(200,16,46,.35);
}
.asw-dischero__txt { font-size: 14.5px; color: rgba(255,255,255,.85); line-height: 1.5; }
.asw-dischero__txt strong { display: block; font-size: 17px; color: #fff; margin-bottom: 2px; }

/* ----- Breathing space: catalogue chrome ----- */
.asw-shop__head { margin-bottom: 26px; }
.asw-tabs { margin-bottom: 30px; }
.asw-pager { margin-top: 30px; }
@media (max-width: 720px) {
	.asw-discbar { flex-wrap: wrap; }
	.asw-discbar__note { margin-left: 0; }
	.asw-dischero { flex-direction: row; padding: 18px 20px; }
}

/* Compact branding on small screens so the taller bar still fits */
@media (max-width: 720px) {
	.asw-topbar__inner { height: 64px; }
	.asw-brand__logo { height: 32px; }
	.asw-brand__tag { font-size: 12px; padding-left: 10px; letter-spacing: .18em; }
}

/* Login panel WEBSTORE wordmark — the title of the product */
.asw-auth__wordmark {
	margin: 0 0 34px; position: relative; padding-bottom: 14px;
	font-size: 31px; font-weight: 600; letter-spacing: .38em; text-transform: uppercase;
	color: var(--navy); line-height: 1;
}
.asw-auth__wordmark::after {
	content: ""; position: absolute; left: 2px; bottom: 0; width: 58px; height: 3px;
	border-radius: 2px; background: var(--red);
}

/* Tabs + Filters merged onto a single row */
.asw-tabsrow { display: flex; align-items: center; justify-content: flex-start; gap: 6px; border-bottom: 1px solid var(--line); margin: 0 0 26px; flex-wrap: wrap; }
.asw-tabsrow .asw-tabs { border-bottom: 0; margin: 0; }

/* Staff topbar carries the full admin menu — compact type so eight items fit */
.asw-topnav--staff .asw-navlink { margin: 0 4px; }

/* Products tab: search bar + discount form */
.asw-prodsearch { display: flex; gap: 10px; margin: 0 0 20px; max-width: 560px; }
.asw-prodsearch input[type="search"] { flex: 1; padding: 12px 15px; border: 1px solid #d9d5cb; border-radius: 10px; font-family: inherit; font-size: 15px; background: #fff; }
.asw-prodsearch input[type="search"]:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10, 31, 61, .12); }
.asw-discform { display: flex; gap: 12px; align-items: flex-end; max-width: 340px; }
.asw-discform .asw-field { flex: 1; margin-bottom: 0; }

/* ----- CRM accordions (Profile / Addresses) ----- */
.asw-acc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); margin: 0 0 16px; }
.asw-acc summary { display: flex; align-items: baseline; gap: 14px; padding: 16px 22px; cursor: pointer; font-size: 17px; font-weight: 700; color: var(--ink); list-style: none; }
.asw-acc summary::-webkit-details-marker { display: none; }
.asw-acc summary::after { content: "›"; margin-left: auto; font-size: 20px; color: var(--muted); transform: rotate(90deg); transition: transform .2s ease; }
.asw-acc[open] summary::after { transform: rotate(-90deg); }
.asw-acc[open] summary { border-bottom: 1px solid var(--line); }
.asw-acc summary:hover::after { color: var(--navy); }
.asw-acc__hint { font-size: 12.5px; font-weight: 500; color: var(--muted); }
.asw-acc__body { padding: 10px 22px 22px; }
.asw-acc__sub { margin: 20px 0 6px; font-size: 13px; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; }

/* Discount stat card — instantly visible at the top */
.asw-stat--disc { background: var(--navy); border-color: var(--navy); }
.asw-stat--disc span { color: rgba(255, 255, 255, .65); }
.asw-stat--disc strong { color: var(--btn-ink); }

/* ----- CRM segment filters + export bar ----- */
.asw-crmfilters { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); padding: 16px 20px; margin: 0 0 16px; }
.asw-crmfilters__f label { display: block; font-weight: 600; font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin: 0 0 5px; }
.asw-crmfilters select, .asw-crmfilters input { padding: 9px 10px; border: 1px solid #d9d5cb; border-radius: 8px; font-family: inherit; font-size: 13.5px; background: #fff; }
.asw-crmfilters__pair { display: flex; gap: 6px; }
.asw-crmfilters__pair input { width: 74px; }
.asw-crmfilters__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.asw-crmbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 0 0 14px; }
.asw-crmbar__count { font-size: 14px; font-weight: 600; color: var(--ink); }
@media (max-width: 820px) { .asw-crmfilters__actions { margin-left: 0; } .asw-crmbar { flex-direction: column; align-items: flex-start; } }

/* ----- Staff icon nav with CSS tooltips ----- */
.asw-navlink--icon { display: inline-flex; align-items: center; justify-content: center; padding: 11px 10px; }
.asw-navlink--icon svg { width: 21px; height: 21px; display: block; }
.asw-navlink--icon:hover { color: var(--navy); }
.asw-navlink__badge {
	position: absolute; top: 2px; right: -2px; min-width: 17px; height: 17px; padding: 0 4px;
	border-radius: 9px; background: var(--red); color: var(--btn-ink); font-size: 10px; font-weight: 800;
	display: flex; align-items: center; justify-content: center; line-height: 1;
}
/* tooltip (::before — ::after is the red underline) */
.asw-navlink--icon::before {
	content: attr(data-tip); position: absolute; top: calc(100% + 9px); left: 50%;
	transform: translateX(-50%) translateY(-4px);
	background: var(--navy); color: #fff; font-size: 11.5px; font-weight: 600; letter-spacing: .02em;
	padding: 6px 11px; border-radius: 7px; white-space: nowrap; box-shadow: var(--shadow);
	opacity: 0; visibility: hidden; pointer-events: none; z-index: 70;
	transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.asw-navlink--icon:hover::before, .asw-navlink--icon:focus-visible::before {
	opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}

/* ----- Catalogue: full-width layout + permanent filter panel ----- */
.asw-shop--wide { max-width: none; padding-left: 34px; padding-right: 34px; }
.asw-filters__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.asw-filters__head h4 { margin: 0; font-size: 16px; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.asw-filterbtn__n { display: inline-flex; align-items: center; justify-content: center; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 10px; background: var(--red); color: var(--btn-ink); font-size: 11px; font-weight: 800; }
.asw-filters .asw-facet { max-height: 340px; overflow-y: auto; }
@media (max-width: 720px) { .asw-shop--wide { padding-left: 18px; padding-right: 18px; } }

/* ----- Machines: "Soon" tab badge + coming-soon panel ----- */
.asw-tabsoon { display: inline-block; background: var(--navy); color: var(--btn-ink); font-size: 9.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 2.5px 8px; border-radius: 9px; vertical-align: middle; }
.asw-comingsoon {
	position: relative; overflow: hidden; border-radius: var(--r); padding: 64px 48px; color: #fff; text-align: center;
	background:
		radial-gradient(120% 130% at 88% -15%, rgba(200, 16, 46, .30), transparent 52%),
		linear-gradient(140deg, #14315c 0%, #0A1F3D 65%, #081426 100%);
	box-shadow: var(--shadow);
}
.asw-comingsoon .asw-eyebrow { color: #ff8fa3; }
.asw-comingsoon h2 { margin: 0 0 14px; font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -.01em; color: #fff; }
.asw-comingsoon p { margin: 0 auto; max-width: 52ch; color: rgba(255, 255, 255, .82); font-size: 15.5px; }
.asw-comingsoon__contact { margin-top: 18px !important; font-size: 13.5px !important; color: rgba(255, 255, 255, .6) !important; }

/* ----- Offer form: reference autocomplete ----- */
.asw-ac { position: relative; }
.asw-ac__list {
	display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 45;
	margin: 4px 0 0; padding: 6px; list-style: none;
	background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
	box-shadow: var(--shadow-lg); max-height: 300px; overflow-y: auto;
}
.asw-ac__list li { display: flex; align-items: baseline; gap: 10px; padding: 9px 12px; border-radius: 8px; cursor: pointer; font-size: 13px; }
.asw-ac__list li:hover { background: rgba(10, 31, 61, .06); }
.asw-ac__ref { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; color: var(--navy); font-weight: 600; white-space: nowrap; }
.asw-ac__name { color: var(--text); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.asw-ac__price { color: var(--ink); font-weight: 700; white-space: nowrap; }
.asw-ac__hint { margin: 7px 0 0; font-size: 12.5px; color: var(--muted); min-height: 1em; }

/* Offer form: wide enough that suggestions and fields never wrap */
.asw-block--offer { max-width: 760px; }
.asw-ac__list { width: max-content; min-width: 100%; max-width: min(90vw, 700px); }
.asw-ac__list li { white-space: nowrap; }
.asw-ac__name { overflow: visible; text-overflow: clip; }
