/* =========================================================================
   Trove — storefront stylesheet
   Mobile first. Breakpoints: 560 / 720 / 900 / 1120 / 1280
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ---------------------------------------------------------------------- */

:root {
	--tv-bg:          #f1efe9;
	--tv-panel:       #f8f7f3;
	--tv-panel-2:     #edece4;
	--tv-surface:     #ffffff;
	--tv-band:        #e9eade;
	--tv-band-2:      #eceade;

	--tv-ink:         #14150f;
	--tv-ink-2:       #33342b;
	--tv-muted:       #6d6f63;
	--tv-muted-2:     #8b8d80;
	--tv-line:        #e2e0d6;
	--tv-line-2:      #d5d3c7;

	--tv-accent:      #8b883a;
	--tv-accent-2:    #a8a44c;
	--tv-trust:       #00b67a;
	--tv-sale:        #b1442f;

	--tv-r-xs: 8px;
	--tv-r-sm: 12px;
	--tv-r:    16px;
	--tv-r-lg: 22px;
	--tv-r-xl: 28px;
	--tv-r-pill: 999px;

	--tv-shadow-sm: 0 1px 2px rgba(28, 27, 20, .05), 0 1px 3px rgba(28, 27, 20, .04);
	--tv-shadow:    0 2px 6px rgba(28, 27, 20, .05), 0 12px 28px -14px rgba(28, 27, 20, .18);
	--tv-shadow-lg: 0 8px 20px -6px rgba(28, 27, 20, .12), 0 30px 60px -30px rgba(28, 27, 20, .3);

	--tv-header-h: 60px;
	--tv-gutter: 16px;
	--tv-maxw: 1200px;

	--tv-ease: cubic-bezier(.2, .7, .3, 1);

	--tv-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (min-width: 720px) {
	:root {
		--tv-gutter: 24px;
		--tv-header-h: 72px;
	}
}

@media (min-width: 1120px) {
	:root {
		--tv-gutter: 32px;
	}
}

/* -------------------------------------------------------------------------
   2. Base
   ---------------------------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	max-width: 100%;
	overflow-x: clip;
}

body {
	margin: 0;
	max-width: 100%;
	overflow-x: clip;
	background: var(--tv-bg);
	color: var(--tv-ink);
	font-family: var(--tv-font);
	font-size: 16px;
	line-height: 1.55;
	font-feature-settings: "cv11", "ss01";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.tv-locked { overflow: hidden; }

img,
svg,
video { display: block; max-width: 100%; }

img { height: auto; }

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

button { cursor: pointer; }

h1, h2, h3, h4, p, ul, ol, figure {
	margin: 0;
	padding: 0;
}

ul, ol { list-style: none; }

h1, h2, h3, h4 {
	font-weight: 700;
	letter-spacing: -.024em;
	line-height: 1.14;
}

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

::selection {
	background: var(--tv-accent);
	color: #fff;
}

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

.skip-link:focus {
	position: fixed !important;
	top: 12px; left: 12px;
	z-index: 999;
	width: auto; height: auto;
	clip: auto; clip-path: none;
	padding: 12px 18px;
	background: var(--tv-ink);
	color: #fff;
	border-radius: var(--tv-r-sm);
	font-weight: 600;
}

.tv-container {
	width: 100%;
	max-width: var(--tv-maxw);
	margin-inline: auto;
	padding-inline: var(--tv-gutter);
}

.tv-main,
.tv-hero,
.tv-hero__media,
.tv-hero-card,
.tv-depts,
.tv-depts__stage,
.tv-depts__media,
.tv-section,
.tv-panel {
	min-width: 0;
}

.tv-icon { flex: none; }

/* -------------------------------------------------------------------------
   3. Buttons
   ---------------------------------------------------------------------- */

.tv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: var(--tv-r-sm);
	background: var(--tv-ink);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: -.01em;
	line-height: 1;
	white-space: nowrap;
	transition: transform .18s var(--tv-ease), background-color .18s var(--tv-ease), box-shadow .18s var(--tv-ease);
}

.tv-btn:hover {
	background: #26281d;
	transform: translateY(-1px);
	box-shadow: var(--tv-shadow);
}

.tv-btn:active { transform: translateY(0); }

.tv-btn--lg {
	padding: 15px 22px;
	font-size: 15px;
	border-radius: var(--tv-r-sm);
}

.tv-btn--sm { padding: 10px 14px; font-size: 13px; }

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

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

.tv-btn .tv-icon { transition: transform .22s var(--tv-ease); }
.tv-btn:hover .tv-icon--arrow-right { transform: translateX(3px); }

.tv-iconbtn {
	display: inline-grid;
	place-items: center;
	width: 40px; height: 40px;
	padding: 0;
	border: 0;
	border-radius: var(--tv-r-pill);
	background: transparent;
	color: var(--tv-ink);
	transition: background-color .18s var(--tv-ease), color .18s var(--tv-ease);
}

.tv-iconbtn:hover { background: rgba(20, 21, 15, .07); }

/* -------------------------------------------------------------------------
   4. Announcement bar
   ---------------------------------------------------------------------- */

.tv-announce {
	background: var(--tv-ink);
	color: #f4f3ec;
}

.tv-announce__viewport {
	position: relative;
	height: 34px;
	max-width: var(--tv-maxw);
	margin-inline: auto;
	padding-inline: var(--tv-gutter);
}

.tv-announce__item {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: .012em;
	text-align: center;
	color: #f4f3ec;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity .5s var(--tv-ease), transform .5s var(--tv-ease), visibility .5s;
}

.tv-announce__item.is-active {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.tv-announce__item .tv-icon { opacity: .85; }

@media (min-width: 720px) {
	.tv-announce__viewport { height: 36px; }
	.tv-announce__item { font-size: 12.5px; }
}

/* -------------------------------------------------------------------------
   5. Header
   ---------------------------------------------------------------------- */

.tv-header {
	position: sticky;
	top: 0;
	z-index: 60;
	overflow-x: clip;
	background: rgba(241, 239, 233, .86);
	backdrop-filter: saturate(1.4) blur(12px);
	-webkit-backdrop-filter: saturate(1.4) blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color .25s var(--tv-ease), background-color .25s var(--tv-ease), box-shadow .25s var(--tv-ease);
}

.tv-header.is-stuck {
	background: rgba(246, 245, 240, .94);
	box-shadow: none;
}

.tv-header__inner {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	min-height: var(--tv-header-h);
}

.tv-burger { margin-left: -8px; }

.tv-logo {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex: none;
}

.tv-logo__word {
	position: relative;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -.055em;
	line-height: 1;
	color: var(--tv-ink);
	padding-right: 8px;
}

.tv-logo__dot {
	position: absolute;
	top: 1px;
	right: 0;
	width: 4.5px;
	height: 4.5px;
	border-radius: 50%;
	background: var(--tv-ink);
}

.tv-logo--image img {
	max-height: 40px;
	max-width: min(42vw, 160px);
	width: auto;
}

.tv-header__logo {
	min-width: 0;
	margin-inline: auto;
}

.tv-header__actions {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-right: -8px;
}

/* Desktop nav */

.tv-nav { display: none; }

.tv-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
}

.tv-nav__list > .menu-item { position: relative; }

.tv-nav__list > .menu-item > a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 9px 12px;
	border-radius: var(--tv-r-xs);
	font-size: 13.5px;
	font-weight: 500;
	color: var(--tv-ink-2);
	letter-spacing: -.006em;
	transition: color .16s var(--tv-ease), background-color .16s var(--tv-ease);
}

.tv-nav__list > .menu-item > a:hover,
.tv-nav__list > .menu-item:focus-within > a {
	color: var(--tv-ink);
	background: rgba(20, 21, 15, .05);
}

.tv-nav__list > .menu-item-has-children > a::after {
	content: "";
	width: 12px; height: 12px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6.5 9.5 5.5 5.5 5.5-5.5'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6.5 9.5 5.5 5.5 5.5-5.5'/%3E%3C/svg%3E") center / contain no-repeat;
	opacity: .6;
	transition: transform .2s var(--tv-ease);
}

.tv-nav__list > .menu-item-has-children:hover > a::after,
.tv-nav__list > .menu-item-has-children:focus-within > a::after { transform: rotate(180deg); }

.tv-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	z-index: 20;
	min-width: 216px;
	max-height: min(70vh, 420px);
	overflow-x: hidden;
	overflow-y: auto;
	padding: 8px;
	background: var(--tv-surface);
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-r);
	box-shadow: var(--tv-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -6px);
	transition: opacity .2s var(--tv-ease), transform .2s var(--tv-ease), visibility .2s;
}

.tv-nav__list > .menu-item:hover > .sub-menu,
.tv-nav__list > .menu-item:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.tv-nav__list .sub-menu a {
	display: block;
	padding: 9px 12px;
	border-radius: var(--tv-r-xs);
	font-size: 13.5px;
	font-weight: 500;
	color: var(--tv-ink-2);
	transition: background-color .14s var(--tv-ease), color .14s var(--tv-ease);
}

.tv-nav__list .sub-menu a:hover {
	background: var(--tv-panel-2);
	color: var(--tv-ink);
}

@media (min-width: 900px) {
	.tv-burger { display: none; }

	.tv-header__logo { margin-inline: 0; }

	.tv-nav {
		display: block;
		margin-inline: auto;
	}

	.tv-header__inner { gap: 16px; }
}

/* Search panel */

.tv-searchpanel {
	border-top: 1px solid var(--tv-line);
	background: var(--tv-surface);
	animation: tv-slide-down .28s var(--tv-ease);
}

.tv-searchpanel[hidden] { display: none; }

.tv-searchpanel__form {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 0;
}

.tv-searchpanel__form > .tv-icon { color: var(--tv-muted); }

.tv-searchpanel__form input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	padding: 10px 0;
	border: 0;
	background: transparent;
	font-size: 15px;
	outline: none;
}

@keyframes tv-slide-down {
	from { opacity: 0; transform: translateY(-8px); }
	to   { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------------------
   6. Mobile drawer
   ---------------------------------------------------------------------- */

.tv-scrim {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgba(18, 19, 13, .42);
	backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity .3s var(--tv-ease);
}

.tv-scrim[hidden] { display: none; }
.tv-scrim.is-open { opacity: 1; }

.tv-drawer {
	position: fixed;
	top: 0;
	right: auto;
	bottom: 0;
	left: 0;
	z-index: 80;
	display: flex;
	flex-direction: column;
	width: min(88vw, 380px);
	height: auto;
	background: var(--tv-panel);
	box-shadow: var(--tv-shadow-lg);
	transform: translateX(-100%);
	transition: transform .34s var(--tv-ease);
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.tv-drawer[hidden] { display: none; }
.tv-drawer.is-open { transform: none; }

.tv-drawer__head {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--tv-line);
	position: sticky;
	top: 0;
	z-index: 2;
	background: var(--tv-panel);
}

.tv-drawer__search {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 9px;
	margin: 14px 18px 4px;
	padding: 11px 14px;
	background: var(--tv-surface);
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-r-pill);
	color: var(--tv-muted);
}

.tv-drawer__search input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	background: transparent;
	font-size: 14.5px;
	color: var(--tv-ink);
	outline: none;
}

.tv-drawer__nav {
	flex: 0 0 auto;
	min-height: 0;
	display: block;
	overflow: visible;
	padding: 10px 12px 0;
}

.tv-drawer__list {
	display: flex;
	flex-direction: column;
	overflow: visible;
}

.tv-drawer__list > .menu-item {
	flex: 0 0 auto;
	border-bottom: 1px solid var(--tv-line);
}

.tv-drawer__list > .menu-item:last-child { border-bottom: 0; }

.tv-drawer__list > .menu-item > a {
	display: block;
	padding: 15px 8px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -.015em;
}

.tv-drawer__list .menu-item-has-children {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto;
	align-items: center;
}

.tv-drawer__list .menu-item-has-children.is-open {
	flex: 0 0 auto;
	grid-template-rows: auto auto;
	align-items: stretch;
	overflow: visible;
}

.tv-drawer__list .menu-item-has-children > a { grid-column: 1; }

.tv-drawer__toggle {
	display: grid;
	place-items: center;
	width: 38px; height: 38px;
	border: 0;
	border-radius: var(--tv-r-pill);
	background: rgba(20, 21, 15, .05);
	color: var(--tv-ink);
	transition: transform .22s var(--tv-ease), background-color .18s var(--tv-ease);
}

.tv-drawer__list .sub-menu {
	display: none;
	grid-column: 1 / -1;
	padding: 2px 0 14px 8px;
}

.tv-drawer__list .is-open > .sub-menu {
	display: block;
	overflow: visible;
	padding: 4px 0 18px 8px;
}
.tv-drawer__list .is-open > .tv-drawer__toggle { transform: rotate(180deg); }

.tv-drawer__list .sub-menu a {
	display: block;
	padding: 9px 10px;
	border-radius: var(--tv-r-xs);
	font-size: 14.5px;
	color: var(--tv-muted);
}

.tv-drawer__list .sub-menu a:hover { color: var(--tv-ink); background: rgba(20, 21, 15, .04); }

.tv-drawer__foot {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	border-top: 1px solid var(--tv-line);
	padding: 14px 18px calc(18px + env(safe-area-inset-bottom, 0px));
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	align-items: center;
	background: var(--tv-panel);
}

.tv-drawer__link,
.tv-drawer__note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
}

.tv-drawer__note {
	flex: 1 0 100%;
	color: var(--tv-muted);
	font-size: 12.5px;
	font-weight: 500;
}

@media (min-width: 900px) {
	.tv-drawer,
	.tv-scrim { display: none !important; }
}

/* -------------------------------------------------------------------------
   7. Hero
   ---------------------------------------------------------------------- */

.tv-home-hero {
	position: relative;
	z-index: 1;
	isolation: isolate;
	max-width: 100%;
}

.tv-hero {
	position: relative;
	padding-top: 14px;
	padding-bottom: 16px;
	overflow: visible;
	background: var(--tv-bg);
}

.tv-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"copy media"
		"actions actions";
	align-items: center;
	column-gap: 10px;
	row-gap: 10px;
	min-width: 0;
	max-width: var(--tv-maxw);
}

.tv-hero__copy {
	grid-area: copy;
	min-width: 0;
	max-width: 100%;
}

.tv-hero__title {
	margin: 0;
	font-size: clamp(24px, 6.4vw, 34px);
	font-weight: 800;
	letter-spacing: -.045em;
	line-height: 1.06;
	overflow-wrap: break-word;
}

.tv-hero__title span { display: block; }

.tv-hero__title-accent { color: var(--tv-accent); }

.tv-hero__sub {
	margin-top: 8px;
	max-width: 48ch;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--tv-ink-2);
}

.tv-hero__cta {
	margin-top: 0;
	padding: 10px 16px;
	font-size: 13px;
}

.tv-hero__actions {
	grid-area: actions;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.tv-hero__media {
	grid-area: media;
	width: auto;
	max-width: none;
	min-width: 0;
	padding: 8px 0 0;
	align-self: center;
}

.tv-hero-card {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	background: transparent;
	padding: 0;
	box-shadow: none;
}

.tv-hero-wheelstage {
	position: relative;
	aspect-ratio: 1;
	width: min(44vw, 176px);
	max-width: none;
	margin-inline: 0;
}

.tv-hero-wheel {
	--tv-hero-wheel-rotation: 0deg;
	position: absolute;
	inset: 0;
	display: block;
	transform: rotate(var(--tv-hero-wheel-rotation));
	transform-origin: 50% 50%;
	will-change: transform;
}

.tv-hero-wheel.is-hero-spinning {
	transition: transform 6.2s cubic-bezier(.12, .84, .12, 1);
}

.tv-hero-wheel__img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
}

.tv-hero-wheel__badge {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 4;
	display: block;
	width: min(32%, 184px);
	aspect-ratio: 1;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: transform .24s var(--tv-ease);
}

.tv-hero-wheel__badge img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.tv-hero-wheel__badge::after {
	content: "";
	position: absolute;
	inset: 4%;
	border: 2px solid rgba(246, 205, 85, .72);
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
	.tv-hero-wheel__badge:hover {
		transform: translate(-50%, -50%) scale(1.045);
	}

	.tv-hero-wheel__badge:hover::after {
		animation: tv-wheel-pulse 1.25s ease-out infinite;
	}
}

.tv-hero-wheel__badge:focus-visible {
	outline: 3px solid #f6cd55;
	outline-offset: 5px;
}

@keyframes tv-wheel-pulse {
	0% { opacity: .7; transform: scale(.86); }
	75%, 100% { opacity: 0; transform: scale(1.22); }
}

.tv-hero-wheel__pointer {
	position: absolute;
	top: -2%;
	left: 50%;
	z-index: 3;
	display: block;
	width: min(3.5%, 28px);
	transform: translateX(-50%);
	pointer-events: none;
}

/* Trustpilot-style rating row */

.tv-trust {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 10px;
	max-width: 100%;
	font-size: 11px;
	font-weight: 600;
	color: var(--tv-ink-2);
}

.tv-trust__word { letter-spacing: -.01em; }

.tv-trust__stars {
	display: inline-flex;
	gap: 2px;
}

.tv-trust__box {
	display: grid;
	place-items: center;
	width: 19px; height: 19px;
	background: var(--tv-trust);
	color: #fff;
}

.tv-trust__box--part {
	background: linear-gradient(to right, var(--tv-trust) 80%, #dcdce1 80%);
}

.tv-trust__score {
	font-size: 11.5px;
	font-weight: 500;
	color: var(--tv-muted);
}

.tv-trust__sep {
	width: 1px; height: 12px;
	background: var(--tv-line-2);
}

.tv-trust__brand {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: -.02em;
}

.tv-trust__brand .tv-icon { color: var(--tv-trust); }

@media (min-width: 720px) {
	.tv-hero {
		padding-top: 22px;
		padding-bottom: 24px;
	}

	.tv-hero__inner {
		column-gap: 18px;
		row-gap: 12px;
	}

	.tv-hero__title { font-size: clamp(34px, 5.2vw, 46px); }
	.tv-hero__sub { font-size: 15px; margin-top: 12px; }
	.tv-hero__cta { padding: 12px 20px; font-size: 14px; }
	.tv-trust { margin-top: 14px; font-size: 12px; }

	.tv-hero-wheelstage {
		width: min(34vw, 240px);
	}
}

@media (min-width: 900px) {
	.tv-hero {
		padding-top: 22px;
		padding-bottom: 36px;
		overflow: hidden;
	}

	.tv-hero__inner {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.tv-hero__copy { order: 1; }
	.tv-hero__actions { order: 2; }
	.tv-hero__media { order: 3; }

	.tv-hero__title { font-size: clamp(48px, 4.9vw, 66px); }

	.tv-hero__title span { display: inline; }
	.tv-hero__title span + span::before { content: " "; }
	.tv-hero__title-accent { display: block; }
	.tv-hero__title-accent::before { content: none; }

	.tv-hero__copy {
		padding-block: 10px 0;
		text-align: left;
		max-width: none;
	}

	.tv-hero__sub {
		margin-top: 14px;
		font-size: 16px;
	}

	.tv-hero__cta {
		margin-top: 18px;
		padding: 12px 20px;
		font-size: 14px;
	}

	.tv-trust {
		margin-top: 18px;
		font-size: 12px;
	}

	.tv-hero__media {
		width: 100%;
		max-width: 400px;
		padding: 4px 0 8px;
	}

	.tv-hero-wheelstage {
		width: 100%;
		max-width: 400px;
		margin-inline: 0;
	}
}

@media (min-width: 1120px) {
	.tv-hero__title { font-size: 68px; }
}

/* -------------------------------------------------------------------------
   8. Department rail
   ---------------------------------------------------------------------- */

.tv-depts {
	position: relative;
	z-index: 0;
}

.tv-depts--photo {
	padding: 8px 0 24px;
}

.tv-depts--photo > .tv-container {
	padding-inline: 8px;
}

.tv-depts__stage {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(28, 27, 20, .06);
	border-radius: 28px;
	background: var(--tv-surface);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, .7) inset,
		0 18px 40px -28px rgba(28, 27, 20, .45),
		0 40px 80px -48px rgba(28, 27, 20, .28);
}

.tv-depts__media {
	display: block;
	width: 100%;
	overflow: hidden;
	margin: 0;
	line-height: 0;
	font-size: 0;
	background: var(--tv-surface);
}

.tv-depts__img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: 5 / 4;
	max-height: none;
	object-fit: cover;
	object-position: 68% 50%;
	vertical-align: middle;
}

.tv-depts--photo-only .tv-depts__stage {
	min-height: 0;
}

.tv-depts__card {
	background: var(--tv-surface);
	border-radius: var(--tv-r-lg);
	box-shadow: var(--tv-shadow);
	padding: 6px 0;
}

.tv-depts--photo .tv-depts__card {
	margin: 0;
	padding: 8px 6px 10px;
	border: 0;
	border-radius: 0;
	background: var(--tv-surface);
	box-shadow: none;
	backdrop-filter: none;
}

.tv-depts__list {
	display: flex;
	gap: 0;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-inline: 4px;
}

.tv-depts__list::-webkit-scrollbar { display: none; }

.tv-depts__item {
	flex: 0 0 auto;
	scroll-snap-align: start;
	width: 92px;
}

.tv-dept {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	padding: 16px 4px 15px;
	border-radius: var(--tv-r);
	color: var(--tv-ink);
	transition: background-color .18s var(--tv-ease), transform .18s var(--tv-ease);
}

.tv-dept:hover { background: var(--tv-panel-2); }

.tv-dept__icon {
	display: grid;
	place-items: center;
	width: 34px; height: 34px;
	color: var(--tv-ink);
	transition: transform .22s var(--tv-ease);
}

.tv-dept:hover .tv-dept__icon { transform: translateY(-2px); }

.tv-dept__icon--ring {
	border: 1.4px solid var(--tv-line-2);
	border-radius: 50%;
	width: 34px; height: 34px;
}

.tv-dept:hover .tv-dept__icon--ring {
	border-color: var(--tv-ink);
	transform: none;
}

.tv-dept__label {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	width: 100%;
	min-height: 2.5em;
	font-size: 11.5px;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: -.005em;
	text-align: center;
	color: var(--tv-ink-2);
}

.tv-depts__item--all { position: relative; }

@media (min-width: 720px) {
	.tv-depts--photo {
		padding: 16px 0 40px;
	}

	.tv-depts--photo > .tv-container {
		padding-inline: var(--tv-gutter);
	}

	.tv-depts__stage {
		border-radius: 32px;
	}

	.tv-depts__img {
		aspect-ratio: auto;
		height: auto;
		max-height: min(62vh, 560px);
		object-fit: contain;
		object-position: center;
	}

	.tv-depts--photo .tv-depts__card {
		padding: 10px 8px 12px;
	}
}

@media (min-width: 900px) {
	.tv-depts__list {
		display: grid;
		grid-template-columns: repeat(9, 1fr);
		overflow: visible;
		padding-inline: 8px;
	}

	.tv-depts__item { width: auto; }

	.tv-depts__item--all::before {
		content: "";
		position: absolute;
		left: 0; top: 22%;
		height: 56%;
		border-left: 1px solid var(--tv-line);
	}
}

/* -------------------------------------------------------------------------
   9. Promise band
   ---------------------------------------------------------------------- */

.tv-promise { padding-top: 14px; }

.tv-promise__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px 10px;
	padding: 16px 14px;
	background: var(--tv-band);
	border-radius: var(--tv-r);
}

.tv-promise__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 8px 2px;
}

.tv-promise__icon {
	display: grid;
	place-items: center;
	width: 30px; height: 30px;
	flex: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, .72);
	color: var(--tv-ink);
}

.tv-promise__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.tv-promise__text strong {
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: -.012em;
	line-height: 1.25;
}

.tv-promise__text span {
	font-size: 11.5px;
	line-height: 1.35;
	color: var(--tv-muted);
}

@media (min-width: 720px) {
	.tv-promise { padding-top: 18px; }

	.tv-promise__list {
		grid-template-columns: repeat(4, 1fr);
		gap: 0;
		padding: 18px 8px;
	}

	.tv-promise__item {
		padding: 4px 20px;
		align-items: center;
	}

	.tv-promise__item + .tv-promise__item {
		border-left: 1px solid rgba(20, 21, 15, .09);
	}

	.tv-promise__text strong { font-size: 13.5px; }
	.tv-promise__text span { font-size: 12px; }
}

/* -------------------------------------------------------------------------
   10. Sections & panels
   ---------------------------------------------------------------------- */

.tv-main { display: block; }

.tv-section { padding-top: 22px; }
.tv-section--signup { padding-bottom: 40px; }

.tv-panel {
	background: var(--tv-panel);
	border-radius: var(--tv-r-lg);
	padding: 18px 14px 20px;
}

.tv-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
	padding-inline: 2px;
}

.tv-section__title {
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -.03em;
}

.tv-viewall {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--tv-muted);
	transition: color .16s var(--tv-ease);
}

.tv-viewall:hover { color: var(--tv-ink); }
.tv-viewall .tv-icon { transition: transform .2s var(--tv-ease); }
.tv-viewall:hover .tv-icon { transform: translateX(2px); }

@media (min-width: 720px) {
	.tv-section { padding-top: 28px; }
	.tv-section--signup { padding-bottom: 56px; }
	.tv-panel { padding: 24px 22px 26px; }
	.tv-section__title { font-size: 24px; }
	.tv-section__head { margin-bottom: 18px; }
}

@media (min-width: 1120px) {
	.tv-panel { padding: 28px 26px 30px; }
	.tv-section__title { font-size: 26px; }
}

/* -------------------------------------------------------------------------
   11. Product cards
   ---------------------------------------------------------------------- */

.tv-grid { display: grid; }

.tv-grid--products {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.tv-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--tv-surface);
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-r);
	overflow: hidden;
	transition: transform .22s var(--tv-ease), box-shadow .22s var(--tv-ease), border-color .22s var(--tv-ease);
}

.tv-card:hover {
	transform: translateY(-3px);
	border-color: var(--tv-line-2);
	box-shadow: var(--tv-shadow);
}

.tv-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.tv-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f0eee8;
}

.tv-card__media .tv-illus,
.tv-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--tv-ease);
}

.tv-card:hover .tv-illus,
.tv-card:hover .tv-card__img { transform: scale(1.035); }

.tv-card__badge {
	position: absolute;
	top: 8px; left: 8px;
	z-index: 2;
	padding: 4px 7px;
	border-radius: 5px;
	background: var(--tv-surface);
	color: var(--tv-ink);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .07em;
	line-height: 1;
	box-shadow: var(--tv-shadow-sm);
}

.tv-card__body {
	display: flex;
	flex-direction: column;
	gap: 5px;
	flex: 1 1 auto;
	padding: 11px 11px 13px;
}

.tv-card__brand {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--tv-muted-2);
}

.tv-card__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 12.5px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: -.008em;
	color: var(--tv-ink-2);
}

.tv-card__price {
	display: flex;
	align-items: baseline;
	gap: 7px;
	margin-top: auto;
	padding-top: 6px;
}

.tv-card__price-now {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -.02em;
}

.tv-card__price-was {
	font-size: 11.5px;
	font-weight: 500;
	color: var(--tv-muted-2);
	text-decoration: line-through;
}

.tv-card__rating {
	display: flex;
	align-items: center;
	gap: 6px;
}

.tv-stars {
	display: inline-flex;
	gap: 1px;
	color: #d8d6cc;
}

.tv-stars__star { display: inline-flex; }
.tv-stars__star.is-on { color: #e0a52e; }
.tv-stars__star.is-half { color: #ecd39a; }

.tv-stars__count {
	font-size: 11px;
	color: var(--tv-muted-2);
}

.tv-card__wish {
	position: absolute;
	top: 7px; right: 7px;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 30px; height: 30px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .84);
	color: var(--tv-ink-2);
	opacity: 0;
	transform: scale(.9);
	transition: opacity .2s var(--tv-ease), transform .2s var(--tv-ease), color .2s var(--tv-ease);
}

.tv-card:hover .tv-card__wish,
.tv-card__wish:focus-visible { opacity: 1; transform: none; }

.tv-card__wish[aria-pressed="true"] { opacity: 1; transform: none; color: var(--tv-sale); }
.tv-card__wish[aria-pressed="true"] .tv-icon { fill: currentColor; }

@media (hover: none) {
	.tv-card__wish { opacity: 1; transform: none; }
}

@media (min-width: 560px) {
	.tv-grid--products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 720px) {
	.tv-grid--products { gap: 14px; }
	.tv-card__title { font-size: 13px; }
	.tv-card__price-now { font-size: 14.5px; }
}

@media (min-width: 900px) {
	.tv-grid--products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1120px) {
	.tv-grid--products {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 14px;
	}
}

/* -------------------------------------------------------------------------
   12. Collection tiles
   ---------------------------------------------------------------------- */

.tv-grid--tiles {
	grid-template-columns: 1fr;
	gap: 12px;
}

.tv-tile {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	border-radius: var(--tv-r);
	overflow: hidden;
	isolation: isolate;
	transition: transform .24s var(--tv-ease), box-shadow .24s var(--tv-ease);
}

.tv-tile:hover {
	transform: translateY(-3px);
	box-shadow: var(--tv-shadow);
}

.tv-tile__media {
	position: absolute;
	inset: 0;
	display: block;
}

.tv-tile__scene,
.tv-tile__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s var(--tv-ease);
}

.tv-tile:hover .tv-tile__scene,
.tv-tile:hover .tv-tile__img { transform: scale(1.05); }

.tv-tile__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(103deg, rgba(15, 16, 11, .68) 0%, rgba(15, 16, 11, .34) 46%, rgba(15, 16, 11, .06) 100%);
}

.tv-tile__content {
	position: absolute;
	left: 14px;
	bottom: 13px;
	right: 14px;
	display: flex;
	flex-direction: column;
	gap: 3px;
	color: #fff;
}

.tv-tile__eyebrow {
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .74);
}

.tv-tile__title {
	max-width: 9ch;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -.028em;
	line-height: 1.14;
	text-shadow: 0 1px 12px rgba(0, 0, 0, .28);
}

@media (min-width: 560px) {
	.tv-grid--tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tv-tile { aspect-ratio: 4 / 3; }
}

@media (min-width: 720px) {
	.tv-grid--tiles { gap: 14px; }
}

@media (min-width: 1000px) {
	.tv-grid--tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.tv-tile { aspect-ratio: 5 / 4; }
	.tv-tile__title { font-size: 19px; }
	.tv-tile__content { left: 16px; bottom: 15px; }
}

/* -------------------------------------------------------------------------
   13. Newsletter
   ---------------------------------------------------------------------- */

.tv-signup {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tv-signup__copy {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tv-signup__icon {
	display: grid;
	place-items: center;
	width: 42px; height: 42px;
	flex: none;
	border-radius: 50%;
	background: var(--tv-band);
	color: var(--tv-ink);
}

.tv-signup__text {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.tv-signup__text strong {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -.02em;
}

.tv-signup__text span {
	font-size: 12.5px;
	color: var(--tv-muted);
}

.tv-signup__form {
	position: relative;
	display: flex;
	gap: 8px;
	width: 100%;
}

.tv-signup__input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 12px 15px;
	border: 1px solid var(--tv-line-2);
	border-radius: var(--tv-r-sm);
	background: var(--tv-surface);
	font-size: 14px;
	transition: border-color .18s var(--tv-ease), box-shadow .18s var(--tv-ease);
}

.tv-signup__input::placeholder { color: var(--tv-muted-2); }

.tv-signup__input:focus {
	outline: none;
	border-color: var(--tv-ink);
	box-shadow: 0 0 0 3px rgba(20, 21, 15, .08);
}

.tv-signup__msg {
	position: absolute;
	top: calc(100% + 7px);
	left: 2px;
	margin: 0;
	font-size: 12px;
	font-weight: 500;
	color: var(--tv-muted);
}

.tv-signup__msg.is-ok { color: #3f7d4e; }
.tv-signup__msg.is-err { color: var(--tv-sale); }

@media (min-width: 720px) {
	.tv-signup {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 24px;
		padding-block: 20px 22px;
	}

	.tv-signup__form {
		width: auto;
		flex: 0 1 440px;
	}

	.tv-signup__input { flex: 1 1 auto; }
}

/* -------------------------------------------------------------------------
   14. Footer
   ---------------------------------------------------------------------- */

.tv-footer {
	margin-top: 12px;
	background: var(--tv-ink);
	color: #dcdbd1;
	padding: 40px 0 calc(26px + env(safe-area-inset-bottom));
}

.tv-footer__top {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px 20px;
}

.tv-footer__brand { grid-column: 1 / -1; }

.tv-footer .tv-logo__word,
.tv-footer .tv-logo__dot { color: #fff; }
.tv-footer .tv-logo__dot { background: var(--tv-accent-2); }

.tv-footer__blurb {
	margin-top: 14px;
	max-width: 42ch;
	font-size: 13.5px;
	line-height: 1.6;
	color: #a5a496;
}

.tv-social {
	display: flex;
	gap: 8px;
	margin-top: 18px;
}

.tv-social__link {
	display: grid;
	place-items: center;
	width: 38px; height: 38px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 50%;
	color: #dcdbd1;
	transition: background-color .18s var(--tv-ease), color .18s var(--tv-ease), border-color .18s var(--tv-ease), transform .18s var(--tv-ease);
}

.tv-social__link:hover {
	background: #fff;
	border-color: #fff;
	color: var(--tv-ink);
	transform: translateY(-2px);
}

.tv-footer__heading {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 12px;
}

.tv-footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.tv-footer__col a {
	font-size: 13.5px;
	color: #a5a496;
	transition: color .16s var(--tv-ease);
}

.tv-footer__col a:hover { color: #fff; }

.tv-footer__assure {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 16px;
	margin-top: 34px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.tv-footer__assure p {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 500;
	color: #bdbcb0;
}

.tv-footer__assure .tv-icon { color: var(--tv-accent-2); }

.tv-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.tv-footer__copy {
	font-size: 12px;
	color: #8d8d81;
}

.tv-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
}

.tv-footer__legal a {
	font-size: 12px;
	color: #8d8d81;
	transition: color .16s var(--tv-ease);
}

.tv-footer__legal a:hover { color: #fff; }

@media (min-width: 720px) {
	.tv-footer { padding-top: 52px; }

	.tv-footer__top {
		grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
		gap: 40px;
	}

	.tv-footer__brand { grid-column: auto; }

	.tv-footer__assure { grid-template-columns: repeat(4, minmax(0, 1fr)); }

	.tv-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

/* -------------------------------------------------------------------------
   15. Inner pages (shop, single, blog, search, 404)
   ---------------------------------------------------------------------- */

.tv-page { padding: 26px 0 48px; }

.tv-page > .tv-container {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.tv-page__header {
	width: 100%;
	margin-bottom: 22px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--tv-line);
}

.tv-crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
	font-size: 12px;
	color: var(--tv-muted);
}

.tv-crumbs a:hover { color: var(--tv-ink); }
.tv-crumbs__sep { opacity: .5; }

.tv-page__title {
	font-size: clamp(28px, 6vw, 40px);
	letter-spacing: -.035em;
}

.tv-page__lede {
	margin-top: 10px;
	max-width: 62ch;
	font-size: 15px;
	color: var(--tv-muted);
}

.tv-prose {
	max-width: 68ch;
	font-size: 16px;
	line-height: 1.7;
	color: var(--tv-ink-2);
}

.tv-prose > * + * { margin-top: 1.1em; }
.tv-prose h2 { font-size: 26px; margin-top: 1.6em; }
.tv-prose h3 { font-size: 20px; margin-top: 1.4em; }
.tv-prose a { color: var(--tv-accent); text-decoration: underline; text-underline-offset: 3px; }
.tv-prose ul, .tv-prose ol { padding-left: 1.2em; }
.tv-prose ul { list-style: disc; }
.tv-prose ol { list-style: decimal; }
.tv-prose li + li { margin-top: .4em; }
.tv-prose img { border-radius: var(--tv-r); }
.tv-prose blockquote {
	padding-left: 18px;
	border-left: 3px solid var(--tv-accent);
	font-size: 18px;
	font-style: italic;
	color: var(--tv-ink);
}

/* Comments — WordPress core markup (theme ships no comments.php), styled
   to match the rest of the shop instead of raw browser defaults. */

.tv-prose #comments {
	font-size: 20px;
	margin-top: 8px;
}

.tv-prose .commentlist,
.tv-prose .children {
	list-style: none;
	margin-top: 18px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tv-prose .children {
	margin-left: clamp(16px, 5vw, 32px);
	padding-left: 16px;
	border-left: 2px solid var(--tv-line);
}

.tv-prose .comment-body {
	background: var(--tv-surface);
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-r);
	padding: 16px 18px;
}

.tv-prose .comment-meta { margin-top: 0; }

.tv-prose .comment-author.vcard {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 0;
}

.tv-prose .comment-author .avatar {
	border-radius: 50%;
	flex: none;
}

.tv-prose .comment-author .fn {
	font-size: 14px;
	font-style: normal;
}

.tv-prose .comment-author .fn a { color: var(--tv-ink); text-decoration: none; }
.tv-prose .comment-author .says { display: none; }

.tv-prose .comment-metadata {
	margin-top: 2px;
	font-size: 12px;
}

.tv-prose .comment-metadata a { color: var(--tv-muted); text-decoration: none; }
.tv-prose .comment-metadata a:hover { color: var(--tv-ink); }

.tv-prose .comment-content p {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--tv-ink-2);
}

.tv-prose .comment-content p:first-child { margin-top: 10px; }

.tv-prose .reply { margin-top: 10px; }

.tv-prose .comment-reply-link {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--tv-muted);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tv-prose .comment-reply-link:hover { color: var(--tv-ink); }

.tv-prose .comments-pagination,
.tv-prose > .navigation {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	margin-top: 18px;
	font-size: 13px;
	font-weight: 500;
}

.tv-prose > .navigation:empty,
.tv-prose > .navigation:has(.alignleft:empty):has(.alignright:empty) { display: none; }

.comment-respond {
	margin-top: 32px;
	padding-top: 26px;
	border-top: 1px solid var(--tv-line);
}

.comment-reply-title {
	font-size: 19px;
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
}

#cancel-comment-reply-link {
	font-size: 12.5px;
	font-weight: 500;
	color: var(--tv-muted);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.comment-notes {
	margin-top: 6px;
	font-size: 13px;
	color: var(--tv-muted);
}

.comment-notes .required { color: var(--tv-sale); }

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-top: 16px;
}

.comment-form label {
	font-size: 12.5px;
	font-weight: 600;
}

.comment-form label .required { color: var(--tv-sale); }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1px solid var(--tv-line-2);
	border-radius: var(--tv-r-sm);
	background: var(--tv-surface);
	font-size: 14px;
	transition: border-color .18s var(--tv-ease), box-shadow .18s var(--tv-ease);
}

.comment-form textarea { min-height: 130px; resize: vertical; }

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--tv-ink);
	box-shadow: 0 0 0 3px rgba(20, 21, 15, .08);
}

.comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-size: 12.5px;
	color: var(--tv-muted);
}

.comment-form-cookies-consent input { flex: none; }

.form-submit { margin-top: 18px; }

.form-submit input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: var(--tv-r-sm);
	background: var(--tv-ink);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: -.01em;
	transition: transform .18s var(--tv-ease), background-color .18s var(--tv-ease), box-shadow .18s var(--tv-ease);
}

.form-submit input[type="submit"]:hover {
	background: #26281d;
	transform: translateY(-1px);
	box-shadow: var(--tv-shadow);
}

.tv-postcard {
	display: block;
	padding: 20px;
	background: var(--tv-surface);
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-r);
	transition: transform .2s var(--tv-ease), box-shadow .2s var(--tv-ease);
}

.tv-postcard:hover { transform: translateY(-2px); box-shadow: var(--tv-shadow); }
.tv-postcard h2 { font-size: 19px; }
.tv-postcard__meta { margin-top: 6px; font-size: 12.5px; color: var(--tv-muted-2); }
.tv-postcard p { margin-top: 10px; font-size: 14px; color: var(--tv-muted); }

.tv-grid--posts {
	grid-template-columns: 1fr;
	gap: 14px;
}

@media (min-width: 720px) {
	.tv-grid--posts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1000px) {
	.tv-grid--posts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.tv-pagination {
	margin-top: 28px;
}

/* WordPress wraps the actual links in a .nav-links div inside the <nav> —
   the flex layout has to target that, not the single-child <nav> itself. */
.tv-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tv-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding-inline: 12px;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-r-xs);
	background: var(--tv-surface);
	font-size: 14px;
	font-weight: 500;
}

.tv-pagination .page-numbers.current,
.tv-pagination .page-numbers:hover {
	background: var(--tv-ink);
	border-color: var(--tv-ink);
	color: #fff;
}

/* Filter chips */

.tv-chips {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	width: 100%;
	margin-top: 18px;
	padding-bottom: 4px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.tv-chips::-webkit-scrollbar { display: none; }

.tv-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	padding: 9px 14px;
	border: 1px solid var(--tv-line-2);
	border-radius: var(--tv-r-pill);
	background: var(--tv-surface);
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	transition: background-color .16s var(--tv-ease), color .16s var(--tv-ease), border-color .16s var(--tv-ease);
}

.tv-chip:hover { border-color: var(--tv-ink); }

.tv-chip.is-on {
	background: var(--tv-ink);
	border-color: var(--tv-ink);
	color: #fff;
}

@media (min-width: 900px) {
	.tv-chips { flex-wrap: wrap; overflow: visible; }
}

/* Shop grid keeps roomier cards than the homepage rail */

.tv-grid--shop {
	width: 100%;
	gap: 14px;
}

@media (min-width: 1120px) {
	.tv-grid--shop { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
	.tv-grid--shop .tv-card__title { font-size: 14px; }
	.tv-grid--shop .tv-card__price-now { font-size: 16px; }
	.tv-grid--shop .tv-card__body { padding: 14px 14px 16px; }
}

/* Shop archive — desktop category rail */

.tv-shopnav { display: none; }

.tv-page--shop .tv-page__header {
	border-bottom: 0;
	margin-bottom: 18px;
	padding-bottom: 0;
}

@media (min-width: 900px) {
	.tv-page--shop > .tv-container.tv-shop {
		display: grid;
		grid-template-columns: 248px minmax(0, 1fr);
		align-items: start;
		gap: 32px;
		max-width: 1280px;
	}

	.tv-page--shop .tv-chips--shop { display: none; }

	.tv-shopnav { display: block; }

	.tv-shopnav__inner {
		position: sticky;
		top: calc(var(--tv-header-h) + 16px);
		display: flex;
		flex-direction: column;
		gap: 12px;
		padding: 16px 14px 14px;
		border: 1px solid var(--tv-line);
		border-radius: var(--tv-r-lg);
		background: var(--tv-surface);
		box-shadow: var(--tv-shadow-sm);
		overflow: hidden;
	}

	.tv-shopnav nav {
		min-width: 0;
	}

	.tv-shopnav__label {
		margin: 0 4px;
		font-size: 11px;
		font-weight: 700;
		letter-spacing: .1em;
		text-transform: uppercase;
		color: var(--tv-muted);
	}

	.tv-shopnav__find {
		position: relative;
		display: block;
	}

	.tv-shopnav__find .tv-icon {
		position: absolute;
		top: 50%;
		left: 10px;
		color: var(--tv-muted-2);
		transform: translateY(-50%);
		pointer-events: none;
	}

	.tv-shopnav__find input {
		width: 100%;
		height: 38px;
		padding: 0 12px 0 34px;
		border: 1px solid var(--tv-line-2);
		border-radius: var(--tv-r-pill);
		background: var(--tv-panel);
		color: var(--tv-ink);
		font: inherit;
		font-size: 13px;
	}

	.tv-shopnav__find input::placeholder { color: var(--tv-muted-2); }

	.tv-shopnav__find input:focus {
		outline: none;
		border-color: var(--tv-ink);
		background: #fff;
	}

	.tv-shopnav__list {
		display: flex;
		flex-direction: column;
		gap: 2px;
		margin: 0 -4px;
		padding: 0;
	}

	.tv-shopnav__link {
		display: flex;
		align-items: center;
		gap: 8px;
		min-height: 36px;
		padding: 6px 10px;
		border-radius: 10px;
		color: var(--tv-ink-2);
		font-size: 13.5px;
		font-weight: 500;
		line-height: 1.25;
		transition: background-color .14s var(--tv-ease), color .14s var(--tv-ease);
	}

	.tv-shopnav__link .tv-icon {
		flex: none;
		color: var(--tv-muted);
	}

	.tv-shopnav__name {
		flex: 1 1 auto;
		min-width: 0;
	}

	.tv-shopnav__count {
		flex: none;
		color: var(--tv-muted-2);
		font-size: 12px;
		font-weight: 500;
		font-variant-numeric: tabular-nums;
	}

	.tv-shopnav__link:hover {
		background: var(--tv-panel);
		color: var(--tv-ink);
	}

	.tv-shopnav__link:hover .tv-icon { color: var(--tv-ink); }

	.tv-shopnav__link.is-on {
		background: var(--tv-ink);
		color: #fff;
	}

	.tv-shopnav__link.is-on .tv-icon,
	.tv-shopnav__link.is-on .tv-shopnav__count { color: rgba(255, 255, 255, .72); }

	.tv-shopnav__empty {
		margin: 8px 4px 0;
		font-size: 13px;
		color: var(--tv-muted);
	}

	.tv-page--shop .tv-grid--shop,
	.tv-page--shop .tv-grid--products.tv-grid--shop {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1120px) {
	.tv-page--shop > .tv-container.tv-shop {
		grid-template-columns: 260px minmax(0, 1fr);
		gap: 40px;
	}

	.tv-page--shop .tv-grid--shop,
	.tv-page--shop .tv-grid--products.tv-grid--shop {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}
}

/* Empty state */

.tv-empty {
	display: grid;
	place-items: center;
	gap: 14px;
	padding: 56px 20px 64px;
	text-align: center;
	background: var(--tv-panel);
	border-radius: var(--tv-r-lg);
	color: var(--tv-muted);
}

.tv-empty p { font-size: 15px; font-weight: 500; }

/* Collection hero */

.tv-collection-hero {
	position: relative;
	border-radius: var(--tv-r-lg);
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.tv-collection-hero > svg,
.tv-collection-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tv-collection-hero__content {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	color: #fff;
}

.tv-collection-hero__content h1 {
	font-size: clamp(26px, 5.6vw, 42px);
	letter-spacing: -.035em;
	text-shadow: 0 2px 18px rgba(0, 0, 0, .3);
}

.tv-collection-hero__content p {
	margin-top: 8px;
	max-width: 52ch;
	font-size: 14px;
	color: rgba(255, 255, 255, .84);
}

@media (min-width: 900px) {
	.tv-collection-hero { aspect-ratio: 21 / 8; }
	.tv-collection-hero__content { left: 34px; bottom: 30px; }
}

/* Product single */

.tv-product {
	display: grid;
	gap: 22px;
}

.tv-product__media {
	border-radius: var(--tv-r-lg);
	overflow: hidden;
	background: var(--tv-surface);
	border: 1px solid var(--tv-line);
}

.tv-product__viewport {
	overflow: hidden;
	touch-action: pan-y;
	cursor: grab;
}

.tv-product__media--swipe .tv-product__viewport { cursor: grab; }
.tv-product__media--swipe .tv-product__viewport.is-dragging { cursor: grabbing; }

.tv-product__track {
	display: flex;
	will-change: transform;
}

.tv-product__slide {
	flex: 0 0 100%;
	min-width: 0;
}

.tv-product__media img,
.tv-product__media svg {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	-webkit-user-drag: none;
	user-select: none;
}

.tv-product__slide img { pointer-events: none; }

.tv-product__title {
	font-size: clamp(26px, 5.4vw, 36px);
	letter-spacing: -.032em;
}

.tv-product__brand {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--tv-muted-2);
	margin-bottom: 8px;
}

.tv-product__price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin: 14px 0 4px;
}

.tv-product__price-now { font-size: 26px; font-weight: 700; letter-spacing: -.03em; }
.tv-product__price-was { font-size: 15px; color: var(--tv-muted-2); text-decoration: line-through; }

.tv-product__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.tv-product__notes {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid var(--tv-line);
}

.tv-product__notes p {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13.5px;
	color: var(--tv-muted);
}

.tv-product__notes .tv-icon { color: var(--tv-ink); }

@media (min-width: 900px) {
	.tv-product {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 40px;
		align-items: start;
	}
}

/* Basket count on the header bag */

.tv-iconbtn--bag { position: relative; }

.tv-bagcount {
	position: absolute;
	top: 3px;
	right: 2px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	display: grid;
	place-items: center;
	border-radius: var(--tv-r-pill);
	background: var(--tv-ink);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 0 0 2px var(--tv-bg);
}

.tv-bagcount[hidden] { display: none; }

/* Product gallery */

.tv-product__gallery {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tv-product__thumbs {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
}

.tv-product__thumbs::-webkit-scrollbar { display: none; }

.tv-product__thumb {
	flex: 0 0 auto;
	width: 68px;
	height: 68px;
	padding: 0;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-r-sm);
	background: var(--tv-surface);
	overflow: hidden;
	transition: border-color .16s var(--tv-ease);
}

.tv-product__thumb img { width: 100%; height: 100%; object-fit: cover; }
.tv-product__thumb.is-on { border-color: var(--tv-ink); }

/* Stock line */

.tv-stock {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 12px;
	font-size: 13px;
	font-weight: 600;
}

.tv-stock.is-in { color: #3f7d4e; }
.tv-stock.is-out { color: var(--tv-sale); }

/* Buy box */

.tv-buy {
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid var(--tv-line);
}

.tv-buy__label {
	display: block;
	margin-bottom: 7px;
	font-size: 12.5px;
	font-weight: 600;
}

.tv-buy__select {
	width: 100%;
	max-width: 320px;
	padding: 12px 14px;
	border: 1px solid var(--tv-line-2);
	border-radius: var(--tv-r-sm);
	background: var(--tv-surface);
	font-size: 14px;
}

.tv-buy__row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.tv-buy__add { flex: 1 1 200px; }
.tv-buy__add[disabled] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

.tv-buy__msg {
	margin-top: 10px;
	font-size: 13px;
	font-weight: 500;
	min-height: 1.2em;
}

.tv-buy__msg.is-ok { color: #3f7d4e; }
.tv-buy__msg.is-err { color: var(--tv-sale); }
.tv-buy__msg a { text-decoration: underline; text-underline-offset: 3px; }

.tv-buy__note {
	margin-top: 10px;
	font-size: 12.5px;
	color: var(--tv-muted);
}

.tv-buy__note a { text-decoration: underline; }

/* Quantity stepper */

.tv-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--tv-line-2);
	border-radius: var(--tv-r-sm);
	background: var(--tv-surface);
	overflow: hidden;
}

.tv-qty__btn {
	width: 42px;
	height: 46px;
	border: 0;
	background: transparent;
	font-size: 17px;
	line-height: 1;
	color: var(--tv-ink);
	transition: background-color .16s var(--tv-ease);
}

.tv-qty__btn:hover { background: var(--tv-panel-2); }

.tv-qty__input {
	width: 46px;
	height: 46px;
	border: 0;
	border-inline: 1px solid var(--tv-line);
	background: transparent;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	-moz-appearance: textfield;
}

.tv-qty__input::-webkit-outer-spin-button,
.tv-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Basket */

.tv-basket {
	display: grid;
	gap: 22px;
	align-items: start;
}

.tv-basket.is-busy { opacity: .55; pointer-events: none; }

.tv-basket__lines {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tv-basket__line {
	display: grid;
	grid-template-columns: 84px 1fr;
	grid-template-areas:
		"media detail"
		"qty   total";
	gap: 12px 14px;
	padding: 14px;
	background: var(--tv-surface);
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-r);
}

.tv-basket__media {
	grid-area: media;
	border-radius: var(--tv-r-sm);
	overflow: hidden;
	background: var(--tv-panel-2);
	aspect-ratio: 1 / 1;
}

.tv-basket__media img { width: 100%; height: 100%; object-fit: cover; }

.tv-basket__detail { grid-area: detail; }

.tv-basket__title { font-size: 15px; letter-spacing: -.02em; }
.tv-basket__variant { margin-top: 3px; font-size: 12.5px; color: var(--tv-muted); }
.tv-basket__unit { margin-top: 5px; font-size: 12.5px; color: var(--tv-muted-2); }

.tv-basket__qty {
	grid-area: qty;
	display: flex;
	align-items: center;
	gap: 12px;
}

.tv-basket__remove {
	border: 0;
	background: none;
	padding: 0;
	font-size: 12.5px;
	color: var(--tv-muted);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tv-basket__remove:hover { color: var(--tv-sale); }

.tv-basket__total {
	grid-area: total;
	align-self: center;
	justify-self: end;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -.02em;
}

.tv-basket__summary {
	padding: 20px;
	background: var(--tv-panel);
	border-radius: var(--tv-r-lg);
}

.tv-basket__summary h2 { font-size: 17px; margin-bottom: 14px; }

.tv-basket__row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	font-size: 14px;
	border-bottom: 1px solid var(--tv-line);
}

.tv-basket__row--muted { color: var(--tv-muted); border-bottom: 0; }
.tv-basket__row strong { font-size: 17px; letter-spacing: -.02em; }

.tv-basket__checkout { width: 100%; margin-top: 14px; }

.tv-basket__note {
	margin-top: 12px;
	font-size: 12px;
	line-height: 1.5;
	color: var(--tv-muted);
}

.tv-basket__continue {
	display: block;
	margin-top: 14px;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	color: var(--tv-muted);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tv-basket__continue:hover { color: var(--tv-ink); }

@media (min-width: 720px) {
	.tv-basket__line {
		grid-template-columns: 100px 1fr auto auto;
		grid-template-areas: "media detail qty total";
		align-items: center;
		gap: 18px;
	}

	.tv-basket__qty { flex-direction: column; align-items: flex-start; gap: 6px; }
	.tv-basket__total { min-width: 88px; }
}

@media (min-width: 1000px) {
	.tv-basket { grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; }
}

/* Hero photograph (when one replaces the illustration) */

.tv-hero__photo {
	width: 100%;
	height: auto;
	border-radius: var(--tv-r-lg);
}

@media (min-width: 900px) {
	.tv-hero__photo {
		max-height: 520px;
		object-fit: contain;
		border-radius: 0;
	}
}

/* 404 */

.tv-404 {
	display: grid;
	place-items: center;
	gap: 18px;
	padding: 60px 0 80px;
	text-align: center;
}

.tv-404__code {
	font-size: clamp(64px, 18vw, 120px);
	font-weight: 800;
	letter-spacing: -.05em;
	line-height: 1;
	color: var(--tv-accent);
}

/* -------------------------------------------------------------------------
   16. Floating basket
   ---------------------------------------------------------------------- */

.tv-fab {
	position: fixed;
	right: 16px;
	bottom: calc(16px + env(safe-area-inset-bottom));
	z-index: 90;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}

.tv-fab[hidden] { display: none; }

.tv-fab.is-hidden { opacity: 0; pointer-events: none; transform: translateY(8px); }

/* Sit above the discovery overlay so the basket stays in reach. */
body:has(.tv-disc:not([hidden])) .tv-fab {
	z-index: 220;
	bottom: calc(88px + env(safe-area-inset-bottom));
}

.tv-fab__toggle {
	position: relative;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border: 0;
	border-radius: 50%;
	background: var(--tv-ink);
	color: #fff;
	box-shadow: 0 10px 26px -8px rgba(20, 21, 15, .55);
	transition: transform .2s var(--tv-ease), box-shadow .2s var(--tv-ease);
}

.tv-fab__toggle:hover { transform: translateY(-2px); box-shadow: var(--tv-shadow-lg); }

.tv-fab__count {
	position: absolute;
	top: -2px;
	right: -2px;
	min-width: 22px;
	height: 22px;
	padding: 0 5px;
	display: grid;
	place-items: center;
	border-radius: var(--tv-r-pill);
	background: var(--tv-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 0 0 2px var(--tv-bg);
}

.tv-fab.is-bumped .tv-fab__toggle { animation: tv-fab-bump .42s var(--tv-ease); }

@keyframes tv-fab-bump {
	0%   { transform: scale(1); }
	40%  { transform: scale(1.14); }
	100% { transform: scale(1); }
}

.tv-fab__panel {
	width: min(88vw, 340px);
	max-height: min(70vh, 560px);
	display: flex;
	flex-direction: column;
	background: var(--tv-surface);
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-r-lg);
	box-shadow: var(--tv-shadow-lg);
	overflow: hidden;
	animation: tv-fab-in .22s var(--tv-ease);
}

.tv-fab__panel[hidden] { display: none; }

@keyframes tv-fab-in {
	from { opacity: 0; transform: translateY(10px) scale(.98); }
	to   { opacity: 1; transform: none; }
}

.tv-fab__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid var(--tv-line);
}

.tv-fab__title { font-size: 15px; letter-spacing: -.02em; }

.tv-fab__close {
	display: grid;
	place-items: center;
	width: 32px; height: 32px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--tv-muted);
}

.tv-fab__close:hover { background: var(--tv-panel-2); color: var(--tv-ink); }

.tv-fab__lines {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 8px;
	margin: 0;
	list-style: none;
}

.tv-fab__line {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 8px;
	border-radius: var(--tv-r-sm);
}

.tv-fab__line img {
	width: 46px;
	height: 46px;
	flex: none;
	border-radius: var(--tv-r-xs);
	object-fit: cover;
	background: var(--tv-panel-2);
}

.tv-fab__line-text { min-width: 0; }

.tv-fab__line-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 12.5px;
	font-weight: 500;
	line-height: 1.3;
}

.tv-fab__line-meta {
	margin-top: 3px;
	font-size: 12px;
	color: var(--tv-muted);
}

.tv-fab__foot {
	padding: 14px 16px calc(16px + env(safe-area-inset-bottom));
	border-top: 1px solid var(--tv-line);
	background: var(--tv-panel);
}

.tv-fab__subtotal {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	font-size: 13.5px;
}

.tv-fab__subtotal strong { font-size: 17px; letter-spacing: -.02em; }

.tv-fab__note {
	margin-top: 3px;
	font-size: 11.5px;
	color: var(--tv-muted-2);
}

.tv-fab__checkout {
	width: 100%;
	margin-top: 12px;
}

.tv-fab__view {
	display: block;
	margin-top: 10px;
	text-align: center;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--tv-muted);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tv-fab__view:hover { color: var(--tv-ink); }

@media (min-width: 720px) {
	.tv-fab { right: 24px; bottom: 24px; }
}

/* -------------------------------------------------------------------------
   17. Motion & print
   ---------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}

@media print {
	.tv-announce,
	.tv-header,
	.tv-drawer,
	.tv-scrim,
	.tv-footer,
	.tv-fab,
	.tv-card__wish { display: none !important; }

	body { background: #fff; }
}

/* Account */

.tv-alert {
	margin-bottom: 16px;
	padding: 14px 16px;
	border-radius: var(--tv-r);
	border: 1px solid var(--tv-line);
	background: var(--tv-surface);
	font-size: 14px;
	font-weight: 500;
	color: var(--tv-ink-2);
}

.tv-alert--success {
	border-color: rgba(0, 182, 122, .22);
	background: rgba(0, 182, 122, .08);
}

.tv-alert--error {
	border-color: rgba(177, 68, 47, .22);
	background: rgba(177, 68, 47, .08);
}

.tv-auth {
	display: grid;
	gap: 16px;
}

.tv-auth__panel {
	padding: 22px;
	background: var(--tv-surface);
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-r-lg);
	box-shadow: var(--tv-shadow-sm);
}

.tv-auth__panel--wide {
	/* Spans the grid; the readable measure is set on the text itself rather
	 * than by narrowing the whole card, which left it stopping short of the
	 * right-hand edge. */
	grid-column: 1 / -1;
}

.tv-auth__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--tv-accent);
}

.tv-auth__title {
	margin-top: 8px;
	font-size: clamp(22px, 4.5vw, 30px);
}

.tv-auth__text {
	margin-top: 10px;
	max-width: 58ch;
	color: var(--tv-muted);
}

.tv-auth__form {
	display: grid;
	gap: 14px;
	margin-top: 20px;
}

.tv-auth__grid {
	display: grid;
	gap: 14px;
}

.tv-field {
	display: grid;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--tv-ink-2);
}

.tv-input {
	width: 100%;
	padding: 14px 15px;
	border: 1px solid var(--tv-line-2);
	border-radius: var(--tv-r-sm);
	background: var(--tv-panel);
	color: var(--tv-ink);
	transition: border-color .18s var(--tv-ease), box-shadow .18s var(--tv-ease), background-color .18s var(--tv-ease);
}

.tv-input:focus {
	outline: 0;
	border-color: var(--tv-accent);
	box-shadow: 0 0 0 4px rgba(139, 136, 58, .14);
	background: #fff;
}

.tv-auth__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 4px;
}

.tv-auth__forgot {
	font-size: 14px;
	font-weight: 600;
	color: var(--tv-ink-2);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tv-auth__forgot:hover {
	color: var(--tv-accent);
}

.tv-auth__summary {
	display: grid;
	gap: 12px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--tv-line);
}

.tv-auth__summary div {
	display: grid;
	gap: 4px;
}

.tv-auth__summary span {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--tv-muted);
}

.tv-auth__summary strong {
	font-size: 15px;
	font-weight: 600;
	color: var(--tv-ink);
}

.tv-auth__note {
	margin-top: 16px;
	font-size: 13px;
	color: var(--tv-muted);
}

@media (min-width: 720px) {
	.tv-auth__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.tv-auth {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}

}

.tv-orderlist,
.tv-addresslist {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.tv-ordercard,
.tv-addresscard {
	padding: 16px;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-r);
	background: var(--tv-panel);
}

.tv-addresscard {
	display: grid;
	gap: 12px;
}

.tv-ordercard__head {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: baseline;
}

.tv-ordercard__head strong {
	font-size: 15px;
	letter-spacing: -.02em;
}

.tv-ordercard__head span {
	font-size: 12px;
	color: var(--tv-muted);
}

.tv-ordercard__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	margin-top: 10px;
	font-size: 12px;
	color: var(--tv-muted);
}

.tv-ordercard__meta strong {
	color: var(--tv-ink);
}

.tv-ordercard__items {
	display: grid;
	gap: 6px;
	margin-top: 12px;
	font-size: 13px;
	color: var(--tv-ink-2);
}

.tv-ordercard__items span {
	color: var(--tv-muted);
}

.tv-ordercard__links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 12px;
	font-size: 13px;
}

.tv-ordercard__links a {
	color: var(--tv-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tv-addresscard p {
	font-size: 14px;
	color: var(--tv-ink-2);
}

.tv-addresscard span {
	display: inline-block;
	margin-top: 8px;
	font-size: 12px;
	color: var(--tv-muted);
}

.tv-addresscard.is-default {
	border-color: rgba(139, 136, 58, .35);
	background: rgba(139, 136, 58, .06);
}

.tv-addresscard .tv-auth__actions {
	margin-top: 2px;
}

/* =========================================================================
   Social sign-in
   ========================================================================= */

.tv-social {
	display: grid;
	gap: 10px;
	margin-top: 22px;
}

/* Our own button, not Google's. Google used to draw an iframe here, which meant
 * the button only existed if their script loaded, was allowed to run and agreed
 * the origin was registered — and it reported none of those failures. This is a
 * link, so it is on the page or the site is down. Google's branding rules ask
 * for their mark, a light surface and legible contrast, which is what this is. */
.tv-google {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 46px;
	padding: 0 20px;
	border: 1px solid rgba(20, 21, 15, .18);
	border-radius: var(--tv-r-pill);
	background: #fff;
	color: var(--tv-ink);
	font-size: 14.5px;
	font-weight: 700;
	text-align: center;
	transition: background-color .18s var(--tv-ease), border-color .18s var(--tv-ease), box-shadow .18s var(--tv-ease);
}

.tv-google:hover,
.tv-google:focus-visible {
	background: #fbfbf8;
	border-color: rgba(20, 21, 15, .34);
	box-shadow: 0 2px 10px rgba(20, 21, 15, .08);
}

.tv-google__mark {
	flex: none;
	width: 18px;
	height: 18px;
}

.tv-social__divider {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 12px;
	margin: 2px 0 0;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--tv-muted);
}

.tv-social__divider::before,
.tv-social__divider::after {
	content: "";
	height: 1px;
	background: rgba(20, 21, 15, .12);
}

/* =========================================================================
   Basket: discounts and a waiting prize
   ========================================================================= */

.tv-basket__row--save {
	color: #4e6f29;
	font-weight: 700;
}

.tv-basket__row--save strong { color: #4e6f29; }

.tv-basket__row--total {
	margin-top: 4px;
	padding-top: 10px;
	border-top: 1px solid rgba(20, 21, 15, .1);
	font-size: 16px;
}

.tv-basket__code {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 7px;
	border: 1px dashed rgba(20, 21, 15, .22);
	border-radius: 7px;
	background: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .06em;
	overflow-wrap: anywhere;
}

/* Shown when a prize has been won but nothing is in the basket yet, so the
 * reward does not look like it has disappeared. */
.tv-basket__waiting {
	display: grid;
	gap: 8px;
	justify-items: center;
	margin-bottom: 18px;
	padding: 22px 18px;
	border: 1px solid rgba(123, 120, 48, .28);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(248, 246, 232, .9), rgba(255, 255, 255, .9));
	text-align: center;
}

.tv-basket__waiting-eyebrow {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--tv-accent);
}

.tv-basket__waiting h2 {
	font-size: clamp(24px, 5vw, 34px);
	line-height: 1;
	letter-spacing: -.04em;
	color: var(--tv-ink);
}

.tv-basket__waiting p { font-size: 14px; color: var(--tv-ink-2); }

.tv-basket__waiting-note { font-size: 12.5px; color: var(--tv-muted); }

.tv-basket__waiting .tv-basket__code {
	margin-left: 0;
	padding: 8px 12px;
	font-size: 14px;
}

/* ---- Floating basket ---- */

.tv-fab__discount[hidden] { display: none; }

.tv-fab__discount {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 4px;
	font-size: 12.5px;
	font-weight: 700;
	color: #4e6f29;
}

.tv-fab__discount span {
	overflow-wrap: anywhere;
	font-size: 11px;
	letter-spacing: .04em;
}

/* =========================================================================
   Account page layout
   -------------------------------------------------------------------------
   The panels differ a lot in height — a long profile form beside an empty
   order list — so they sit in two independent columns rather than in grid
   rows. Rows would stretch to the tallest card and leave a hole beside the
   short one, which is what made the page look broken.
   ========================================================================= */

.tv-auth__cols {
	display: grid;
	gap: 16px;
	grid-column: 1 / -1;
}

.tv-auth__col {
	display: grid;
	gap: 16px;
	align-content: start;
	min-width: 0;
}

@media (min-width: 900px) {
	.tv-auth__cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}
}

/* Keep running text to a readable measure instead of letting it run the full
 * width of a now-wider card. */
.tv-auth__panel--wide .tv-auth__text { max-width: 58ch; }

/* The signed-in summary reads better as a row of facts than a stacked list. */
.tv-auth__panel--wide .tv-auth__summary {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 44px;
}

/* A signed-in shopper lands on the home page, so the account icon carries the
   only confirmation they get that it worked. */

.tv-iconbtn--account.is-signed-in { position: relative; }

.tv-iconbtn--account.is-signed-in::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--tv-ink);
	box-shadow: 0 0 0 2px var(--tv-bg);
}

/* =========================================================================
   The prize, shown wherever the basket is
   ========================================================================= */

/* Sits at the top of the basket summary, above the money. The discount row
   says what the prize is worth; this says what it actually is, which for free
   delivery or a treasure item is the only thing there is to say. */

.tv-prize {
	display: grid;
	gap: 6px;
	margin-bottom: 16px;
	padding: 14px 16px;
	border: 1px solid rgba(123, 120, 48, .3);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(248, 246, 232, .95), rgba(255, 255, 255, .95));
}

.tv-prize__eyebrow {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--tv-accent);
}

.tv-prize__label {
	font-size: 19px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.02em;
	color: var(--tv-ink);
}

.tv-prize__detail {
	font-size: 13px;
	line-height: 1.5;
	color: var(--tv-ink-2);
}

.tv-prize__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
	margin-top: 2px;
}

.tv-prize__status {
	font-size: 12px;
	font-weight: 700;
	color: #4e6f29;
}

.tv-prize__meta .tv-basket__code { margin-left: 0; }

.tv-prize__expiry {
	font-size: 11.5px;
	color: var(--tv-muted);
}

/* The same fact in the floating basket, kept to two lines because the panel is
   small and the lines below it are what the shopper came to check. */

.tv-fab__prize {
	display: grid;
	gap: 2px;
	margin: 0 16px 10px;
	padding: 10px 12px;
	border: 1px solid rgba(123, 120, 48, .3);
	border-radius: 12px;
	background: rgba(248, 246, 232, .8);
}

.tv-fab__prize[hidden] { display: none; }

.tv-fab__prize-eyebrow {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--tv-accent);
}

.tv-fab__prize-label {
	font-size: 14.5px;
	font-weight: 800;
	line-height: 1.15;
	color: var(--tv-ink);
}

.tv-fab__prize-status {
	font-size: 11.5px;
	color: var(--tv-muted);
}
