/* =====================================================================
   HL Home Lighting — main stylesheet
   1. Tokens         6. Buttons & forms   11. Shop
   2. Reset          7. Header            12. Product
   3. Layout         8. Hero              13. Cart / checkout
   4. Motion         9. Home sections     14. Blog
   5. Typography    10. Product card      15. Footer & overlays
   ===================================================================== */

/* ------------------------------------------------------------ 1. tokens */
:root {
	--hl-gold: #c8a45c;
	--hl-gold-rgb: 200, 164, 92;
	--hl-gold-lt: #e6cf9c;
	--hl-gold-dk: #a8863f;
	--hl-ink: #0e0e11;
	--hl-ink-rgb: 14, 14, 17;
	--hl-ink-2: #17171c;
	--hl-ink-3: #24242b;
	--hl-cream: #f8f5f0;
	--hl-cream-2: #efe9e0;
	--hl-text: #1c1c20;
	--hl-muted: #6f6f7a;
	--hl-line: #e3ddd3;
	--hl-line-dark: rgba(255, 255, 255, .11);
	--hl-white: #fff;
	--hl-red: #c0392b;
	--hl-green: #2f7d4f;

	--hl-radius: 4px;
	--hl-shadow: 0 18px 48px -24px rgba(20, 16, 8, .35);
	--hl-shadow-lg: 0 40px 90px -40px rgba(20, 16, 8, .55);

	--hl-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--hl-sans: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

	--hl-wrap: 1320px;
	--hl-gutter: 24px;
	--hl-header-h: 62px;
	--hl-header-total: 104px;
	--hl-topbar-h: 36px;
	--hl-ease: cubic-bezier(.22, 1, .36, 1);
	--hl-ease-in-out: cubic-bezier(.65, .05, .36, 1);
}

/* ------------------------------------------------------------- 2. reset */
*, *::before, *::after { box-sizing: border-box; }

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

body {
	margin: 0;
	font-family: var(--hl-sans);
	font-size: 16px;
	line-height: 1.7;
	color: var(--hl-text);
	background: var(--hl-white);
	-webkit-font-smoothing: antialiased;
}

body.hl-locked { overflow: hidden; }

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

a { color: inherit; text-decoration: none; transition: color .3s var(--hl-ease); }

button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 { margin: 0; font-weight: 500; line-height: 1.15; }

p { margin: 0 0 1em; }

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

table { border-collapse: collapse; width: 100%; }

::selection { background: rgba(var(--hl-gold-rgb), .28); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.hl-skip {
	position: absolute; top: -60px; left: 16px; z-index: 999;
	padding: 10px 18px; background: var(--hl-ink); color: #fff;
	transition: top .3s;
}
.hl-skip:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--hl-gold); outline-offset: 3px; }

/* ------------------------------------------------------------ 3. layout */
.hl-container {
	width: 100%;
	max-width: var(--hl-wrap);
	margin: 0 auto;
	padding: 0 var(--hl-gutter);
}

.hl-section { padding: clamp(56px, 8vw, 110px) 0; }

.hl-grid { display: grid; gap: 28px; }
.hl-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hl-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hl-grid--4 { grid-template-columns: repeat(4, 1fr); }

.hl-section__cta { margin-top: 46px; text-align: center; }

/* ------------------------------------------------------------ 4. motion */
.hl-reveal,
.hl-anim {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .85s var(--hl-ease), transform .85s var(--hl-ease);
	transition-delay: var(--d, 0s);
}
.hl-reveal.is-in,
.hl-anim.is-in { opacity: 1; transform: none; }

@keyframes hl-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes hl-zoom { from { transform: scale(1.14); } to { transform: scale(1); } }
@keyframes hl-ken { 0% { transform: scale(1.03) translate3d(0,0,0); } 100% { transform: scale(1.16) translate3d(-1.5%, -1.5%, 0); } }
@keyframes hl-ken-soft { 0% { transform: scale(1); } 100% { transform: scale(1.045); } }
@keyframes hl-spin { to { transform: rotate(360deg); } }
@keyframes hl-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes hl-glow { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
@keyframes hl-shimmer { to { background-position: 200% center; } }
@keyframes hl-pop { 0% { transform: scale(.85); opacity: 0; } 60% { transform: scale(1.04); } 100% { transform: scale(1); opacity: 1; } }
@keyframes hl-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
	.hl-reveal, .hl-anim { opacity: 1; transform: none; }
}

/* preloader */
.hl-loader {
	position: fixed; inset: 0; z-index: 9999;
	display: grid; place-items: center;
	background: var(--hl-ink);
	transition: opacity .6s var(--hl-ease), visibility .6s;
}
.hl-loader.is-done { opacity: 0; visibility: hidden; }
.hl-loader__bulb {
	width: 54px; height: 54px; border-radius: 50%;
	background: radial-gradient(circle at 50% 40%, var(--hl-gold-lt), var(--hl-gold) 55%, transparent 72%);
	box-shadow: 0 0 60px 18px rgba(var(--hl-gold-rgb), .35);
	animation: hl-glow 1.3s ease-in-out infinite;
}

/* -------------------------------------------------------- 5. typography */
.hl-eyebrow {
	display: inline-block;
	font-size: 11.5px; font-weight: 500;
	letter-spacing: .26em; text-transform: uppercase;
	color: var(--hl-gold);
	margin-bottom: 14px;
}

.hl-sectitle {
	font-family: var(--hl-serif);
	font-size: clamp(30px, 4.2vw, 54px);
	font-weight: 500; line-height: 1.08;
	letter-spacing: -.01em;
}

.hl-secsub {
	max-width: 56ch;
	margin: 16px auto 0;
	color: var(--hl-muted);
	font-size: 15.5px;
}

.hl-sechead { margin-bottom: 48px; }
.hl-sechead--center { text-align: center; }
.hl-sechead--left { text-align: left; margin-bottom: 38px; }
.hl-sechead--left .hl-secsub { margin-left: 0; }

.hl-sechead-row {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 24px; flex-wrap: wrap;
}
.hl-sechead-row .hl-sechead { margin-bottom: 38px; }

.hl-link {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 13px; font-weight: 500;
	letter-spacing: .1em; text-transform: uppercase;
	color: var(--hl-ink);
	border-bottom: 1px solid rgba(var(--hl-ink-rgb), .25);
	padding-bottom: 3px;
}
.hl-link:hover { color: var(--hl-gold); border-color: var(--hl-gold); }
.hl-link svg { transition: transform .35s var(--hl-ease); }
.hl-link:hover svg { transform: translateX(4px); }

.hl-rte { font-size: 16.5px; color: #33333a; }
.hl-rte h2, .hl-rte h3, .hl-rte h4 { font-family: var(--hl-serif); margin: 1.6em 0 .5em; color: var(--hl-ink); }
.hl-rte h2 { font-size: 30px; }
.hl-rte h3 { font-size: 24px; }
.hl-rte ul, .hl-rte ol { margin: 0 0 1.2em; padding-left: 1.1em; }
.hl-rte ul { list-style: none; padding-left: 0; }
.hl-rte ul li { position: relative; padding-left: 24px; margin-bottom: 9px; }
.hl-rte ul li::before {
	content: ""; position: absolute; left: 2px; top: 11px;
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--hl-gold);
}
.hl-rte ol { list-style: decimal; }
.hl-rte ol li { margin-bottom: 9px; }
.hl-rte a { color: var(--hl-gold-dk); border-bottom: 1px solid currentColor; }
.hl-rte blockquote {
	margin: 1.6em 0; padding: 4px 0 4px 26px;
	border-left: 2px solid var(--hl-gold);
	font-family: var(--hl-serif); font-size: 22px; font-style: italic;
}
.hl-rte img { border-radius: var(--hl-radius); margin: 1.4em 0; }

/* ----------------------------------------------------- 6. buttons/forms */
.hl-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	position: relative; overflow: hidden;
	padding: 14px 30px;
	font-size: 12.5px; font-weight: 500;
	letter-spacing: .14em; text-transform: uppercase;
	border-radius: var(--hl-radius);
	border: 1px solid transparent;
	transition: color .35s var(--hl-ease), background .35s var(--hl-ease),
		border-color .35s var(--hl-ease), transform .35s var(--hl-ease), box-shadow .35s var(--hl-ease);
	white-space: nowrap;
}
.hl-btn::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.35) 50%, transparent 80%);
	transform: translateX(-120%);
	transition: transform .7s var(--hl-ease);
}
.hl-btn:hover::after { transform: translateX(120%); }
.hl-btn:active { transform: scale(.975); }
.hl-btn svg { position: relative; z-index: 1; transition: transform .35s var(--hl-ease); }
.hl-btn span, .hl-btn > * { position: relative; z-index: 1; }
.hl-btn:hover svg { transform: translateX(3px); }

.hl-btn--gold {
	background: linear-gradient(135deg, var(--hl-gold-lt), var(--hl-gold) 45%, var(--hl-gold-dk));
	color: #191308;
	box-shadow: 0 12px 30px -14px rgba(var(--hl-gold-rgb), .8);
}
.hl-btn--gold:hover { box-shadow: 0 18px 40px -14px rgba(var(--hl-gold-rgb), .95); transform: translateY(-2px); }

.hl-btn--dark { background: var(--hl-ink); color: #fff; }
.hl-btn--dark:hover { background: var(--hl-ink-3); transform: translateY(-2px); }

.hl-btn--outline { border-color: currentColor; color: inherit; }
.hl-btn--outline:hover { background: var(--hl-ink); border-color: var(--hl-ink); color: #fff; }

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

.hl-btn--lg { padding: 17px 38px; font-size: 13px; }
.hl-btn--block { display: flex; width: 100%; }
.hl-btn[disabled], .hl-btn.is-busy { opacity: .55; pointer-events: none; }

.hl-textbtn {
	display: inline-flex; align-items: center; gap: 9px;
	font-size: 13.5px; color: var(--hl-muted);
	transition: color .3s;
}
.hl-textbtn:hover, .hl-textbtn.is-on { color: var(--hl-gold-dk); }
.hl-textbtn.is-on svg { fill: currentColor; }

.hl-iconbtn {
	position: relative;
	display: inline-grid; place-items: center;
	width: 38px; height: 38px; border-radius: 50%;
	transition: background .3s, color .3s, transform .3s var(--hl-ease);
}
.hl-iconbtn:hover { background: rgba(var(--hl-ink-rgb), .06); transform: translateY(-1px); }
.hl-header .hl-iconbtn:hover { background: rgba(255, 255, 255, .13); }

.hl-count {
	position: absolute; top: 1px; right: -1px;
	min-width: 18px; height: 18px; padding: 0 4px;
	display: grid; place-items: center;
	font-size: 10.5px; font-weight: 600; line-height: 1;
	border-radius: 999px;
	background: var(--hl-gold); color: #17130a;
}
.hl-count--wish { background: var(--hl-ink); color: #fff; }
.hl-header .hl-count--wish { background: #fff; color: var(--hl-ink); }

/* fields */
.hl-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hl-field { display: flex; flex-direction: column; gap: 7px; }
.hl-field--wide { grid-column: 1 / -1; }
.hl-field > span, .hl-field > label {
	font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
	color: var(--hl-muted);
}
.hl-field input, .hl-field textarea, .hl-field select {
	width: 100%; padding: 13px 15px;
	background: #fff;
	border: 1px solid var(--hl-line);
	border-radius: var(--hl-radius);
	transition: border-color .3s, box-shadow .3s;
}
.hl-field input:focus, .hl-field textarea:focus {
	outline: none;
	border-color: var(--hl-gold);
	box-shadow: 0 0 0 3px rgba(var(--hl-gold-rgb), .16);
}
.hl-field.is-error input, .hl-field.is-error textarea { border-color: var(--hl-red); }
.hl-field textarea { resize: vertical; }

.hl-formmsg { margin: 10px 0 0; font-size: 13.5px; min-height: 1px; }
.hl-formmsg.is-ok { color: var(--hl-green); }
.hl-formmsg.is-bad { color: var(--hl-red); }
.hl-formmsg--block { margin: 18px 0; }

.hl-select { position: relative; display: inline-flex; align-items: center; }
.hl-select select {
	appearance: none; -webkit-appearance: none;
	padding: 11px 40px 11px 15px;
	background: #fff; border: 1px solid var(--hl-line);
	border-radius: var(--hl-radius); cursor: pointer;
	font-size: 14px;
}
.hl-select svg { position: absolute; right: 13px; pointer-events: none; color: var(--hl-muted); }

.hl-radio {
	display: flex; align-items: center; gap: 10px;
	padding: 7px 0; cursor: pointer; font-size: 14.5px;
	transition: color .25s;
}
.hl-radio:hover { color: var(--hl-gold-dk); }
.hl-radio input { accent-color: var(--hl-gold); width: 16px; height: 16px; }
.hl-radio em { margin-left: auto; font-style: normal; font-size: 12px; color: var(--hl-muted); }

.hl-qty {
	display: inline-flex; align-items: center;
	border: 1px solid var(--hl-line); border-radius: var(--hl-radius);
	background: #fff; overflow: hidden;
}
.hl-qty button {
	width: 34px; height: 34px; display: grid; place-items: center;
	color: var(--hl-muted); transition: background .25s, color .25s;
}
.hl-qty button:hover { background: var(--hl-cream); color: var(--hl-ink); }
.hl-qty input {
	width: 42px; height: 34px; text-align: center;
	border: 0; background: none; font-size: 14px; font-weight: 500;
	-moz-appearance: textfield;
}
.hl-qty input::-webkit-outer-spin-button,
.hl-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.hl-qty--lg button { width: 44px; height: 50px; }
.hl-qty--lg input { width: 52px; height: 50px; font-size: 16px; }

.hl-searchform { position: relative; display: flex; align-items: center; gap: 10px; }
.hl-searchform svg { position: absolute; left: 14px; color: var(--hl-muted); }
.hl-searchform input {
	flex: 1; padding: 13px 15px 13px 42px;
	border: 1px solid var(--hl-line); border-radius: var(--hl-radius); background: #fff;
}
.hl-searchform input:focus { outline: none; border-color: var(--hl-gold); }

/* ------------------------------------------------------------ 7. header */
.hl-topbar {
	background: var(--hl-ink);
	color: rgba(255, 255, 255, .8);
	font-size: 12px; letter-spacing: .1em;
	height: var(--hl-topbar-h);
	display: flex; align-items: center;
	overflow: hidden;
}
.hl-topbar__track {
	display: flex; gap: 90px; width: max-content;
	animation: hl-marquee 34s linear infinite;
}
.hl-topbar__track span { white-space: nowrap; }
.hl-topbar:hover .hl-topbar__track { animation-play-state: paused; }

.hl-header {
	position: sticky; top: 0; z-index: 200;
	background: linear-gradient(180deg, var(--hl-ink) 0%, var(--hl-ink-2) 100%);
	color: #fff;
	border-bottom: 1px solid rgba(var(--hl-gold-rgb), .18);
	transition: box-shadow .4s var(--hl-ease);
}
.hl-header.is-stuck { box-shadow: 0 16px 40px -22px rgba(0, 0, 0, .55); }

/* keep the sticky header below the wp-admin toolbar when previewing while logged in */
body.admin-bar .hl-header { top: 32px; }
@media (max-width: 782px) {
	body.admin-bar .hl-header { top: 46px; }
}

/* row 1 — logo, search, actions */
.hl-header__row1 {
	display: flex; align-items: center; gap: 20px;
	height: var(--hl-header-h);
}

.hl-brand { flex-shrink: 0; }
.hl-logo { display: inline-flex; align-items: center; gap: 11px; }
.hl-logo__svg {
	width: 42px; height: 31px;
	color: currentColor;
	transition: transform .5s var(--hl-ease);
}
.hl-logo__svg text { font-family: var(--hl-serif); }
.hl-logo:hover .hl-logo__svg { transform: rotate(-4deg) scale(1.06); }
.hl-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.hl-logo__text strong {
	font-family: var(--hl-serif); font-size: 19px; font-weight: 600;
	letter-spacing: .01em;
}
.hl-logo__text em {
	font-style: normal; font-size: 9px;
	letter-spacing: .28em; text-transform: uppercase;
	opacity: .6;
}
.custom-logo-link img { max-height: 48px; width: auto; }

/* inline product search capsule */
.hl-navsearch {
	position: relative;
	flex: 1 1 auto; max-width: 540px; margin: 0 auto;
	display: flex; align-items: stretch;
	height: 40px;
	background: rgba(255, 255, 255, .09);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	transition: background .3s, border-color .3s, box-shadow .3s;
}
.hl-navsearch:focus-within {
	background: #fff; color: var(--hl-text);
	border-color: var(--hl-gold);
	box-shadow: 0 10px 30px -16px rgba(20, 16, 8, .35), 0 0 0 3px rgba(var(--hl-gold-rgb), .14);
}
.hl-navsearch__cat { position: relative; display: flex; align-items: center; flex-shrink: 0; }
.hl-navsearch__cat select {
	appearance: none; -webkit-appearance: none;
	height: 100%; padding: 0 30px 0 20px;
	background: none; border: 0; color: inherit;
	font-size: 12.5px; font-weight: 500; letter-spacing: .02em;
	max-width: 150px; cursor: pointer;
}
.hl-navsearch__cat svg { position: absolute; right: 11px; pointer-events: none; opacity: .6; }
.hl-navsearch__divider { width: 1px; margin: 10px 0; background: currentColor; opacity: .14; flex-shrink: 0; }
.hl-navsearch input[type="search"] {
	flex: 1; min-width: 0; height: 100%;
	padding: 0 6px 0 18px;
	background: none; border: 0; color: inherit;
	font-size: 14px;
}
.hl-navsearch input[type="search"]::placeholder { color: currentColor; opacity: .45; }
.hl-navsearch input[type="search"]:focus { outline: none; }
.hl-navsearch__btn {
	display: grid; place-items: center;
	width: 40px; height: 40px; flex-shrink: 0;
	margin: -1px -1px -1px 0;
	background: linear-gradient(135deg, var(--hl-gold-lt), var(--hl-gold) 55%, var(--hl-gold-dk));
	color: #1a1408;
	border-radius: 999px;
	transition: transform .3s var(--hl-ease), box-shadow .3s;
}
.hl-navsearch__btn:hover { transform: scale(1.06); box-shadow: 0 10px 24px -10px rgba(var(--hl-gold-rgb), .8); }

.hl-navsearch__results {
	position: absolute; top: calc(100% + 14px); left: 0; right: 0; z-index: 60;
	background: #fff; color: var(--hl-text);
	border: 1px solid var(--hl-line);
	border-radius: var(--hl-radius);
	box-shadow: var(--hl-shadow-lg);
	padding: 10px; display: none;
	max-height: 70vh; overflow-y: auto;
}
.hl-navsearch__results.is-on { display: grid; gap: 4px; }
.hl-nresult {
	display: flex; align-items: center; gap: 13px;
	padding: 8px 10px; border-radius: var(--hl-radius);
	color: var(--hl-text);
	animation: hl-fade-up .35s var(--hl-ease) backwards;
	transition: background .25s;
}
.hl-nresult:hover { background: var(--hl-cream); }
.hl-nresult img { width: 44px; height: 55px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.hl-nresult strong { display: block; font-family: var(--hl-serif); font-size: 15.5px; font-weight: 500; }
.hl-nresult span span { font-size: 12.5px; color: var(--hl-gold-dk); }
.hl-nresult--more {
	justify-content: center; margin-top: 4px; padding-top: 12px;
	border-top: 1px solid var(--hl-line);
	font-size: 11.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
	color: var(--hl-gold-dk);
}
.hl-search__empty { padding: 14px; text-align: center; font-size: 13.5px; color: var(--hl-muted); }

/* row 2 — primary nav links + mega menu */
.hl-header__row2 { position: relative; border-top: 1px solid rgba(255, 255, 255, .12); }
.hl-row2__inner { display: flex; align-items: center; justify-content: center; gap: 22px; height: 42px; position: relative; }

.hl-mainnav { display: flex; align-items: center; gap: 2px; }
.hl-mainnav__item { position: relative; }
.hl-mainnav__item > a, .hl-mainnav__item > button {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 8px 16px;
	font-size: 12.5px; font-weight: 500;
	letter-spacing: .1em; text-transform: uppercase;
	position: relative; color: inherit;
}
.hl-mainnav__item > a::before,
.hl-mainnav__item > button::before {
	content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px;
	height: 2px; background: var(--hl-gold);
	transform: scaleX(0); transform-origin: right;
	transition: transform .4s var(--hl-ease);
}
.hl-mainnav__item:hover > a::before,
.hl-mainnav__item:hover > button::before,
.hl-mainnav__item.is-open > button::before { transform: scaleX(1); transform-origin: left; }
.hl-mainnav__item:hover > a, .hl-mainnav__item:hover > button,
.hl-mainnav__item.is-open > button { color: var(--hl-gold-lt); }
.hl-mainnav__item--mega > button svg { transition: transform .35s var(--hl-ease); }
.hl-mainnav__item--mega.is-open > button svg { transform: rotate(180deg); }

.hl-row2__deal {
	position: absolute; right: 0; top: 50%; transform: translateY(-50%);
	display: flex; align-items: center; gap: 7px;
	padding: 6px 14px;
	font-size: 10.5px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
	color: #ffb4a8;
	background: rgba(255, 255, 255, .08);
	border-radius: 999px;
}

/* mega panel */
.hl-mega {
	position: absolute; top: 100%; left: 0; right: 0; z-index: 55;
	background: #fff; color: var(--hl-text);
	border-bottom: 1px solid var(--hl-line);
	box-shadow: var(--hl-shadow-lg);
	opacity: 0; visibility: hidden; transform: translateY(-8px);
	transition: opacity .4s var(--hl-ease), transform .4s var(--hl-ease), visibility .4s;
}
.hl-mega.is-on { opacity: 1; visibility: visible; transform: none; }
.hl-mega__inner { display: grid; grid-template-columns: 1fr 260px; gap: 40px; padding: 34px 0; }
.hl-mega__cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hl-mega__cat {
	display: flex; align-items: center; gap: 13px;
	padding: 10px; border-radius: var(--hl-radius);
	opacity: 0; transform: translateY(8px);
	transition: background .3s, opacity .4s var(--hl-ease), transform .4s var(--hl-ease);
	transition-delay: var(--d, 0s);
}
.hl-mega.is-on .hl-mega__cat { opacity: 1; transform: none; }
.hl-mega__cat:hover { background: var(--hl-cream); }
.hl-mega__catimg { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.hl-mega__catimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--hl-ease); }
.hl-mega__cat:hover .hl-mega__catimg img { transform: scale(1.12); }
.hl-mega__cattext { display: flex; flex-direction: column; gap: 2px; }
.hl-mega__cattext strong { font-family: var(--hl-serif); font-size: 17px; font-weight: 500; }
.hl-mega__cattext em { font-style: normal; font-size: 11.5px; color: var(--hl-muted); }

.hl-mega__promo { border-left: 1px solid var(--hl-line); padding-left: 34px; display: flex; flex-direction: column; gap: 16px; }
.hl-mega__promocard { position: relative; display: block; border-radius: var(--hl-radius); overflow: hidden; background: var(--hl-ink); }
.hl-mega__promocard img { width: 100%; aspect-ratio: 4/3; object-fit: cover; opacity: .8; transition: transform .6s var(--hl-ease), opacity .3s; }
.hl-mega__promocard:hover img { transform: scale(1.06); opacity: .62; }
.hl-mega__promotag {
	position: absolute; top: 10px; left: 10px; z-index: 2;
	padding: 5px 11px; font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
	background: var(--hl-gold); color: #1a1408; border-radius: 2px;
}
.hl-mega__promobody { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2; color: #fff; }
.hl-mega__promobody strong { display: block; font-family: var(--hl-serif); font-size: 17px; margin-bottom: 4px; }
.hl-mega__promobody .hl-price ins { color: var(--hl-gold-lt); font-size: 16px; }
.hl-mega__promobody .hl-price del { color: rgba(255, 255, 255, .5); }
.hl-mega__link {
	display: inline-flex; align-items: center; gap: 8px; justify-content: center;
	padding: 12px; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
	border: 1px solid var(--hl-line); border-radius: var(--hl-radius);
	transition: background .3s, border-color .3s, color .3s;
}
.hl-mega__link:hover { background: var(--hl-ink); border-color: var(--hl-ink); color: #fff; }

.hl-menu-item { position: relative; }
.hl-submenu {
	position: absolute; top: calc(100% + 12px); left: 50%;
	transform: translateX(-50%) translateY(10px);
	min-width: 240px; padding: 12px;
	background: #fff; color: var(--hl-text);
	border: 1px solid var(--hl-line);
	border-radius: var(--hl-radius);
	box-shadow: var(--hl-shadow);
	opacity: 0; visibility: hidden;
	transition: opacity .35s var(--hl-ease), transform .35s var(--hl-ease), visibility .35s;
	z-index: 30;
}
.hl-submenu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.hl-menu-item:hover > .hl-submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.hl-submenu .hl-menu-item > a {
	display: block; padding: 9px 14px;
	font-size: 14px; border-radius: var(--hl-radius);
	transition: background .25s, color .25s, padding-left .25s;
}
.hl-submenu .hl-menu-item > a:hover {
	background: var(--hl-cream); color: var(--hl-gold-dk); padding-left: 20px;
}
.hl-submenu .hl-submenu { top: 0; left: 100%; transform: translateX(8px); }
.hl-submenu .hl-menu-item:hover > .hl-submenu { transform: translateX(4px); }
.hl-submenu-toggle { display: none; }

.hl-actions { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.hl-actions__label {
	position: absolute !important; width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.hl-hide-lg { display: none; }

.hl-burger { display: none; flex-direction: column; gap: 5px; flex-shrink: 0; }
.hl-burger span {
	display: block; width: 20px; height: 1.6px;
	background: currentColor; border-radius: 2px;
	transition: transform .35s var(--hl-ease), opacity .3s;
}
.hl-burger.is-on span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.hl-burger.is-on span:nth-child(2) { opacity: 0; }
.hl-burger.is-on span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* breadcrumbs */
.hl-crumbs {
	background: var(--hl-cream);
	border-bottom: 1px solid var(--hl-line);
	font-size: 12.5px; color: var(--hl-muted);
}
.hl-crumbs .hl-container { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; padding-top: 13px; padding-bottom: 13px; }
.hl-crumbs a:hover { color: var(--hl-gold-dk); }
.hl-crumbs strong { font-weight: 500; color: var(--hl-text); }
.hl-crumbs span { opacity: .4; }

/* -------------------------------------------------------------- 8. hero */
.hl-hero {
	position: relative;
	height: calc(100vh - var(--hl-header-total) - var(--hl-topbar-h));
	height: calc(100dvh - var(--hl-header-total) - var(--hl-topbar-h));
	min-height: 480px; max-height: 940px;
	background: var(--hl-ink);
	overflow: hidden;
}
.hl-hero__slides { position: absolute; inset: 0; }

.hl-slide {
	position: absolute; inset: 0;
	opacity: 0; visibility: hidden;
	transition: opacity 1.1s var(--hl-ease), visibility 1.1s;
}
.hl-slide.is-active { opacity: 1; visibility: visible; }

.hl-slide__bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	transform: scale(1);
}
.hl-slide.is-active .hl-slide__bg { animation: hl-ken 11s ease-out forwards; }
.hl-hero--image .hl-slide__bg { inset: 0; }
.hl-hero--image .hl-slide.is-active .hl-slide__bg { animation: hl-ken-soft 11s ease-out forwards; }
.hl-slide__hit { position: absolute; inset: 0; z-index: 2; }

.hl-slide__veil {
	position: absolute; inset: 0;
	background:
		radial-gradient(80% 70% at 22% 45%, rgba(0, 0, 0, .58), transparent 68%),
		linear-gradient(180deg, rgba(8, 8, 10, .62) 0%, rgba(8, 8, 10, .22) 40%, rgba(8, 8, 10, .72) 100%);
}

.hl-slide__inner {
	position: relative; z-index: 2;
	height: 100%; display: flex; align-items: center;
}
.hl-slide--center .hl-slide__inner { justify-content: center; text-align: center; }
.hl-slide--right .hl-slide__inner { justify-content: flex-end; text-align: right; }

.hl-slide__content { max-width: 660px; color: #fff; }
.hl-slide--center .hl-slide__content { max-width: 760px; }

.hl-slide__title {
	font-family: var(--hl-serif);
	font-size: clamp(40px, 7vw, 88px);
	font-weight: 500; line-height: 1.02;
	letter-spacing: -.02em;
	margin-bottom: 22px;
}
.hl-slide__title span { display: block; }

.hl-slide__text {
	max-width: 50ch; font-size: 16.5px;
	color: rgba(255, 255, 255, .82);
	margin-bottom: 34px;
}
.hl-slide--center .hl-slide__text { margin-left: auto; margin-right: auto; }
.hl-slide--right .hl-slide__text { margin-left: auto; }

.hl-slide__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hl-slide--center .hl-slide__cta { justify-content: center; }
.hl-slide--right .hl-slide__cta { justify-content: flex-end; }
.hl-slide__cta .hl-btn--outline { color: #fff; }
.hl-slide__cta .hl-btn--outline:hover { background: #fff; color: var(--hl-ink); border-color: #fff; }

.hl-slide.is-active .hl-anim { opacity: 1; transform: none; }
.hl-slide:not(.is-active) .hl-anim { opacity: 0; transform: translateY(26px); }

.hl-hero__nav {
	position: absolute; top: 50%; z-index: 5;
	width: 52px; height: 52px;
	display: grid; place-items: center;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .3);
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	backdrop-filter: blur(6px);
	transform: translateY(-50%);
	transition: background .35s, border-color .35s, transform .35s var(--hl-ease);
}
.hl-hero__nav:hover { background: var(--hl-gold); border-color: var(--hl-gold); color: #1a1408; }
.hl-hero__nav--prev { left: 26px; }
.hl-hero__nav--next { right: 26px; }
.hl-hero__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.hl-hero__nav--next:hover { transform: translateY(-50%) translateX(3px); }

.hl-hero__dots {
	position: absolute; bottom: 40px; left: 50%; z-index: 5;
	display: flex; gap: 10px; transform: translateX(-50%);
}
.hl-hero__dots button {
	width: 34px; height: 3px; border-radius: 2px;
	background: rgba(255, 255, 255, .3);
	overflow: hidden; transition: background .3s;
}
.hl-hero__dots button i { display: block; height: 100%; width: 0; background: var(--hl-gold); }
.hl-hero__dots button.is-active i { width: 100%; transition: width 6s linear; }

.hl-hero__scroll {
	position: absolute; bottom: 34px; right: 34px; z-index: 5;
	display: flex; align-items: center; gap: 12px;
	color: rgba(255, 255, 255, .6);
	font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase;
	writing-mode: vertical-rl;
}
.hl-hero__scroll i {
	width: 1px; height: 52px;
	background: linear-gradient(to bottom, var(--hl-gold), transparent);
	animation: hl-glow 2s ease-in-out infinite;
}

/* --------------------------------------------------- 9. home sections */
/* usp strip */
.hl-usp { border-bottom: 1px solid var(--hl-line); background: #fff; }
.hl-usp__grid {
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
.hl-usp__item {
	display: flex; align-items: center; gap: 15px;
	padding: 26px 22px;
	border-right: 1px solid var(--hl-line);
}
.hl-usp__item:last-child { border-right: 0; }
.hl-usp__icon {
	display: grid; place-items: center;
	width: 48px; height: 48px; flex-shrink: 0;
	color: var(--hl-gold-dk);
	background: var(--hl-cream);
	border-radius: 50%;
	transition: background .4s var(--hl-ease), color .4s, transform .4s var(--hl-ease);
}
.hl-usp__item:hover .hl-usp__icon { background: var(--hl-gold); color: #1a1408; transform: rotate(-8deg) scale(1.06); }
.hl-usp__item strong { display: block; font-size: 14.5px; font-weight: 500; }
.hl-usp__item span { font-size: 12.5px; color: var(--hl-muted); }

/* categories */
.hl-cats { background: var(--hl-cream); }
.hl-cats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 210px;
	gap: 20px;
}
.hl-cat {
	position: relative; overflow: hidden;
	border-radius: var(--hl-radius);
	background: var(--hl-ink-2);
	display: block;
}
.hl-cat--1 { grid-column: span 2; grid-row: span 2; }
.hl-cat--6 { grid-column: span 2; }
.hl-cat__img { position: absolute; inset: 0; }
.hl-cat__img img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 1s var(--hl-ease), filter .6s;
	filter: brightness(.82);
}
.hl-cat:hover .hl-cat__img img { transform: scale(1.09); filter: brightness(.68); }
.hl-cat::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(8, 8, 10, .82) 100%);
}
.hl-cat__body {
	position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2;
	color: #fff; display: flex; flex-direction: column; gap: 4px;
}
.hl-cat__body em {
	font-style: normal; font-size: 11px;
	letter-spacing: .22em; text-transform: uppercase;
	color: var(--hl-gold-lt);
}
.hl-cat__body strong {
	font-family: var(--hl-serif); font-size: 26px; font-weight: 500; line-height: 1.15;
}
.hl-cat--1 .hl-cat__body strong { font-size: 34px; }
.hl-cat__go {
	display: inline-flex; align-items: center; gap: 7px;
	margin-top: 8px;
	font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
	opacity: 0; transform: translateY(10px);
	transition: opacity .4s var(--hl-ease), transform .4s var(--hl-ease);
}
.hl-cat:hover .hl-cat__go { opacity: 1; transform: none; }

/* carousel */
.hl-carousel { position: relative; overflow: hidden; margin: 0 -12px; }
.hl-carousel__track {
	display: flex; gap: 0;
	transition: transform .7s var(--hl-ease);
	will-change: transform;
}
.hl-carousel__track.is-dragging { transition: none; cursor: grabbing; }
.hl-carousel__cell { flex: 0 0 25%; padding: 0 12px; min-width: 0; }
.hl-carousel--reviews .hl-carousel__cell { flex-basis: 33.3333%; }

.hl-carousel__nav { display: flex; align-items: center; gap: 10px; margin-bottom: 38px; }
.hl-carousel__nav--center { justify-content: center; margin: 36px 0 0; }
.hl-carousel__nav button {
	width: 44px; height: 44px; display: grid; place-items: center;
	border: 1px solid var(--hl-line); border-radius: 50%;
	color: var(--hl-ink);
	transition: background .3s, color .3s, border-color .3s, transform .3s var(--hl-ease);
}
.hl-carousel__nav button:hover { background: var(--hl-ink); border-color: var(--hl-ink); color: #fff; }
.hl-carousel__nav button[disabled] { opacity: .3; pointer-events: none; }
.hl-carousel__nav .hl-link { margin-left: 8px; }

/* deal */
.hl-deal {
	position: relative; overflow: hidden;
	background: var(--hl-ink); color: #fff;
	padding: clamp(56px, 8vw, 104px) 0;
}
.hl-deal__glow {
	position: absolute; top: -30%; left: 8%;
	width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
	background: radial-gradient(circle, rgba(var(--hl-gold-rgb), .22), transparent 62%);
	animation: hl-glow 6s ease-in-out infinite;
}
.hl-deal__inner {
	position: relative; z-index: 2;
	display: grid; grid-template-columns: .85fr 1fr;
	gap: clamp(34px, 6vw, 80px); align-items: center;
}
.hl-deal__media { position: relative; height: 60vh; max-height: 560px; min-height: 320px; }
.hl-deal__media img {
	width: 100%; height: 100%; object-fit: cover;
	border-radius: var(--hl-radius);
	position: relative; z-index: 2;
	animation: hl-bob 6s ease-in-out infinite;
}
.hl-deal__ring {
	position: absolute; inset: -6%;
	border: 1px solid rgba(var(--hl-gold-rgb), .35);
	border-radius: 50%;
	animation: hl-spin 26s linear infinite;
}
.hl-deal__ring::after {
	content: ""; position: absolute; top: -5px; left: 50%;
	width: 9px; height: 9px; border-radius: 50%;
	background: var(--hl-gold);
	box-shadow: 0 0 18px 4px rgba(var(--hl-gold-rgb), .7);
}
.hl-deal__save {
	position: absolute; top: 12px; right: 12px; z-index: 3;
	width: 84px; height: 84px; border-radius: 50%;
	display: grid; place-content: center; text-align: center;
	background: linear-gradient(140deg, var(--hl-gold-lt), var(--hl-gold-dk));
	color: #1a1408;
	box-shadow: 0 14px 34px -12px rgba(var(--hl-gold-rgb), .9);
}
.hl-deal__save strong { font-size: 24px; font-weight: 600; line-height: 1; }
.hl-deal__save em { font-style: normal; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }

.hl-deal__body .hl-sectitle { color: #fff; margin-bottom: 14px; }
.hl-deal__body p { color: rgba(255, 255, 255, .68); max-width: 52ch; }
.hl-deal__body .hl-price { margin: 18px 0 26px; }
.hl-deal__body .hl-price ins { color: var(--hl-gold-lt); font-size: 30px; }
.hl-deal__body .hl-price del { color: rgba(255, 255, 255, .4); }

.hl-countdown { display: flex; gap: 12px; margin-bottom: 26px; }
.hl-countdown__unit {
	min-width: 74px; padding: 13px 8px;
	text-align: center;
	background: rgba(255, 255, 255, .05);
	border: 1px solid var(--hl-line-dark);
	border-radius: var(--hl-radius);
}
.hl-countdown__unit strong {
	display: block;
	font-family: var(--hl-serif); font-size: 30px; font-weight: 600;
	color: var(--hl-gold-lt); line-height: 1;
}
.hl-countdown__unit span {
	font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
	color: rgba(255, 255, 255, .5);
}

.hl-deal__stock { margin-bottom: 28px; max-width: 340px; }
.hl-deal__bar {
	height: 5px; border-radius: 3px; overflow: hidden;
	background: rgba(255, 255, 255, .12);
}
.hl-deal__bar i {
	display: block; height: 100%;
	background: linear-gradient(90deg, var(--hl-gold-dk), var(--hl-gold-lt));
	background-size: 200% auto;
	animation: hl-shimmer 2.6s linear infinite;
}
.hl-deal__stock p { margin: 9px 0 0; font-size: 12.5px; color: rgba(255, 255, 255, .55); }
.hl-deal__cta { display: flex; gap: 13px; flex-wrap: wrap; }
.hl-deal__cta .hl-btn--outline { color: #fff; }
.hl-deal__cta .hl-btn--outline:hover { background: #fff; color: var(--hl-ink); }

/* marquee */
.hl-marquee {
	padding: 20px 0; overflow: hidden;
	background: var(--hl-gold);
	color: #1a1408;
	border-top: 1px solid rgba(0, 0, 0, .08);
	border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.hl-marquee__track {
	display: flex; align-items: center; gap: 26px;
	width: max-content;
	animation: hl-marquee 40s linear infinite;
	font-size: 13px; font-weight: 500; letter-spacing: .26em;
}
.hl-marquee__track i { font-style: normal; opacity: .55; }

/* story */
.hl-story { padding: clamp(60px, 9vw, 120px) 0; background: #fff; }
.hl-story--about { background: var(--hl-cream); }
.hl-story__inner {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: clamp(36px, 6vw, 84px); align-items: center;
}
.hl-story__art { position: relative; min-height: 480px; }
.hl-story__fig { margin: 0; position: absolute; border-radius: var(--hl-radius); overflow: hidden; box-shadow: var(--hl-shadow-lg); }
.hl-story__fig img { width: 100%; height: 100%; object-fit: cover; }
.hl-story__fig--a { top: 0; left: 0; width: 66%; height: 78%; }
.hl-story__fig--b { bottom: 0; right: 0; width: 52%; height: 56%; border: 8px solid #fff; }
.hl-story--about .hl-story__fig--b { border-color: var(--hl-cream); }
.hl-story__seal {
	position: absolute; bottom: 16%; left: 4%; z-index: 3;
	width: 112px; height: 112px; border-radius: 50%;
	display: grid; place-content: center; text-align: center;
	background: var(--hl-ink); color: #fff;
	box-shadow: var(--hl-shadow);
	animation: hl-bob 7s ease-in-out infinite;
}
.hl-story__seal em { font-style: normal; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--hl-gold-lt); }
.hl-story__seal strong { font-family: var(--hl-serif); font-size: 17px; font-weight: 500; }

.hl-story__body .hl-sectitle { margin-bottom: 20px; }
.hl-story__quote {
	font-family: var(--hl-serif); font-size: 24px; font-style: italic;
	color: var(--hl-gold-dk); margin-bottom: 16px;
}
.hl-story__body p { color: var(--hl-muted); max-width: 54ch; }
.hl-story__points { margin: 24px 0 32px; }
.hl-story__points li {
	display: flex; align-items: flex-start; gap: 11px;
	padding: 7px 0; font-size: 15px;
}
.hl-story__points svg { color: var(--hl-gold-dk); flex-shrink: 0; margin-top: 4px; }
.hl-story__cta { display: flex; gap: 13px; flex-wrap: wrap; }

/* tabs */
.hl-tabs {
	position: relative;
	display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
	margin-bottom: 40px;
}
.hl-tabs button {
	padding: 10px 22px;
	font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
	color: var(--hl-muted);
	border: 1px solid transparent; border-radius: 999px;
	transition: color .3s, background .3s, border-color .3s;
}
.hl-tabs button:hover { color: var(--hl-ink); }
.hl-tabs button.is-active {
	color: #1a1408;
	background: var(--hl-gold);
	border-color: var(--hl-gold);
}
.hl-tabs.is-loading { opacity: .55; pointer-events: none; }

/* lookbook */
.hl-look { padding: clamp(56px, 8vw, 110px) 0; background: var(--hl-cream); }
.hl-look__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hl-look__card {
	position: relative; overflow: hidden;
	aspect-ratio: 3 / 4;
	border-radius: var(--hl-radius);
	background: var(--hl-ink-2);
}
.hl-look__card img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 1.1s var(--hl-ease);
}
.hl-look__card:hover img { transform: scale(1.08); }
.hl-look__veil {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(8, 8, 10, .05) 30%, rgba(8, 8, 10, .88) 100%);
	transition: background .5s;
}
.hl-look__card:hover .hl-look__veil { background: linear-gradient(180deg, rgba(8, 8, 10, .18) 10%, rgba(8, 8, 10, .92) 100%); }
.hl-look__text {
	position: absolute; left: 22px; right: 22px; bottom: 22px;
	color: #fff; display: flex; flex-direction: column; gap: 6px;
}
.hl-look__text em {
	font-style: normal; font-size: 10.5px;
	letter-spacing: .24em; text-transform: uppercase; color: var(--hl-gold-lt);
}
.hl-look__text strong { font-family: var(--hl-serif); font-size: 24px; font-weight: 500; }
.hl-look__text > span {
	font-size: 13px; color: rgba(255, 255, 255, .72);
	max-height: 0; opacity: 0; overflow: hidden;
	transition: max-height .5s var(--hl-ease), opacity .4s;
}
.hl-look__card:hover .hl-look__text > span { max-height: 60px; opacity: 1; }
.hl-look__go {
	display: grid; place-items: center;
	width: 40px; height: 40px; margin-top: 8px;
	border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%;
	transition: background .35s, color .35s, border-color .35s;
}
.hl-look__card:hover .hl-look__go { background: var(--hl-gold); border-color: var(--hl-gold); color: #1a1408; }

/* stats */
.hl-stats { padding: clamp(48px, 6vw, 84px) 0; background: var(--hl-ink); color: #fff; }
.hl-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.hl-stat strong {
	display: block;
	font-family: var(--hl-serif); font-size: clamp(38px, 5vw, 60px); font-weight: 600;
	color: var(--hl-gold-lt); line-height: 1;
}
.hl-stat span {
	display: block; margin-top: 10px;
	font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
	color: rgba(255, 255, 255, .55);
}

/* reviews */
.hl-reviews { background: var(--hl-cream); }
.hl-review {
	position: relative;
	height: 100%; padding: 34px 30px 30px;
	background: #fff; border-radius: var(--hl-radius);
	box-shadow: var(--hl-shadow);
	display: flex; flex-direction: column;
}
.hl-review__quote { position: absolute; top: 22px; right: 24px; color: rgba(var(--hl-gold-rgb), .28); }
.hl-review__stars { margin-bottom: 13px; }
.hl-review p { font-size: 15px; color: #43434c; flex: 1; }
.hl-review footer { display: flex; align-items: center; gap: 13px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--hl-line); }
.hl-review__avatar {
	display: grid; place-items: center;
	width: 44px; height: 44px; border-radius: 50%;
	font-family: var(--hl-serif); font-size: 20px; font-weight: 600;
	background: var(--hl-ink); color: var(--hl-gold-lt);
}
.hl-review footer strong { display: block; font-size: 15px; font-weight: 500; }
.hl-review footer em { font-style: normal; font-size: 12.5px; color: var(--hl-muted); }

/* values / timeline (about) */
.hl-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hl-value {
	position: relative; overflow: hidden;
	padding: 32px 26px 40px;
	background: #fff; border: 1px solid var(--hl-line);
	border-radius: var(--hl-radius);
	transition: transform .45s var(--hl-ease), box-shadow .45s, border-color .45s;
}
.hl-value:hover { transform: translateY(-6px); box-shadow: var(--hl-shadow); border-color: transparent; }
.hl-value__icon {
	display: grid; place-items: center;
	width: 52px; height: 52px; margin-bottom: 18px;
	border-radius: 50%;
	background: var(--hl-cream); color: var(--hl-gold-dk);
	transition: background .4s, color .4s;
}
.hl-value:hover .hl-value__icon { background: var(--hl-gold); color: #1a1408; }
.hl-value h3 { font-family: var(--hl-serif); font-size: 23px; margin-bottom: 9px; }
.hl-value p { font-size: 14.5px; color: var(--hl-muted); margin: 0; }
.hl-value em {
	position: absolute; right: 18px; bottom: 6px;
	font-family: var(--hl-serif); font-size: 54px; font-style: normal;
	color: rgba(var(--hl-ink-rgb), .05);
}

.hl-timeline { padding: clamp(56px, 8vw, 110px) 0; background: var(--hl-ink); color: #fff; }
.hl-timeline .hl-sectitle { color: #fff; }
.hl-timeline__list { position: relative; max-width: 780px; margin: 0 auto; padding-left: 26px; }
.hl-timeline__list::before {
	content: ""; position: absolute; left: 0; top: 8px; bottom: 8px;
	width: 1px; background: linear-gradient(to bottom, var(--hl-gold), rgba(var(--hl-gold-rgb), .1));
}
.hl-timeline__list li { position: relative; display: flex; gap: 26px; padding: 0 0 38px; }
.hl-timeline__list li::before {
	content: ""; position: absolute; left: -30px; top: 10px;
	width: 9px; height: 9px; border-radius: 50%;
	background: var(--hl-gold);
	box-shadow: 0 0 0 4px rgba(var(--hl-gold-rgb), .18);
}
.hl-timeline__year {
	flex-shrink: 0; width: 72px;
	font-family: var(--hl-serif); font-size: 26px; font-weight: 600;
	color: var(--hl-gold-lt);
}
.hl-timeline__list h3 { font-size: 20px; margin-bottom: 6px; }
.hl-timeline__list p { color: rgba(255, 255, 255, .6); font-size: 14.5px; margin: 0; }

/* ------------------------------------------------------ 10. product card */
.hl-card { position: relative; display: flex; flex-direction: column; height: 100%; }

.hl-card__media {
	position: relative; overflow: hidden;
	aspect-ratio: 1 / 1;
	background: var(--hl-cream);
	border-radius: var(--hl-radius);
	margin-bottom: 12px;
}
.hl-card__link { display: block; height: 100%; }
.hl-card__img {
	position: absolute; inset: 0;
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 1s var(--hl-ease), opacity .6s var(--hl-ease);
}
.hl-card__img--alt { opacity: 0; }
.hl-card:hover .hl-card__img { transform: scale(1.07); }
.hl-card:hover .hl-card__img--alt { opacity: 1; }

.hl-card__badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.hl-badge {
	padding: 5px 11px;
	font-size: 10.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
	border-radius: 2px;
	background: var(--hl-ink); color: #fff;
}
.hl-badge--sale { background: var(--hl-red); }
.hl-badge--new { background: var(--hl-green); }
.hl-badge--best { background: var(--hl-gold); color: #1a1408; }
.hl-badge--sold { background: #71717a; }
.hl-badge--custom { background: var(--hl-ink-3); }

.hl-card__tools { position: absolute; top: 12px; right: 12px; z-index: 3; display: flex; flex-direction: column; gap: 8px; }
.hl-tool {
	position: relative;
	display: grid; place-items: center;
	width: 38px; height: 38px; border-radius: 50%;
	background: rgba(255, 255, 255, .95); color: var(--hl-ink);
	box-shadow: 0 6px 18px -8px rgba(20, 16, 8, .5);
	opacity: 0; transform: translateX(14px);
	transition: opacity .4s var(--hl-ease), transform .4s var(--hl-ease), background .3s, color .3s;
}
.hl-card:hover .hl-tool { opacity: 1; transform: none; }
.hl-card__tools .hl-tool:nth-child(2) { transition-delay: .07s; }
.hl-tool:hover { background: var(--hl-gold); color: #1a1408; }
.hl-tool.is-on { background: var(--hl-ink); color: var(--hl-gold-lt); }
.hl-tool.is-on svg { fill: currentColor; }
.hl-tool i {
	position: absolute; right: calc(100% + 9px); top: 50%;
	transform: translateY(-50%);
	padding: 5px 10px; white-space: nowrap;
	font-size: 10.5px; font-style: normal; letter-spacing: .08em; text-transform: uppercase;
	background: var(--hl-ink); color: #fff; border-radius: 2px;
	opacity: 0; pointer-events: none;
	transition: opacity .25s;
}
.hl-tool:hover i { opacity: 1; }

.hl-card__add {
	position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3;
	display: flex; align-items: center; justify-content: center; gap: 9px;
	padding: 12px;
	font-size: 11.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
	background: var(--hl-ink); color: #fff;
	border-radius: var(--hl-radius);
	opacity: 0; transform: translateY(14px);
	transition: opacity .4s var(--hl-ease), transform .4s var(--hl-ease), background .3s, color .3s;
}
.hl-card:hover .hl-card__add { opacity: 1; transform: none; }
.hl-card__add:hover { background: var(--hl-gold); color: #1a1408; }
.hl-card__add.is-busy { opacity: .6; pointer-events: none; }

.hl-card__soldout {
	position: absolute; inset: auto 12px 12px; z-index: 3;
	padding: 11px; text-align: center;
	font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
	background: rgba(255, 255, 255, .94); color: #71717a;
	border-radius: var(--hl-radius);
}
.hl-card.is-out .hl-card__img { filter: grayscale(.55) brightness(.96); }

.hl-card__body { display: flex; flex-direction: column; gap: 4px; }
.hl-card__cat {
	font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
	color: var(--hl-muted);
}
.hl-card__cat:hover { color: var(--hl-gold-dk); }
.hl-card__title {
	font-family: var(--hl-serif); font-size: 17px; font-weight: 500; line-height: 1.25;
}
.hl-card__title a { background-image: linear-gradient(currentColor, currentColor); background-size: 0 1px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .4s var(--hl-ease); }
.hl-card__title a:hover { background-size: 100% 1px; }

.hl-stars { display: inline-flex; gap: 1px; font-size: 13px; line-height: 1; }
.hl-stars i { font-style: normal; color: var(--hl-line); }
.hl-stars i.is-full, .hl-stars i.is-half { color: var(--hl-gold); }
.hl-stars i.is-half { opacity: .6; }
.hl-review-count { margin-left: 6px; font-size: 11.5px; color: var(--hl-muted); }

.hl-price { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.hl-price ins { text-decoration: none; font-size: 18px; font-weight: 500; color: var(--hl-ink); }
.hl-price del { font-size: 14px; color: var(--hl-muted); }
.hl-price .hl-off {
	font-style: normal; font-size: 11px; font-weight: 500;
	color: var(--hl-red);
	padding: 2px 7px; border-radius: 2px;
	background: rgba(192, 57, 43, .1);
}

/* -------------------------------------------------------------- 11. shop */
.hl-pagehero {
	position: relative; overflow: hidden;
	padding: clamp(34px, 4.5vw, 56px) 0;
	background: var(--hl-ink); color: #fff;
	text-align: center;
}
.hl-pagehero--slim { padding: clamp(28px, 3.5vw, 44px) 0; }
.hl-pagehero--tall { padding: clamp(48px, 7vw, 92px) 0; }
.hl-pagehero__glow {
	position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
	width: 90vw; height: 90vw; max-width: 1000px; max-height: 1000px;
	background: radial-gradient(circle, rgba(var(--hl-gold-rgb), .18), transparent 60%);
	animation: hl-glow 7s ease-in-out infinite;
}
.hl-pagehero .hl-container { position: relative; z-index: 2; }
.hl-pagehero h1 {
	font-family: var(--hl-serif);
	font-size: clamp(32px, 5vw, 58px); font-weight: 500;
}
.hl-pagehero p { max-width: 58ch; margin: 16px auto 0; color: rgba(255, 255, 255, .68); }

.hl-shoplayout {
	display: grid; grid-template-columns: 268px 1fr;
	gap: 40px;
	padding-top: 46px; padding-bottom: 80px;
	align-items: start;
}
.hl-shoplayout__main { min-width: 0; }

.hl-filters { position: sticky; top: calc(var(--hl-header-total) + 20px); }
.hl-filters__head { display: none; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hl-filters__head h2 { display: flex; align-items: center; gap: 9px; font-size: 16px; }
.hl-filters__group { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--hl-line); }
.hl-filters__group h3 {
	font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
	margin-bottom: 12px; color: var(--hl-ink);
}
.hl-filters__actions { display: grid; gap: 9px; }
.hl-filters__help {
	margin-top: 26px; padding: 24px 22px;
	background: var(--hl-cream); border-radius: var(--hl-radius);
	text-align: center;
}
.hl-filters__helpicon {
	display: inline-grid; place-items: center;
	width: 48px; height: 48px; margin-bottom: 12px;
	border-radius: 50%; background: #fff; color: var(--hl-gold-dk);
}
.hl-filters__help strong { display: block; font-size: 15px; margin-bottom: 6px; }
.hl-filters__help p { font-size: 13.5px; color: var(--hl-muted); }

.hl-range { position: relative; height: 34px; margin-top: 6px; }
.hl-range__track {
	position: absolute; top: 15px; left: 0; right: 0; height: 3px;
	background: var(--hl-line); border-radius: 2px;
}
.hl-range__track i { position: absolute; top: 0; height: 100%; background: var(--hl-gold); border-radius: 2px; }
.hl-range input[type="range"] {
	position: absolute; top: 8px; left: 0; width: 100%;
	appearance: none; -webkit-appearance: none;
	background: none; pointer-events: none; margin: 0; height: 18px;
}
.hl-range input[type="range"]::-webkit-slider-thumb {
	appearance: none; -webkit-appearance: none;
	width: 16px; height: 16px; border-radius: 50%;
	background: #fff; border: 2px solid var(--hl-gold);
	pointer-events: auto; cursor: grab;
	box-shadow: 0 2px 8px -2px rgba(20, 16, 8, .5);
}
.hl-range input[type="range"]::-moz-range-thumb {
	width: 15px; height: 15px; border-radius: 50%;
	background: #fff; border: 2px solid var(--hl-gold);
	pointer-events: auto; cursor: grab;
}
.hl-range__out { display: flex; justify-content: space-between; font-size: 13px; margin: 4px 0 0; font-weight: 500; }

.hl-toolbar {
	display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
	padding-bottom: 20px; margin-bottom: 28px;
	border-bottom: 1px solid var(--hl-line);
}
.hl-toolbar__filter { display: none; }
.hl-toolbar__count { margin: 0; font-size: 14px; color: var(--hl-muted); }
.hl-toolbar__end { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.hl-layoutswitch { display: flex; border: 1px solid var(--hl-line); border-radius: var(--hl-radius); overflow: hidden; }
.hl-layoutswitch button {
	width: 38px; height: 38px; display: grid; place-items: center;
	color: var(--hl-muted); transition: background .25s, color .25s;
}
.hl-layoutswitch button.is-active { background: var(--hl-ink); color: #fff; }

/* list layout */
.hl-grid.is-list { grid-template-columns: 1fr; gap: 22px; }
.hl-grid.is-list .hl-card { flex-direction: row; gap: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--hl-line); }
.hl-grid.is-list .hl-card__media { flex: 0 0 240px; margin-bottom: 0; }
.hl-grid.is-list .hl-card__body { justify-content: center; }
.hl-grid.is-list .hl-card__title { font-size: 24px; }

.hl-pagination { margin-top: 52px; }
.hl-pagination ul { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.hl-pagination a, .hl-pagination span {
	display: grid; place-items: center;
	min-width: 42px; height: 42px; padding: 0 10px;
	border: 1px solid var(--hl-line); border-radius: var(--hl-radius);
	font-size: 14px;
	transition: background .3s, color .3s, border-color .3s;
}
.hl-pagination a:hover { background: var(--hl-cream); border-color: var(--hl-gold); }
.hl-pagination .current { background: var(--hl-ink); border-color: var(--hl-ink); color: #fff; }

.hl-empty { text-align: center; padding: 70px 20px; max-width: 520px; margin: 0 auto; }
.hl-empty__icon {
	display: inline-grid; place-items: center;
	width: 96px; height: 96px; margin-bottom: 22px;
	border-radius: 50%; background: var(--hl-cream); color: var(--hl-gold-dk);
}
.hl-empty h2 { font-family: var(--hl-serif); font-size: 30px; margin-bottom: 10px; }
.hl-empty p { color: var(--hl-muted); margin-bottom: 24px; }
.hl-empty .hl-searchform { margin-bottom: 20px; }

/* ----------------------------------------------------------- 12. product */
.hl-product__top {
	display: grid; grid-template-columns: 1.05fr 1fr;
	gap: clamp(30px, 5vw, 68px);
	padding: 52px 0 64px;
	align-items: start;
}

.hl-product__gallery { position: sticky; top: calc(var(--hl-header-total) + 20px); }
.hl-product__stage {
	position: relative; overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--hl-cream);
	border-radius: var(--hl-radius);
	cursor: zoom-in;
}
.hl-product__stage img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .5s var(--hl-ease), opacity .35s;
}
.hl-product__stage .hl-badge { position: absolute; top: 16px; left: 16px; z-index: 3; }
.hl-product__stage .hl-badge ~ .hl-badge { top: 48px; }
.hl-product__stage.is-zoom img { transform: scale(1.9); transition: transform .18s linear; }

.hl-product__thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.hl-product__thumbs button {
	width: 82px; aspect-ratio: 4 / 5;
	border: 1px solid var(--hl-line); border-radius: var(--hl-radius);
	overflow: hidden;
	transition: border-color .3s, transform .3s var(--hl-ease);
}
.hl-product__thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.hl-product__thumbs button:hover { transform: translateY(-3px); }
.hl-product__thumbs button.is-active { border-color: var(--hl-gold); border-width: 2px; }

.hl-product__summary .hl-eyebrow { margin-bottom: 10px; }
.hl-product__title {
	font-family: var(--hl-serif);
	font-size: clamp(28px, 3.6vw, 44px); font-weight: 500; line-height: 1.12;
	margin-bottom: 14px;
}
.hl-product__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; font-size: 13px; color: var(--hl-muted); }
.hl-product__stock { display: inline-flex; align-items: center; gap: 6px; }
.hl-product__stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.hl-product__stock.is-in { color: var(--hl-green); }
.hl-product__stock.is-out { color: var(--hl-red); }

.hl-product__price { padding: 20px 0; border-block: 1px solid var(--hl-line); margin-bottom: 20px; }
.hl-product__price .hl-price ins { font-size: 30px; }
.hl-product__tax { display: block; margin-top: 5px; font-size: 12px; color: var(--hl-muted); }
.hl-product__short { color: var(--hl-muted); margin-bottom: 24px; }

.hl-product__buy { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hl-product__buy .hl-btn { flex: 1 1 190px; }
.hl-product__oos {
	padding: 15px 18px; margin-bottom: 20px;
	background: rgba(192, 57, 43, .07);
	border-left: 2px solid var(--hl-red);
	font-size: 14.5px;
}
.hl-product__actions { display: flex; gap: 24px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid var(--hl-line); }

.hl-product__usp { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.hl-product__usp li { display: flex; align-items: center; gap: 11px; font-size: 13.5px; color: var(--hl-muted); }
.hl-product__usp svg { color: var(--hl-gold-dk); flex-shrink: 0; }

.hl-tabsblock { padding-bottom: 20px; }
.hl-tabsblock__nav { display: flex; gap: 4px; flex-wrap: wrap; border-bottom: 1px solid var(--hl-line); margin-bottom: 34px; }
.hl-tabsblock__nav button {
	position: relative;
	padding: 15px 24px;
	font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
	color: var(--hl-muted);
	transition: color .3s;
}
.hl-tabsblock__nav button::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
	background: var(--hl-gold);
	transform: scaleX(0); transition: transform .4s var(--hl-ease);
}
.hl-tabsblock__nav button.is-active { color: var(--hl-ink); }
.hl-tabsblock__nav button.is-active::after { transform: scaleX(1); }
.hl-panel { display: none; max-width: 860px; }
.hl-panel.is-active { display: block; animation: hl-fade-up .5s var(--hl-ease); }

.hl-spectable th, .hl-spectable td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--hl-line); font-size: 14.5px; }
.hl-spectable th { width: 220px; font-weight: 500; color: var(--hl-muted); background: var(--hl-cream); }

.hl-related { background: var(--hl-cream); }

.hl-stickybuy {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
	background: rgba(255, 255, 255, .98);
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--hl-line);
	box-shadow: 0 -12px 34px -24px rgba(20, 16, 8, .5);
	transform: translateY(105%);
	transition: transform .5s var(--hl-ease);
}
.hl-stickybuy.is-on { transform: none; }
.hl-stickybuy .hl-container { display: flex; align-items: center; gap: 16px; padding-top: 12px; padding-bottom: 12px; }
.hl-stickybuy img { width: 50px; height: 62px; object-fit: cover; border-radius: 2px; }
.hl-stickybuy__info { flex: 1; min-width: 0; }
.hl-stickybuy__info strong { display: block; font-size: 15px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hl-stickybuy__info .hl-price ins { font-size: 16px; }

/* quick view */
.hl-qv { display: grid; grid-template-columns: .95fr 1fr; gap: 34px; }
.hl-qv__main { aspect-ratio: 4 / 5; border-radius: var(--hl-radius); overflow: hidden; background: var(--hl-cream); }
.hl-qv__main img { width: 100%; height: 100%; object-fit: cover; }
.hl-qv__thumbs { display: flex; gap: 9px; margin-top: 11px; }
.hl-qv__thumbs button { width: 64px; aspect-ratio: 4/5; border: 1px solid var(--hl-line); border-radius: 2px; overflow: hidden; }
.hl-qv__thumbs button.is-active { border-color: var(--hl-gold); border-width: 2px; }
.hl-qv__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.hl-qv__info h2 { font-family: var(--hl-serif); font-size: 30px; margin-bottom: 12px; }
.hl-qv__rating { margin-bottom: 12px; }
.hl-qv .hl-price { margin-bottom: 16px; }
.hl-qv .hl-price ins { font-size: 24px; }
.hl-qv__desc { color: var(--hl-muted); font-size: 14.5px; }
.hl-qv__specs { margin: 18px 0; border-top: 1px solid var(--hl-line); }
.hl-qv__specs li { display: flex; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--hl-line); font-size: 13.5px; }
.hl-qv__specs li span { width: 110px; color: var(--hl-muted); flex-shrink: 0; }
.hl-qv__specs li strong { font-weight: 500; }
.hl-qv__buy { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.hl-qv__buy .hl-btn { flex: 1; }
.hl-qv__oos { color: var(--hl-red); font-size: 14px; }
.hl-qv__full { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--hl-gold-dk); border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* --------------------------------------------------- 13. cart/checkout */
.hl-cartpage, .hl-checkout { padding: 48px 0 90px; }
.hl-cartpage__grid { display: grid; grid-template-columns: 1fr 380px; gap: 42px; align-items: start; }

.hl-carttable__head {
	display: grid; grid-template-columns: 2.4fr .8fr .9fr .8fr;
	gap: 16px; padding-bottom: 14px;
	border-bottom: 1px solid var(--hl-line);
	font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--hl-muted);
}
.hl-carttable__head span:not(:first-child) { text-align: right; }
.hl-cartrow {
	display: grid; grid-template-columns: 2.4fr .8fr .9fr .8fr;
	gap: 16px; align-items: center;
	padding: 22px 0; border-bottom: 1px solid var(--hl-line);
	transition: opacity .3s;
}
.hl-cartrow.is-going { opacity: .3; }
.hl-cartrow__product { display: flex; gap: 16px; align-items: center; }
.hl-cartrow__product img { width: 88px; height: 110px; object-fit: cover; border-radius: var(--hl-radius); }
.hl-cartrow__product > div > a { font-family: var(--hl-serif); font-size: 19px; display: block; margin-bottom: 4px; }
.hl-cartrow__product em { display: block; font-style: normal; font-size: 12px; color: var(--hl-muted); margin-bottom: 8px; }
.hl-cartrow__remove { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--hl-muted); transition: color .3s; }
.hl-cartrow__remove:hover { color: var(--hl-red); }
.hl-cartrow__price, .hl-cartrow__line { text-align: right; }
.hl-cartrow__qty { display: flex; justify-content: flex-end; }
.hl-cartpage__foot { padding-top: 24px; }

.hl-summary {
	padding: 30px 28px;
	background: var(--hl-cream);
	border-radius: var(--hl-radius);
}
.hl-summary--sticky { position: sticky; top: calc(var(--hl-header-total) + 20px); }
.hl-summary h2 { font-family: var(--hl-serif); font-size: 24px; margin-bottom: 20px; }
.hl-coupon { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.hl-coupon input {
	flex: 1; min-width: 140px; padding: 12px 14px;
	border: 1px solid var(--hl-line); border-radius: var(--hl-radius); background: #fff;
}
.hl-coupon input:focus { outline: none; border-color: var(--hl-gold); }
.hl-coupon .hl-formmsg { flex-basis: 100%; margin: 0; }

.hl-summary__rows { border-top: 1px solid var(--hl-line); padding-top: 16px; }
.hl-summary__rows li { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14.5px; }
.hl-summary__rows span { color: var(--hl-muted); }
.hl-summary__total {
	display: flex; justify-content: space-between; align-items: baseline;
	margin: 16px 0 22px; padding-top: 16px;
	border-top: 1px solid var(--hl-line);
}
.hl-summary__total span { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.hl-summary__total strong { font-family: var(--hl-serif); font-size: 30px; font-weight: 600; }
.hl-summary__trust { margin-top: 18px; display: grid; gap: 9px; }
.hl-summary__trust li { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--hl-muted); }
.hl-summary__trust svg { color: var(--hl-gold-dk); }

.hl-summary__items { margin-bottom: 20px; }
.hl-summary__items li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--hl-line); font-size: 13.5px; }
.hl-summary__thumb { position: relative; flex-shrink: 0; }
.hl-summary__thumb img { width: 50px; height: 62px; object-fit: cover; border-radius: 2px; }
.hl-summary__thumb em {
	position: absolute; top: -6px; right: -6px;
	min-width: 20px; height: 20px; padding: 0 5px;
	display: grid; place-items: center;
	font-style: normal; font-size: 11px; font-weight: 600;
	background: var(--hl-ink); color: #fff; border-radius: 999px;
}
.hl-summary__name { flex: 1; }
.hl-summary__help { display: flex; gap: 12px; align-items: center; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--hl-line); }
.hl-summary__help svg { color: var(--hl-gold-dk); flex-shrink: 0; }
.hl-summary__help strong { display: block; font-size: 13px; font-weight: 500; }
.hl-summary__help a { font-size: 15px; color: var(--hl-gold-dk); }

.hl-checkout__grid { display: grid; grid-template-columns: 1fr 380px; gap: 42px; align-items: start; }
.hl-fieldset { margin-bottom: 38px; }
.hl-fieldset h2 { display: flex; align-items: center; gap: 13px; font-family: var(--hl-serif); font-size: 24px; margin-bottom: 20px; }
.hl-fieldset h2 span {
	display: grid; place-items: center;
	width: 32px; height: 32px; border-radius: 50%;
	font-family: var(--hl-sans); font-size: 14px; font-weight: 500;
	background: var(--hl-ink); color: var(--hl-gold-lt);
}
.hl-pay-options { display: grid; gap: 12px; }
.hl-payopt { display: block; cursor: pointer; }
.hl-payopt input { position: absolute; opacity: 0; pointer-events: none; }
.hl-payopt__box {
	display: block; padding: 18px 20px;
	border: 1px solid var(--hl-line); border-radius: var(--hl-radius);
	transition: border-color .3s, background .3s, box-shadow .3s;
}
.hl-payopt:hover .hl-payopt__box { border-color: var(--hl-gold); }
.hl-payopt input:checked + .hl-payopt__box {
	border-color: var(--hl-gold);
	background: rgba(var(--hl-gold-rgb), .07);
	box-shadow: 0 0 0 1px var(--hl-gold) inset;
}
.hl-payopt__box strong { display: block; font-size: 15px; font-weight: 500; margin-bottom: 3px; }
.hl-payopt__box em { font-style: normal; font-size: 13px; color: var(--hl-muted); }
.hl-checkout__legal { margin-top: 14px; font-size: 12.5px; color: var(--hl-muted); text-align: center; }

.hl-thanks { padding: 40px 0; }
.hl-thanks__box {
	max-width: 560px; margin: 0 auto; text-align: center;
	padding: 54px 34px;
	background: var(--hl-cream); border-radius: var(--hl-radius);
	animation: hl-pop .6s var(--hl-ease);
}
.hl-thanks__tick {
	display: inline-grid; place-items: center;
	width: 92px; height: 92px; margin-bottom: 22px;
	border-radius: 50%;
	background: var(--hl-green); color: #fff;
}
.hl-thanks h2 { font-family: var(--hl-serif); font-size: 36px; margin-bottom: 12px; }
.hl-thanks p { color: var(--hl-muted); margin-bottom: 26px; }

/* -------------------------------------------------------------- 14. blog */
.hl-blog { padding: 52px 0 90px; }
.hl-blog__grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }

.hl-post { display: flex; flex-direction: column; }
.hl-post__media {
	position: relative; display: block;
	aspect-ratio: 16 / 10; overflow: hidden;
	border-radius: var(--hl-radius);
	background: var(--hl-cream);
	margin-bottom: 16px;
}
.hl-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--hl-ease); }
.hl-post:hover .hl-post__media img { transform: scale(1.06); }
.hl-post__date {
	position: absolute; top: 12px; left: 12px;
	padding: 7px 12px;
	font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
	background: rgba(255, 255, 255, .95); border-radius: 2px;
}
.hl-post__meta { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--hl-muted); }
.hl-post__body h2, .hl-post__body h3 { font-family: var(--hl-serif); font-size: 24px; margin: 8px 0 10px; line-height: 1.25; }
.hl-post__body h3 { font-size: 21px; }
.hl-post__body p { color: var(--hl-muted); font-size: 14.5px; }

.hl-sidebar { position: sticky; top: calc(var(--hl-header-total) + 20px); display: grid; gap: 28px; }
.widget { padding: 26px 24px; background: var(--hl-cream); border-radius: var(--hl-radius); }
.widget-title, .widget h4 { font-family: var(--hl-serif); font-size: 20px; margin-bottom: 14px; }
.widget ul li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--hl-line); font-size: 14.5px; }
.widget ul li:last-child { border-bottom: 0; }
.widget ul li a:hover { color: var(--hl-gold-dk); }
.widget ul li em { font-style: normal; font-size: 12px; color: var(--hl-muted); }
.widget--promo { background: var(--hl-ink); color: #fff; text-align: center; }
.widget--promo p { font-size: 14px; color: rgba(255, 255, 255, .65); }

.hl-single__head { padding: 56px 0 34px; text-align: center; background: var(--hl-cream); }
.hl-single__head h1 { font-family: var(--hl-serif); font-size: clamp(30px, 4.5vw, 52px); max-width: 20ch; margin: 0 auto; }
.hl-single__meta { margin-top: 14px; font-size: 13px; color: var(--hl-muted); }
.hl-single__inner { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding: 48px 0 90px; align-items: start; }
.hl-single__hero { margin: 0 0 32px; border-radius: var(--hl-radius); overflow: hidden; }
.hl-single__foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--hl-line); }
.hl-tags { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font-size: 13px; }
.hl-tags a { padding: 5px 12px; background: var(--hl-cream); border-radius: 999px; }
.hl-share { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.hl-share a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--hl-line); border-radius: 50%; transition: background .3s, color .3s, border-color .3s; }
.hl-share a:hover { background: var(--hl-ink); border-color: var(--hl-ink); color: #fff; }

.hl-postnav { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.hl-postnav a { padding: 20px 22px; background: var(--hl-cream); border-radius: var(--hl-radius); transition: background .3s; }
.hl-postnav a:hover { background: var(--hl-cream-2); }
.hl-postnav__next { text-align: right; }
.hl-postnav em { display: inline-flex; align-items: center; gap: 7px; font-style: normal; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--hl-muted); }
.hl-postnav strong { display: block; margin-top: 7px; font-family: var(--hl-serif); font-size: 19px; font-weight: 500; }

.hl-pagebody { padding: 48px 0 90px; max-width: 900px; }
.hl-pagebody__hero { margin: 0 0 34px; border-radius: var(--hl-radius); overflow: hidden; }

.hl-searchhead { font-family: var(--hl-serif); font-size: 26px; margin: 34px 0 22px; }
.hl-searchlist li { padding: 18px 0; border-bottom: 1px solid var(--hl-line); }
.hl-searchlist a { font-family: var(--hl-serif); font-size: 21px; }
.hl-searchlist a:hover { color: var(--hl-gold-dk); }
.hl-searchlist p { margin: 5px 0 0; font-size: 14px; color: var(--hl-muted); }

/* comments */
.hl-comments { margin-top: 48px; padding-top: 34px; border-top: 1px solid var(--hl-line); }
.hl-comments__title { font-family: var(--hl-serif); font-size: 24px; margin-bottom: 22px; }
.hl-commentlist li { list-style: none; padding: 20px 0; border-bottom: 1px solid var(--hl-line); }
.hl-commentlist .children { padding-left: 32px; }
.hl-commentlist .avatar { border-radius: 50%; float: left; margin-right: 14px; }
.hl-commentlist .comment-meta { font-size: 12.5px; color: var(--hl-muted); margin-bottom: 6px; }
.comment-form { display: grid; gap: 14px; max-width: 640px; }
.comment-form p { margin: 0; }
.comment-form label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--hl-muted); margin-bottom: 6px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
	width: 100%; padding: 13px 15px;
	border: 1px solid var(--hl-line); border-radius: var(--hl-radius); background: #fff;
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--hl-gold); }
.comment-form .form-submit { margin-top: 4px; }

/* ------------------------------------------- 15. footer, overlays, misc */
.hl-newsletter {
	position: relative; z-index: 2;
	padding: clamp(44px, 6vw, 76px) 0;
	border-bottom: 1px solid var(--hl-line-dark);
}
.hl-newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hl-newsletter .hl-sectitle { color: #fff; margin-bottom: 10px; }
.hl-newsletter p { color: rgba(255, 255, 255, .6); margin: 0; max-width: 46ch; }
.hl-subscribe { display: flex; gap: 10px; flex-wrap: wrap; }
.hl-subscribe input {
	flex: 1; min-width: 200px; padding: 15px 18px;
	background: rgba(255, 255, 255, .07);
	border: 1px solid var(--hl-line-dark);
	border-radius: var(--hl-radius);
	color: #fff;
}
.hl-subscribe input::placeholder { color: rgba(255, 255, 255, .4); }
.hl-subscribe input:focus { outline: none; border-color: var(--hl-gold); background: rgba(255, 255, 255, .1); }
.hl-subscribe .hl-formmsg { flex-basis: 100%; margin: 0; }
.hl-subscribe--stack { flex-direction: column; }
.hl-subscribe--stack input { width: 100%; }

.hl-footer { position: relative; overflow: hidden; background: var(--hl-ink); color: rgba(255, 255, 255, .62); }
.hl-footer__glow {
	position: absolute; top: -20%; right: -10%;
	width: 60vw; height: 60vw; max-width: 780px; max-height: 780px;
	background: radial-gradient(circle, rgba(var(--hl-gold-rgb), .13), transparent 62%);
}
.hl-footer__grid {
	position: relative; z-index: 2;
	display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
	gap: 36px;
	padding: clamp(46px, 6vw, 74px) var(--hl-gutter);
}
.hl-footer__col h4 {
	font-size: 12.5px; font-weight: 500;
	letter-spacing: .18em; text-transform: uppercase;
	color: #fff; margin-bottom: 18px;
}
.hl-footer__col ul li { padding: 6px 0; font-size: 14.5px; }
.hl-footer__col ul li a:hover { color: var(--hl-gold-lt); padding-left: 5px; }
.hl-footer__col ul li a { display: inline-block; transition: color .3s, padding-left .3s var(--hl-ease); }
.hl-footer__col--brand p { font-size: 14.5px; margin: 18px 0; max-width: 40ch; }
.hl-logo--footer .hl-logo__svg { width: 50px; height: 37px; }
.hl-logo--footer .hl-logo__text strong { color: #fff; font-size: 21px; }
.hl-logo--footer .hl-logo__text em { color: rgba(255, 255, 255, .5); }

.hl-social { display: flex; gap: 9px; }
.hl-social a {
	display: grid; place-items: center;
	width: 38px; height: 38px;
	border: 1px solid var(--hl-line-dark); border-radius: 50%;
	transition: background .35s, color .35s, border-color .35s, transform .35s var(--hl-ease);
}
.hl-social a:hover { background: var(--hl-gold); border-color: var(--hl-gold); color: #1a1408; transform: translateY(-3px); }

.hl-contactlist li { display: flex; gap: 11px; padding: 8px 0; font-size: 14px; }
.hl-contactlist svg { color: var(--hl-gold); flex-shrink: 0; margin-top: 3px; }
.hl-contactlist a:hover { color: var(--hl-gold-lt); }

.hl-footer__bar { position: relative; z-index: 2; border-top: 1px solid var(--hl-line-dark); }
.hl-footer__bar .hl-container {
	display: flex; align-items: center; justify-content: space-between;
	gap: 18px; flex-wrap: wrap; padding-top: 20px; padding-bottom: 20px;
}
.hl-footer__bar p { margin: 0; font-size: 13px; }
.hl-credit { color: var(--hl-gold); font-weight: 500; border-bottom: 1px solid transparent; transition: border-color .3s, color .3s; }
.hl-credit:hover { color: var(--hl-gold-lt); border-color: currentColor; }
.hl-pay { display: flex; align-items: center; gap: 9px; }
.hl-pay span { font-size: 12px; }
.hl-pay em {
	font-style: normal; font-size: 10.5px; letter-spacing: .08em;
	padding: 5px 10px;
	border: 1px solid var(--hl-line-dark); border-radius: 3px;
	color: rgba(255, 255, 255, .75);
}

/* scrim, drawers, overlay */
.hl-scrim {
	position: fixed; inset: 0; z-index: 300;
	background: rgba(10, 10, 12, .55);
	backdrop-filter: blur(3px);
	opacity: 0; visibility: hidden;
	transition: opacity .4s var(--hl-ease), visibility .4s;
}
.hl-scrim.is-on { opacity: 1; visibility: visible; }

.hl-drawer {
	position: fixed; top: 0; bottom: 0; z-index: 400;
	width: min(420px, 92vw);
	display: flex; flex-direction: column;
	background: #fff;
	box-shadow: var(--hl-shadow-lg);
	transition: transform .5s var(--hl-ease), visibility .5s;
	visibility: hidden;
}
.hl-drawer--right { right: 0; transform: translateX(102%); }
.hl-drawer--left { left: 0; transform: translateX(-102%); }
.hl-drawer.is-on { transform: none; visibility: visible; }

.hl-drawer__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 20px 22px; border-bottom: 1px solid var(--hl-line);
}
.hl-drawer__title { display: flex; align-items: center; gap: 9px; font-family: var(--hl-serif); font-size: 22px; }
.hl-drawer__title em {
	font-style: normal; font-size: 11px; font-family: var(--hl-sans);
	min-width: 20px; height: 20px; padding: 0 6px;
	display: grid; place-items: center;
	background: var(--hl-gold); color: #1a1408; border-radius: 999px;
}
.hl-drawer__body { flex: 1; overflow-y: auto; padding: 20px 22px; }
.hl-drawer__foot { padding: 20px 22px; border-top: 1px solid var(--hl-line); background: var(--hl-cream); }
.hl-drawer__links { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--hl-line); display: grid; gap: 4px; }
.hl-drawer__links a { display: flex; align-items: center; gap: 11px; padding: 11px 0; font-size: 15px; }
.hl-drawer__call { display: flex; align-items: center; gap: 10px; font-size: 15px; margin-bottom: 14px; }
.hl-drawer__call svg { color: var(--hl-gold-dk); }

.hl-mobilenav .hl-menu { flex-direction: column; align-items: stretch; gap: 0; }
.hl-mobilenav .hl-menu-item { border-bottom: 1px solid var(--hl-line); }
.hl-mobilenav .hl-menu-item > a { display: flex; padding: 14px 0; font-size: 15px; letter-spacing: .06em; }
.hl-mobilenav .hl-menu-item > a svg { display: none; }
.hl-mobilenav .hl-submenu {
	position: static; transform: none; opacity: 1; visibility: visible;
	box-shadow: none; border: 0; padding: 0 0 10px 14px; min-width: 0;
	display: none; background: none;
}
.hl-mobilenav .hl-menu-item.is-open > .hl-submenu { display: block; }
.hl-mobilenav .hl-submenu .hl-menu-item { border: 0; }
.hl-mobilenav .hl-submenu .hl-menu-item > a { padding: 9px 0; font-size: 14px; color: var(--hl-muted); }
.hl-mobilenav .hl-submenu-toggle {
	display: grid; place-items: center;
	position: absolute; right: 0; top: 6px;
	width: 34px; height: 34px; color: var(--hl-muted);
	transition: transform .35s var(--hl-ease);
}
.hl-mobilenav .hl-menu-item.is-open > .hl-submenu-toggle { transform: rotate(180deg); }

.hl-ship-progress { padding: 16px 22px; border-bottom: 1px solid var(--hl-line); background: var(--hl-cream); }
.hl-ship-progress__bar { height: 4px; border-radius: 2px; background: var(--hl-line); overflow: hidden; }
.hl-ship-progress__bar i {
	display: block; height: 100%;
	background: linear-gradient(90deg, var(--hl-gold-dk), var(--hl-gold-lt));
	transition: width .6s var(--hl-ease);
}
.hl-ship-progress p { margin: 8px 0 0; font-size: 12.5px; color: var(--hl-muted); }

.hl-cartlist { display: grid; gap: 18px; }
.hl-cartline { display: flex; gap: 13px; padding-bottom: 18px; border-bottom: 1px solid var(--hl-line); }
.hl-cartline.is-going { opacity: .35; }
.hl-cartline__img { flex-shrink: 0; }
.hl-cartline__img img { width: 76px; height: 95px; object-fit: cover; border-radius: 2px; }
.hl-cartline__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.hl-cartline__title { font-family: var(--hl-serif); font-size: 16.5px; line-height: 1.3; }
.hl-cartline__price { font-size: 13px; color: var(--hl-muted); }
.hl-cartline__end { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.hl-cartline__end strong { font-size: 15px; }
.hl-cartline__remove { color: var(--hl-muted); transition: color .3s; }
.hl-cartline__remove:hover { color: var(--hl-red); }

.hl-cart-empty { text-align: center; padding: 40px 10px; }
.hl-cart-empty__icon {
	display: inline-grid; place-items: center;
	width: 80px; height: 80px; margin-bottom: 18px;
	border-radius: 50%; background: var(--hl-cream); color: var(--hl-gold-dk);
}
.hl-cart-empty p { color: var(--hl-muted); margin-bottom: 20px; }

.hl-cartdrawer__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.hl-cartdrawer__row span { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.hl-cartdrawer__row strong { font-family: var(--hl-serif); font-size: 24px; }
.hl-cartdrawer__note { font-size: 12.5px; color: var(--hl-muted); margin-bottom: 14px; }
.hl-cartdrawer__foot .hl-btn { margin-bottom: 8px; }

/* search overlay */
.hl-overlay {
	position: fixed; inset: 0; z-index: 500;
	background: rgba(12, 12, 14, .97);
	backdrop-filter: blur(10px);
	opacity: 0; visibility: hidden;
	transition: opacity .45s var(--hl-ease), visibility .45s;
	overflow-y: auto;
}
.hl-overlay.is-on { opacity: 1; visibility: visible; }
.hl-search__inner {
	max-width: 780px; margin: 0 auto;
	padding: clamp(70px, 12vh, 130px) 24px 60px;
	color: #fff; text-align: center;
}
.hl-overlay__close { position: absolute; top: 26px; right: 26px; color: #fff; transition: transform .4s var(--hl-ease); }
.hl-overlay__close:hover { transform: rotate(90deg); }
.hl-search__form {
	position: relative; display: flex; align-items: center; gap: 12px;
	padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, .22);
	margin-bottom: 18px;
}
.hl-search__form > svg { color: var(--hl-gold); flex-shrink: 0; }
.hl-search__form input {
	flex: 1; background: none; border: 0; color: #fff;
	font-family: var(--hl-serif); font-size: clamp(22px, 3.6vw, 34px);
}
.hl-search__form input:focus { outline: none; }
.hl-search__form input::placeholder { color: rgba(255, 255, 255, .3); }
.hl-search__tags { display: flex; gap: 9px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: rgba(255, 255, 255, .45); }
.hl-search__tags a { padding: 5px 13px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; transition: background .3s, border-color .3s, color .3s; }
.hl-search__tags a:hover { background: var(--hl-gold); border-color: var(--hl-gold); color: #1a1408; }
.hl-search__results { margin-top: 34px; text-align: left; display: grid; gap: 8px; }
.hl-sresult {
	display: flex; align-items: center; gap: 15px;
	padding: 11px 14px; border-radius: var(--hl-radius);
	background: rgba(255, 255, 255, .05);
	color: #fff;
	animation: hl-fade-up .4s var(--hl-ease) backwards;
	transition: background .3s, transform .3s var(--hl-ease);
}
.hl-sresult:hover { background: rgba(255, 255, 255, .11); transform: translateX(5px); }
.hl-sresult img { width: 52px; height: 65px; object-fit: cover; border-radius: 2px; }
.hl-sresult strong { display: block; font-family: var(--hl-serif); font-size: 17px; font-weight: 500; }
.hl-sresult span { font-size: 13.5px; color: var(--hl-gold-lt); }
.hl-sresult--more { justify-content: center; color: var(--hl-gold-lt); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.hl-search__empty { color: rgba(255, 255, 255, .45); text-align: center; }

/* modal */
.hl-modal {
	position: fixed; inset: 0; z-index: 500;
	display: grid; place-items: center; padding: 24px;
	background: rgba(10, 10, 12, .68);
	backdrop-filter: blur(5px);
	opacity: 0; visibility: hidden;
	transition: opacity .4s var(--hl-ease), visibility .4s;
	overflow-y: auto;
}
.hl-modal.is-on { opacity: 1; visibility: visible; }
.hl-modal__box {
	position: relative;
	width: min(980px, 100%);
	max-height: 90vh; overflow-y: auto;
	padding: 34px;
	background: #fff; border-radius: var(--hl-radius);
	transform: translateY(24px) scale(.98);
	transition: transform .45s var(--hl-ease);
}
.hl-modal.is-on .hl-modal__box { transform: none; }
.hl-modal__close { position: absolute; top: 16px; right: 16px; z-index: 3; color: var(--hl-muted); transition: transform .4s var(--hl-ease), color .3s; }
.hl-modal__close:hover { transform: rotate(90deg); color: var(--hl-ink); }
.hl-modal__loading { padding: 60px; text-align: center; color: var(--hl-muted); }

/* popup */
.hl-popup {
	position: fixed; inset: 0; z-index: 600;
	display: grid; place-items: center; padding: 24px;
	background: rgba(10, 10, 12, .7);
	opacity: 0; visibility: hidden;
	transition: opacity .5s var(--hl-ease), visibility .5s;
}
.hl-popup.is-on { opacity: 1; visibility: visible; }
.hl-popup__box {
	position: relative;
	display: grid; grid-template-columns: .8fr 1fr;
	width: min(820px, 100%);
	background: #fff; border-radius: var(--hl-radius);
	overflow: hidden;
	transform: scale(.94); transition: transform .5s var(--hl-ease);
}
.hl-popup.is-on .hl-popup__box { transform: none; }
.hl-popup__close { position: absolute; top: 12px; right: 12px; z-index: 3; color: var(--hl-muted); }
.hl-popup__art { background: var(--hl-ink); display: grid; place-items: center; }
.hl-popup__art img { width: 100%; height: 100%; object-fit: cover; }
.hl-popup__body { padding: 40px 36px; }
.hl-popup__body h3 { font-family: var(--hl-serif); font-size: 32px; margin-bottom: 10px; }
.hl-popup__body > p { color: var(--hl-muted); font-size: 14.5px; margin-bottom: 20px; }
.hl-popup__skip { display: block; width: 100%; margin-top: 12px; font-size: 12.5px; color: var(--hl-muted); text-decoration: underline; }

/* toasts + floats */
.hl-toasts {
	position: fixed; right: 22px; bottom: 22px; z-index: 700;
	display: grid; gap: 10px; justify-items: end;
	pointer-events: none;
}
.hl-toast {
	display: flex; align-items: center; gap: 11px;
	padding: 14px 20px;
	background: var(--hl-ink); color: #fff;
	border-radius: var(--hl-radius);
	box-shadow: var(--hl-shadow-lg);
	font-size: 14px;
	animation: hl-fade-up .4s var(--hl-ease);
	max-width: 330px;
}
.hl-toast.is-out { opacity: 0; transform: translateY(10px); transition: opacity .35s, transform .35s; }
.hl-toast::before {
	content: ""; width: 7px; height: 7px; border-radius: 50%;
	background: var(--hl-gold); flex-shrink: 0;
}
.hl-toast--bad::before { background: var(--hl-red); }

.hl-float { position: fixed; right: 22px; bottom: 22px; z-index: 160; display: grid; gap: 11px; }
.hl-float__wa, .hl-float__top {
	display: grid; place-items: center;
	width: 54px; height: 54px; border-radius: 50%;
	box-shadow: var(--hl-shadow);
	transition: transform .35s var(--hl-ease), background .3s, box-shadow .3s;
}
.hl-float__wa {
	background: linear-gradient(145deg, #4ae57e, #25d366 55%, #128c7e);
	color: #fff; position: relative;
	box-shadow: 0 10px 26px -8px rgba(37, 211, 102, .6);
}
.hl-float__wa::before {
	content: ""; position: absolute; inset: 0; border-radius: 50%;
	border: 2px solid rgba(37, 211, 102, .55);
	animation: hl-wa-pulse 2.4s ease-out infinite;
}
.hl-float__wa svg { width: 27px; height: 27px; position: relative; z-index: 2; }
.hl-float__wa:hover { transform: scale(1.1) rotate(-6deg); box-shadow: 0 14px 32px -8px rgba(37, 211, 102, .85); }
@keyframes hl-wa-pulse {
	0%   { transform: scale(1); opacity: .75; }
	70%  { transform: scale(1.5); opacity: 0; }
	100% { transform: scale(1.5); opacity: 0; }
}
.hl-float__top {
	background: var(--hl-ink); color: #fff;
	transform: rotate(-90deg) scale(.5); opacity: 0; pointer-events: none;
	transition: opacity .4s, transform .4s var(--hl-ease);
}
.hl-float__top.is-on { opacity: 1; transform: rotate(-90deg) scale(1); pointer-events: auto; }
.hl-float__top:hover { background: var(--hl-gold); color: #1a1408; }

/* 404 */
.hl-404 { position: relative; overflow: hidden; padding: clamp(70px, 11vw, 130px) 0; text-align: center; background: var(--hl-ink); color: #fff; }
.hl-404__glow {
	position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
	width: 80vw; height: 80vw; max-width: 900px; max-height: 900px;
	background: radial-gradient(circle, rgba(var(--hl-gold-rgb), .17), transparent 60%);
	animation: hl-glow 5s ease-in-out infinite;
}
.hl-404 .hl-container { position: relative; z-index: 2; }
.hl-404__bulb { width: 140px; margin: 0 auto 26px; animation: hl-bob 5s ease-in-out infinite; }
.hl-404 h1 { font-family: var(--hl-serif); font-size: clamp(34px, 6vw, 64px); margin-bottom: 14px; }
.hl-404 p { color: rgba(255, 255, 255, .6); max-width: 46ch; margin: 0 auto 30px; }
.hl-404__cta { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.hl-404__cta .hl-btn--outline { color: #fff; }
.hl-404__search { max-width: 460px; margin: 0 auto; }
.hl-404__search .hl-searchform input { background: rgba(255, 255, 255, .07); border-color: var(--hl-line-dark); color: #fff; }
.hl-404__search .hl-searchform input::placeholder { color: rgba(255, 255, 255, .35); }

/* contact page */
.hl-contact { padding: 56px 0 90px; }
.hl-contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.hl-contact__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hl-contactcard {
	padding: 26px 22px;
	background: var(--hl-cream); border-radius: var(--hl-radius);
	transition: transform .4s var(--hl-ease), box-shadow .4s;
}
.hl-contactcard:hover { transform: translateY(-5px); box-shadow: var(--hl-shadow); }
.hl-contactcard__icon {
	display: grid; place-items: center;
	width: 46px; height: 46px; margin-bottom: 14px;
	border-radius: 50%; background: #fff; color: var(--hl-gold-dk);
}
.hl-contactcard h3 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--hl-muted); margin-bottom: 8px; }
.hl-contactcard a, .hl-contactcard__value { display: block; font-size: 15.5px; font-weight: 500; margin: 0 0 6px; }
.hl-contactcard a:hover { color: var(--hl-gold-dk); }
.hl-contactcard em { font-style: normal; font-size: 12.5px; color: var(--hl-muted); }
.hl-contactform { padding: 34px 32px; border: 1px solid var(--hl-line); border-radius: var(--hl-radius); }
.hl-contactform h2 { font-family: var(--hl-serif); font-size: 28px; margin-bottom: 22px; }
.hl-mapcard { margin-top: 44px; border-radius: var(--hl-radius); overflow: hidden; border: 1px solid var(--hl-line); }
.hl-mapcard iframe { display: block; filter: grayscale(.35) contrast(1.05); }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1180px) {
	.hl-carousel__cell { flex-basis: 33.3333%; }
	.hl-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
	.hl-footer__col--contact { grid-column: span 2; }
	.hl-cats__grid { grid-template-columns: repeat(3, 1fr); }
	.hl-cat--1 { grid-column: span 2; grid-row: span 2; }
	.hl-cat--6 { grid-column: span 1; }
	.hl-look__grid { grid-template-columns: repeat(2, 1fr); }
	.hl-values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
	.hl-header__row2 { display: none; }
	.hl-navsearch { display: none; }
	.hl-hide-lg { display: inline-grid; }
	.hl-burger { display: inline-flex; }
	.hl-brand { margin-right: auto; }
	.hl-grid--4 { grid-template-columns: repeat(3, 1fr); }
	.hl-shoplayout { grid-template-columns: 1fr; }
	.hl-toolbar__filter { display: inline-flex; }
	.hl-filters {
		position: fixed; top: 0; bottom: 0; left: 0; z-index: 400;
		width: min(340px, 90vw);
		padding: 22px; overflow-y: auto;
		background: #fff; box-shadow: var(--hl-shadow-lg);
		transform: translateX(-102%); visibility: hidden;
		transition: transform .45s var(--hl-ease), visibility .45s;
	}
	.hl-filters.is-on { transform: none; visibility: visible; }
	.hl-filters__head { display: flex; }
	.hl-cartpage__grid, .hl-checkout__grid { grid-template-columns: 1fr; }
	.hl-summary--sticky { position: static; }
	.hl-blog__grid, .hl-single__inner { grid-template-columns: 1fr; }
	.hl-sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
	.hl-product__top { grid-template-columns: 1fr; }
	.hl-product__gallery { position: static; }
	.hl-story__inner, .hl-deal__inner, .hl-newsletter__inner, .hl-contact__grid { grid-template-columns: 1fr; }
	.hl-story__art { min-height: 400px; }
	.hl-deal__media { height: 46vh; max-height: 380px; min-height: 240px; }
	.hl-usp__grid { grid-template-columns: repeat(2, 1fr); }
	.hl-usp__item:nth-child(2n) { border-right: 0; }
	.hl-usp__item:nth-child(-n+2) { border-bottom: 1px solid var(--hl-line); }
	.hl-qv { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
	:root { --hl-gutter: 18px; --hl-header-h: 56px; }
	.hl-hero {
		height: calc(100vh - var(--hl-header-h) - var(--hl-topbar-h));
		height: calc(100dvh - var(--hl-header-h) - var(--hl-topbar-h));
		min-height: 460px; max-height: 700px;
	}
	.hl-hero__nav { display: none; }
	.hl-hero__scroll { display: none; }
	.hl-grid--3, .hl-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.hl-carousel__cell { flex-basis: 50%; }
	.hl-carousel--reviews .hl-carousel__cell { flex-basis: 100%; }
	.hl-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
	.hl-cats__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
	.hl-cat--1 { grid-column: span 2; grid-row: span 1; }
	.hl-footer__grid { grid-template-columns: 1fr 1fr; }
	.hl-footer__col--brand, .hl-footer__col--contact { grid-column: span 2; }
	.hl-popup__box { grid-template-columns: 1fr; }
	.hl-popup__art { display: none; }
	.hl-postnav { grid-template-columns: 1fr; }
	.hl-carttable__head { display: none; }
	.hl-cartrow { grid-template-columns: 1fr auto; gap: 12px 14px; }
	.hl-cartrow__product { grid-column: 1 / -1; }
	.hl-cartrow__price { text-align: left; }
	.hl-cartrow__price::before, .hl-cartrow__line::before {
		content: attr(data-label) ": ";
		font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--hl-muted);
	}
	.hl-cartrow__qty { justify-content: flex-start; grid-row: 3; }
	.hl-cartrow__line { grid-row: 3; text-align: right; }
	.hl-product__buy .hl-btn { flex-basis: 100%; }
	.hl-product__usp { grid-template-columns: 1fr; }
	.hl-contact__cards { grid-template-columns: 1fr; }
	.hl-single__foot { flex-direction: column; }
	.hl-fields { grid-template-columns: 1fr; }
	.hl-modal__box { padding: 26px 20px; }
}

@media (max-width: 560px) {
	.hl-grid--2, .hl-grid--3, .hl-grid--4 { grid-template-columns: 1fr; }
	.hl-carousel__cell { flex-basis: 78%; }
	.hl-cats__grid { grid-template-columns: 1fr; grid-auto-rows: 210px; }
	.hl-cat--1 { grid-column: span 1; }
	.hl-look__grid { grid-template-columns: 1fr; }
	.hl-values__grid, .hl-sidebar { grid-template-columns: 1fr; }
	.hl-usp__grid { grid-template-columns: 1fr; }
	.hl-usp__item { border-right: 0; border-bottom: 1px solid var(--hl-line); }
	.hl-hide-sm { display: none; }
	.hl-countdown { gap: 8px; }
	.hl-countdown__unit { min-width: 0; flex: 1; padding: 10px 4px; }
	.hl-countdown__unit strong { font-size: 22px; }
	.hl-grid.is-list .hl-card { flex-direction: column; }
	.hl-grid.is-list .hl-card__media { flex-basis: auto; }
	.hl-timeline__list li { flex-direction: column; gap: 6px; }
	.hl-toasts { left: 16px; right: 16px; justify-items: stretch; }
	.hl-toast { max-width: none; }
	.hl-float { right: 16px; bottom: 16px; }
	.hl-product__thumbs button { width: 64px; }
	body.hl-has-stickybuy .hl-float { bottom: 92px; }
}
