/**
 * Formal Watch — design system CSS.
 *
 * Authored from the Claude design (design-src/*.dc.html), inline styles
 * translated into a class system. Every selector is scoped under
 * body.fw-body so nothing leaks into wp-admin, Elementor chrome or
 * other themes. The Customizer overrides the :root tokens at wp_head.
 */

:root {
	--fw-bg: #F7F7F5;
	--fw-ink: #171512;
	--fw-muted: #76756F;
	--fw-faint: #ABAAA4;
	--fw-line: #E8E8E4;
	--fw-line-strong: #DCDCD7;
	--fw-brown: #8B5E3C;
	--fw-tan: #A87F52;
	--fw-gold: #C79B6B;
	--fw-card: #FFFFFF;
	--fw-wash: #F1F1EF;

	/* Derived / fixed */
	--fw-dark-muted: #B2B1AC;
	--fw-dark-faint: #8A8984;
	--fw-dark-line: #464642;
	--fw-util-text: #E8E8E4;
	--fw-hover-border: #CDCDC6;
	--fw-error: #B03A2E;

	--fw-r: 14px;
	--fw-r-sm: 10px;
	--fw-r-in: 12px;

	--fw-display: 'Bebas Neue', 'Hind Siliguri', Impact, sans-serif;
	--fw-body-font: 'Hind Siliguri', Helvetica, sans-serif;

	--fw-pad-x: clamp(20px, 3vw, 40px);
	--fw-pad-x-tight: clamp(18px, 3vw, 40px);
}

/* ===== Base ===== */

body.fw-body {
	margin: 0;
	background: var(--fw-bg);
	color: var(--fw-ink);
	font-family: var(--fw-body-font);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.fw-body a {
	color: var(--fw-brown);
	text-decoration: none;
}

body.fw-body a:hover {
	color: var(--fw-tan);
}

body.fw-body img {
	max-width: 100%;
	height: auto;
}

body.fw-body .wrap {
	max-width: 1440px;
	margin: 0 auto;
	background: var(--fw-bg);
}

body.fw-body .cover-img,
body.fw-body .imgwrap img,
body.fw-body .mainimg img,
body.fw-body .lifeimg img,
body.fw-body .thumb img,
body.fw-body .di-img img,
body.fw-body .cks-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Placeholder block for products without photos */
body.fw-body .ph {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: var(--fw-wash);
	color: var(--fw-faint);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-align: center;
	padding: 12px;
}

body.fw-body .ph .glyph {
	font-family: var(--fw-display);
	font-size: 34px;
	letter-spacing: 0.06em;
	color: var(--fw-line-strong);
	display: block;
	line-height: 1;
	margin-bottom: 8px;
}

body.fw-body .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

body.fw-body .skip-link:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	width: auto;
	left: 8px;
	top: 8px;
	z-index: 100000;
	padding: 12px 18px;
	background: var(--fw-ink);
	color: var(--fw-bg);
	border-radius: 8px;
}

/* ===== Util bar ===== */

body.fw-body .util {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px 28px;
	padding: 10px 32px;
	background: var(--fw-ink);
	color: var(--fw-util-text);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

body.fw-body .util .hl { color: var(--fw-gold); }

body.fw-body .util .bn {
	letter-spacing: 0.02em;
	text-transform: none;
	font-size: 13px;
}

body.fw-body .util .sep { opacity: 0.35; }

/* ===== Header ===== */

body.fw-body .hdr {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 40px;
	padding: 22px var(--fw-pad-x);
	border-bottom: 1px solid var(--fw-line);
	max-width: 1440px;
	margin: 0 auto;
}

body.fw-body .hdr .brand { display: block; flex: none; }

body.fw-body .hdr .brand img,
body.fw-body .hdr .brand .custom-logo {
	height: 38px;
	width: auto;
	display: block;
}

body.fw-body .hdr .brand .nm {
	font-family: var(--fw-display);
	font-size: 26px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--fw-ink);
}

body.fw-body .hdr nav.main {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 34px;
	font-size: 14px;
	letter-spacing: 0.06em;
	color: var(--fw-muted);
	text-transform: uppercase;
}

body.fw-body .hdr nav.main a { color: var(--fw-muted); }
body.fw-body .hdr nav.main a:hover,
body.fw-body .hdr nav.main .current-menu-item > a,
body.fw-body .hdr nav.main a[aria-current="page"] { color: var(--fw-ink); }

body.fw-body .hdr .icons {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 14px;
	letter-spacing: 0.06em;
	color: var(--fw-muted);
	text-transform: uppercase;
}

body.fw-body .hdr .icons a { color: var(--fw-muted); }
body.fw-body .hdr .icons a:hover { color: var(--fw-ink); }

body.fw-body .bagbtn {
	appearance: none;
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	color: var(--fw-ink);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

body.fw-body .bagbtn:hover { color: var(--fw-brown); }

body.fw-body .bagicon {
	position: relative;
	display: inline-flex;
}

body.fw-body .bagicon svg {
	width: 21px;
	height: 21px;
	display: block;
}

body.fw-body .bagcount {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--fw-brown);
	color: var(--fw-bg);
	font-size: 10px;
	line-height: 1;
	letter-spacing: 0;
	display: none;
	place-items: center;
	box-sizing: border-box;
}

body.fw-body .bagcount.on { display: grid; }

body.fw-body .bagamt {
	font-size: 13px;
	letter-spacing: 0.06em;
	white-space: nowrap;
}

/* Nav dropdown wrapper — invisible on desktop, becomes the mobile panel. */
body.fw-body .navdrop { display: contents; }
body.fw-body .navtoggle { display: none; }
body.fw-body .mobilesearch { display: none; }

/* ===== Mobile header (one row: menu · logo · bag) ===== */

@media (max-width: 860px) {

	body.fw-body .hdr {
		position: sticky;
		top: 0;
		z-index: 60;
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 10px;
		padding: 12px clamp(14px, 4vw, 22px);
		background: var(--fw-bg);
	}

	body.fw-body.admin-bar .hdr { top: 46px; }

	body.fw-body .navtoggle {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		gap: 4px;
		width: 34px;
		height: 34px;
		margin-left: -7px;
		padding: 0;
		background: none;
		border: 0;
		cursor: pointer;
	}

	body.fw-body .navtoggle i {
		display: block;
		width: 20px;
		height: 1.5px;
		background: var(--fw-ink);
		transition: transform 0.2s ease, opacity 0.15s ease;
	}

	body.fw-body .hdr.nav-open .navtoggle i:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
	body.fw-body .hdr.nav-open .navtoggle i:nth-child(2) { opacity: 0; }
	body.fw-body .hdr.nav-open .navtoggle i:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

	body.fw-body .hdr .brand { justify-self: center; }

	body.fw-body .hdr .brand img,
	body.fw-body .hdr .brand .custom-logo { height: 30px; }

	body.fw-body .hdr .brand .nm { font-size: 21px; }

	body.fw-body .hdr .icons {
		justify-self: end;
		gap: 12px;
		font-size: 13px;
	}

	body.fw-body .hdr .icons .searchbtn { display: none; }
	body.fw-body .searchrow { display: none !important; }

	/* The dropdown panel */
	body.fw-body .navdrop {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: 4px clamp(14px, 4vw, 22px) 18px;
		background: var(--fw-card);
		border-bottom: 1px solid var(--fw-line);
		box-shadow: 0 14px 30px rgba(23, 21, 18, 0.09);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	}

	body.fw-body .navdrop.open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}

	body.fw-body .navdrop nav.main {
		display: block;
		font-size: 15px;
		letter-spacing: 0.08em;
	}

	body.fw-body .navdrop nav.main a {
		display: block;
		padding: 15px 2px;
		border-bottom: 1px solid var(--fw-line);
		color: var(--fw-ink);
	}

	body.fw-body .mobilesearch {
		display: flex;
		gap: 8px;
		padding-top: 16px;
	}

	body.fw-body .mobilesearch input[type="search"] {
		flex: 1;
		min-width: 0;
		padding: 12px 14px;
		border: 1px solid var(--fw-line-strong);
		border-radius: var(--fw-r-in);
		background: var(--fw-card);
		font: inherit;
		font-size: 16px; /* 16px stops iOS zoom-on-focus */
		color: var(--fw-ink);
	}

	body.fw-body .mobilesearch input[type="search"]:focus {
		outline: none;
		border-color: var(--fw-ink);
	}

	body.fw-body .mobilesearch .btn {
		flex: none;
		display: grid;
		place-items: center;
		width: 48px;
		padding: 0;
	}

	body.fw-body .mobilesearch .btn svg {
		width: 18px;
		height: 18px;
	}
}

/* Compact util bar on phones */
@media (max-width: 700px) {
	body.fw-body .util {
		gap: 4px 14px;
		padding: 9px 16px;
		font-size: 10.5px;
		letter-spacing: 0.08em;
	}
	body.fw-body .util .bn { font-size: 12px; }
}

/* Under 560px keep only the two highest-value promises. */
@media (max-width: 560px) {
	body.fw-body .util > span:nth-last-child(1),
	body.fw-body .util > span:nth-last-child(2) { display: none; }
}

/* ===== Buttons ===== */

body.fw-body .btn {
	display: inline-block;
	padding: 16px 34px;
	background: var(--fw-ink);
	color: var(--fw-bg);
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: var(--fw-r);
	white-space: nowrap;
	border: 0;
	cursor: pointer;
	font-family: var(--fw-body-font);
	font-weight: 300;
	text-align: center;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

body.fw-body .btn:hover { background: var(--fw-brown); color: var(--fw-bg); }

body.fw-body .btn.ghost {
	padding: 16px 30px;
	background: transparent;
	border: 1px solid var(--fw-line-strong);
	color: var(--fw-ink);
}

body.fw-body .btn.ghost:hover {
	background: transparent;
	border-color: var(--fw-tan);
	color: var(--fw-brown);
}

body.fw-body .btn.block {
	display: block;
	width: 100%;
	padding: 17px;
	white-space: normal;
}

body.fw-body .btn.dark-outline {
	background: transparent;
	border: 1px solid var(--fw-dark-line);
	color: var(--fw-bg);
}

body.fw-body .btn.dark-outline:hover {
	border-color: var(--fw-gold);
	color: var(--fw-gold);
}

body.fw-body .btn[disabled],
body.fw-body .btn.busy {
	opacity: 0.55;
	pointer-events: none;
}

/* ===== Hero ===== */

body.fw-body .hero {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	min-height: min(600px, 88vh);
	border-bottom: 1px solid var(--fw-line);
}

body.fw-body .hero .htext {
	flex: 1 1 420px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 26px;
	padding: clamp(48px, 7vw, 96px) clamp(22px, 5vw, 72px);
}

body.fw-body .eyebrow {
	font-size: 13px;
	letter-spacing: 0.02em;
	color: var(--fw-brown);
}

body.fw-body .hero h1 {
	margin: 0;
	font-family: var(--fw-display);
	font-weight: 600;
	font-size: clamp(38px, 7vw, 68px);
	line-height: 1.28;
	letter-spacing: 0.02em;
}

body.fw-body .hero .hsub {
	margin: 0;
	max-width: 460px;
	font-size: 18px;
	line-height: 1.85;
	color: var(--fw-muted);
	text-wrap: pretty;
}

body.fw-body .hero .cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	padding-top: 6px;
}

body.fw-body .trustline {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	padding-top: 14px;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fw-tan);
}

body.fw-body .trustline span { white-space: nowrap; }

body.fw-body .hero .himg {
	flex: 1 1 440px;
	position: relative;
	min-width: 0;
	min-height: 340px;
	overflow: hidden;
	background: #EFEFEC;
}

body.fw-body .hero .himg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===== Sections / row heads ===== */

body.fw-body .sec {
	padding: clamp(56px, 6vw, 88px) var(--fw-pad-x) clamp(60px, 6.5vw, 96px);
}

body.fw-body .rowhead {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px 40px;
	padding: 0 8px 40px;
}

body.fw-body .rowhead .rh-label,
body.fw-body .microlabel {
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--fw-brown);
}

body.fw-body .rowhead .rh-text {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

body.fw-body h2.h2,
body.fw-body .rowhead h2 {
	margin: 0;
	font-family: var(--fw-display);
	font-weight: 600;
	font-size: clamp(30px, 5vw, 56px);
	line-height: 1;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

body.fw-body .viewall {
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--fw-line-strong);
	padding-bottom: 4px;
}

/* ===== Product grid / cards ===== */

body.fw-body .grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
	gap: 24px;
}

body.fw-body .grid.g3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
body.fw-body .grid.g-mini { grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr)); }

body.fw-body .pcard {
	display: flex;
	flex-direction: column;
	background: var(--fw-card);
	border: 1px solid var(--fw-line);
	border-radius: var(--fw-r);
	overflow: hidden;
	color: var(--fw-ink);
	position: relative;
	transition: border-color 0.18s ease;
}

body.fw-body .pcard:hover { border-color: var(--fw-hover-border); color: var(--fw-ink); }

body.fw-body .pcard .imgwrap {
	position: relative;
	min-width: 0;
	aspect-ratio: 1 / 1;
	background: var(--fw-wash);
	overflow: hidden;
}

body.fw-body .pcard .imgwrap > a.cardlink {
	position: absolute;
	inset: 0;
	z-index: 1;
}

body.fw-body .tagpill {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 6px 12px;
	background: rgba(23, 21, 18, 0.86);
	color: var(--fw-bg);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 999px;
	pointer-events: none;
	z-index: 2;
}

body.fw-body .pcard .pbody {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 20px 22px;
}

body.fw-body .pcard .ptype {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fw-tan);
}

body.fw-body .pcard .pname {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.01em;
}

body.fw-body .pcard .pname a { color: var(--fw-ink); }
body.fw-body .pcard .pname a:hover { color: var(--fw-brown); }

body.fw-body .prow {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding-top: 2px;
}

body.fw-body .price { font-size: 17px; color: var(--fw-ink); }
body.fw-body .was {
	font-size: 14px;
	color: var(--fw-faint);
	text-decoration: line-through;
}

body.fw-body .pcard .quickadd {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease;
	z-index: 2;
}

body.fw-body .pcard:hover .quickadd,
body.fw-body .pcard:focus-within .quickadd {
	opacity: 1;
	transform: none;
}

body.fw-body .pcard .quickadd .btn { padding: 13px; font-size: 12px; }

@media (hover: none) {
	body.fw-body .pcard .quickadd { display: none; }
}

/* ===== Atelier (dark split) ===== */

body.fw-body .atelier {
	display: flex;
	flex-wrap: wrap;
	background: var(--fw-ink);
	color: var(--fw-bg);
}

body.fw-body .atelier .atext {
	flex: 1 1 460px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 26px;
	padding: clamp(52px, 7.5vw, 104px) clamp(22px, 5vw, 72px);
}

body.fw-body .atelier .alabel {
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--fw-gold);
}

body.fw-body .atelier h2 {
	margin: 0;
	font-family: var(--fw-display);
	font-weight: 600;
	font-size: clamp(32px, 5.5vw, 64px);
	line-height: 1;
	text-transform: uppercase;
	color: var(--fw-bg);
}

body.fw-body .atelier .abody {
	margin: 0;
	max-width: 470px;
	font-size: 18px;
	line-height: 1.65;
	color: var(--fw-dark-muted);
	text-wrap: pretty;
}

body.fw-body .atelier .stats {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 44px;
	padding-top: 10px;
}

body.fw-body .atelier .stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

body.fw-body .atelier .stat .sv {
	font-family: var(--fw-display);
	font-weight: 600;
	font-size: 38px;
	line-height: 1.1;
	color: var(--fw-gold);
}

body.fw-body .atelier .stat .ss {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fw-dark-faint);
}

body.fw-body .atelier .btn { align-self: flex-start; margin-top: 14px; }

body.fw-body .atelier .aimg {
	flex: 1 1 380px;
	position: relative;
	min-width: 0;
	overflow: hidden;
	min-height: clamp(300px, 42vw, 520px);
}

body.fw-body .atelier .aimg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===== Promises (3-up bordered) ===== */

body.fw-body .promises {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: 1px;
	background: var(--fw-line);
	border-top: 1px solid var(--fw-line);
	border-bottom: 1px solid var(--fw-line);
}

body.fw-body .promises .cell {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: clamp(36px, 4vw, 52px) clamp(24px, 3vw, 44px);
	background: var(--fw-bg);
}

body.fw-body .promises .cl {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fw-brown);
}

body.fw-body .promises .ct { font-size: 20px; line-height: 1.4; }

body.fw-body .promises .cb {
	font-size: 15px;
	line-height: 1.65;
	color: var(--fw-muted);
	text-wrap: pretty;
}

/* ===== Footer ===== */

body.fw-body .foot {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
	gap: 36px 48px;
	padding: clamp(56px, 6vw, 80px) var(--fw-pad-x) 40px;
	max-width: 1440px;
	margin: 0 auto;
}

body.fw-body .foot .fbrand {
	display: flex;
	flex-direction: column;
	gap: 18px;
	align-items: flex-start;
}

body.fw-body .foot .fbrand img,
body.fw-body .foot .fbrand .custom-logo {
	height: 34px;
	width: auto;
	display: block;
}

body.fw-body .foot .fblurb {
	margin: 0;
	max-width: 330px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--fw-muted);
}

body.fw-body .foot .fcol {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.fw-body .foot .fcol h5 {
	margin: 0;
	font-size: 11px;
	font-weight: 300;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fw-ink);
}

body.fw-body .foot .fcol ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.fw-body .foot .fcol a {
	font-size: 15px;
	color: var(--fw-muted);
}

body.fw-body .foot .fcol a:hover { color: var(--fw-brown); }

body.fw-body .foot .fsocial {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

body.fw-body .foot .fsocial a {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid var(--fw-line);
	border-radius: 999px;
	padding: 6px 12px;
	color: var(--fw-muted);
}

body.fw-body .foot .fsocial a:hover {
	border-color: var(--fw-tan);
	color: var(--fw-brown);
}

body.fw-body .footbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 24px;
	padding: 22px 0;
	margin: 0 var(--fw-pad-x) 40px;
	border-top: 1px solid var(--fw-line);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fw-faint);
	max-width: calc(1440px - 2 * clamp(20px, 3vw, 40px));
}

@media (min-width: 1520px) {
	body.fw-body .footbar { margin-left: auto; margin-right: auto; }
}

/* ===== WhatsApp pill ===== */

body.fw-body .wa-fab {
	position: fixed;
	right: 26px;
	bottom: 26px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 20px;
	background: var(--fw-ink);
	color: var(--fw-bg);
	border-radius: 999px;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	box-shadow: 0 8px 24px rgba(23, 21, 18, 0.18);
	z-index: 60;
}

body.fw-body .wa-fab:hover { background: var(--fw-brown); color: var(--fw-bg); }

body.fw-body .wa-fab .dot-ind {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--fw-gold);
	display: block;
}

/* ===== Page head (shop) ===== */

body.fw-body .page-head {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: clamp(32px, 4vw, 56px) var(--fw-pad-x-tight) 28px;
}

body.fw-body .page-head .titlerow {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 16px;
}

body.fw-body .page-head h1 {
	margin: 0;
	font-family: var(--fw-display);
	font-weight: 600;
	font-size: clamp(34px, 6vw, 56px);
	line-height: 1;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

body.fw-body .page-head .count { font-size: 16px; color: var(--fw-muted); }

/* ===== Shop layout ===== */

body.fw-body .shop {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(24px, 3vw, 48px);
	padding: 0 var(--fw-pad-x-tight) clamp(60px, 6vw, 96px);
	align-items: flex-start;
}

body.fw-body .filters {
	flex: 1 1 232px;
	min-width: 0;
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 26px;
}

body.fw-body .fgroup {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.fw-body .fhead {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--fw-ink);
}

body.fw-body .fitem {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: var(--fw-muted);
	cursor: pointer;
}

body.fw-body .fitem:hover { color: var(--fw-ink); }

body.fw-body .fitem .box {
	width: 14px;
	height: 14px;
	border: 1px solid var(--fw-line-strong);
	border-radius: 3px;
	background: var(--fw-card);
	flex: none;
	display: grid;
	place-items: center;
}

body.fw-body .fitem.on { color: var(--fw-ink); }

body.fw-body .fitem.on .box {
	background: var(--fw-ink);
	border-color: var(--fw-ink);
}

body.fw-body .fitem.on .box svg {
	width: 10px;
	height: 10px;
	stroke: var(--fw-bg);
}

body.fw-body .fitem .fname { flex: 1; }
body.fw-body .fitem .fcount { font-size: 13px; color: var(--fw-faint); }

body.fw-body .fitem .sw {
	width: 14px;
	height: 14px;
	border-radius: 4px;
	border: 1px solid rgba(23, 21, 18, 0.14);
	flex: none;
}

body.fw-body .fprice {
	display: flex;
	align-items: center;
	gap: 8px;
}

body.fw-body .fprice input {
	width: 100%;
	min-width: 0;
	padding: 10px 12px;
	border: 1px solid var(--fw-line-strong);
	border-radius: var(--fw-r-sm);
	background: var(--fw-card);
	font: inherit;
	font-size: 14px;
	color: var(--fw-ink);
}

body.fw-body .fprice .dash { color: var(--fw-faint); }

body.fw-body .fapply {
	padding: 10px 16px;
	font-size: 12px;
}

body.fw-body .codcard {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px;
	background: var(--fw-card);
	border: 1px solid var(--fw-line);
	border-radius: var(--fw-r);
}

body.fw-body .codcard .cl {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--fw-brown);
}

body.fw-body .codcard .cb {
	font-size: 15px;
	line-height: 1.5;
	color: var(--fw-muted);
	text-wrap: pretty;
}

/* Sheet chrome — desktop shows the rail flat, so head/foot/scrim collapse
   and .filters-body dissolves into the aside's own flex column. */
body.fw-body .filters-head,
body.fw-body .filters-foot,
body.fw-body .filterscrim,
body.fw-body .filterbtn { display: none; }

body.fw-body .filters-body { display: contents; }

body.fw-body .results {
	flex: 999 1 460px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

body.fw-body .sortbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--fw-line);
}

body.fw-body .chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

body.fw-body .chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border: 1px solid var(--fw-line-strong);
	border-radius: 999px;
	font-size: 13px;
	color: var(--fw-ink);
}

body.fw-body .chip .x { color: var(--fw-faint); }
body.fw-body .chip:hover .x { color: var(--fw-brown); }

body.fw-body .showing { align-self: center; font-size: 13px; color: var(--fw-faint); }

body.fw-body .sortsel {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid var(--fw-line-strong);
	border-radius: 999px;
	font-size: 13px;
	color: var(--fw-ink);
	background: transparent;
}

body.fw-body .sortsel select {
	appearance: none;
	border: 0;
	background: transparent;
	font: inherit;
	color: inherit;
	cursor: pointer;
	padding-right: 2px;
}

body.fw-body .fw-pager {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding-top: 16px;
}

body.fw-body .fw-pager .pcount { font-size: 13px; color: var(--fw-faint); }

body.fw-body .fw-pager .ptrack {
	width: 160px;
	height: 2px;
	background: var(--fw-line);
}

body.fw-body .fw-pager .ptrack i {
	display: block;
	height: 100%;
	background: var(--fw-brown);
}

body.fw-body .fw-pager .pnav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

body.fw-body .fw-pager .pnav a,
body.fw-body .fw-pager .pnav span.current {
	padding: 14px 24px;
	border: 1px solid var(--fw-line-strong);
	border-radius: var(--fw-r);
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fw-ink);
}

body.fw-body .fw-pager .pnav span.current {
	background: var(--fw-ink);
	color: var(--fw-bg);
	border-color: var(--fw-ink);
}

body.fw-body .fw-pager .pnav a:hover { border-color: var(--fw-tan); color: var(--fw-brown); }

/* ===== Mobile: filters become a bottom sheet ===== */

@media (max-width: 860px) {

	body.fw-body .shop { display: block; }

	body.fw-body .results { gap: 20px; }

	/* Trigger button in the sort bar */
	body.fw-body .filterbtn {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 9px 16px;
		border: 1px solid var(--fw-ink);
		border-radius: 999px;
		background: transparent;
		font: inherit;
		font-size: 13px;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: var(--fw-ink);
		cursor: pointer;
	}

	body.fw-body .filterbtn svg { width: 15px; height: 15px; }

	body.fw-body .filterbtn .fbadge {
		display: grid;
		place-items: center;
		min-width: 18px;
		height: 18px;
		padding: 0 5px;
		border-radius: 999px;
		background: var(--fw-brown);
		color: var(--fw-bg);
		font-size: 11px;
		letter-spacing: 0;
	}

	body.fw-body .sortbar {
		gap: 10px;
		padding-bottom: 14px;
	}

	body.fw-body .sortbar .showing { width: 100%; order: 3; }

	/* The sheet itself */
	body.fw-body .filters {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		top: auto;
		z-index: 95;
		display: flex;
		flex-direction: column;
		gap: 0;
		max-height: 88vh;
		padding: 0;
		background: var(--fw-bg);
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		box-shadow: 0 -18px 44px rgba(23, 21, 18, 0.2);
		transform: translateY(101%);
		visibility: hidden;
		transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), visibility 0.3s;
	}

	body.fw-body .filters.open {
		transform: none;
		visibility: visible;
	}

	body.fw-body .filters-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 18px 20px 16px;
		border-bottom: 1px solid var(--fw-line);
		flex: none;
	}

	body.fw-body .filters-head .fh-title {
		font-family: var(--fw-display);
		font-size: 22px;
		letter-spacing: 0.02em;
		text-transform: uppercase;
	}

	body.fw-body .filters-close {
		appearance: none;
		background: none;
		border: 0;
		padding: 4px;
		font-size: 18px;
		line-height: 1;
		color: var(--fw-muted);
		cursor: pointer;
	}

	body.fw-body .filters-body {
		display: flex;
		flex-direction: column;
		gap: 26px;
		flex: 1;
		min-height: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding: 20px 20px 24px;
	}

	/* Bigger tap targets inside the sheet */
	body.fw-body .filters-body .fitem { padding: 4px 0; font-size: 16px; }
	body.fw-body .filters-body .fitem .box { width: 17px; height: 17px; }
	body.fw-body .filters-body .fitem .sw { width: 17px; height: 17px; }
	body.fw-body .filters-body .fprice input { font-size: 16px; padding: 12px 14px; }

	body.fw-body .filters-foot {
		display: flex;
		gap: 10px;
		flex: none;
		padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
		border-top: 1px solid var(--fw-line);
		background: var(--fw-card);
	}

	body.fw-body .filters-foot .btn { flex: 1; padding: 15px 18px; }

	body.fw-body .filterscrim {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 94;
		background: rgba(23, 21, 18, 0.34);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.28s ease, visibility 0.28s;
	}

	body.fw-body .filterscrim.on {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	/* Stop the page scrolling behind an open sheet */
	body.fw-body.fw-sheet-open { overflow: hidden; }
}

/* ===== Breadcrumbs ===== */

body.fw-body .crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 20px var(--fw-pad-x-tight);
	font-size: 13px;
	color: var(--fw-faint);
}

body.fw-body .crumbs a { color: var(--fw-muted); }
body.fw-body .crumbs a:hover { color: var(--fw-brown); }
body.fw-body .crumbs .here { color: var(--fw-ink); }

/* ===== Product detail ===== */

body.fw-body .pd {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(24px, 3vw, 52px);
	max-width: 1150px;
	margin: 0 auto;
	padding: 0 var(--fw-pad-x-tight) clamp(56px, 6vw, 88px);
	align-items: flex-start;
}

body.fw-body .pd .gallery {
	flex: 999 1 420px;
	display: grid;
	grid-template-columns: clamp(56px, 7vw, 76px) minmax(0, 1fr);
	gap: 14px;
	min-width: 0;
}

/* Desktop: even 50/50 split instead of a runaway gallery. */
@media (min-width: 981px) {
	body.fw-body .pd .gallery,
	body.fw-body .pd .buypanel {
		flex: 1 1 0;
		min-width: 0;
	}
}

/* Keep the breadcrumb aligned with the 1150px product column. */
body.fw-body .crumbs.pd-crumbs {
	max-width: 1150px;
	margin: 0 auto;
}

body.fw-body .pd .thumbs {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.fw-body .pd .thumb {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--fw-wash);
	border: 1px solid var(--fw-line);
	border-radius: var(--fw-r-sm);
	overflow: hidden;
	cursor: pointer;
	padding: 0;
}

body.fw-body .pd .thumb.on { border-color: var(--fw-ink); }

body.fw-body .pd .mains {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}

body.fw-body .pd .mainimg {
	position: relative;
	min-width: 0;
	aspect-ratio: 1 / 1;
	background: var(--fw-wash);
	border: 1px solid var(--fw-line);
	border-radius: var(--fw-r);
	overflow: hidden;
}

body.fw-body .pd .lifeimg {
	position: relative;
	min-width: 0;
	aspect-ratio: 16 / 9;
	background: var(--fw-wash);
	border: 1px solid var(--fw-line);
	border-radius: var(--fw-r);
	overflow: hidden;
}

body.fw-body .buypanel {
	flex: 1 1 330px;
	min-width: 0;
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: clamp(22px, 3vw, 30px);
	background: var(--fw-card);
	border: 1px solid var(--fw-line);
	border-radius: var(--fw-r);
}

body.fw-body .pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

body.fw-body .pill {
	padding: 6px 12px;
	background: var(--fw-ink);
	color: var(--fw-bg);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 999px;
}

body.fw-body .pill.outline {
	background: transparent;
	border: 1px solid var(--fw-line-strong);
	color: var(--fw-brown);
}

body.fw-body .buypanel .ptitle {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

body.fw-body .buypanel h1 {
	margin: 0;
	font-family: var(--fw-display);
	font-weight: 600;
	font-size: clamp(32px, 5vw, 44px);
	line-height: 1;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

body.fw-body .strapline {
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fw-tan);
}

body.fw-body .pricerow {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
}

body.fw-body .pricerow .now { font-size: 28px; }
body.fw-body .pricerow .was { font-size: 16px; }
body.fw-body .pricerow .save { font-size: 13px; color: var(--fw-brown); }

body.fw-body .variants-wrap {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.fw-body .flabel {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--fw-ink);
}

body.fw-body .variants {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

body.fw-body .vcard {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
}

body.fw-body .vcard .swatch {
	width: 40px;
	height: 40px;
	border-radius: var(--fw-r-sm);
	border: 1px solid var(--fw-line-strong);
	display: block;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.fw-body .vcard.on .swatch {
	border-color: var(--fw-ink);
	box-shadow: 0 0 0 1px var(--fw-ink);
}

body.fw-body .vcard .vname { font-size: 11px; color: var(--fw-muted); }
body.fw-body .vcard.on .vname { color: var(--fw-ink); }

/* The add-to-cart form owns the vertical rhythm of the buy panel:
   strap swatches → qty → buttons all get real breathing room. */
body.fw-body .fw-product-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 0;
}

body.fw-body .buyactions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 2px;
}

body.fw-body .qtyrow {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 2px;
}

body.fw-body .miniqty {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	border: 1px solid var(--fw-line-strong);
	border-radius: 999px;
	overflow: hidden;
}

body.fw-body .miniqty button {
	appearance: none;
	background: none;
	border: 0;
	padding: 6px 12px;
	font-size: 15px;
	color: var(--fw-muted);
	cursor: pointer;
	font-family: inherit;
}

body.fw-body .miniqty button:hover { color: var(--fw-ink); }

body.fw-body .miniqty .n,
body.fw-body .miniqty input {
	padding: 6px 4px;
	font-size: 15px;
	min-width: 18px;
	width: 34px;
	text-align: center;
	border: 0;
	background: none;
	font-family: inherit;
	color: var(--fw-ink);
	-moz-appearance: textfield;
}

body.fw-body .miniqty input::-webkit-outer-spin-button,
body.fw-body .miniqty input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

body.fw-body .assure {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 4px;
	border-top: 1px solid var(--fw-line);
}

body.fw-body .assure .arow {
	display: flex;
	gap: 10px;
	font-size: 15px;
	color: var(--fw-muted);
}

body.fw-body .assure .arow .b {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--fw-tan);
	margin-top: 9px;
	flex: none;
	display: block;
}

body.fw-body .assure .arow span:last-child { flex: 1; }

/* ===== Spec triptych ===== */

body.fw-body .specs3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
	gap: 1px;
	background: var(--fw-line);
	border-top: 1px solid var(--fw-line);
	border-bottom: 1px solid var(--fw-line);
}

body.fw-body .specs3 .scell {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 44px);
	background: var(--fw-bg);
}

body.fw-body .specs3 .shead {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--fw-brown);
}

body.fw-body .specs3 .srow {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 15px;
	color: var(--fw-muted);
	border-bottom: 1px solid var(--fw-line);
	padding-bottom: 8px;
}

body.fw-body .specs3 .srow .v { color: var(--fw-ink); text-align: right; }

/* ===== Also-like ===== */

body.fw-body .also {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: clamp(56px, 6vw, 88px) var(--fw-pad-x-tight);
}

body.fw-body .also .alsohead {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
}

body.fw-body .also h2 {
	margin: 0;
	font-family: var(--fw-display);
	font-weight: 600;
	font-size: clamp(28px, 4.5vw, 40px);
	line-height: 1;
	text-transform: uppercase;
}

body.fw-body .minicard {
	display: flex;
	flex-direction: column;
	background: var(--fw-card);
	border: 1px solid var(--fw-line);
	border-radius: var(--fw-r);
	overflow: hidden;
	color: var(--fw-ink);
	transition: border-color 0.18s ease;
}

body.fw-body .minicard:hover { border-color: var(--fw-hover-border); color: var(--fw-ink); }

body.fw-body .minicard .imgwrap {
	position: relative;
	min-width: 0;
	aspect-ratio: 1 / 1;
	background: var(--fw-wash);
}

body.fw-body .minicard .mbody {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 18px;
}

body.fw-body .minicard .mname { font-size: 17px; }
body.fw-body .minicard .mprice { font-size: 16px; color: var(--fw-muted); }

/* ===== Cart drawer ===== */

body.fw-body .scrim {
	position: fixed;
	inset: 0;
	background: rgba(23, 21, 18, 0.28);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
	z-index: 80;
}

body.fw-body .scrim.on {
	opacity: 1;
	pointer-events: auto;
}

body.fw-body .drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(420px, 100%);
	display: flex;
	flex-direction: column;
	background: var(--fw-bg);
	border-left: 1px solid var(--fw-line);
	box-shadow: -24px 0 60px rgba(23, 21, 18, 0.12);
	transform: translateX(102%);
	transition: transform 0.28s ease;
	z-index: 90;
}

body.fw-body .drawer.open { transform: none; }

body.fw-body .drawer .dh {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 24px clamp(18px, 4vw, 28px);
	border-bottom: 1px solid var(--fw-line);
}

body.fw-body .drawer .dh .dtitle {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

body.fw-body .drawer .dh h3 {
	margin: 0;
	font-family: var(--fw-display);
	font-weight: 600;
	font-size: 26px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

body.fw-body .drawer .dh .dcount { font-size: 15px; color: var(--fw-faint); }

body.fw-body .drawer .dclose {
	appearance: none;
	background: none;
	border: 0;
	font-size: 18px;
	color: var(--fw-muted);
	cursor: pointer;
	padding: 4px;
	line-height: 1;
}

body.fw-body .drawer .dclose:hover { color: var(--fw-ink); }

body.fw-body .dprogress {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 28px;
	background: var(--fw-card);
	border-bottom: 1px solid var(--fw-line);
}

body.fw-body .dprogress .dp-t { font-size: 14px; color: var(--fw-muted); }

body.fw-body .dprogress .dp-track {
	height: 5px;
	border-radius: 3px;
	background: var(--fw-line);
	overflow: hidden;
}

body.fw-body .dprogress .dp-fill {
	height: 100%;
	background: var(--fw-brown);
	transition: width 0.3s ease;
}

body.fw-body .ditems {
	display: flex;
	flex-direction: column;
	flex: 1;
	overflow: auto;
}

body.fw-body .ditem {
	display: flex;
	gap: 16px;
	padding: 22px 28px;
	border-bottom: 1px solid var(--fw-line);
}

body.fw-body .di-img {
	position: relative;
	width: 78px;
	height: 78px;
	flex: none;
	background: var(--fw-wash);
	border: 1px solid var(--fw-line);
	border-radius: var(--fw-r-sm);
	overflow: hidden;
}

body.fw-body .di-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	min-width: 0;
}

body.fw-body .di-top {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

body.fw-body .di-name { font-size: 17px; }
body.fw-body .di-price { font-size: 16px; white-space: nowrap; }

body.fw-body .di-strap {
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fw-tan);
}

body.fw-body .di-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 2px;
}

body.fw-body .di-remove {
	appearance: none;
	background: none;
	border: 0;
	font-size: 13px;
	color: var(--fw-faint);
	cursor: pointer;
	font-family: inherit;
	padding: 0;
}

body.fw-body .di-remove:hover { color: var(--fw-brown); }

body.fw-body .daddon {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 22px 28px;
	border-bottom: 1px solid var(--fw-line);
}

body.fw-body .daddon .da-label {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--fw-brown);
}

body.fw-body .daddon .da-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

body.fw-body .daddon .da-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	color: var(--fw-ink);
}

body.fw-body .daddon .da-img {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--fw-wash);
	border: 1px solid var(--fw-line);
	border-radius: var(--fw-r-sm);
	overflow: hidden;
}

body.fw-body .daddon .da-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

body.fw-body .daddon .da-price { font-size: 13px; color: var(--fw-muted); }

body.fw-body .dzone {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 22px 28px;
}

body.fw-body .dzone .chip { font-size: 14px; padding: 8px 14px; color: var(--fw-muted); }
body.fw-body .dzone .chip.on {
	border-color: var(--fw-ink);
	color: var(--fw-ink);
}

body.fw-body .drawer .df {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 24px clamp(18px, 4vw, 28px);
	background: var(--fw-card);
	border-top: 1px solid var(--fw-line);
}

body.fw-body .df .dfrow {
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	color: var(--fw-muted);
}

body.fw-body .df .dfrow .free { color: var(--fw-brown); }

body.fw-body .df .dftotal {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-top: 12px;
	border-top: 1px solid var(--fw-line);
}

body.fw-body .df .dftotal .tl { font-size: 17px; }
body.fw-body .df .dftotal .tv { font-size: 24px; }

body.fw-body .df .btn { padding: 18px; }

body.fw-body .df .dcontinue {
	font-size: 14px;
	color: var(--fw-muted);
	text-align: center;
	background: none;
	border: 0;
	cursor: pointer;
	font-family: inherit;
}

body.fw-body .df .dcontinue:hover { color: var(--fw-brown); }

body.fw-body .dempty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 60px 28px;
	text-align: center;
	color: var(--fw-muted);
}

/* ===== Toast ===== */

body.fw-body .toast {
	position: fixed;
	left: 50%;
	bottom: 28px;
	transform: translate(-50%, 16px);
	background: var(--fw-ink);
	color: var(--fw-bg);
	padding: 13px 22px;
	border-radius: 999px;
	font-size: 13px;
	letter-spacing: 0.04em;
	box-shadow: 0 8px 24px rgba(23, 21, 18, 0.22);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 110;
}

body.fw-body .toast.on {
	opacity: 1;
	transform: translate(-50%, 0);
}

/* ===== Checkout ===== */

body.fw-body .ckhdr {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 40px;
	padding: 20px var(--fw-pad-x);
	border-bottom: 1px solid var(--fw-line);
	max-width: 1440px;
	margin: 0 auto;
}

body.fw-body .ckhdr .brand img { height: 32px; width: auto; display: block; }

body.fw-body .ckhdr .secure {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fw-muted);
}

body.fw-body .ckhdr .secure .dot-ind {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--fw-brown);
	display: block;
}

body.fw-body .ckhdr .backlink { font-size: 14px; color: var(--fw-muted); }
body.fw-body .ckhdr .backlink:hover { color: var(--fw-brown); }

body.fw-body .ckhead {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	padding: clamp(28px, 4vw, 44px) 20px 20px;
	text-align: center;
}

body.fw-body .ckhead .step { font-size: 13px; letter-spacing: 0.02em; color: var(--fw-brown); }

body.fw-body .ckhead h1 {
	margin: 0;
	font-family: var(--fw-display);
	font-weight: 600;
	font-size: clamp(30px, 6vw, 40px);
	line-height: 1;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

body.fw-body .ckdots {
	display: flex;
	gap: 6px;
	padding-top: 6px;
}

body.fw-body .ckdots i {
	width: 52px;
	height: 3px;
	border-radius: 2px;
	background: var(--fw-line);
	display: block;
}

body.fw-body .ckdots i.on { background: var(--fw-brown); }

body.fw-body .ckcol {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 20px) clamp(120px, 16vw, 180px);
	box-sizing: border-box;
}

body.fw-body .ckcard {
	background: var(--fw-card);
	border: 1px solid var(--fw-line);
	border-radius: var(--fw-r);
}

/* Step cards carry one of three states: .active / .done / .locked.
   Each state shows exactly one inner view. */
body.fw-body .ckstep .donebar,
body.fw-body .ckstep .stepbody,
body.fw-body .ckstep .lockview { display: none; }

body.fw-body .ckstep.done .donebar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
}

body.fw-body .ckstep .donebar .dleft {
	display: flex;
	gap: 14px;
	min-width: 0;
}

body.fw-body .cknum {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--fw-ink);
	color: #FFFFFF;
	font-size: 13px;
	display: grid;
	place-items: center;
	flex: none;
}

body.fw-body .ckstep.done .donebar .cknum { background: var(--fw-brown); }

body.fw-body .ckstep.locked .cknum {
	background: transparent;
	border: 1px solid var(--fw-line-strong);
	color: var(--fw-faint);
}

body.fw-body .ckstep .dtext {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

body.fw-body .ckstep .dt { font-size: 16px; }
body.fw-body .ckstep .ds { font-size: 14px; color: var(--fw-muted); overflow-wrap: anywhere; }

body.fw-body .ckedit {
	appearance: none;
	background: none;
	border: 0;
	font-size: 14px;
	color: var(--fw-brown);
	cursor: pointer;
	font-family: inherit;
	padding: 0;
	flex: none;
}

body.fw-body .ckstep.active {
	border-color: var(--fw-ink);
}

body.fw-body .ckstep.active .stepbody {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: clamp(20px, 4vw, 26px) clamp(18px, 4vw, 24px);
}

body.fw-body .ckcard .ckhead2 {
	display: flex;
	gap: 14px;
	align-items: center;
}

body.fw-body .ckcard .ckhead2 .t { font-size: 19px; }

body.fw-body .ckstep.locked {
	opacity: 0.75;
}

body.fw-body .ckstep.locked .lockview {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 22px 24px;
}

body.fw-body .ckstep.locked .ckhead2 .t { color: var(--fw-muted); }

body.fw-body .lockchips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-left: 38px;
}

body.fw-body .lockchips .chip { font-size: 14px; padding: 8px 14px; color: var(--fw-muted); }

body.fw-body .cks-line { position: relative; }

body.fw-body .cks-rm {
	flex: none;
	font-size: 13px;
	color: var(--fw-faint);
	padding: 4px;
}

body.fw-body .cks-rm:hover { color: var(--fw-error); }

body.fw-body .fw-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

body.fw-body .fw-field label { font-size: 13px; letter-spacing: 0.02em; color: var(--fw-muted); }

body.fw-body .fw-field input,
body.fw-body .fw-field select,
body.fw-body .fw-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	border: 1px solid var(--fw-line-strong);
	border-radius: var(--fw-r-in);
	background: var(--fw-card);
	font: inherit;
	font-size: 16px;
	color: var(--fw-ink);
}

body.fw-body .fw-field textarea { min-height: 78px; resize: vertical; }

body.fw-body .fw-field input:focus,
body.fw-body .fw-field select:focus,
body.fw-body .fw-field textarea:focus {
	outline: none;
	border-color: var(--fw-ink);
}

body.fw-body .fw-field input.err,
body.fw-body .fw-field select.err,
body.fw-body .fw-field textarea.err { border-color: var(--fw-error); }

body.fw-body .ferr {
	font-size: 13px;
	color: var(--fw-error);
	display: none;
}

body.fw-body .ferr.on { display: block; }

body.fw-body .fw-fgrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
	gap: 12px;
}

body.fw-body .shipopts {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

body.fw-body .shipopt {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 15px 16px;
	border: 1px solid var(--fw-line-strong);
	border-radius: var(--fw-r-in);
	cursor: pointer;
	transition: border-color 0.15s ease;
}

body.fw-body .shipopt.on { border-color: var(--fw-ink); }

body.fw-body .shipopt input { position: absolute; opacity: 0; pointer-events: none; }

body.fw-body .shipopt .rdot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid var(--fw-line-strong);
	background: var(--fw-card);
	flex: none;
	display: block;
	box-sizing: border-box;
}

body.fw-body .shipopt.on .rdot {
	border-color: var(--fw-ink);
	background: var(--fw-ink);
	box-shadow: inset 0 0 0 4px var(--fw-card);
}

body.fw-body .shipopt .st {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	min-width: 0;
}

body.fw-body .shipopt .sn { font-size: 16px; }
body.fw-body .shipopt .se { font-size: 14px; color: var(--fw-muted); }
body.fw-body .shipopt .sc { font-size: 16px; white-space: nowrap; }

body.fw-body .paychips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

body.fw-body .paychip {
	padding: 8px 14px;
	border: 1px solid var(--fw-line-strong);
	border-radius: 999px;
	font-size: 14px;
	color: var(--fw-muted);
	cursor: pointer;
	background: none;
	font-family: inherit;
	transition: border-color 0.15s ease, color 0.15s ease;
}

body.fw-body .paychip.on {
	border-color: var(--fw-ink);
	color: var(--fw-ink);
}

body.fw-body .paynote {
	font-size: 14px;
	line-height: 1.6;
	color: var(--fw-muted);
	background: var(--fw-wash);
	border-radius: var(--fw-r-sm);
	padding: 12px 16px;
	display: none;
}

body.fw-body .paynote.on { display: block; }

body.fw-body .cksummary {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 22px 24px;
}

body.fw-body .cksummary .cs-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
}

body.fw-body .cksummary .cs-label {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--fw-brown);
}

body.fw-body .cksummary .cs-edit { font-size: 14px; }

body.fw-body .cks-line {
	display: flex;
	align-items: center;
	gap: 14px;
}

body.fw-body .cks-img {
	position: relative;
	width: 52px;
	height: 52px;
	flex: none;
	background: var(--fw-wash);
	border: 1px solid var(--fw-line);
	border-radius: 9px;
	overflow: hidden;
}

body.fw-body .cks-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	min-width: 0;
}

body.fw-body .cks-name { font-size: 16px; }
body.fw-body .cks-meta { font-size: 13px; color: var(--fw-muted); }
body.fw-body .cks-price { font-size: 16px; white-space: nowrap; }

body.fw-body .cks-row {
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	color: var(--fw-muted);
}

body.fw-body .cks-row.first {
	padding-top: 12px;
	border-top: 1px solid var(--fw-line);
}

body.fw-body .cks-row .free { color: var(--fw-brown); }

body.fw-body .cks-row.total {
	color: var(--fw-ink);
	align-items: baseline;
	padding-top: 12px;
	border-top: 1px solid var(--fw-line);
}

body.fw-body .cks-row.total .v { font-size: 22px; }

body.fw-body .cknote {
	display: flex;
	gap: 12px;
	padding: 18px 24px;
	background: var(--fw-wash);
	border-radius: var(--fw-r);
	font-size: 14px;
	line-height: 1.6;
	color: var(--fw-muted);
	text-wrap: pretty;
}

body.fw-body .cknote .b {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--fw-tan);
	margin-top: 8px;
	flex: none;
	display: block;
}

body.fw-body .ckbar {
	position: sticky;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px 24px;
	padding: 16px var(--fw-pad-x-tight);
	background: var(--fw-card);
	border-top: 1px solid var(--fw-line);
	box-shadow: 0 -8px 28px rgba(23, 21, 18, 0.07);
	z-index: 40;
}

body.fw-body .ckbar .cb-tot {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

body.fw-body .ckbar .cb-l {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fw-muted);
}

body.fw-body .ckbar .cb-v { font-size: 24px; }

body.fw-body .ckbar .btn { padding: 17px 40px; }

body.fw-body .ckerror {
	display: none;
	padding: 14px 18px;
	border: 1px solid var(--fw-error);
	border-radius: var(--fw-r-sm);
	background: #FBEDEB;
	color: var(--fw-error);
	font-size: 14px;
	line-height: 1.5;
}

body.fw-body .ckerror.on { display: block; }

body.fw-body .ckempty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	padding: clamp(48px, 8vw, 90px) 24px;
	text-align: center;
}

body.fw-body .ckempty .t { font-size: 20px; }
body.fw-body .ckempty .s { font-size: 15px; color: var(--fw-muted); }

/* ===== Thank-you ===== */

body.fw-body .tyhead {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	padding: clamp(36px, 5vw, 56px) 20px 8px;
	text-align: center;
}

body.fw-body .tyhead .tycheck {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--fw-brown);
	color: #FFFFFF;
	font-size: 24px;
	display: grid;
	place-items: center;
}

body.fw-body .tyhead h1 {
	margin: 0;
	font-family: var(--fw-display);
	font-weight: 600;
	font-size: clamp(30px, 6vw, 42px);
	line-height: 1.1;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

body.fw-body .tyhead .tysub { font-size: 15px; color: var(--fw-muted); max-width: 46ch; }

body.fw-body .tyorderno {
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fw-tan);
}

body.fw-body .tyeta {
	display: flex;
	gap: 12px;
	padding: 18px 24px;
	background: var(--fw-card);
	border: 1px solid var(--fw-line);
	border-radius: var(--fw-r);
	font-size: 15px;
	line-height: 1.6;
	color: var(--fw-muted);
}

body.fw-body .tyeta .b {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--fw-brown);
	margin-top: 9px;
	flex: none;
	display: block;
}

/* ===== Generic prose (posts/pages) ===== */

body.fw-body .fw-prose {
	max-width: 720px;
	margin: 0 auto;
	padding: clamp(40px, 5vw, 64px) var(--fw-pad-x-tight) clamp(64px, 7vw, 96px);
	font-size: 17px;
	line-height: 1.8;
	color: var(--fw-ink);
}

body.fw-body .fw-prose h1,
body.fw-body .fw-prose h2,
body.fw-body .fw-prose h3 {
	font-family: var(--fw-display);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

body.fw-body .fw-prose h1 { font-size: clamp(32px, 5vw, 48px); }
body.fw-body .fw-prose h2 { font-size: clamp(26px, 4vw, 36px); }
body.fw-body .fw-prose img { border-radius: var(--fw-r); }

/* ===== Elementor helpers ===== */

body.fw-body .fw-bg-ink { background: var(--fw-ink); }
body.fw-body .fw-bg-card { background: var(--fw-card); }
body.fw-body .fw-bg-wash { background: var(--fw-wash); }

body.fw-body .fw-bleed {
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

/* ==========================================================================
   Phone overrides — MUST stay last in this file.
   These share specificity with the base rules above, so source order is what
   makes them win. Do not move this block earlier.
   ========================================================================== */

@media (max-width: 700px) {

	/* Product grids go 2-up */
	body.fw-body .grid,
	body.fw-body .grid.g3,
	body.fw-body .grid.g-mini {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	body.fw-body .pcard .pbody,
	body.fw-body .minicard .mbody {
		gap: 5px;
		padding: 13px 13px 15px;
	}

	body.fw-body .pcard .ptype {
		font-size: 9.5px;
		letter-spacing: 0.1em;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	body.fw-body .pcard .pname,
	body.fw-body .minicard .mname {
		font-size: 15px;
		line-height: 1.35;
	}

	body.fw-body .price { font-size: 15px; }
	body.fw-body .was { font-size: 12.5px; }
	body.fw-body .prow { gap: 7px; flex-wrap: wrap; }

	body.fw-body .tagpill {
		top: 10px;
		left: 10px;
		padding: 5px 9px;
		font-size: 9px;
		letter-spacing: 0.08em;
	}

	body.fw-body .sec { padding: clamp(40px, 8vw, 60px) 16px clamp(44px, 9vw, 64px); }
	body.fw-body .shop { padding: 0 16px clamp(48px, 9vw, 72px); }
	body.fw-body .also { padding: clamp(44px, 9vw, 64px) 16px; }
	body.fw-body .rowhead { padding: 0 0 26px; }
}
