/* ==========================================================================
   KERVANNO — Sunlit Sill design system
   ========================================================================== */

:root {
	--paper: #FBF8F1;
	--linen: #F1ECDF;
	--shade: #E3E6DA;
	--ink: #1F2A22;
	--ink-muted: #58604F;
	--stem: #3F6B45;
	--stem-deep: #2E5234;
	--butter: #F3DC8C;
	--butter-soft: #F8EDC4;
	--poppy: #B4432A;
	--line: #D8D1BF;
	--line-strong: #857F6B;
	--white: #FFFFFF;

	--serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
	--sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

	--gutter: clamp(16px, 4vw, 56px);
	--wrap: 1440px;
	--radius: 2px;
	--header-h: 72px;
	--ease: cubic-bezier(.22, .61, .36, 1);
	--eyelet: url("../svg/eyelet-tile.svg");
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	font-stretch: 100%;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
a:hover { color: var(--stem); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--stem); outline-offset: 3px; }
::selection { background: var(--butter); color: var(--ink); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
table { border-collapse: collapse; width: 100%; }
.screen-reader-text, .sr-only {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
	position: fixed; left: 16px; top: 16px; width: auto; height: auto; clip: auto; z-index: 1000;
	background: var(--ink); color: var(--paper); padding: 12px 18px; text-decoration: none;
}

/* Typography ------------------------------------------------------------- */
h1, h2, h3, h4, .kv-display {
	font-family: var(--serif);
	font-weight: 400;
	font-variation-settings: "SOFT" 100, "WONK" 0;
	line-height: 1.08;
	letter-spacing: -0.015em;
	margin: 0 0 .5em;
	text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 300; }
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; }
.kv-lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-muted); max-width: 44ch; }
.kv-italic { font-family: var(--serif); font-style: italic; font-weight: 300; }
.kv-small { font-size: .875rem; }
.kv-muted { color: var(--ink-muted); }

.kv-eyebrow, .kv-kicker {
	font-family: var(--sans);
	font-size: .75rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink-muted);
	margin: 0 0 1rem;
	display: flex;
	gap: .9em;
	align-items: baseline;
}
.kv-no {
	font-family: var(--sans);
	font-stretch: 80%;
	font-size: .72rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--stem);
	font-weight: 600;
}

/* Layout ------------------------------------------------------------------ */
.kv-wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.kv-narrow { max-width: 760px; margin-inline: auto; }
.kv-section { padding-block: clamp(64px, 9vw, 140px); position: relative; }
.kv-section--tight { padding-block: clamp(40px, 6vw, 80px); }
.kv-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); }

/* Controls ---------------------------------------------------------------- */
.kv-btn, .button, button.button, a.button, input[type="submit"], .wc-block-components-button:not(.is-link) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6em;
	min-height: 52px;
	padding: 0 28px;
	border: 1px solid var(--stem);
	border-radius: var(--radius);
	background: var(--stem);
	color: var(--paper);
	font-family: var(--sans);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1.2;
	transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
	cursor: pointer;
}
.kv-btn:hover, .button:hover, button.button:hover, a.button:hover, input[type="submit"]:hover {
	background: var(--stem-deep); border-color: var(--stem-deep); color: var(--paper);
}
.kv-btn--ghost, .button.kv-btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.kv-btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.kv-btn--block { width: 100%; }
.button:disabled, .button.disabled, button:disabled { opacity: .45; cursor: not-allowed; }

.kv-link {
	display: inline-flex; align-items: center; gap: .55em;
	font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
	text-decoration: none; color: var(--ink);
	background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
	padding-bottom: .35em;
	transition: background-size .35s var(--ease), color .2s;
}
.kv-link:hover { background-size: 0 1px; background-position: 100% 100%; color: var(--stem); }
.kv-link .kv-icon { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.kv-link:hover .kv-icon { transform: translateX(3px); }

input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="search"],
input[type="number"], input[type="url"], select, textarea, .select2-container .select2-selection--single {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius);
	background: var(--white);
	font-size: 1rem;
	line-height: 1.4;
	transition: border-color .2s, box-shadow .2s;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--stem); box-shadow: 0 0 0 3px rgba(63, 107, 69, .18); }
select {
	appearance: none; -webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F2A22' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px;
}
label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: 6px; }
.required { color: var(--poppy); text-decoration: none; border: 0; }
input[type="checkbox"], input[type="radio"] { accent-color: var(--stem); width: 18px; height: 18px; }

/* Eyelet devices -------------------------------------------------------- */
.kv-eyelet-rule {
	height: 12px; border: 0; margin: 0;
	background: radial-gradient(circle, var(--ink) 2.4px, transparent 2.9px) 0 50% / 18px 12px repeat-x;
	opacity: .3;
}
.kv-scallop-top { --r: 11px; position: relative; }
.kv-scallop-top::before {
	content: ""; position: absolute; left: 0; right: 0; top: calc(var(--r) * -1 + 1px); height: var(--r);
	background: radial-gradient(circle at 50% 100%, var(--bg, var(--linen)) calc(var(--r) - .5px), transparent var(--r)) 0 0 / calc(var(--r) * 2.2) var(--r) repeat-x;
}
.kv-shadow-layer {
	position: absolute; inset: -12%; pointer-events: none; z-index: 1;
	background: var(--shade);
	-webkit-mask: var(--eyelet) 0 0 / 240px 240px repeat;
	mask: var(--eyelet) 0 0 / 240px 240px repeat;
	opacity: .55;
	mix-blend-mode: multiply;
	transform: skew(-8deg) scale(1.2) rotate(-4deg);
	filter: blur(.6px);
}
@media (prefers-reduced-motion: no-preference) {
	.kv-shadow-layer--drift { animation: kv-drift 24s ease-in-out infinite alternate; }
}
@keyframes kv-drift {
	from { transform: skew(-8deg) scale(1.2) rotate(-4deg) translate3d(0, 0, 0); }
	to { transform: skew(-8deg) scale(1.2) rotate(-4deg) translate3d(18px, 10px, 0); }
}

/* Announcement + header -------------------------------------------------- */
.kv-announce {
	background: var(--butter-soft);
	color: var(--ink);
	font-size: .78rem;
	letter-spacing: .06em;
	text-align: center;
	padding: 9px var(--gutter);
	min-height: 38px;
	display: flex; align-items: center; justify-content: center; gap: .8em; flex-wrap: wrap;
}
.kv-announce a { font-weight: 600; }
.kv-announce__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink); opacity: .4; }

.kv-header {
	position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
	background: rgba(251, 248, 241, .94);
	backdrop-filter: saturate(1.2) blur(10px);
	-webkit-backdrop-filter: saturate(1.2) blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color .3s, box-shadow .3s;
}
.kv-header.is-scrolled { border-bottom-color: var(--line); }
.kv-header__inner {
	height: var(--header-h);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
}
.kv-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); justify-self: center; }
.kv-logo .kv-mark { width: 30px; height: 30px; flex: none; color: var(--stem); transition: transform .8s var(--ease); }
.kv-logo:hover .kv-mark { transform: rotate(72deg); }
.kv-logo__word {
	font-family: var(--serif); font-weight: 400; font-size: 1.45rem; letter-spacing: .22em;
	font-variation-settings: "SOFT" 100, "opsz" 36; line-height: 1; margin-right: -.22em;
}
.kv-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(16px, 2vw, 30px); }
.kv-nav a {
	font-size: .76rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
	padding: 8px 0; position: relative;
}
.kv-nav a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: currentColor;
	transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease);
}
.kv-nav a:hover::after, .kv-nav .current-menu-item > a::after, .kv-nav .current-menu-ancestor > a::after { transform: scaleX(1); transform-origin: left; }
.kv-header__actions { display: flex; justify-content: flex-end; align-items: center; gap: 4px; }
.kv-iconbtn {
	width: 44px; height: 44px; display: inline-grid; place-items: center; position: relative;
	background: none; border: 0; border-radius: 50%; color: var(--ink); text-decoration: none;
	transition: background-color .2s;
}
.kv-iconbtn:hover { background: var(--linen); color: var(--ink); }
.kv-iconbtn .kv-icon { width: 22px; height: 22px; }
.kv-cart-count {
	position: absolute; top: 6px; right: 4px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px;
	background: var(--stem); color: var(--paper); font-size: .66rem; font-weight: 600; line-height: 18px; text-align: center;
}
.kv-cart-count:empty, .kv-cart-count[data-count="0"] { display: none; }
.kv-menu-toggle { display: none; }
.kv-region {
	display: inline-flex; align-items: center; gap: 6px; height: 44px; padding: 0 10px;
	background: none; border: 0; font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
	border-radius: 22px; color: var(--ink);
}
.kv-region:hover { background: var(--linen); }
.kv-region .kv-icon { width: 18px; height: 18px; }

/* Region / language panel */
.kv-panel {
	position: fixed; inset: 0; z-index: 90; display: grid; justify-items: end;
	background: rgba(31, 42, 34, .28);
	opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.kv-panel.is-open { opacity: 1; visibility: visible; }
.kv-panel__box {
	width: min(440px, 100%); height: 100%; overflow-y: auto; background: var(--paper);
	padding: calc(24px + env(safe-area-inset-top, 0px)) 28px calc(32px + env(safe-area-inset-bottom, 0px));
	transform: translateX(24px); transition: transform .35s var(--ease);
	display: flex; flex-direction: column; gap: 28px;
}
.kv-panel.is-open .kv-panel__box { transform: none; }
.kv-panel__head { display: flex; justify-content: space-between; align-items: center; }
.kv-panel__head h2 { font-size: 1.6rem; margin: 0; }
.kv-choice { display: grid; gap: 8px; }
.kv-choice a, .kv-choice button {
	display: flex; justify-content: space-between; align-items: center; gap: 12px; width: 100%;
	padding: 14px 16px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius);
	text-decoration: none; font-size: .95rem; text-align: left;
}
.kv-choice a:hover, .kv-choice button:hover { border-color: var(--ink); color: var(--ink); }
.kv-choice [aria-current="true"] { border-color: var(--stem); box-shadow: inset 0 0 0 1px var(--stem); }
.kv-choice small { color: var(--ink-muted); font-size: .8rem; }

/* Drawer (mobile menu) */
.kv-drawer .kv-panel__box { justify-self: start; transform: translateX(-24px); }
.kv-drawer.is-open .kv-panel__box { transform: none; }
.kv-drawer nav ul { list-style: none; padding: 0; margin: 0; }
.kv-drawer nav a {
	display: block; padding: 14px 0; border-bottom: 1px solid var(--line); text-decoration: none;
	font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
}
.kv-drawer .kv-drawer__meta { margin-top: auto; font-size: .9rem; color: var(--ink-muted); }

/* Search overlay */
.kv-search .kv-panel__box { justify-self: stretch; width: 100%; height: auto; align-self: start; transform: translateY(-20px); }
.kv-search.is-open .kv-panel__box { transform: none; }
.kv-search form { display: flex; gap: 10px; max-width: 820px; width: 100%; margin: 0 auto; }
.kv-search input[type="search"] { font-family: var(--serif); font-size: 1.4rem; border: 0; border-bottom: 1px solid var(--ink); background: transparent; border-radius: 0; }

/* Hero -------------------------------------------------------------------- */
.kv-hero { position: relative; overflow: hidden; padding-top: clamp(24px, 4vw, 48px); padding-bottom: clamp(56px, 7vw, 110px); isolation: isolate; }
.kv-hero__grid { position: relative; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); align-items: start; }
.kv-hero__title {
	grid-column: 1 / span 8; grid-row: 1; z-index: 3; position: relative;
	font-size: clamp(3.2rem, 9.2vw, 9rem);
	font-weight: 300; line-height: .92; letter-spacing: -0.035em;
	font-variation-settings: "SOFT" 100, "opsz" 144, "WONK" 0;
	margin: clamp(20px, 7vw, 120px) 0 0;
	pointer-events: none;
}
.kv-hero__title span { display: block; }
.kv-hero__title .kv-hero__line2 { padding-left: 16.66%; font-style: italic; font-weight: 300; }
.kv-hero__title em { font-style: normal; color: var(--stem); }
.kv-hero__media {
	grid-column: 6 / -1; grid-row: 1 / span 2; position: relative; z-index: 2;
	margin-right: calc(var(--gutter) * -1);
	height: clamp(540px, calc(100svh - 190px), 900px);
	background: var(--shade);
	overflow: hidden;
}
.kv-hero__media img, .kv-hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.kv-hero__media video { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.kv-hero__media video.is-playing { opacity: 1; }
.kv-hero__aside { grid-column: 1 / span 4; grid-row: 2; z-index: 3; align-self: end; margin-top: clamp(24px, 3vw, 48px); }
.kv-aperture {
	grid-column: 5 / span 2; grid-row: 2; justify-self: end; align-self: end;
	width: clamp(130px, 13vw, 200px); aspect-ratio: 3 / 4; overflow: hidden;
	border-radius: 50% / 50%;
	outline: 1px solid var(--line); outline-offset: 6px;
	background: var(--shade);
	margin-right: clamp(-110px, -6vw, -50px); margin-bottom: clamp(-56px, -3.5vw, -24px); position: relative; z-index: 4;
	box-shadow: 0 24px 40px -24px rgba(31, 42, 34, .45);
}
.kv-aperture img { width: 100%; height: 100%; object-fit: cover; }
.kv-hero__copy { max-width: 36ch; }
.kv-hero__copy p { color: var(--ink-muted); font-size: 1.02rem; }
.kv-hero__ctas { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 18px; }
.kv-pin {
	position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px;
	font-family: var(--serif); font-style: italic; font-weight: 300; font-size: .98rem;
	text-decoration: none; color: var(--ink);
	background: rgba(251, 248, 241, .92); padding: 8px 14px; border-radius: 20px;
	transition: background-color .25s;
}
.kv-pin::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--stem); box-shadow: 0 0 0 4px rgba(63, 107, 69, .2); flex: none; }
.kv-pin:hover { background: var(--white); color: var(--ink); }
.kv-hero__pin { right: calc(var(--gutter) + 24px); bottom: 7%; }
.kv-hero .kv-shadow-layer {
	-webkit-mask-image: var(--eyelet), linear-gradient(100deg, #000 30%, transparent 62%);
	mask-image: var(--eyelet), linear-gradient(100deg, #000 30%, transparent 62%);
	-webkit-mask-size: 240px 240px, 100% 100%; mask-size: 240px 240px, 100% 100%;
	-webkit-mask-composite: source-in; mask-composite: intersect;
	z-index: 2; opacity: .5;
}
.kv-hero__scroll {
	position: absolute; left: var(--gutter); bottom: 22px; z-index: 3;
	font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-muted);
	display: flex; align-items: center; gap: 10px;
}
.kv-hero__scroll::before { content: ""; width: 36px; height: 1px; background: currentColor; }

/* Section heads ----------------------------------------------------------- */
.kv-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 56px); }
.kv-head h2 { margin: 0; max-width: 18ch; }
.kv-head--offset { padding-left: 8.33%; }

/* Product cards ----------------------------------------------------------- */
ul.products, .kv-products {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
	gap: clamp(28px, 3vw, 44px) clamp(12px, 1.6vw, 24px);
}
ul.products::before, ul.products::after { display: none; }
.kv-card { position: relative; display: flex; flex-direction: column; gap: 12px; }
.kv-card__media {
	position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--shade);
}
.kv-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .45s var(--ease); }
.kv-card__media .kv-card__alt { position: absolute; inset: 0; opacity: 0; }
.kv-card:hover .kv-card__media .kv-card__alt { opacity: 1; }
.kv-card:hover .kv-card__media img:first-child { transform: scale(1.03); }
.kv-card__badge {
	position: absolute; left: 12px; top: 12px; z-index: 2;
	background: var(--paper); color: var(--ink); font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
	padding: 5px 9px; border-radius: 12px;
}
.kv-card__body { display: grid; grid-template-columns: 1fr auto; gap: 2px 14px; align-items: baseline; }
.kv-card__title { font-family: var(--serif); font-size: 1.08rem; font-weight: 400; line-height: 1.25; margin: 0; letter-spacing: 0; }
.kv-card__title a { text-decoration: none; }
.kv-card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.kv-card__price { font-size: .9rem; font-weight: 500; white-space: nowrap; }
.kv-card__price del { color: var(--ink-muted); font-weight: 400; margin-right: 4px; }
.kv-card__price ins { text-decoration: none; }
.kv-card__meta { grid-column: 1 / -1; font-size: .8rem; color: var(--ink-muted); display: flex; gap: 10px; align-items: center; }
.kv-swatches { display: inline-flex; gap: 5px; }
.kv-swatch { width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--line-strong); display: inline-block; }
.kv-swatch--white { background: #FBF8F1; }
.kv-swatch--butter { background: #F3DC8C; }
.kv-swatch--sage { background: #BCCBB0; }
.kv-swatch--sky { background: #C4D8E6; }

/* Horizontal scroller */
.kv-rail { list-style: none; margin: 0; padding-left: 0; display: grid; grid-auto-flow: column; grid-auto-columns: clamp(220px, 24vw, 330px); gap: clamp(12px, 1.6vw, 24px); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 18px; scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
.kv-rail > * { scroll-snap-align: start; }
.kv-rail-wrap { padding-left: var(--gutter); max-width: calc(var(--wrap) + (100vw - var(--wrap)) / 2); margin-left: auto; }

/* Home: triptych ---------------------------------------------------------- */
.kv-tri { align-items: start; }
.kv-tri__big { grid-column: 1 / span 5; aspect-ratio: 4 / 5; overflow: hidden; background: var(--shade); }
.kv-tri__small { grid-column: 7 / span 3; margin-top: clamp(80px, 12vw, 180px); aspect-ratio: 1; overflow: hidden; background: var(--shade); }
.kv-tri__text { grid-column: 10 / span 3; align-self: end; }
.kv-tri img { width: 100%; height: 100%; object-fit: cover; }
.kv-tri__text h2 { font-size: clamp(1.7rem, 2.6vw, 2.4rem); }
.kv-caption { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: .95rem; color: var(--ink-muted); margin-top: 12px; display: flex; gap: 10px; align-items: center; }
.kv-caption::before { content: ""; width: 28px; height: 1px; background: var(--line-strong); }

/* Home: category pinboard ------------------------------------------------- */
.kv-board { position: relative; background: var(--linen); overflow: hidden; }
.kv-board__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(12px, 2vw, 28px); }
.kv-board__intro { grid-column: 1 / span 4; }
.kv-tile { position: relative; display: block; text-decoration: none; color: var(--ink); }
.kv-tile__img { overflow: hidden; background: var(--shade); box-shadow: 0 1px 0 rgba(31, 42, 34, .06), 0 18px 40px -24px rgba(31, 42, 34, .35); }
.kv-tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.kv-tile:hover .kv-tile__img img { transform: scale(1.04); }
.kv-tile__label { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-top: 14px; }
.kv-tile__label strong { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; }
.kv-tile__label span { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); }
.kv-tile--1 { grid-column: 6 / span 4; }
.kv-tile--1 .kv-tile__img { aspect-ratio: 4 / 5; transform: rotate(-1.2deg); }
.kv-tile--2 { grid-column: 10 / span 3; margin-top: 90px; }
.kv-tile--2 .kv-tile__img { aspect-ratio: 3 / 4; transform: rotate(1.4deg); }
.kv-tile--3 { grid-column: 2 / span 3; margin-top: -120px; }
.kv-tile--3 .kv-tile__img { aspect-ratio: 1; transform: rotate(1deg); }
.kv-tile--4 { grid-column: 5 / span 4; margin-top: 40px; }
.kv-tile--4 .kv-tile__img { aspect-ratio: 3 / 2; transform: rotate(-.8deg); }
.kv-tile--5 { grid-column: 9 / span 3; margin-top: -20px; }
.kv-tile--5 .kv-tile__img { aspect-ratio: 4 / 5; transform: rotate(1.6deg); }
.kv-tile__pin { position: absolute; top: -8px; left: 50%; width: 14px; height: 14px; margin-left: -7px; border-radius: 50%; background: var(--butter); box-shadow: 0 2px 3px rgba(31, 42, 34, .25); z-index: 2; }

/* Home: florist banner ----------------------------------------------------- */
.kv-banner { position: relative; min-height: clamp(420px, 56vw, 760px); display: grid; align-items: center; overflow: hidden; background: var(--shade); color: var(--ink); }
.kv-banner__img { position: absolute; inset: 0; }
.kv-banner__img img, .kv-banner__img video { width: 100%; height: 100%; object-fit: cover; }
.kv-banner__quote { position: relative; z-index: 2; max-width: 16ch; font-size: clamp(2rem, 4.4vw, 4.2rem); font-weight: 300; font-style: italic; line-height: 1.02; margin: 0; }
.kv-banner__card { position: relative; z-index: 2; background: rgba(251, 248, 241, .9); padding: clamp(22px, 3vw, 40px); max-width: 520px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.kv-banner__card p:last-child { margin-bottom: 0; }

/* Home: details box ------------------------------------------------------- */
.kv-box { background: var(--linen); }
.kv-box__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 2vw, 28px); }
.kv-box__item { text-decoration: none; }
.kv-box__item figure { margin: 0; aspect-ratio: 1; overflow: hidden; background: var(--paper); box-shadow: 0 16px 34px -26px rgba(31, 42, 34, .5); transition: transform .6s var(--ease); }
.kv-box__item:nth-child(odd) figure { transform: rotate(-1.5deg); }
.kv-box__item:nth-child(even) figure { transform: rotate(1.5deg) translateY(24px); }
.kv-box__item:hover figure { transform: rotate(0) translateY(-4px); }
.kv-box__item img { width: 100%; height: 100%; object-fit: cover; }
.kv-box__item span { display: block; margin-top: 18px; font-family: var(--serif); font-size: 1.1rem; }
.kv-box__item:nth-child(even) span { margin-top: 42px; }

/* Video feature ------------------------------------------------------------ */
.kv-film { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(12px, 2vw, 28px); align-items: center; }
.kv-film__media { grid-column: 1 / span 8; position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--shade); }
.kv-film__media video, .kv-film__media img { width: 100%; height: 100%; object-fit: cover; }
.kv-film__text { grid-column: 9 / span 4; padding-left: clamp(0px, 2vw, 32px); }
.kv-film__toggle {
	position: absolute; right: 16px; bottom: 16px; z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 0;
	background: rgba(251, 248, 241, .9); display: grid; place-items: center;
}
.kv-film__toggle svg { width: 16px; height: 16px; }

/* Values strip ------------------------------------------------------------ */
.kv-values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kv-values > div { padding: 28px clamp(16px, 2vw, 32px); display: flex; gap: 14px; align-items: flex-start; }
.kv-values > div + div { border-left: 1px solid var(--line); }
.kv-values .kv-icon { width: 26px; height: 26px; color: var(--stem); flex: none; margin-top: 2px; }
.kv-values strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.1rem; }
.kv-values span { font-size: .88rem; color: var(--ink-muted); }

/* Journal ----------------------------------------------------------------- */
.kv-journal { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.kv-post { text-decoration: none; display: block; }
.kv-post figure { margin: 0 0 18px; aspect-ratio: 3 / 2; overflow: hidden; background: var(--shade); }
.kv-post img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.kv-post:hover img { transform: scale(1.03); }
.kv-post h3 { margin-bottom: .35em; }
.kv-post p { color: var(--ink-muted); font-size: .95rem; }
.kv-journal .kv-post:nth-child(1) { grid-column: 1 / span 7; }
.kv-journal .kv-post:nth-child(2) { grid-column: 9 / span 4; margin-top: clamp(60px, 10vw, 160px); }
.kv-journal .kv-post:nth-child(3) { grid-column: 3 / span 5; margin-top: clamp(24px, 3vw, 40px); }

/* Newsletter -------------------------------------------------------------- */
.kv-news { position: relative; overflow: hidden; background: var(--shade); isolation: isolate; }
.kv-news .kv-shadow-layer { background: var(--paper); mix-blend-mode: normal; opacity: .55; }
.kv-news__inner { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; align-items: end; }
.kv-news__inner > div:first-child { grid-column: 1 / span 6; }
.kv-news__form { grid-column: 8 / span 5; }
.kv-news__form form { display: block; }
.kv-news__form input[type="email"] { background: var(--paper); }
.kv-news__note { font-size: .8rem; color: var(--ink-muted); margin-top: 10px; }

/* Footer ------------------------------------------------------------------ */
.kv-footer { background: var(--stem-deep); color: #EEF0E6; padding-top: clamp(64px, 8vw, 110px); position: relative; }
.kv-footer.kv-scallop-top { --bg: var(--stem-deep); }
.kv-footer a { color: #EEF0E6; text-decoration: none; }
.kv-footer a:hover { color: var(--butter); text-decoration: underline; }
.kv-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(28px, 4vw, 64px); }
.kv-footer__brand .kv-mark { width: 40px; height: 40px; color: var(--butter); margin-bottom: 18px; }
.kv-footer__brand p { max-width: 34ch; color: #D5DBCB; font-size: .95rem; }
.kv-footer h2 { font-family: var(--sans); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--butter); margin-bottom: 18px; }
.kv-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: .92rem; }
.kv-footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.kv-footer__contact .kv-icon { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--butter); }
.kv-footer__base {
	margin-top: clamp(48px, 6vw, 88px); padding-block: 22px calc(22px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid rgba(238, 240, 230, .18);
	display: flex; justify-content: space-between; gap: 16px 32px; flex-wrap: wrap; font-size: .8rem; color: #CBD3C1;
}
.kv-footer__base ul { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.kv-footer__word {
	font-family: var(--serif); font-weight: 300; font-variation-settings: "SOFT" 100, "opsz" 144;
	font-size: clamp(3rem, 13.2vw, 12.5rem); line-height: .8; letter-spacing: .06em;
	color: rgba(238, 240, 230, .08); margin: clamp(40px, 6vw, 80px) 0 0; text-align: center; user-select: none;
	white-space: nowrap; overflow: hidden;
}

/* Page heads & breadcrumbs ------------------------------------------------ */
.kv-pagehead { padding-block: clamp(40px, 6vw, 90px) clamp(28px, 4vw, 56px); }
.kv-pagehead h1 { margin: 0; }
.kv-pagehead .kv-lede { margin-top: 18px; }
.woocommerce-breadcrumb, .kv-crumbs { font-size: .78rem; color: var(--ink-muted); letter-spacing: .04em; margin-bottom: 18px; }
.woocommerce-breadcrumb a, .kv-crumbs a { text-decoration: none; }
.woocommerce-breadcrumb a:hover { text-decoration: underline; }

/* Shop archive ------------------------------------------------------------ */
.kv-shophead { position: relative; overflow: hidden; background: var(--linen); isolation: isolate; }
.kv-shophead__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(12px, 2vw, 28px); align-items: center; min-height: clamp(320px, 42vh, 460px); }
.kv-shophead__text { grid-column: 1 / span 5; padding-block: clamp(36px, 5vw, 64px); position: relative; z-index: 2; }
.kv-shophead__text h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.kv-shophead__img { grid-column: 7 / -1; align-self: stretch; margin-right: calc(var(--gutter) * -1); position: relative; }
.kv-shophead__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.kv-shophead .kv-shadow-layer { opacity: .4; }
.kv-cats { display: flex; gap: 8px; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.kv-cats a {
	display: inline-flex; align-items: center; min-height: 40px; padding: 0 16px; border: 1px solid var(--line-strong); border-radius: 20px;
	font-size: .8rem; text-decoration: none; background: var(--paper); transition: all .2s;
}
.kv-cats a:hover { border-color: var(--ink); color: var(--ink); }
.kv-cats a[aria-current="page"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.kv-toolbar {
	display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
	padding-block: 22px; border-bottom: 1px solid var(--line); margin-bottom: clamp(28px, 3vw, 44px);
	position: sticky; top: var(--header-h); background: rgba(251, 248, 241, .96); z-index: 20;
}
.woocommerce-result-count { margin: 0; font-size: .85rem; color: var(--ink-muted); }
.woocommerce-ordering { margin: 0; }
.woocommerce-ordering select { min-height: 42px; width: auto; font-size: .85rem; padding-block: 8px; background-color: var(--paper); }
.kv-shop ul.products { --cols: 4; }
.kv-shop ul.products > li:nth-child(4n+2), .kv-shop ul.products > li:nth-child(4n+4) { margin-top: 48px; }
.kv-shop ul.products > li.kv-editorial { grid-column: span 2; margin-top: 0; }
.kv-editorial { background: var(--linen); display: grid; grid-template-rows: 1fr auto; overflow: hidden; }
.kv-editorial figure { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; }
.kv-editorial img { width: 100%; height: 100%; object-fit: cover; }
.kv-editorial__text { padding: clamp(18px, 2vw, 28px); }
.kv-editorial__text p { font-family: var(--serif); font-size: 1.35rem; font-weight: 300; line-height: 1.25; margin-bottom: 14px; }
.woocommerce-pagination { margin-top: clamp(48px, 5vw, 80px); display: flex; justify-content: center; }
.woocommerce-pagination ul { list-style: none; display: flex; gap: 6px; padding: 0; margin: 0; }
.woocommerce-pagination a, .woocommerce-pagination span {
	display: grid; place-items: center; min-width: 44px; height: 44px; border: 1px solid var(--line); text-decoration: none; font-size: .9rem;
}
.woocommerce-pagination .current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.woocommerce-info, .woocommerce-message, .woocommerce-error, .woocommerce-notice {
	list-style: none; margin: 0 0 24px; padding: 16px 20px; border-left: 3px solid var(--stem);
	background: var(--linen); font-size: .95rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.woocommerce-error { border-left-color: var(--poppy); }
.woocommerce-error li { list-style: none; }
.woocommerce-message .button, .woocommerce-info .button { min-height: 40px; padding: 0 18px; order: 2; }
.woocommerce-notices-wrapper:empty { display: none; }

/* Single product ---------------------------------------------------------- */
.kv-pdp { padding-top: clamp(20px, 3vw, 36px); }
.kv-pdp__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(20px, 3vw, 48px); align-items: start; }
.kv-gallery-wrap { grid-column: 1 / span 7; position: relative; }
.kv-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kv-gallery__item { margin: 0; background: var(--shade); overflow: hidden; position: relative; }
.kv-gallery__item:first-child { grid-column: 1 / -1; }
.kv-gallery__item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.kv-gallery__item a { display: block; cursor: zoom-in; }
.kv-gallery__count { display: none; }
.kv-summary { grid-column: 9 / span 4; position: sticky; top: calc(var(--header-h) + 24px); padding-bottom: 32px; }
.kv-summary .product_title { font-size: clamp(2rem, 3vw, 2.7rem); font-weight: 300; margin-bottom: 12px; }
.kv-summary .price { font-size: 1.15rem; font-weight: 500; margin: 0 0 6px; }
.kv-summary .price del { color: var(--ink-muted); font-weight: 400; }
.kv-summary .price ins { text-decoration: none; }
.kv-price-note { font-size: .78rem; color: var(--ink-muted); margin-bottom: 22px; }
.kv-summary .woocommerce-product-details__short-description { color: var(--ink-muted); margin-bottom: 24px; }
.kv-summary .woocommerce-product-details__short-description p { margin: 0; }
.kv-summary form.cart { margin: 0 0 26px; }
.kv-summary table.variations { margin-bottom: 8px; }
.kv-summary table.variations tr { display: block; margin-bottom: 18px; }
.kv-summary table.variations th, .kv-summary table.variations td { display: block; padding: 0; text-align: left; }
.kv-summary table.variations th label { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.kv-summary table.variations th label .kv-chosen { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink-muted); margin-left: 6px; }
.kv-summary .reset_variations { font-size: .78rem; margin-top: 8px; display: inline-block; color: var(--ink-muted); }
.kv-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.kv-opt {
	min-width: 52px; min-height: 46px; padding: 0 14px; border: 1px solid var(--line-strong); background: var(--white);
	border-radius: var(--radius); font-size: .88rem; display: inline-flex; align-items: center; gap: 8px; justify-content: center;
	transition: border-color .2s, box-shadow .2s;
}
.kv-opt:hover { border-color: var(--ink); }
.kv-opt[aria-pressed="true"] { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.kv-opt:disabled { opacity: .35; text-decoration: line-through; cursor: not-allowed; }
.kv-opt .kv-swatch { width: 16px; height: 16px; }
.kv-has-opts select { position: absolute !important; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.single_variation_wrap .woocommerce-variation-price { display: none; }
.single_variation_wrap .woocommerce-variation-availability p { font-size: .85rem; margin: 0 0 10px; color: var(--stem); }
.kv-addrow { display: flex; gap: 10px; align-items: stretch; }
.quantity { display: inline-flex; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--white); }
.quantity input.qty { width: 48px; min-height: 50px; border: 0; text-align: center; padding: 0; -moz-appearance: textfield; background: transparent; }
.quantity input.qty::-webkit-outer-spin-button, .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.kv-qty-btn { width: 40px; border: 0; background: none; display: grid; place-items: center; color: var(--ink); }
.kv-qty-btn:hover { background: var(--linen); }
.kv-qty-btn svg { width: 16px; height: 16px; }
.single_add_to_cart_button { flex: 1; }
.single_add_to_cart_button.is-added { background: var(--stem-deep); }
.kv-assure { list-style: none; margin: 0 0 28px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; gap: 10px; font-size: .88rem; }
.kv-assure li { display: flex; gap: 10px; align-items: center; }
.kv-assure .kv-icon { width: 20px; height: 20px; color: var(--stem); flex: none; }
.kv-acc { border-bottom: 1px solid var(--line); }
.kv-acc summary {
	list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
	padding: 18px 0; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
.kv-acc summary::-webkit-details-marker { display: none; }
.kv-acc summary .kv-icon { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.kv-acc[open] summary .kv-icon { transform: rotate(45deg); }
.kv-acc__body { padding-bottom: 22px; font-size: .95rem; color: var(--ink); }
.kv-acc__body ul { padding-left: 1.1em; margin: 0 0 1em; }
.kv-acc__body li { margin-bottom: 4px; }
.kv-acc__body table { font-size: .88rem; }
.kv-acc__body th, .kv-acc__body td { padding: 8px 10px 8px 0; border-bottom: 1px solid var(--line); text-align: left; }
.kv-meta-line { font-size: .8rem; color: var(--ink-muted); margin-top: 22px; }
.product_meta { display: none; }

.kv-upclose { background: var(--linen); }
.kv-upclose__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); align-items: center; }
.kv-upclose__img { grid-column: 1 / span 6; position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--shade); }
.kv-upclose__img img { width: 100%; height: 100%; object-fit: cover; }
.kv-upclose__text { grid-column: 8 / span 5; }
.kv-upclose__notes { list-style: none; padding: 0; margin: 0; counter-reset: note; }
.kv-upclose__notes li { counter-increment: note; padding: 18px 0 18px 56px; border-top: 1px solid var(--line); position: relative; }
.kv-upclose__notes li::before {
	content: counter(note, decimal-leading-zero); position: absolute; left: 0; top: 18px;
	font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--stem);
}
.kv-upclose__notes strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.15rem; }
.related > h2, .upsells > h2, .kv-related h2 { margin-bottom: clamp(24px, 3vw, 44px); }

/* Mobile sticky add-to-cart bar */
.kv-stickybar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: none;
	background: var(--paper); border-top: 1px solid var(--line);
	padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
	align-items: center; gap: 12px; transform: translateY(110%); transition: transform .35s var(--ease);
}
.kv-stickybar.is-visible { transform: none; }
.kv-stickybar__name { font-family: var(--serif); font-size: 1rem; line-height: 1.2; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.kv-stickybar__name small { display: block; font-family: var(--sans); font-size: .82rem; color: var(--ink-muted); }
.kv-stickybar .kv-btn { min-height: 48px; padding: 0 20px; }

/* Cart / checkout / account ---------------------------------------------- */
.woocommerce-cart .kv-main, .woocommerce-checkout .kv-main, .woocommerce-account .kv-main { padding-bottom: clamp(64px, 8vw, 120px); }
.woocommerce-cart-form { margin-bottom: 40px; }
table.shop_table { border-top: 1px solid var(--ink); font-size: .95rem; }
table.shop_table th { text-align: left; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding: 14px 10px 14px 0; border-bottom: 1px solid var(--line); }
table.shop_table td { padding: 18px 10px 18px 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.shop_table td.product-thumbnail { width: 110px; }
table.shop_table td.product-thumbnail img { width: 90px; aspect-ratio: 4 / 5; object-fit: cover; background: var(--shade); }
table.shop_table td.product-name a { font-family: var(--serif); font-size: 1.1rem; text-decoration: none; }
table.shop_table td.product-name .variation { font-size: .82rem; color: var(--ink-muted); margin: 6px 0 0; display: grid; grid-template-columns: auto 1fr; gap: 2px 8px; }
table.shop_table td.product-name .variation dd, table.shop_table td.product-name .variation dt { margin: 0; }
table.shop_table td.product-name .variation p { margin: 0; }
table.shop_table a.remove {
	display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; text-decoration: none;
	font-size: 1.3rem; color: var(--ink-muted); border: 1px solid var(--line);
}
table.shop_table a.remove:hover { color: var(--poppy); border-color: var(--poppy); }
table.shop_table td.actions { padding-top: 22px; }
table.shop_table td.actions .coupon { display: inline-flex; gap: 8px; align-items: center; }
table.shop_table td.actions .coupon input { width: 200px; min-height: 46px; }
table.shop_table td.actions .coupon label { position: absolute; left: -9999px; }
table.shop_table td.actions > .button { float: right; }
.kv-cart-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 400px); gap: clamp(24px, 4vw, 64px); align-items: start; }
.cart-collaterals .cart_totals { background: var(--linen); padding: clamp(20px, 2.4vw, 32px); position: sticky; top: calc(var(--header-h) + 20px); }
.cart-collaterals .cart_totals h2 { font-size: 1.6rem; }
.cart_totals table th, .cart_totals table td { padding: 12px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .92rem; }
.cart_totals table td { text-align: right; }
.cart_totals .order-total td, .cart_totals .order-total th { font-size: 1.05rem; font-weight: 600; border-bottom: 0; }
.cart_totals .woocommerce-shipping-methods { list-style: none; padding: 0; margin: 0; text-align: left; }
.cart_totals .woocommerce-shipping-methods li { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 6px; }
.woocommerce-shipping-destination, .woocommerce-shipping-calculator { font-size: .82rem; color: var(--ink-muted); text-align: left; }
.shipping-calculator-button { color: var(--stem); }
.wc-proceed-to-checkout { padding-top: 18px; }
.wc-proceed-to-checkout .checkout-button { width: 100%; }
.cart-empty.woocommerce-info { font-family: var(--serif); font-size: 1.4rem; background: none; border: 0; padding: 0; }
.return-to-shop { margin-top: 20px; }

.woocommerce-checkout form.checkout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 440px); gap: clamp(24px, 4vw, 64px); align-items: start; }
.woocommerce-checkout form.checkout > .woocommerce-NoticeGroup { grid-column: 1 / -1; }
.woocommerce-checkout #customer_details { grid-column: 1; }
.woocommerce-checkout #order_review_heading { grid-column: 2; grid-row: 1; margin: 0; font-size: 1.6rem; display: none; }
.woocommerce-checkout #order_review { grid-column: 2; grid-row: 1 / span 3; background: var(--linen); padding: clamp(20px, 2.4vw, 32px); position: sticky; top: calc(var(--header-h) + 20px); }
.woocommerce-checkout #order_review::before { content: attr(data-title); display: block; font-family: var(--serif); font-size: 1.6rem; font-weight: 300; margin-bottom: 14px; }
.col2-set .col-1, .col2-set .col-2 { width: 100%; float: none; }
.woocommerce-billing-fields h3, .woocommerce-shipping-fields h3, .woocommerce-additional-fields h3 { font-size: 1.5rem; margin-top: 0; }
.woocommerce form .form-row { margin: 0 0 16px; padding: 0; }
.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper, .woocommerce-address-fields__field-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.woocommerce form .form-row-wide, .woocommerce form .form-row.notes, #billing_address_1_field, #billing_address_2_field, #shipping_address_1_field, #shipping_address_2_field, #billing_email_field, #billing_country_field, #shipping_country_field, #billing_company_field, #shipping_company_field { grid-column: 1 / -1; }
.woocommerce form .form-row label.checkbox, .woocommerce form .form-row .woocommerce-form__label-for-checkbox { display: flex; gap: 10px; align-items: center; font-weight: 400; }
#ship-to-different-address { font-size: 1rem; font-family: var(--sans); }
#ship-to-different-address label { display: flex; gap: 10px; align-items: center; }
.woocommerce form .form-row.woocommerce-invalid input.input-text, .woocommerce form .form-row.woocommerce-invalid select { border-color: var(--poppy); }
.woocommerce-checkout-review-order-table th, .woocommerce-checkout-review-order-table td { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .9rem; text-align: left; }
.woocommerce-checkout-review-order-table td:last-child, .woocommerce-checkout-review-order-table th:last-child { text-align: right; }
.woocommerce-checkout-review-order-table .order-total th, .woocommerce-checkout-review-order-table .order-total td { font-size: 1.05rem; font-weight: 600; border-bottom: 0; }
.woocommerce-checkout-review-order-table thead th { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
#payment { margin-top: 20px; }
#payment ul.payment_methods { list-style: none; padding: 0; margin: 0 0 18px; border-top: 1px solid var(--line); }
#payment ul.payment_methods > li { padding: 14px 0; border-bottom: 1px solid var(--line); }
#payment ul.payment_methods > li > label { display: inline; font-size: .95rem; font-weight: 500; }
#payment .payment_box { background: var(--paper); padding: 14px 16px; margin-top: 10px; font-size: .88rem; }
#payment .payment_box p:last-child { margin: 0; }
#payment .place-order { padding: 0; }
#place_order { width: 100%; margin-top: 12px; min-height: 56px; }
.woocommerce-terms-and-conditions-wrapper { font-size: .85rem; }
.woocommerce-privacy-policy-text p { font-size: .82rem; color: var(--ink-muted); }
.woocommerce-form-coupon-toggle .woocommerce-info, .woocommerce-form-login-toggle .woocommerce-info { background: none; border-left: 0; padding: 0; margin-bottom: 12px; font-size: .9rem; }
form.checkout_coupon, form.woocommerce-form-login { background: var(--linen); padding: 18px; margin-bottom: 24px; }
form.checkout_coupon { display: flex; gap: 10px; flex-wrap: wrap; align-items: end; }
form.checkout_coupon p { margin: 0; }
form.checkout_coupon .form-row-first { flex: 1; }
.kv-checkout-note { font-size: .82rem; color: var(--ink-muted); margin-top: 14px; }
.kv-checkout-note a { color: var(--ink); }

.woocommerce-account .kv-account { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.woocommerce-MyAccount-navigation a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-size: .92rem; }
.woocommerce-MyAccount-navigation .is-active a { font-weight: 600; color: var(--stem); }
.woocommerce form.login, .woocommerce form.register { background: var(--linen); padding: clamp(20px, 3vw, 36px); max-width: 520px; }
.u-columns.col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.woocommerce-order-overview { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 32px; font-size: .9rem; }
.woocommerce-order-overview strong { display: block; font-size: 1rem; }

/* Legal / content pages --------------------------------------------------- */
.kv-legal { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: start; padding-bottom: clamp(64px, 8vw, 120px); }
.kv-toc { position: sticky; top: calc(var(--header-h) + 24px); font-size: .86rem; }
.kv-toc h2 { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--ink-muted); }
.kv-toc ol { list-style: none; padding: 0; margin: 0; border-left: 1px solid var(--line); }
.kv-toc a { display: block; padding: 6px 0 6px 14px; margin-left: -1px; border-left: 1px solid transparent; text-decoration: none; color: var(--ink-muted); }
.kv-toc a:hover, .kv-toc a.is-active { color: var(--ink); border-left-color: var(--stem); }
.kv-prose { max-width: 72ch; }
.kv-prose h2 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); margin-top: 2.2em; padding-top: .4em; }
.kv-prose h2:first-child { margin-top: 0; }
.kv-prose h3 { font-size: 1.2rem; margin-top: 1.6em; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }
.kv-prose ul, .kv-prose ol { padding-left: 1.2em; margin: 0 0 1.2em; }
.kv-prose li { margin-bottom: .45em; }
.kv-prose table { margin: 0 0 1.6em; font-size: .92rem; display: block; overflow-x: auto; }
.kv-prose table thead th { background: var(--linen); }
.kv-prose th, .kv-prose td { padding: 10px 14px 10px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; min-width: 110px; }
.kv-prose th:first-child, .kv-prose td:first-child { padding-left: 12px; }
.kv-prose blockquote { margin: 1.4em 0; padding: 18px 22px; background: var(--linen); border-left: 3px solid var(--stem); }
.kv-prose .kv-updated { font-size: .82rem; color: var(--ink-muted); }
.kv-prose a { color: var(--stem-deep); }
.kv-prose details { border-bottom: 1px solid var(--line); }
.kv-prose details summary { cursor: pointer; padding: 16px 0; font-weight: 500; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.kv-prose details summary::-webkit-details-marker { display: none; }
.kv-prose details summary::after { content: "+"; font-size: 1.3rem; line-height: 1; color: var(--stem); transition: transform .3s var(--ease); }
.kv-prose details[open] summary::after { transform: rotate(45deg); }
.kv-prose details > div { padding-bottom: 16px; }
.kv-facts { display: grid; grid-template-columns: max-content 1fr; gap: 10px 28px; margin: 0 0 1.6em; padding: 22px; background: var(--linen); }
.kv-facts dt { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); font-weight: 600; padding-top: 2px; }
.kv-facts dd { margin: 0; }

/* Contact ---------------------------------------------------------------- */
.kv-contact { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(20px, 3vw, 48px); padding-bottom: clamp(64px, 8vw, 120px); }
.kv-contact__info { grid-column: 1 / span 5; }
.kv-contact__form { grid-column: 7 / span 6; background: var(--linen); padding: clamp(22px, 3vw, 40px); }
.kv-contact__list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 18px; }
.kv-contact__list li { display: flex; gap: 14px; }
.kv-contact__list .kv-icon { color: var(--stem); flex: none; }
.kv-contact__list strong { display: block; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); font-weight: 600; }
.kv-form .kv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kv-form p { margin-bottom: 16px; }
.kv-form .kv-hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.kv-form-status { padding: 14px 18px; margin-bottom: 20px; background: var(--paper); border-left: 3px solid var(--stem); }
.kv-form-status--error { border-left-color: var(--poppy); }

/* About ------------------------------------------------------------------- */
.kv-about-hero { position: relative; min-height: clamp(420px, 70vh, 760px); display: grid; align-items: end; overflow: hidden; background: var(--shade); }
.kv-about-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.kv-about-hero__text { position: relative; z-index: 2; background: var(--paper); padding: clamp(24px, 3vw, 44px); max-width: 640px; margin-bottom: clamp(24px, 4vw, 56px); }
.kv-about-hero__text h1 { margin: 0; }
.kv-story { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); align-items: start; }
.kv-story__text { grid-column: 3 / span 6; font-size: 1.08rem; }
.kv-story__text p:first-of-type::first-letter { font-family: var(--serif); font-size: 3.8em; float: left; line-height: .85; padding: 6px 10px 0 0; color: var(--stem); font-weight: 300; }
.kv-story__side { grid-column: 10 / span 3; margin-top: 120px; }
.kv-pull { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.8rem, 3.2vw, 2.8rem); line-height: 1.12; margin: 0; padding-left: 16.66%; max-width: 24ch; }
.kv-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); counter-reset: step; }
.kv-steps figure { margin: 0 0 18px; aspect-ratio: 4 / 5; overflow: hidden; background: var(--shade); }
.kv-steps img { width: 100%; height: 100%; object-fit: cover; }
.kv-steps > div:nth-child(2) { margin-top: 64px; }
.kv-steps h3::before { counter-increment: step; content: "0" counter(step) "  "; color: var(--stem); font-style: italic; }
.kv-motifs { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.kv-motif { aspect-ratio: 1; border: 1px solid var(--line); display: grid; place-items: center; background: var(--paper); transition: box-shadow .4s var(--ease), transform .4s var(--ease); }
.kv-motif svg { width: 56%; color: var(--stem); }
.kv-motif:hover { box-shadow: 10px 12px 0 var(--shade); transform: translate(-3px, -3px); }

/* Journal archive / single ----------------------------------------------- */
.kv-posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 3vw, 48px) clamp(16px, 2vw, 28px); padding-bottom: clamp(64px, 8vw, 120px); }
.kv-posts .kv-post:nth-child(3n+2) { margin-top: 56px; }
.kv-article__head { max-width: 900px; margin-inline: auto; text-align: center; padding-block: clamp(36px, 5vw, 72px) clamp(24px, 3vw, 44px); }
.kv-article__img { max-width: 1200px; margin: 0 auto clamp(36px, 5vw, 64px); aspect-ratio: 3 / 2; overflow: hidden; background: var(--shade); }
.kv-article__img img { width: 100%; height: 100%; object-fit: cover; }
.kv-article__body { max-width: 68ch; margin: 0 auto; padding-bottom: clamp(64px, 8vw, 120px); font-size: 1.08rem; }
.kv-article__body h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-top: 1.8em; }

/* 404 / search / empty ----------------------------------------------------- */
.kv-empty { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; align-items: center; padding-block: clamp(48px, 7vw, 110px); }
.kv-empty__img { grid-column: 1 / span 5; aspect-ratio: 1; overflow: hidden; background: var(--shade); border-radius: 50% / 50%; }
.kv-empty__img img { width: 100%; height: 100%; object-fit: cover; }
.kv-empty__text { grid-column: 7 / span 6; }

/* Motion ------------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
	@supports (animation-timeline: view()) {
		.kv-reveal { animation: kv-in linear both; animation-timeline: view(); animation-range: entry 0% entry 55%; }
		.kv-reveal-img img { animation: kv-unmask linear both; animation-timeline: view(); animation-range: entry 0% entry 70%; }
	}
	.kv-hero__title span, .kv-hero__aside, .kv-hero__pin { animation: kv-rise 1s var(--ease) both; }
	.kv-hero__title span:nth-child(2) { animation-delay: .12s; }
	.kv-hero__aside { animation-delay: .3s; }
	.kv-hero__pin { animation-delay: .6s; }
}
@keyframes kv-in { from { transform: translateY(26px); } to { transform: none; } }
@keyframes kv-unmask { from { transform: scale(1.06); } to { transform: none; } }
@keyframes kv-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Complianz banner alignment --------------------------------------------- */
.cmplz-cookiebanner { font-family: var(--sans) !important; border-radius: var(--radius) !important; }
.cmplz-cookiebanner .cmplz-btn { border-radius: var(--radius) !important; font-weight: 600 !important; letter-spacing: .06em; }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1100px) {
	.kv-nav { display: none; }
	.kv-menu-toggle { display: inline-grid; }
	.kv-header__inner { grid-template-columns: auto 1fr auto; }
	.kv-logo { justify-self: start; }
	.kv-shop ul.products { --cols: 3; }
	.kv-shop ul.products > li:nth-child(n) { margin-top: 0; }
	.kv-shop ul.products > li:nth-child(3n+2) { margin-top: 40px; }
	.kv-footer__grid { grid-template-columns: 1fr 1fr; }
	.kv-summary { grid-column: 8 / span 5; }
}
@media (max-width: 900px) {
	:root { --header-h: 64px; }
	.kv-region__label { display: none; }
	.kv-hero__grid { display: flex; flex-direction: column; }
	.kv-hero__title { order: 1; margin-top: 8px; font-size: clamp(3.3rem, 17vw, 5.6rem); }
	.kv-hero__title .kv-hero__line2 { padding-left: 0; text-align: right; }
	.kv-hero__media { order: 2; width: 100%; margin: 20px 0 0; height: auto; aspect-ratio: 4 / 5; }
	.kv-aperture { order: 3; width: 38%; align-self: flex-end; margin: -80px 12px 0 0; }
	.kv-hero__aside { order: 4; margin-top: 8px; }
	.kv-hero__pin { left: 12px; right: auto; top: 12px; bottom: auto; font-size: .86rem; max-width: calc(100% - 24px); }
	.kv-hero .kv-shadow-layer { inset: -10% -10% 55% -10%; }
	.kv-hero__scroll { display: none; }
	.kv-tri__big { grid-column: 1 / span 7; }
	.kv-tri__small { grid-column: 8 / -1; margin-top: 60px; }
	.kv-tri__text { grid-column: 1 / -1; margin-top: 32px; }
	.kv-board__intro { grid-column: 1 / -1; margin-bottom: 20px; }
	.kv-tile--1 { grid-column: 1 / span 7; }
	.kv-tile--2 { grid-column: 8 / -1; margin-top: 60px; }
	.kv-tile--3 { grid-column: 1 / span 5; margin-top: 24px; }
	.kv-tile--4 { grid-column: 6 / -1; margin-top: 56px; }
	.kv-tile--5 { grid-column: 3 / span 8; margin-top: 24px; }
	.kv-box__grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
	.kv-film__media, .kv-film__text { grid-column: 1 / -1; }
	.kv-film__text { padding: 24px 0 0; }
	.kv-values { grid-template-columns: 1fr; }
	.kv-values > div + div { border-left: 0; border-top: 1px solid var(--line); }
	.kv-journal .kv-post:nth-child(n) { grid-column: 1 / -1; margin-top: 0; }
	.kv-news__inner > div:first-child, .kv-news__form { grid-column: 1 / -1; }
	.kv-shophead__grid { min-height: 0; }
	.kv-shophead__text { grid-column: 1 / -1; padding-bottom: 20px; }
	.kv-shophead__img { grid-column: 1 / -1; aspect-ratio: 3 / 2; margin: 0 calc(var(--gutter) * -1); }
	.kv-shop ul.products { --cols: 2; }
	.kv-shop ul.products > li:nth-child(n) { margin-top: 0; }
	.kv-shop ul.products > li.kv-editorial { grid-column: 1 / -1; }
	.kv-toolbar { top: var(--header-h); }
	.kv-pdp__grid { display: block; }
	.kv-gallery {
		display: grid; grid-auto-flow: column; grid-auto-columns: 100%; grid-template-columns: none; gap: 0;
		overflow-x: auto; scroll-snap-type: x mandatory; margin: 0 calc(var(--gutter) * -1); scrollbar-width: none; position: relative;
	}
	.kv-gallery::-webkit-scrollbar { display: none; }
	.kv-gallery__item, .kv-gallery__item:first-child { grid-column: auto; scroll-snap-align: start; }
	.kv-gallery-wrap { position: relative; }
	.kv-gallery__count {
		display: block; position: absolute; right: 12px; bottom: 12px; z-index: 2; background: rgba(251, 248, 241, .92);
		padding: 4px 10px; border-radius: 12px; font-size: .75rem; font-weight: 600; letter-spacing: .06em;
	}
	.kv-summary { position: static; margin-top: 24px; }
	.kv-stickybar { display: flex; }
	.single-product .kv-footer { padding-bottom: 70px; }
	.kv-upclose__img, .kv-upclose__text { grid-column: 1 / -1; }
	.kv-cart-grid, .woocommerce-checkout form.checkout, .woocommerce-account .kv-account { grid-template-columns: 1fr; }
	.woocommerce-checkout #order_review { grid-column: 1; grid-row: auto; position: static; }
	.cart-collaterals .cart_totals { position: static; }
	.kv-legal { grid-template-columns: 1fr; }
	.kv-toc { position: static; background: var(--linen); padding: 16px 18px; }
	.kv-contact__info, .kv-contact__form { grid-column: 1 / -1; }
	.kv-story__text, .kv-story__side { grid-column: 1 / -1; margin-top: 0; }
	.kv-pull { padding-left: 0; }
	.kv-steps { grid-template-columns: 1fr; }
	.kv-steps > div:nth-child(2) { margin-top: 0; }
	.kv-motifs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.kv-posts { grid-template-columns: 1fr 1fr; }
	.kv-posts .kv-post:nth-child(n) { margin-top: 0; }
	.kv-empty__img, .kv-empty__text { grid-column: 1 / -1; }
	.kv-empty__img { width: 60%; }
	.kv-footer__base { flex-direction: column; }
}
@media (max-width: 640px) {
	.kv-grid, .kv-tri { column-gap: 12px; }
	.kv-card__body { grid-template-columns: 1fr; }
	.kv-card__title { font-size: 1rem; }
	.kv-head--offset { padding-left: 0; }
	.kv-footer__grid { grid-template-columns: 1fr; }
	.kv-form .kv-row, .woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper, .woocommerce-address-fields__field-wrapper, .u-columns.col2-set { grid-template-columns: 1fr; }
	table.shop_table_responsive thead { display: none; }
	table.shop_table_responsive tr { display: grid; grid-template-columns: 90px 1fr auto; gap: 4px 14px; padding: 16px 0; border-bottom: 1px solid var(--line); position: relative; }
	table.shop_table_responsive td { display: block; padding: 0; border: 0; }
	table.shop_table_responsive td::before { display: none; }
	table.shop_table_responsive td.product-thumbnail { grid-row: 1 / span 3; width: auto; }
	table.shop_table_responsive td.product-thumbnail img { width: 90px; }
	table.shop_table_responsive td.product-remove { grid-column: 3; grid-row: 1; }
	table.shop_table_responsive td.product-name { grid-column: 2; grid-row: 1; }
	table.shop_table_responsive td.product-price { display: none; }
	table.shop_table_responsive td.product-quantity { grid-column: 2; }
	table.shop_table_responsive td.product-subtotal { grid-column: 2; font-weight: 600; }
	table.shop_table_responsive tr:last-child { display: block; }
	table.shop_table td.actions .coupon { display: flex; width: 100%; margin-bottom: 12px; }
	table.shop_table td.actions .coupon input { flex: 1; width: auto; }
	table.shop_table td.actions > .button { float: none; width: 100%; }
	.kv-posts { grid-template-columns: 1fr; }
	.kv-box__item:nth-child(even) figure { transform: rotate(1.5deg) translateY(12px); }
	.kv-contact__form { margin-inline: calc(var(--gutter) * -1); }
	.kv-facts { grid-template-columns: 1fr; gap: 2px; }
	.kv-facts dd { margin-bottom: 10px; }
}

/* Cart page layout (classic shortcode output) */
.woocommerce-cart .kv-shopflow > .woocommerce { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 400px); gap: clamp(24px, 4vw, 64px); align-items: start; }
.woocommerce-cart .kv-shopflow > .woocommerce > .woocommerce-notices-wrapper,
.woocommerce-cart .kv-shopflow > .woocommerce > .cart-empty,
.woocommerce-cart .kv-shopflow > .woocommerce > .return-to-shop,
.woocommerce-cart .kv-shopflow > .woocommerce > .woocommerce-info { grid-column: 1 / -1; }
.woocommerce-cart .kv-shopflow { padding-bottom: clamp(64px, 8vw, 120px); }
.woocommerce-checkout .kv-shopflow, .woocommerce-account .kv-shopflow { padding-bottom: clamp(64px, 8vw, 120px); }
.kv-hide-sm { display: inline-grid; }
@media (max-width: 900px) {
	.woocommerce-cart .kv-shopflow > .woocommerce { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.kv-hide-sm { display: none; }
	.kv-logo__word { font-size: 1.15rem; letter-spacing: .18em; }
	.kv-logo .kv-mark { width: 24px; height: 24px; }
}

/* Cookie notice */
.kv-cookie {
	position: fixed; left: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 60;
	max-width: 420px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 18px 40px -20px rgba(31, 42, 34, .35);
	padding: 16px 18px; display: flex; gap: 14px; align-items: center; font-size: .85rem;
}
.kv-cookie p { margin: 0; }
.kv-cookie .kv-btn { min-height: 40px; padding: 0 18px; flex: none; }
@media (max-width: 900px) { .single-product .kv-cookie { bottom: calc(84px + env(safe-area-inset-bottom, 0px)); } }
@media (max-width: 480px) { .kv-cookie { left: 10px; right: 10px; max-width: none; } }
.woocommerce-variation-add-to-cart, form.cart:not(.variations_form) { display: flex; gap: 10px; align-items: stretch; }
.woocommerce-variation-add-to-cart .quantity, form.cart .quantity { min-height: 52px; }
.woocommerce-variation-add-to-cart .single_add_to_cart_button, form.cart .single_add_to_cart_button { flex: 1; min-height: 52px; }
.woocommerce-variation-add-to-cart-disabled .single_add_to_cart_button { opacity: .55; }
.cart_totals table th { padding-right: 16px; white-space: nowrap; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.cart_totals .woocommerce-shipping-methods label { font-size: .9rem; }
ul.woocommerce-shipping-methods, #shipping_method { list-style: none; margin: 0; padding: 0; }
#shipping_method li { margin-bottom: 4px; }
@media (max-width: 900px) { ul.products { --cols: 2; } }
@media (min-width: 901px) and (max-width: 1100px) { ul.products { --cols: 3; } }

/* Lightbox */
.kv-lightbox { border: 0; padding: 0; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; background: var(--paper); }
.kv-lightbox::backdrop { background: rgba(31, 42, 34, .6); }
.kv-lightbox img { width: 100%; height: 100%; object-fit: contain; }
.kv-lightbox__close { position: fixed; top: calc(16px + env(safe-area-inset-top, 0px)); right: 16px; background: var(--paper); z-index: 2; }
.kv-gallery__item a { cursor: zoom-in; }
@media (max-width: 900px) { .kv-gallery__item a { cursor: default; } }
/* Password visibility toggle (WooCommerce) */
.password-input { position: relative; display: block; }
.password-input input { padding-right: 48px; }
.show-password-input {
	position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border: 0; border-radius: 50%;
	background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2358604F' stroke-width='1.5'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / 20px no-repeat;
}
.show-password-input.display-password { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F2A22' stroke-width='1.5'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M4 4l16 16'/%3E%3C/svg%3E"); }
.show-password-input:hover { background-color: var(--linen); }
/* Grid children must be allowed to shrink so wide tables scroll inside their own box */
.kv-legal > *, .kv-contact > *, .kv-pdp__grid > *, .kv-cart-grid > *, .woocommerce-checkout form.checkout > *, .woocommerce-cart .kv-shopflow > .woocommerce > * { min-width: 0; }
