/*
Theme Name: Stampara
Theme URI: https://stampara.com/
Author: Stampara
Description: A fast, hand-built WooCommerce theme for collectible postage stamps. No page builder, no jQuery dependency, mobile-first commerce UI with built-in technical SEO.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stampara
Tags: e-commerce, woocommerce, mobile-first, accessibility-ready, custom-menu, featured-images, translation-ready
*/

/* ==========================================================================
   1. Design tokens
   ========================================================================== */
:root {
	--ink: #111114;
	--ink-2: #3d3d44;
	--muted: #71717a;
	--faint: #a1a1aa;
	--paper: #ffffff;
	--bg: #f5f5f6;
	--bg-2: #fafafa;
	--line: #e6e6e9;
	--line-2: #d4d4d8;

	--sale: #e01b24;
	--sale-soft: #fff1f1;
	--gold: #a8834a;
	--gold-soft: #fbf6ed;
	--ok: #12805c;

	--radius: 4px;
	--radius-lg: 10px;
	--radius-pill: 999px;

	--shadow-1: 0 1px 2px rgba(17, 17, 20, .06);
	--shadow-2: 0 4px 16px rgba(17, 17, 20, .08);
	--shadow-3: 0 12px 40px rgba(17, 17, 20, .16);

	--header-h: 52px;
	--bottomnav-h: 56px;
	--wrap: 1440px;
	--gutter: 12px;

	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
		Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
	--font-display: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, Arial, sans-serif;

	--ease: cubic-bezier(.22, .61, .36, 1);
	color-scheme: light;
}

@media (min-width: 768px) {
	:root { --header-h: 64px; --gutter: 20px; }
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 14px;
	line-height: 1.55;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	overflow-wrap: break-word;
}
body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--ink); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
table { border-collapse: collapse; width: 100%; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.2; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }

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

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute; left: 8px; top: -60px; z-index: 999;
	background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--radius);
	transition: top .2s var(--ease);
}
.skip-link:focus { top: 8px; color: #fff; }

/* ==========================================================================
   3. Layout primitives
   ========================================================================== */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 780px; }
.wrap--mid { max-width: 1100px; }

.section { padding-block: 32px; }
@media (min-width: 768px) { .section { padding-block: 56px; } }

.section-head {
	display: flex; align-items: baseline; justify-content: space-between;
	gap: 16px; margin-bottom: 16px;
}
.section-head h2 {
	font-size: clamp(19px, 1.1rem + .7vw, 28px);
	font-family: var(--font-display);
	text-transform: uppercase; letter-spacing: .01em;
}
.section-head .link-more {
	font-size: 12px; font-weight: 700; text-transform: uppercase;
	letter-spacing: .08em; white-space: nowrap; border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
}
.section-sub { color: var(--muted); font-size: 13px; margin: -8px 0 20px; }

/* ==========================================================================
   4. Buttons & form controls
   ========================================================================== */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 44px; padding: 0 20px;
	font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
	border-radius: var(--radius); border: 1px solid transparent;
	background: var(--ink); color: #fff;
	transition: transform .12s var(--ease), background .18s var(--ease), opacity .18s var(--ease);
	text-align: center;
}
.btn:hover { color: #fff; background: #26262c; }
.btn:active { transform: scale(.985); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--quiet { background: var(--bg); color: var(--ink); }
.btn--quiet:hover { background: var(--line); color: var(--ink); }
.btn--sale { background: var(--sale); }
.btn--sale:hover { background: #c4161f; }
.btn--block { width: 100%; }
.btn--lg { min-height: 52px; font-size: 14px; }
.btn[disabled], .btn.is-loading { opacity: .55; pointer-events: none; }

.input, input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="password"], input[type="search"], input[type="number"], textarea, select {
	width: 100%; min-height: 44px; padding: 10px 12px;
	background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius);
	transition: border-color .16s var(--ease);
	appearance: none;
}
textarea { min-height: 120px; }
select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%23111' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px;
}
input:focus, textarea:focus, select:focus { border-color: var(--ink); outline: none; }
label { font-size: 13px; font-weight: 600; }

/* ==========================================================================
   5. Announcement bar
   ========================================================================== */
.promo-bar {
	background: var(--ink); color: #fff; font-size: 11.5px; letter-spacing: .06em;
	text-transform: uppercase; overflow: hidden; position: relative;
}
.promo-bar__track {
	display: flex; align-items: center; gap: 48px; white-space: nowrap;
	padding: 7px 0; width: max-content;
	animation: promo-scroll 32s linear infinite;
}
.promo-bar:hover .promo-bar__track { animation-play-state: paused; }
.promo-bar__track span { display: inline-flex; align-items: center; gap: 8px; }
.promo-bar__track b { color: #ffd166; font-weight: 700; }
@keyframes promo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
	.promo-bar__track { animation: none; width: 100%; justify-content: center; }
	.promo-bar__track > span:nth-child(n+3) { display: none; }
}

/* ==========================================================================
   6. Header
   ========================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 60;
	background: var(--paper); border-bottom: 1px solid var(--line);
	transition: box-shadow .2s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-2); }

.header-bar {
	display: flex; align-items: center; gap: 10px;
	height: var(--header-h);
}
.header-bar__left { display: flex; align-items: center; gap: 6px; flex: 0 0 auto; min-width: 0; }
.header-bar__right { display: flex; align-items: center; gap: 2px; flex: 0 0 auto; margin-left: auto; }

.brand {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-display); font-weight: 800;
	font-size: 20px; letter-spacing: -.03em; text-transform: uppercase;
	white-space: nowrap;
}
@media (min-width: 768px) { .brand { font-size: 24px; } }
.brand__mark {
	width: 26px; height: 26px; flex: none;
	display: grid; place-items: center;
	background: var(--ink); color: #fff; border-radius: 3px;
	font-size: 13px; font-weight: 800; letter-spacing: 0;
	clip-path: polygon(0% 6%, 8% 0%, 16% 6%, 24% 0%, 32% 6%, 40% 0%, 48% 6%, 56% 0%, 64% 6%, 72% 0%, 80% 6%, 88% 0%, 96% 6%, 100% 12%, 94% 20%, 100% 28%, 94% 36%, 100% 44%, 94% 52%, 100% 60%, 94% 68%, 100% 76%, 94% 84%, 100% 92%, 94% 100%, 86% 94%, 78% 100%, 70% 94%, 62% 100%, 54% 94%, 46% 100%, 38% 94%, 30% 100%, 22% 94%, 14% 100%, 6% 94%, 0% 88%, 6% 80%, 0% 72%, 6% 64%, 0% 56%, 6% 48%, 0% 40%, 6% 32%, 0% 24%, 6% 16%);
}

.icon-btn {
	position: relative; width: 40px; height: 40px; border-radius: var(--radius);
	display: grid; place-items: center; color: var(--ink);
	transition: background .15s var(--ease);
}
.icon-btn:hover { background: var(--bg); }
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn__count {
	position: absolute; top: 3px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px;
	background: var(--sale); color: #fff; border-radius: var(--radius-pill);
	font-size: 10px; font-weight: 700; line-height: 17px; text-align: center;
}
.icon-btn__count[data-count="0"] { display: none; }

.primary-nav { display: none; }
@media (min-width: 1024px) {
	.primary-nav { display: block; flex: 1 1 auto; min-width: 0; margin-inline: 24px; }
	.primary-nav ul { display: flex; align-items: center; gap: 20px; flex-wrap: nowrap; overflow: hidden; }
	.primary-nav a {
		display: block; padding: 6px 0; font-size: 13px; font-weight: 700;
		text-transform: uppercase; letter-spacing: .05em; position: relative; white-space: nowrap;
	}
	.primary-nav a::after {
		content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
		background: var(--ink); transform: scaleX(0); transform-origin: left;
		transition: transform .2s var(--ease);
	}
	.primary-nav a:hover::after,
	.primary-nav .current-menu-item > a::after { transform: scaleX(1); }
	.primary-nav .menu-item-has-children { position: relative; }
	.primary-nav .sub-menu {
		position: absolute; top: 100%; left: -14px; min-width: 220px; padding: 8px;
		background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
		box-shadow: var(--shadow-2); display: block;
		opacity: 0; visibility: hidden; transform: translateY(6px);
		transition: all .18s var(--ease);
	}
	.primary-nav li:hover > .sub-menu,
	.primary-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
	.primary-nav .sub-menu a { padding: 9px 12px; border-radius: var(--radius); text-transform: none; letter-spacing: 0; font-weight: 600; }
	.primary-nav .sub-menu a:hover { background: var(--bg); }
	.primary-nav .sub-menu a::after { display: none; }
}

.header-search { display: none; }
@media (min-width: 1500px) {
	.header-search { display: block; flex: 0 1 320px; max-width: 360px; margin-inline: 12px; }
	.header-search form { position: relative; }
	.header-search input {
		min-height: 40px; padding: 8px 40px 8px 14px; border-radius: var(--radius-pill);
		background: var(--bg); border-color: transparent; font-size: 13px;
	}
	.header-search input:focus { background: var(--paper); border-color: var(--ink); }
	.header-search button {
		position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
		width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%;
	}
	.header-search button svg { width: 17px; height: 17px; }
}
.js-search-toggle { display: grid; }
@media (min-width: 1500px) { .js-search-toggle { display: none; } }
.js-menu-toggle { display: grid; }
@media (min-width: 1024px) { .js-menu-toggle { display: none; } }

/* Category chip rail */
.chip-rail {
	display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
	padding: 10px 0; -webkit-overflow-scrolling: touch;
	border-bottom: 1px solid var(--line);
}
.chip-rail::-webkit-scrollbar { display: none; }
.chip {
	flex: none; display: inline-flex; align-items: center; gap: 6px;
	padding: 7px 14px; border-radius: var(--radius-pill);
	background: var(--bg); border: 1px solid transparent;
	font-size: 12.5px; font-weight: 600; white-space: nowrap;
	transition: all .15s var(--ease);
}
.chip:hover { background: var(--line); }
.chip.is-active, .chip[aria-current="page"] { background: var(--ink); color: #fff; }
.chip.is-active:hover { color: #fff; }

/* ==========================================================================
   7. Drawers & overlays
   ========================================================================== */
.scrim {
	position: fixed; inset: 0; z-index: 90; background: rgba(17, 17, 20, .5);
	opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s;
	backdrop-filter: blur(2px);
}
.scrim.is-open { opacity: 1; visibility: visible; }

.drawer {
	position: fixed; top: 0; bottom: 0; z-index: 100; width: min(420px, 88vw);
	background: var(--paper); display: flex; flex-direction: column;
	transition: transform .3s var(--ease); will-change: transform;
}
.drawer--right { right: 0; transform: translateX(101%); }
.drawer--left { left: 0; transform: translateX(-101%); }
.drawer.is-open { transform: none; box-shadow: var(--shadow-3); }
.drawer__head {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 14px 16px; border-bottom: 1px solid var(--line); flex: none;
}
.drawer__title { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.drawer__body { flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.drawer__foot { flex: none; padding: 14px 16px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--paper); }

.drawer-nav__section { padding: 8px 0; border-bottom: 1px solid var(--line); }
.drawer-nav a {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 13px 16px; font-size: 14px; font-weight: 600;
}
.drawer-nav a:hover { background: var(--bg); }
.drawer-nav__label {
	padding: 14px 16px 6px; font-size: 11px; font-weight: 800;
	text-transform: uppercase; letter-spacing: .1em; color: var(--faint);
}
.drawer-nav .sub-menu a { padding-left: 30px; font-weight: 500; color: var(--ink-2); }

/* Search overlay */
.search-overlay {
	position: fixed; inset: 0; z-index: 110; background: var(--paper);
	display: flex; flex-direction: column;
	opacity: 0; visibility: hidden; transform: translateY(-8px);
	transition: all .22s var(--ease);
}
.search-overlay.is-open { opacity: 1; visibility: visible; transform: none; }
.search-overlay__head { display: flex; gap: 10px; align-items: center; padding: 12px var(--gutter); border-bottom: 1px solid var(--line); }
.search-overlay form { flex: 1; position: relative; }
.search-overlay input { border-radius: var(--radius-pill); background: var(--bg); border-color: transparent; padding-right: 44px; }
.search-overlay form button[type="submit"] { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; display: grid; place-items: center; }
.search-overlay__body { padding: 20px var(--gutter); overflow-y: auto; }
.search-suggest { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

/* ==========================================================================
   8. Mini cart
   ========================================================================== */
.freeship {
	padding: 12px 16px; background: var(--gold-soft); border-bottom: 1px solid var(--line);
	font-size: 12.5px;
}
.freeship__bar { height: 5px; background: #e8dcc6; border-radius: var(--radius-pill); margin-top: 8px; overflow: hidden; }
.freeship__fill { height: 100%; background: var(--gold); border-radius: inherit; transition: width .4s var(--ease); }
.freeship b { color: var(--gold); }

.minicart__list { padding: 4px 16px; }
.minicart__item { display: grid; grid-template-columns: 76px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.minicart__item img { width: 76px; height: 76px; object-fit: contain; background: var(--bg-2); border-radius: var(--radius); }
.minicart__name { font-size: 13px; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.minicart__meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.minicart__row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.minicart__price { font-weight: 700; }
.minicart__remove { font-size: 11px; color: var(--muted); text-decoration: underline; }
.minicart__remove:hover { color: var(--sale); }
.minicart__empty { padding: 60px 24px; text-align: center; color: var(--muted); }
.minicart__totals { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.minicart__totals strong { font-size: 18px; }

/* Quantity stepper */
.qty {
	display: inline-flex; align-items: center; border: 1px solid var(--line-2);
	border-radius: var(--radius); overflow: hidden; background: var(--paper);
}
.qty button { width: 40px; height: 44px; display: grid; place-items: center; font-size: 18px; color: var(--ink-2); }
.qty button:hover { background: var(--bg); }
.qty input {
	width: 46px; min-height: 44px; text-align: center; border: 0; border-inline: 1px solid var(--line-2);
	border-radius: 0; font-weight: 700; -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ==========================================================================
   9. Product grid + card
   ========================================================================== */
.product-grid {
	display: grid; grid-template-columns: repeat(var(--grid-mobile, 2), minmax(0, 1fr)); gap: 10px 8px;
	margin: 0; padding: 0;
}
@media (min-width: 600px) { .product-grid { grid-template-columns: repeat(var(--grid-tablet, 3), minmax(0, 1fr)); gap: 16px 12px; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(var(--grid-desktop, 4), minmax(0, 1fr)); gap: 24px 16px; } }
@media (min-width: 1360px) { .product-grid { grid-template-columns: repeat(var(--grid-wide, 5), minmax(0, 1fr)); } }
.product-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .product-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.card { position: relative; display: flex; flex-direction: column; }
.card__media {
	position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden;
	background: var(--bg-2); border-radius: var(--radius);
}
.card__media img {
	width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply;
}
/* No zoom-on-hover: scaling inside an overflow:hidden box would clip the artwork.
   The card lifts instead, so the full sheet always stays visible. */
.card__media { transition: box-shadow .25s var(--ease), background .25s var(--ease); }
.card { transition: transform .25s var(--ease); }
@media (hover: hover) {
	.card:hover { transform: translateY(-3px); }
	.card:hover .card__media { background: #fff; box-shadow: var(--shadow-2); }
}

.badge {
	position: absolute; z-index: 2; font-size: 10.5px; font-weight: 800;
	letter-spacing: .04em; padding: 3px 6px; border-radius: 2px; line-height: 1.4;
}
.badge--off { left: 6px; top: 6px; background: var(--sale); color: #fff; }
.badge--new { left: 6px; top: 6px; background: var(--ink); color: #fff; }
.badge--low { left: 6px; bottom: 6px; background: rgba(17,17,20,.82); color: #fff; }
.badge--out { left: 6px; bottom: 6px; background: var(--muted); color: #fff; }

.card__wish {
	position: absolute; right: 5px; top: 5px; z-index: 2;
	width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
	background: rgba(255, 255, 255, .9); color: var(--ink-2);
	box-shadow: var(--shadow-1); transition: all .16s var(--ease);
}
.card__wish svg { width: 16px; height: 16px; }
.card__wish:hover { transform: scale(1.08); }
.card__wish.is-on { color: var(--sale); }
.card__wish.is-on svg { fill: currentColor; }

.card__quickadd {
	position: absolute; right: 5px; bottom: 5px; z-index: 2;
	width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
	background: var(--paper); color: var(--ink); box-shadow: var(--shadow-2);
	transition: all .18s var(--ease);
}
.card__quickadd svg { width: 17px; height: 17px; }
.card__quickadd:hover { background: var(--ink); color: #fff; }
.card__quickadd.is-loading { opacity: .5; pointer-events: none; }
@media (hover: hover) and (min-width: 1024px) {
	.card__quickadd { opacity: 0; transform: translateY(6px); }
	.card:hover .card__quickadd, .card:focus-within .card__quickadd { opacity: 1; transform: none; }
}

.card__body { padding: 8px 2px 0; display: flex; flex-direction: column; gap: 5px; }
.card__title {
	font-size: 12.5px; font-weight: 500; line-height: 1.35; color: var(--ink-2);
	display: -webkit-box; -webkit-line-clamp: var(--card-lines, 2); -webkit-box-orient: vertical; overflow: hidden;
	min-height: calc(var(--card-lines, 2) * 1.35em);
}
@media (min-width: 1024px) { .card__title { font-size: 13px; } }
.card:hover .card__title { color: var(--ink); }
.card__tags { display: flex; flex-wrap: wrap; gap: 4px; min-height: 17px; }
.tag-mini {
	font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
	padding: 2px 5px; border-radius: 2px; background: var(--bg); color: var(--muted);
}
.tag-mini--scott { background: var(--gold-soft); color: var(--gold); }
.card__price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-now { font-size: 15px; font-weight: 800; color: var(--sale); letter-spacing: -.01em; }
.price-now--plain { color: var(--ink); }
.price-was { font-size: 11.5px; color: var(--faint); text-decoration: line-through; }
.price-off { font-size: 11px; font-weight: 700; color: var(--sale); }

/* horizontal scroller */
.rail { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { flex: 0 0 44%; scroll-snap-align: start; }
@media (min-width: 600px) { .rail > * { flex-basis: 29%; } }
@media (min-width: 1024px) { .rail { gap: 16px; } .rail > * { flex-basis: 22%; } }
@media (min-width: 1360px) { .rail > * { flex-basis: 17.5%; } }

/* ==========================================================================
   10. Home page
   ========================================================================== */
.hero {
	position: relative; background: linear-gradient(160deg, #14141a 0%, #2a2118 55%, #443320 100%);
	color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg-mobile { display: block; }
.hero__bg-desktop { display: none; }
@media (min-width: 768px) {
	.hero__bg-mobile { display: none; }
	.hero__bg-desktop { display: block; }
}
.hero--photo::after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(95deg, rgba(10,10,13,.88) 0%, rgba(10,10,13,.66) 42%, rgba(10,10,13,.18) 78%, rgba(10,10,13,.32) 100%);
}
@media (max-width: 767px) {
	.hero--photo::after { background: linear-gradient(to top, rgba(10,10,13,.92) 32%, rgba(10,10,13,.45) 100%); }
}
.hero--photo .hero__inner { grid-template-columns: 1fr; }
.hero--photo .hero__copy { max-width: 40rem; }
@media (min-width: 900px) { .hero--photo .hero__inner { padding-block: 86px; } }
.hero__inner {
	position: relative; z-index: 2; display: grid; gap: 20px; align-items: center;
	padding-block: 40px;
}
@media (min-width: 900px) {
	.hero__inner { grid-template-columns: 1fr .82fr; gap: 48px; padding-block: 72px; }
}
.hero__eyebrow {
	display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700;
	letter-spacing: .16em; text-transform: uppercase; color: #e8c88a; margin-bottom: 14px;
}
.hero__eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; flex: none; }
.hero__eyebrow { max-width: none; }
.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(30px, 4.6vw + 1rem, 62px); line-height: 1.02;
	letter-spacing: -.035em; text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: #e8c88a; }
.hero__lede { margin: 14px 0 0; max-width: 46ch; color: rgba(255,255,255,.76); font-size: 15px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero__cta .btn { background: #fff; color: var(--ink); }
.hero__cta .btn:hover { background: #e8c88a; color: var(--ink); }
.hero__cta .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.hero__cta .btn--ghost:hover { background: #fff; color: var(--ink); }
.hero__art { display: none; }
@media (min-width: 900px) {
	.hero__art { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; transform: rotate(-4deg); margin: 30px 26px; }
	.hero__art img { border-radius: 3px; box-shadow: 0 14px 34px rgba(0,0,0,.42); background: #fff; }
	.hero__art > *:nth-child(2) { transform: translateY(-16px); }
	.hero__art > *:nth-child(3) { transform: translateY(12px); }
}
.hero__stats { display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.hero__stats div strong { display: block; font-size: 22px; font-family: var(--font-display); }
.hero__stats div span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); }

.trustbar { background: var(--ink); color: #fff; }
.trustbar ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.12); }
@media (min-width: 900px) { .trustbar ul { grid-template-columns: repeat(4, 1fr); } }
.trustbar li { background: var(--ink); padding: 14px 12px; display: flex; gap: 10px; align-items: center; justify-content: center; text-align: left; }
.trustbar svg { width: 20px; height: 20px; flex: none; color: #e8c88a; }
.trustbar strong { display: block; font-size: 12px; letter-spacing: .02em; }
.trustbar span { font-size: 11px; color: rgba(255,255,255,.6); }

.cat-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (min-width: 768px) { .cat-tiles { grid-template-columns: repeat(8, 1fr); gap: 14px; } }
.cat-tile { text-align: center; }
.cat-tile__img {
	aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-2);
	border: 1px solid var(--line); transition: all .2s var(--ease);
	padding: 6px;
}
.cat-tile__img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.cat-tile:hover .cat-tile__img { border-color: var(--ink); transform: translateY(-3px); }
.cat-tile span { display: block; margin-top: 7px; font-size: 11.5px; font-weight: 600; line-height: 1.25; }

.promo-grid { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .promo-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }

.promo-card {
	position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden;
	border-radius: var(--radius-lg); background: var(--bg-2); color: #fff;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); color: #fff; }
.promo-card__media { position: absolute; inset: 0; display: block; }
/* Artwork is supplied at exactly 3:2, so object-fit: cover crops nothing. */
.promo-card__img { width: 100%; height: 100%; object-fit: cover; }
.promo-card__body {
	position: absolute; inset: auto 0 0 0; z-index: 2;
	display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
	padding: 26px 22px 20px;
	background: linear-gradient(to top, rgba(17,17,20,.92) 30%, rgba(17,17,20,.62) 65%, transparent);
}
.promo-card__title {
	font-size: clamp(18px, 1.7vw, 26px); font-weight: 700; line-height: 1.15;
	text-transform: uppercase; font-family: var(--font-display); letter-spacing: -.01em;
}
.promo-card__text { font-size: 13px; color: rgba(255,255,255,.78); max-width: 42ch; }
.promo-card .fake-btn {
	margin-top: 4px; font-size: 12px; font-weight: 800; letter-spacing: .08em;
	text-transform: uppercase; border-bottom: 2px solid #e8c88a; padding-bottom: 3px;
}

.seo-block { background: var(--bg); }
.seo-block h2 { font-size: clamp(20px, 1rem + 1vw, 26px); margin-bottom: 12px; }
.seo-block h3 { font-size: 15px; margin: 22px 0 6px; }
.seo-block p, .seo-block li { color: var(--ink-2); font-size: 14px; }
.seo-block ul { margin: 8px 0 0; display: grid; gap: 6px; }
.seo-block li { padding-left: 18px; position: relative; }
.seo-block li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.seo-cols { display: grid; gap: 24px; }
@media (min-width: 900px) { .seo-cols { grid-template-columns: 1fr 1fr; gap: 40px; } }

.newsletter { background: var(--ink); color: #fff; text-align: center; }
.newsletter h2 { font-size: clamp(21px, 1rem + 1.2vw, 30px); text-transform: uppercase; font-family: var(--font-display); }
.newsletter p { color: rgba(255,255,255,.68); margin-top: 8px; }
.newsletter form { display: flex; gap: 8px; max-width: 440px; margin: 20px auto 0; flex-wrap: wrap; }
.newsletter input { flex: 1 1 200px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; border-radius: var(--radius-pill); padding-inline: 18px; }
.newsletter input::placeholder { color: rgba(255,255,255,.45); }
.newsletter .btn { background: #fff; color: var(--ink); border-radius: var(--radius-pill); }

/* ==========================================================================
   11. Shop / archive
   ========================================================================== */
.page-head { padding: 18px 0 12px; }
.page-head h1 { font-size: clamp(20px, 1rem + 1.4vw, 32px); font-family: var(--font-display); text-transform: uppercase; }
.page-head__count { font-size: 12px; color: var(--muted); margin-top: 4px; }
.page-head__desc { margin-top: 10px; max-width: 72ch; color: var(--ink-2); font-size: 13.5px; }

.breadcrumbs { font-size: 12px; color: var(--muted); padding: 10px 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumbs a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumbs__sep { color: var(--line-2); }
.breadcrumbs [aria-current] { color: var(--ink); font-weight: 600; }

.toolbar {
	position: sticky; top: var(--header-h); z-index: 40;
	display: flex; align-items: center; gap: 8px;
	padding: 9px 0; background: var(--paper); border-block: 1px solid var(--line);
	margin-bottom: 16px;
}
.toolbar__btn {
	display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 14px;
	border: 1px solid var(--line-2); border-radius: var(--radius-pill);
	font-size: 12.5px; font-weight: 600; background: var(--paper);
}
.toolbar__btn:hover { border-color: var(--ink); }
.toolbar__btn svg { width: 14px; height: 14px; }
.toolbar__btn.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.toolbar__spacer { flex: 1; }
.toolbar select { width: auto; min-height: 36px; border-radius: var(--radius-pill); font-size: 12.5px; font-weight: 600; padding: 4px 32px 4px 14px; }

.filter-group { padding: 16px; border-bottom: 1px solid var(--line); }
.filter-group h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: 10px; }
.filter-list { display: flex; flex-direction: column; gap: 2px; }
.filter-list a { display: flex; justify-content: space-between; gap: 10px; padding: 9px 10px; border-radius: var(--radius); font-size: 13.5px; }
.filter-list a:hover { background: var(--bg); }
.filter-list a.is-on { background: var(--ink); color: #fff; font-weight: 600; }
.filter-list span { color: var(--faint); font-size: 12px; }
.filter-list a.is-on span { color: rgba(255,255,255,.6); }
.price-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.price-pills a { padding: 7px 13px; border: 1px solid var(--line-2); border-radius: var(--radius-pill); font-size: 12.5px; }
.price-pills a.is-on, .price-pills a:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.pagination .page-numbers {
	min-width: 40px; height: 40px; padding: 0 12px; display: inline-grid; place-items: center;
	border: 1px solid var(--line-2); border-radius: var(--radius); font-size: 13px; font-weight: 600;
}
.pagination .page-numbers:hover { border-color: var(--ink); }
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }

.empty-state { text-align: center; padding: 60px 20px; }
.empty-state h2 { font-size: 20px; margin-bottom: 8px; }
.empty-state p { color: var(--muted); margin-bottom: 20px; }

/* ==========================================================================
   12. Single product
   ========================================================================== */
.pdp { display: grid; gap: 24px; padding-bottom: 32px; }
@media (min-width: 900px) { .pdp { grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 48px; align-items: start; } }

.pdp-gallery { display: grid; gap: 10px; }
@media (min-width: 900px) {
	.pdp-gallery { grid-template-columns: 74px minmax(0, 1fr); position: sticky; top: calc(var(--header-h) + 16px); }
	.pdp-gallery--solo { grid-template-columns: minmax(0, 1fr); }
}
.pdp-gallery__main {
	position: relative; aspect-ratio: 1; background: var(--bg-2);
	border-radius: var(--radius-lg); overflow: hidden; order: 1;
}
.pdp-gallery__main img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pdp-gallery__thumbs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; order: 2; }
.pdp-gallery__thumbs::-webkit-scrollbar { display: none; }
@media (min-width: 900px) { .pdp-gallery__thumbs { flex-direction: column; order: 0; overflow-y: auto; max-height: 560px; } }
.pdp-gallery__thumbs button {
	flex: none; width: 66px; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
	background: var(--bg-2); border: 2px solid transparent; padding: 0;
}
.pdp-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pdp-gallery__thumbs button.is-on { border-color: var(--ink); }

.pdp-title { font-size: clamp(19px, 1rem + .9vw, 27px); line-height: 1.22; }
.pdp-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.pdp-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin: 14px 0 4px; }
.pdp-price .amount, .pdp-price ins { text-decoration: none; }
.pdp-price .price-now { font-size: 30px; }
.pdp-save { font-size: 12.5px; color: var(--sale); font-weight: 700; }
.pdp-meta-line { font-size: 12.5px; color: var(--muted); }
.pdp-stock { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--ok); margin-top: 10px; }
.pdp-stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.pdp-stock.is-low { color: #b45309; }
.pdp-stock.is-out { color: var(--muted); }

.pdp-buy { display: flex; gap: 10px; margin: 18px 0; align-items: stretch; flex-wrap: wrap; }
.pdp-buy .btn { flex: 1 1 200px; }
.pdp-usp { display: grid; gap: 10px; padding: 16px; background: var(--bg); border-radius: var(--radius-lg); margin-bottom: 18px; }
.pdp-usp li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; }
.pdp-usp svg { width: 17px; height: 17px; flex: none; margin-top: 1px; color: var(--gold); }

.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 16px 0; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
	text-align: left;
}
.accordion__btn svg { width: 15px; height: 15px; flex: none; transition: transform .22s var(--ease); }
.accordion__btn[aria-expanded="true"] svg { transform: rotate(45deg); }
.accordion__panel { display: none; padding-bottom: 18px; font-size: 13.5px; color: var(--ink-2); }
.accordion__panel.is-open { display: block; }
.accordion__panel h4 { font-size: 13px; margin: 14px 0 4px; color: var(--ink); }

.spec-table th, .spec-table td { padding: 9px 0; border-bottom: 1px solid var(--line); text-align: left; font-size: 13px; vertical-align: top; }
.spec-table th { width: 42%; color: var(--muted); font-weight: 500; }
.spec-table td { font-weight: 600; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

.sticky-buy {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
	display: flex; gap: 10px; align-items: center;
	padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
	background: rgba(255,255,255,.97); border-top: 1px solid var(--line);
	backdrop-filter: blur(10px);
	transform: translateY(110%); transition: transform .26s var(--ease);
}
.sticky-buy.is-on { transform: none; }
.sticky-buy img { width: 42px; height: 42px; object-fit: contain; background: var(--bg-2); border-radius: var(--radius); }
.sticky-buy__price { flex: 1; min-width: 0; }
.sticky-buy__price .price-now { font-size: 17px; }
.sticky-buy .btn { flex: 0 0 auto; padding-inline: 26px; }
@media (min-width: 900px) { .sticky-buy { display: none; } }

/* ==========================================================================
   13. WooCommerce overrides
   ========================================================================== */
.woocommerce-message, .woocommerce-info, .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-message {
	display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
	list-style: none; margin: 0 0 18px; padding: 12px 16px;
	border: 0; border-left: 3px solid var(--ink); border-radius: var(--radius);
	background: var(--bg); font-size: 13.5px; line-height: 1.5;
	outline: 0; box-shadow: none;
}
/* WooCommerce ships its own tick glyph, top border and focus ring — all removed
   so the notice reads as one object instead of three stacked boxes. */
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before { content: none !important; }
.woocommerce-message:focus, .woocommerce-info:focus, .woocommerce-error:focus,
.woocommerce-notices-wrapper *:focus { outline: 0 !important; box-shadow: none !important; }
.woocommerce-error { border-left-color: var(--sale); background: var(--sale-soft); }
.woocommerce-message { border-left-color: var(--ok); background: #f0fbf6; }
.woocommerce-message > *:first-child, .woocommerce-info > *:first-child { flex: 1 1 240px; min-width: 0; }
.woocommerce-message .button, .woocommerce-info .button, .woocommerce-error .button {
	float: none; order: 2; margin-left: auto;
	min-height: 34px; padding: 0 14px; border-radius: var(--radius);
	background: transparent; color: var(--ink); border: 1px solid var(--line-2);
	font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; text-decoration: none;
}
.woocommerce-message .button:hover, .woocommerce-info .button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.woocommerce .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce a.button.alt, .woocommerce button.button.alt {
	display: inline-flex; align-items: center; justify-content: center;
	min-height: 44px; padding: 0 20px; border-radius: var(--radius);
	background: var(--ink); color: #fff; font-size: 13px; font-weight: 700;
	letter-spacing: .06em; text-transform: uppercase; border: 0; transition: background .18s var(--ease);
}
.woocommerce .button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover { background: #26262c; color: #fff; }
.woocommerce .cart .button, .woocommerce .cart input.button { width: auto; }

.woocommerce table.shop_table { border: 1px solid var(--line); border-radius: var(--radius-lg); border-collapse: separate; border-spacing: 0; overflow: hidden; }
.woocommerce table.shop_table th { background: var(--bg); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; padding: 12px; }
.woocommerce table.shop_table td { padding: 14px 12px; border-top: 1px solid var(--line); font-size: 13.5px; }
.woocommerce table.cart img { width: 64px; border-radius: var(--radius); background: var(--bg-2); }
.woocommerce-cart-form__cart-item .product-name a { font-weight: 600; }

.woocommerce .cart-collaterals .cart_totals, .woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-checkout-review-order {
	background: var(--bg); border-radius: var(--radius-lg); padding: 18px;
}
.woocommerce form .form-row { margin-bottom: 14px; padding: 0; }
.woocommerce form .form-row label { display: block; margin-bottom: 5px; }
.woocommerce-checkout .col2-set { display: grid; gap: 24px; }
@media (min-width: 900px) { .woocommerce-checkout .col2-set { grid-template-columns: 1fr 1fr; } }
.woocommerce-checkout .col2-set .col-1, .woocommerce-checkout .col2-set .col-2 { width: 100%; float: none; }
.woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2 { width: 100%; float: none; }
.select2-container .select2-selection--single { height: 44px; border-color: var(--line-2); border-radius: var(--radius); }
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 42px; padding-left: 12px; }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 42px; }

.woocommerce-MyAccount-navigation ul { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.woocommerce-MyAccount-navigation a { display: block; padding: 9px 15px; border: 1px solid var(--line-2); border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; }
.woocommerce-MyAccount-navigation .is-active a { background: var(--ink); color: #fff; border-color: var(--ink); }
.woocommerce-account .woocommerce { display: block; }
@media (min-width: 900px) {
	.woocommerce-account .woocommerce { display: grid; grid-template-columns: 230px minmax(0,1fr); gap: 36px; align-items: start; }
	.woocommerce-MyAccount-navigation { width: auto; float: none; }
	.woocommerce-MyAccount-navigation ul { flex-direction: column; }
	.woocommerce-MyAccount-content { width: auto; float: none; }
}
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { display: none; }
.woocommerce-store-notice { display: none !important; }

/* ==========================================================================
   14. Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); margin-top: 40px; }
.footer-top { display: grid; gap: 28px; padding-block: 40px; }
@media (min-width: 768px) { .footer-top { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; } }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand .brand__mark { background: #fff; color: var(--ink); }
.footer-brand p { font-size: 13px; max-width: 34ch; }
.footer-col h3 { color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.footer-col li + li { margin-top: 9px; }
.footer-col a { font-size: 13px; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.12); padding-block: 16px;
	display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
	font-size: 12px;
}
.pay-icons { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-icons span {
	padding: 4px 8px; border: 1px solid rgba(255,255,255,.18); border-radius: 3px;
	font-size: 10px; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.65);
}

/* ==========================================================================
   15. Mobile bottom nav
   ========================================================================== */
.bottom-nav {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
	display: grid; grid-template-columns: repeat(5, 1fr);
	background: rgba(255,255,255,.97); border-top: 1px solid var(--line);
	padding-bottom: env(safe-area-inset-bottom); backdrop-filter: blur(10px);
}
@media (min-width: 1024px) { .bottom-nav { display: none; } }
body.has-bottomnav { padding-bottom: calc(var(--bottomnav-h) + env(safe-area-inset-bottom)); }
@media (min-width: 1024px) { body.has-bottomnav { padding-bottom: 0; } }
.bottom-nav a, .bottom-nav button {
	height: var(--bottomnav-h); display: flex; flex-direction: column;
	align-items: center; justify-content: center; gap: 3px;
	font-size: 10px; font-weight: 600; color: var(--muted); position: relative;
}
.bottom-nav svg { width: 21px; height: 21px; }
.bottom-nav .is-on, .bottom-nav a:hover { color: var(--ink); }
.bottom-nav .icon-btn__count { top: 5px; right: calc(50% - 20px); }

/* ==========================================================================
   16. Content pages, comments, misc
   ========================================================================== */
.entry-content { font-size: 15px; line-height: 1.7; color: var(--ink-2); }
.entry-content h2 { font-size: 22px; margin: 32px 0 10px; color: var(--ink); }
.entry-content h3 { font-size: 17px; margin: 24px 0 8px; color: var(--ink); }
.entry-content ul, .entry-content ol { margin: 0 0 1em 1.1em; }
.entry-content li { list-style: disc; margin-bottom: 6px; }
.entry-content ol li { list-style: decimal; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote { margin: 20px 0; padding: 14px 18px; border-left: 3px solid var(--gold); background: var(--gold-soft); border-radius: 0 var(--radius) var(--radius) 0; }
.entry-content table th, .entry-content table td { padding: 10px; border: 1px solid var(--line); }
.entry-content img { border-radius: var(--radius-lg); margin: 18px 0; }

.toast {
	position: fixed; left: 50%; bottom: calc(var(--bottomnav-h) + 20px); z-index: 200;
	transform: translate(-50%, 20px); opacity: 0; visibility: hidden;
	background: var(--ink); color: #fff; padding: 11px 18px; border-radius: var(--radius-pill);
	font-size: 13px; font-weight: 600; box-shadow: var(--shadow-3);
	transition: all .25s var(--ease); max-width: calc(100vw - 32px); text-align: center;
}
.toast.is-on { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
@media (min-width: 1024px) { .toast { bottom: 28px; } }

.spinner {
	width: 15px; height: 15px; border: 2px solid rgba(255,255,255,.35);
	border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.skeleton { background: linear-gradient(90deg, var(--bg) 25%, #ececef 37%, var(--bg) 63%); background-size: 400% 100%; animation: shimmer 1.3s ease infinite; border-radius: var(--radius); }
@keyframes shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ==========================================================================
   17. WooCommerce loop/ pagination aliases
   ========================================================================== */
.woocommerce ul.products, ul.products {
	display: grid; grid-template-columns: repeat(var(--grid-mobile, 2), minmax(0, 1fr)); gap: 10px 8px;
	margin: 0; padding: 0; list-style: none;
}
@media (min-width: 600px) { .woocommerce ul.products, ul.products { grid-template-columns: repeat(var(--grid-tablet, 3), minmax(0, 1fr)); gap: 16px 12px; } }
@media (min-width: 1024px) { .woocommerce ul.products, ul.products { grid-template-columns: repeat(var(--grid-desktop, 4), minmax(0, 1fr)); gap: 24px 16px; } }
.woocommerce ul.products::before, .woocommerce ul.products::after { content: none; }
.woocommerce ul.products li.product { width: auto; margin: 0; float: none; }

.related.products, .upsells.products { margin-top: 44px; }
.related.products > h2, .upsells.products > h2, .cross-sells > h2 {
	font-size: clamp(18px, 1rem + .6vw, 24px); font-family: var(--font-display);
	text-transform: uppercase; letter-spacing: .01em; margin-bottom: 16px;
}

.woocommerce-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.woocommerce-pagination ul { display: flex; gap: 6px; border: 0; margin: 0; padding: 0; }
.woocommerce-pagination li { border: 0; margin: 0; }
.woocommerce-pagination .page-numbers {
	min-width: 40px; height: 40px; padding: 0 12px; display: inline-grid; place-items: center;
	border: 1px solid var(--line-2); border-radius: var(--radius); font-size: 13px; font-weight: 600;
	background: var(--paper); color: var(--ink);
}
.woocommerce-pagination .page-numbers:hover { border-color: var(--ink); background: var(--paper); }
.woocommerce-pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Reviews */
#reviews .comment-form { display: grid; gap: 12px; max-width: 620px; }
#reviews .commentlist { display: grid; gap: 18px; margin-bottom: 26px; }
#reviews .comment_container { display: grid; grid-template-columns: 44px 1fr; gap: 12px; }
#reviews .comment_container img { border-radius: 50%; }
#reviews .comment-text { background: var(--bg); padding: 14px 16px; border-radius: var(--radius-lg); }
.star-rating, .woocommerce .star-rating { color: var(--gold); }

/* Generic page header for non-shop templates */
.article-head { padding: 24px 0 8px; }
.article-head h1 { font-size: clamp(24px, 1rem + 1.8vw, 38px); }
.article-meta { color: var(--muted); font-size: 12.5px; margin-top: 8px; }
.post-card { display: grid; gap: 10px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.post-card h2 { font-size: 19px; }
.post-card p { color: var(--ink-2); font-size: 14px; }

/* Wishlist drawer keeps a two-up grid regardless of viewport width */
.js-wish-body .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 14px 10px; }
.js-wish-body .card__quickadd { opacity: 1; transform: none; }

/* ==========================================================================
   18. Compact header nav + mega menus
   ========================================================================== */
.mainnav { display: none; }
@media (min-width: 1024px) {
	.mainnav { display: block; flex: 1 1 auto; min-width: 0; margin-inline: 32px; }
	.mainnav > ul { display: flex; align-items: center; gap: 30px; }
}
.mainnav__item { position: static; }
.mainnav__top {
	display: inline-flex; align-items: center; gap: 5px;
	height: var(--header-h); position: relative;
	font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
	white-space: nowrap; color: var(--ink);
}
.mainnav__top::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 14px; height: 2px;
	background: var(--ink); transform: scaleX(0); transform-origin: left;
	transition: transform .2s var(--ease);
}
.mainnav__top:hover::after,
.mainnav__item.is-open .mainnav__top::after { transform: scaleX(1); }
.mainnav__top.is-hot { color: var(--sale); }
.mainnav__top.is-hot::after { background: var(--sale); }
.mainnav__chev { transition: transform .2s var(--ease); margin-top: 1px; transform: rotate(90deg); }
.mainnav__item.is-open .mainnav__chev { transform: rotate(-90deg); }

.mega {
	position: absolute; left: 0; right: 0; top: var(--header-h); z-index: 55;
	background: var(--paper);
	border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
	box-shadow: 0 20px 44px rgba(17, 17, 20, .10);
	opacity: 0; visibility: hidden; transform: translateY(-8px);
	transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.mega.is-open { opacity: 1; visibility: visible; transform: none; }
@media (max-width: 1023px) { .mega { display: none; } }

.mega__inner {
	display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, .95fr) minmax(0, .8fr) 264px; gap: 48px;
	padding-block: 30px 34px; align-items: start;
}
.mega--narrow .mega__inner { grid-template-columns: repeat(3, minmax(0, 1fr)) 320px; }

.mega__col h4 {
	font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
	color: var(--faint); margin-bottom: 13px; font-weight: 700;
}
.mega__col ul { display: grid; gap: 9px; }
.mega__col a {
	display: inline-flex; align-items: baseline; gap: 8px;
	font-size: 13.5px; font-weight: 500; color: var(--ink-2);
}
.mega__col a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.mega__count { font-size: 11px; color: var(--faint); font-variant-numeric: tabular-nums; }
.mega__years { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px 12px; max-width: 230px; }
.mega__note { margin: 18px 0 0; font-size: 12px; line-height: 1.6; color: var(--muted); max-width: 34ch; }

.mega__feature {
	display: block; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius-lg);
	background: var(--bg-2); transition: border-color .18s var(--ease);
}
.mega__feature:hover { border-color: var(--ink); }
.mega__feature-tag {
	display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .12em;
	text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.mega__feature-img { display: block; aspect-ratio: 1; background: #fff; border-radius: var(--radius); overflow: hidden; }
.mega__feature-img img { width: 100%; height: 100%; object-fit: contain; }
.mega__feature-name {
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
	font-size: 12.5px; line-height: 1.35; color: var(--ink-2); margin: 10px 0 6px;
}

.mega__promise ul { display: grid; gap: 11px; }
.mega__promise li { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }
.mega__promise svg { flex: none; margin-top: 2px; color: var(--gold); }

.mega__foot { border-top: 1px solid var(--line); background: var(--bg-2); }
.mega__all {
	display: inline-flex; align-items: center; gap: 7px; padding-block: 13px;
	font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.mega__all:hover { color: var(--gold); }

/* ---- drawer accordion ---- */
.dnav { padding-bottom: 20px; }
.dnav__link {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 13px 16px; font-size: 14px; font-weight: 500; color: var(--ink-2);
	border-bottom: 1px solid var(--line);
}
.dnav__link:hover { background: var(--bg); color: var(--ink); }
.dnav__link--strong { font-weight: 800; color: var(--ink); text-transform: uppercase; letter-spacing: .05em; font-size: 13px; }
.dnav__link--hot { color: var(--sale); font-weight: 700; }
.dnav__link--sub { padding-left: 30px; font-size: 13.5px; border-bottom: 0; }
.dnav__toggle {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 14px 16px; font-size: 13px; font-weight: 800; text-align: left;
	text-transform: uppercase; letter-spacing: .06em;
	border-bottom: 1px solid var(--line);
}
.dnav__toggle svg { flex: none; color: var(--muted); transition: transform .2s var(--ease); }
.dnav__toggle[aria-expanded="true"] svg { transform: rotate(45deg); }
.dnav__panel { display: none; padding: 6px 0 12px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.dnav__panel.is-open { display: block; }
.dnav .drawer-nav__label { border-top: 8px solid var(--bg); }

/* ==========================================================================
   19. Image slots — placeholders shown until the artwork is uploaded
   ========================================================================== */
.ph {
	position: relative; display: grid; place-items: center; width: 100%;
	padding: 18px; text-align: center; color: #6f6a61;
	border: 2px dashed #cdc8bf; border-radius: var(--radius-lg);
	background:
		repeating-linear-gradient(45deg, #f4f2ef 0 12px, #ecE9e4 12px 24px);
	background-color: #f4f2ef;
}
.ph--fill { position: absolute; inset: 0; border-radius: 0; border-width: 0; height: 100%; aspect-ratio: auto !important; }
.ph__inner { display: grid; gap: 2px; justify-items: center; max-width: 40ch; }
.ph__name {
	font-size: 10.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #8c8578;
}
.ph__dim {
	font-size: clamp(20px, 2.6vw, 34px); font-weight: 800; letter-spacing: -.02em;
	font-family: var(--font-display); color: #3f3b34; font-variant-numeric: tabular-nums;
	line-height: 1.1;
}
.ph__unit { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #8c8578; margin-bottom: 6px; }
.ph__note { font-size: 12px; line-height: 1.5; }
.ph__where {
	margin-top: 8px; font-size: 10.5px; letter-spacing: .04em;
	padding: 4px 9px; border-radius: var(--radius-pill); background: rgba(17,17,20,.07); color: #5d584f;
}
.ph--wide .ph__note { display: none; }

.slot-badge {
	position: absolute; top: 12px; right: 12px; z-index: 6;
	background: rgba(17, 17, 20, .82); color: #fff;
	font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
	padding: 6px 10px; border-radius: var(--radius); white-space: nowrap;
}
@media (max-width: 600px) { .slot-badge { display: none; } }

/* ==========================================================================
   20. Story band
   ========================================================================== */
.band-section { background: var(--bg-2); }
.band { display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) { .band { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 56px; } }
.band__media { position: relative; }
.band__img, .band__media .ph {
	width: 100%; border-radius: var(--radius-lg); display: block;
}
.band__img { aspect-ratio: 4 / 3; object-fit: cover; }
.band__eyebrow {
	font-size: 10.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
	color: var(--gold); margin-bottom: 10px;
}
.band__copy h2 {
	font-size: clamp(21px, 1rem + 1.4vw, 32px); line-height: 1.15; text-wrap: balance;
	margin-bottom: 12px;
}
.band__copy > p { color: var(--ink-2); font-size: 14.5px; line-height: 1.65; max-width: 56ch; }
.band__list { display: grid; gap: 9px; margin: 18px 0 22px; }
.band__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); }
.band__list svg { flex: none; margin-top: 2px; color: var(--ok); }

/* ==========================================================================
   21. Campaign strip
   ========================================================================== */
.strip {
	position: relative; overflow: hidden; color: #fff;
	background: linear-gradient(120deg, #191921, #3a2c1c);
	display: grid; place-items: center; min-height: 260px;
}
@media (min-width: 900px) { .strip { min-height: 320px; } }
.strip__media { position: absolute; inset: 0; display: block; }
.strip__img { width: 100%; height: 100%; object-fit: cover; }
.strip::after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(to right, rgba(12,12,16,.86), rgba(12,12,16,.55));
}
.strip__content { position: relative; z-index: 2; padding-block: 44px; text-align: center; }
.strip__eyebrow {
	font-size: 10.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
	color: #e8c88a; margin-bottom: 12px;
}
.strip__content h2 {
	font-size: clamp(20px, 1rem + 1.6vw, 34px); line-height: 1.2; text-wrap: balance;
	max-width: 22ch; margin: 0 auto 22px;
}
.strip__content .btn { background: #fff; color: var(--ink); }
.strip__content .btn:hover { background: #e8c88a; color: var(--ink); }

/* ==========================================================================
   22. Quantity bundles — the pack selector
   ========================================================================== */
.tiers { border: 0; padding: 0; margin: 18px 0 16px; min-width: 0; }
.tiers__legend {
	padding: 0; margin-bottom: 10px;
	font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
	color: var(--faint);
}
.tiers__grid { display: grid; gap: 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 560px) { .tiers__grid { grid-template-columns: repeat(var(--tier-cols, 3), minmax(0, 1fr)); } }

.tier { position: relative; display: block; cursor: pointer; }
.tier input {
	position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
	opacity: 0; cursor: pointer;
}
.tier__body {
	display: flex; flex-direction: column; gap: 3px;
	padding: 11px 12px 12px; height: 100%;
	border: 1.5px solid var(--line-2); border-radius: var(--radius-lg);
	background: var(--paper);
	transition: border-color .16s var(--ease), background .16s var(--ease), box-shadow .16s var(--ease);
}
.tier:hover .tier__body { border-color: var(--ink-2); }
.tier input:checked + .tier__body {
	border-color: var(--ink); background: #fbfbfc;
	box-shadow: inset 0 0 0 1px var(--ink);
}
.tier input:focus-visible + .tier__body { outline: 2px solid var(--gold); outline-offset: 2px; }

.tier__top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tier__qty { font-size: 13.5px; font-weight: 700; letter-spacing: -.01em; }
.tier__save {
	font-size: 10.5px; font-weight: 800; letter-spacing: .04em;
	color: #fff; background: var(--sale); padding: 2px 6px; border-radius: 2px;
}
.tier__total { font-size: 19px; font-weight: 800; letter-spacing: -.02em; margin-top: 2px; }
.tier__total .amount { font-size: inherit; }
.tier__unit { font-size: 11.5px; color: var(--muted); }
.tier__unit .amount { font-size: inherit; }
.tier__badge {
	margin-top: 6px; align-self: flex-start;
	font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
	color: var(--gold); background: var(--gold-soft); padding: 3px 7px; border-radius: var(--radius-pill);
}
.tier__note { margin-top: 6px; font-size: 11px; color: var(--muted); }

.tier.is-out { cursor: not-allowed; }
.tier.is-out .tier__body { opacity: .48; background: var(--bg); }
.tier.is-out input { cursor: not-allowed; }

.pdp-buy--tiers { display: block; margin-bottom: 10px; }
.minicart__pack { font-weight: 600; color: var(--ink-2); }
