/* =========================================================
   Premium Bedding Home — main stylesheet (mobile-first)
   Rebrand v3.0 · dark tech-editorial · zentry-inspired
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
	/* Brand gold (accent_color in the Customizer) */
	--pbh-gold: #c9a26a;
	--pbh-gold-2: #e0c18d;
	--pbh-accent: var(--pbh-gold);

	/* Dark surfaces */
	--pbh-ink: #0a0a0b;
	--pbh-ink-2: #101114;
	--pbh-ink-3: #16181c;
	--pbh-ink-4: #1d2026;

	/* Text */
	--pbh-ivory: #f4efe6;
	--pbh-ivory-soft: rgba(244, 239, 230, 0.82);
	--pbh-muted: rgba(244, 239, 230, 0.56);
	--pbh-faint: rgba(244, 239, 230, 0.34);

	/* Gold helpers */
	--pbh-gold-soft: rgba(201, 162, 106, 0.14);
	--pbh-gold-line: rgba(201, 162, 106, 0.4);

	/* Status */
	--pbh-green: #25d366;
	--pbh-green-dark: #1eb85a;
	--pbh-danger: #ff6b57;

	/* Lines */
	--pbh-line: rgba(244, 239, 230, 0.12);
	--pbh-line-soft: rgba(244, 239, 230, 0.07);

	/* Radius */
	--pbh-radius: 16px;
	--pbh-radius-sm: 10px;
	--pbh-radius-lg: 26px;
	--pbh-radius-pill: 999px;

	/* Shadows */
	--pbh-shadow-xs: 0 2px 10px rgba(0, 0, 0, 0.35);
	--pbh-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
	--pbh-shadow-lg: 0 26px 60px rgba(0, 0, 0, 0.5);
	--pbh-shadow-gold: 0 12px 34px rgba(201, 162, 106, 0.18);

	/* Type */
	--pbh-font-head: 'Syne', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
	--pbh-font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	--pbh-font-serif: 'Cormorant Garamond', Georgia, serif;

	/* Motion */
	--pbh-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--pbh-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
	--pbh-speed: 0.25s;
	--pbh-speed-slow: 0.45s;
	--pbh-marquee-duration: 26s;
}

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

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

body {
	margin: 0;
	font-family: var(--pbh-font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--pbh-ivory-soft);
	background-color: var(--pbh-ink);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

::selection { background: var(--pbh-gold); color: var(--pbh-ink); }

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

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

a { color: var(--pbh-gold); text-decoration: none; transition: color var(--pbh-speed) ease; }
a:hover { color: var(--pbh-ivory); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--pbh-font-head);
	color: var(--pbh-ivory);
	line-height: 1.08;
	margin: 0 0 0.5em;
	font-weight: 700;
	letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px; width: 1px; overflow: hidden;
}
.screen-reader-text:focus {
	clip: auto !important; height: auto; width: auto;
	left: 8px; top: 8px; z-index: 100000; padding: 12px;
	background: var(--pbh-ink-2); color: var(--pbh-ivory);
}

/* ---------- Layout ---------- */
.container {
	width: 100%;
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: 20px;
}
.container--narrow { max-width: 880px; }

/* ---------- Buttons ---------- */
.pbh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55em;
	padding: 0.95em 1.7em;
	border-radius: var(--pbh-radius-pill);
	border: 1px solid transparent;
	font-family: var(--pbh-font-body);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.2;
	cursor: pointer;
	transition: transform var(--pbh-speed) var(--pbh-ease), box-shadow var(--pbh-speed) ease, background-color var(--pbh-speed) ease, color var(--pbh-speed) ease, border-color var(--pbh-speed) ease;
	position: relative;
	overflow: hidden;
}
.pbh-btn:active { transform: translateY(1px) scale(0.99); }

.pbh-btn--primary { background: var(--pbh-ivory); color: var(--pbh-ink); }
.pbh-btn--primary:hover { background: #fff; color: var(--pbh-ink); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45); }

.pbh-btn--accent {
	background: linear-gradient(135deg, var(--pbh-gold-2), var(--pbh-gold));
	color: var(--pbh-ink);
}
.pbh-btn--accent::after {
	content: "";
	position: absolute;
	top: 0; left: 0; bottom: 0;
	width: 46%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
	transform: translateX(-140%) skewX(-20deg);
	transition: transform 0.7s var(--pbh-ease);
	pointer-events: none;
}
.pbh-btn--accent:hover { transform: translateY(-2px); box-shadow: var(--pbh-shadow-gold); color: var(--pbh-ink); }
.pbh-btn--accent:hover::after { transform: translateX(320%) skewX(-20deg); }

.pbh-btn--outline { background: transparent; color: var(--pbh-ivory); border-color: var(--pbh-line); }
.pbh-btn--outline:hover { border-color: var(--pbh-gold-line); color: var(--pbh-gold); transform: translateY(-2px); }

.pbh-btn--outline-light { background: transparent; color: var(--pbh-ivory); border-color: var(--pbh-line); }
.pbh-btn--outline-light:hover { border-color: var(--pbh-gold-line); color: var(--pbh-gold); }

.pbh-btn--whatsapp {
	background: linear-gradient(135deg, #2ae06f, var(--pbh-green-dark));
	color: #06260f;
}
.pbh-btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3); color: #06260f; }

.pbh-btn--lg { padding: 1.15em 2.1em; font-size: 1.02rem; }
.pbh-btn--sm { padding: 0.72em 1.3em; font-size: 0.86rem; }
.pbh-btn--block { width: 100%; }

.pbh-btn .pbh-wa-icon { width: 20px; height: 20px; flex: 0 0 auto; }
.pbh-btn-arrow { width: 17px; height: 17px; flex: 0 0 auto; transition: transform var(--pbh-speed) var(--pbh-ease); }
.pbh-btn:hover .pbh-btn-arrow { transform: translateX(4px); }

/* ---------- Marquee (shared) ---------- */
.pbh-marquee {
	overflow: hidden;
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
}
.pbh-marquee__track {
	display: flex;
	align-items: center;
	width: max-content;
	will-change: transform;
	animation: pbh-marquee var(--pbh-marquee-duration) linear infinite;
}
.pbh-marquee__group {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	padding-right: 2px;
}
.pbh-marquee__item {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}
.pbh-marquee__item::after {
	content: "✦";
	margin: 0 1.6rem;
	color: var(--pbh-gold);
	opacity: 0.75;
	font-size: 0.72em;
}
.pbh-marquee__group:last-child .pbh-marquee__item:last-child::after { content: ""; }
@keyframes pbh-marquee { to { transform: translateX(-50%); } }

/* ---------- Announcement ---------- */
.pbh-announcement {
	background: var(--pbh-ink-2);
	border-bottom: 1px solid var(--pbh-line);
	overflow: hidden;
	position: relative;
	z-index: 60;
}
.pbh-announcement .pbh-marquee__item {
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--pbh-muted);
	padding: 0.55rem 0;
}
.pbh-announcement .pbh-marquee__item strong { color: var(--pbh-gold-2); font-weight: 600; }
.pbh-announcement-dot {
	display: inline-block;
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--pbh-green);
	margin-right: 0.6em;
	box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	animation: pbh-dot-pulse 2.2s infinite;
	vertical-align: middle;
}
@keyframes pbh-dot-pulse {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
	70% { box-shadow: 0 0 0 7px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Header ---------- */
.pbh-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(10, 10, 11, 0.72);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--pbh-line);
	transition: box-shadow var(--pbh-speed) ease, background-color var(--pbh-speed) ease;
}
.pbh-header.is-stuck { background: rgba(10, 10, 11, 0.9); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }
.pbh-header-inner {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-height: 74px;
}
.pbh-site-branding { display: flex; align-items: center; margin-inline-end: auto; }
.pbh-logo { display: inline-flex; align-items: center; gap: 0.7rem; }
.pbh-logo-icon { width: 42px; height: 42px; border-radius: 12px; }
.pbh-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.pbh-logo-name {
	font-family: var(--pbh-font-head);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--pbh-ivory);
	letter-spacing: 0.01em;
}
.pbh-logo-tag { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--pbh-gold); }
.pbh-logo:hover .pbh-logo-name { color: var(--pbh-gold-2); }
.pbh-logo:hover .pbh-logo-icon { box-shadow: var(--pbh-shadow-gold); }

/* Nav (desktop) */
.pbh-nav { display: none; }
.pbh-menu {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: pbh-nav;
}
.pbh-menu .menu-item { counter-increment: pbh-nav; position: relative; }
.pbh-menu .menu-item > a {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	padding: 0.5rem 0.85rem;
	color: var(--pbh-ivory-soft);
	font-size: 0.92rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	border-radius: var(--pbh-radius-pill);
	transition: color var(--pbh-speed) ease, background-color var(--pbh-speed) ease;
}
.pbh-menu .menu-item > a::before {
	content: "0" counter(pbh-nav);
	font-size: 0.66rem;
	font-weight: 600;
	color: var(--pbh-gold);
	opacity: 0.85;
	letter-spacing: 0.05em;
}
.pbh-menu .menu-item > a:hover { color: var(--pbh-gold-2); background: var(--pbh-gold-soft); }
.pbh-menu .menu-item.current-menu-item > a { color: var(--pbh-gold); }
.pbh-menu .menu-item.current-menu-item > a::after {
	content: "";
	position: absolute;
	left: 0.85rem; right: 0.85rem; bottom: 0.3rem;
	height: 1px;
	background: var(--pbh-gold);
	opacity: 0.6;
}

/* Nav drawer (mobile) */
.pbh-nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px; height: 46px;
	padding: 12px;
	background: transparent;
	border: 1px solid var(--pbh-line);
	border-radius: 12px;
	cursor: pointer;
}
.pbh-nav-toggle-bar {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--pbh-ivory);
	border-radius: 2px;
	transition: transform var(--pbh-speed) ease, opacity var(--pbh-speed) ease;
}
.pbh-nav-toggle.is-open .pbh-nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pbh-nav-toggle.is-open .pbh-nav-toggle-bar:nth-child(2) { opacity: 0; }
.pbh-nav-toggle.is-open .pbh-nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.pbh-nav-wa { display: none; }

.pbh-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.pbh-header-cart {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.55rem 0.95rem;
	border: 1px solid var(--pbh-line);
	border-radius: var(--pbh-radius-pill);
	color: var(--pbh-ivory-soft);
	transition: border-color var(--pbh-speed) ease, background-color var(--pbh-speed) ease, color var(--pbh-speed) ease;
}
.pbh-header-cart svg { width: 20px; height: 20px; }
.pbh-header-cart:hover { border-color: var(--pbh-gold-line); color: var(--pbh-gold); background: var(--pbh-gold-soft); }
.pbh-cart-count {
	min-width: 21px; height: 21px;
	display: inline-flex; align-items: center; justify-content: center;
	padding: 0 6px;
	background: var(--pbh-gold);
	color: var(--pbh-ink);
	font-size: 0.72rem;
	font-weight: 700;
	border-radius: var(--pbh-radius-pill);
}
.pbh-cart-total { font-size: 0.86rem; font-weight: 500; white-space: nowrap; }
.pbh-cart-count.pbh-bump { animation: pbh-bump 0.5s var(--pbh-ease-spring); }
@keyframes pbh-bump {
	0% { transform: scale(1); }
	50% { transform: scale(1.45); }
	100% { transform: scale(1); }
}

@media (min-width: 980px) {
	.pbh-nav-toggle { display: none; }
	.pbh-nav { display: flex; align-items: center; gap: 0.6rem; }
	.pbh-nav-wa { display: flex; }
	.pbh-logo-icon { width: 46px; height: 46px; }
}

/* Mobile drawer */
@media (max-width: 979.98px) {
	.pbh-nav {
		position: fixed;
		inset: 74px 0 auto 0;
		display: block;
		background: var(--pbh-ink);
		border-bottom: 1px solid var(--pbh-line);
		padding: 0.6rem 20px 1.2rem;
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: transform var(--pbh-speed) ease, opacity var(--pbh-speed) ease, visibility var(--pbh-speed) ease;
		max-height: calc(100vh - 74px);
		overflow-y: auto;
	}
	.pbh-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
	.pbh-menu { flex-direction: column; align-items: stretch; gap: 0.15rem; }
	.pbh-menu .menu-item > a { padding: 0.8rem 0.6rem; border-radius: 10px; font-size: 1.05rem; }
	.pbh-menu .menu-item.current-menu-item > a::after { display: none; }
	.pbh-nav-wa { display: block; margin-top: 0.8rem; }
	.pbh-nav-wa .pbh-btn { width: 100%; }
	.pbh-cart-total { display: none; }
}

/* ---------- Hero ---------- */
.pbh-hero {
	position: relative;
	background: radial-gradient(120% 90% at 78% 8%, rgba(201, 162, 106, 0.14), transparent 55%),
		radial-gradient(90% 70% at 12% 90%, rgba(244, 239, 230, 0.05), transparent 60%),
		var(--pbh-ink);
	overflow: hidden;
}
.pbh-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
	opacity: 0.05;
	pointer-events: none;
}
.pbh-hero-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
	padding-top: 4rem;
	padding-bottom: 4rem;
	position: relative;
	z-index: 1;
}
.pbh-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	margin: 0 0 1.1rem;
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--pbh-gold);
}
.pbh-eyebrow-index {
	font-family: var(--pbh-font-head);
	font-size: 0.7rem;
	font-weight: 800;
	color: var(--pbh-gold);
	border: 1px solid var(--pbh-gold-line);
	border-radius: var(--pbh-radius-pill);
	padding: 0.18em 0.7em;
	letter-spacing: 0.08em;
}
.pbh-hero-title {
	font-size: clamp(2.5rem, 7.6vw, 5.6rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.02em;
	margin: 0 0 1.1rem;
	max-width: 13ch;
}
.pbh-hero-em {
	font-family: var(--pbh-font-serif);
	font-style: italic;
	font-weight: 500;
	color: var(--pbh-gold-2);
	letter-spacing: 0;
}
.pbh-hero-sub {
	font-size: 1.08rem;
	color: var(--pbh-muted);
	max-width: 46ch;
	margin: 0 0 1.7rem;
}
.pbh-hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 0 0 1.8rem; }
.pbh-hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }
.pbh-hero-badges > span {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-size: 0.88rem;
	color: var(--pbh-ivory-soft);
}
.pbh-hero-badges svg { width: 17px; height: 17px; color: var(--pbh-gold); flex: 0 0 auto; }

.pbh-hero-visual { position: relative; display: flex; justify-content: center; }
.pbh-hero-visual-svg { width: 100%; max-width: 560px; height: auto; filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5)); }
.pbh-hero-chip {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.6em 1.1em;
	background: rgba(22, 24, 28, 0.82);
	border: 1px solid var(--pbh-line);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: var(--pbh-radius-pill);
	font-size: 0.84rem;
	font-weight: 500;
	color: var(--pbh-ivory);
	box-shadow: var(--pbh-shadow);
	z-index: 2;
}
.pbh-hero-chip svg { width: 16px; height: 16px; color: var(--pbh-gold); }
.pbh-hero-chip--top { top: 4%; left: 0; }
.pbh-hero-chip--bottom { bottom: 6%; right: 0; }

/* Hero marquee strip */
.pbh-hero-strip {
	margin-top: 1rem;
	border-top: 1px solid var(--pbh-line);
	border-bottom: 1px solid var(--pbh-line);
	background: var(--pbh-ink-2);
	padding: 0.85rem 0;
}
.pbh-hero-strip .pbh-marquee__item {
	font-family: var(--pbh-font-head);
	font-weight: 700;
	font-size: clamp(0.9rem, 2.4vw, 1.3rem);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--pbh-ivory);
}
.pbh-hero-strip .pbh-marquee__item strong { color: var(--pbh-gold-2); font-weight: 800; }

@media (min-width: 980px) {
	.pbh-hero-inner { grid-template-columns: 1.02fr 0.98fr; gap: 3rem; padding-top: 5rem; padding-bottom: 5.5rem; }
	.pbh-hero-chip--top { top: 6%; left: -4%; }
	.pbh-hero-chip--bottom { bottom: 8%; right: -4%; }
}

/* ---------- Trust (numbered row) ---------- */
.pbh-trust { background: var(--pbh-ink); padding: 2.6rem 0; }
.pbh-trust-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.4rem;
	counter-reset: pbh-trust;
}
.pbh-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	counter-increment: pbh-trust;
}
.pbh-trust-item::before {
	content: "0" counter(pbh-trust);
	font-family: var(--pbh-font-head);
	font-weight: 800;
	font-size: 0.85rem;
	color: var(--pbh-gold);
	opacity: 0.7;
	padding-top: 0.25em;
	letter-spacing: 0.06em;
}
.pbh-trust-icon {
	width: 46px; height: 46px;
	flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 14px;
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	color: var(--pbh-gold);
}
.pbh-trust-icon svg { width: 21px; height: 21px; }
.pbh-trust-item strong { display: block; color: var(--pbh-ivory); font-size: 0.98rem; font-weight: 600; }
.pbh-trust-item span:not(.pbh-trust-icon) { display: block; font-size: 0.84rem; color: var(--pbh-muted); }
@media (min-width: 720px) { .pbh-trust-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

/* ---------- Section headings ---------- */
.pbh-section-head { margin-bottom: 2.4rem; }
.pbh-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 0.7rem;
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--pbh-gold);
}
.pbh-section-eyebrow::before {
	content: "";
	width: 26px; height: 1px;
	background: var(--pbh-gold-line);
}
.pbh-section-eyebrow .pbh-eyebrow-index { padding: 0.2em 0.75em; }
.pbh-section-title {
	font-size: clamp(1.9rem, 4.6vw, 3.3rem);
	font-weight: 800;
	letter-spacing: -0.015em;
	margin: 0 0 0.55rem;
}
.pbh-section-title em {
	font-family: var(--pbh-font-serif);
	font-style: italic;
	font-weight: 500;
	color: var(--pbh-gold-2);
}
.pbh-section-sub { color: var(--pbh-muted); font-size: 1rem; max-width: 52ch; margin: 0; }
.pbh-section-action { margin-top: 2.2rem; text-align: center; }

/* ---------- Section rhythm ---------- */
.pbh-cats, .pbh-sellers, .pbh-crafted, .pbh-sizeguide, .pbh-why,
.pbh-testimonials, .pbh-insta, .pbh-blog { padding: 4.2rem 0; }
.pbh-sellers, .pbh-why, .pbh-insta { background: var(--pbh-ink-2); }
.pbh-testimonials { background: var(--pbh-ink); }
.pbh-blog { background: var(--pbh-ink-2); }
@media (min-width: 900px) {
	.pbh-cats, .pbh-sellers, .pbh-crafted, .pbh-sizeguide, .pbh-why,
	.pbh-testimonials, .pbh-insta, .pbh-blog { padding: 5.5rem 0; }
}

/* ---------- Categories ---------- */
.pbh-cats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.9rem;
}
.pbh-cat-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 1.4rem;
	border-radius: var(--pbh-radius);
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	overflow: hidden;
	transition: transform var(--pbh-speed) var(--pbh-ease), border-color var(--pbh-speed) ease, box-shadow var(--pbh-speed) ease;
}
.pbh-cat-tile::after {
	content: "";
	position: absolute;
	inset: -40%;
	background: radial-gradient(circle at center, var(--pbh-gold-soft), transparent 60%);
	clip-path: circle(0 at 50% 110%);
	transition: clip-path 0.7s var(--pbh-ease);
	pointer-events: none;
}
.pbh-cat-tile::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: linear-gradient(135deg, rgba(201, 162, 106, 0.1), transparent 45%);
	opacity: 0;
	transition: opacity var(--pbh-speed) ease;
	pointer-events: none;
}
.pbh-cat-tile:hover { transform: translateY(-4px); border-color: var(--pbh-gold-line); box-shadow: var(--pbh-shadow); }
.pbh-cat-tile:hover::after { clip-path: circle(120% at 50% 110%); }
.pbh-cat-tile:hover::before { opacity: 1; }
.pbh-cat-index {
	font-family: var(--pbh-font-head);
	font-weight: 800;
	font-size: 0.78rem;
	color: var(--pbh-gold);
	opacity: 0.65;
	letter-spacing: 0.08em;
}
.pbh-cat-icon {
	width: 42px; height: 42px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 12px;
	background: var(--pbh-gold-soft);
	color: var(--pbh-gold);
	margin: 0.4rem 0 0.2rem;
	transition: background-color var(--pbh-speed) ease, color var(--pbh-speed) ease;
}
.pbh-cat-icon svg { width: 20px; height: 20px; }
.pbh-cat-tile:hover .pbh-cat-icon { background: var(--pbh-gold); color: var(--pbh-ink); }
.pbh-cat-name { font-family: var(--pbh-font-head); font-weight: 700; font-size: 1.02rem; color: var(--pbh-ivory); }
.pbh-cat-count { font-size: 0.8rem; color: var(--pbh-muted); }
.pbh-cat-arrow {
	position: absolute;
	top: 1.2rem; right: 1.2rem;
	width: 30px; height: 30px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--pbh-line);
	color: var(--pbh-ivory);
	opacity: 0;
	transform: translate(-6px, 6px);
	transition: opacity var(--pbh-speed) ease, transform var(--pbh-speed) var(--pbh-ease), background-color var(--pbh-speed) ease;
}
.pbh-cat-arrow svg { width: 15px; height: 15px; }
.pbh-cat-tile:hover .pbh-cat-arrow { opacity: 1; transform: translate(0, 0); background: var(--pbh-gold); color: var(--pbh-ink); border-color: var(--pbh-gold); }
@media (min-width: 720px) { .pbh-cats-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1200px) { .pbh-cats-grid { grid-template-columns: repeat(6, 1fr); } .pbh-cat-tile { padding: 1.5rem 1.15rem; } }

/* ---------- Products ---------- */
ul.products {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.9rem;
}
ul.products::before, ul.products::after { display: none; }
.pbh-product {
	position: relative;
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	border-radius: var(--pbh-radius);
	overflow: hidden;
	transition: transform var(--pbh-speed) var(--pbh-ease), border-color var(--pbh-speed) ease, box-shadow var(--pbh-speed) ease;
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}
.pbh-product:hover { transform: translateY(-6px); border-color: var(--pbh-gold-line); box-shadow: var(--pbh-shadow-gold); }
.pbh-product-link { display: flex; flex-direction: column; height: 100%; }
.pbh-product-media {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--pbh-ink-2);
}
.pbh-product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--pbh-ease); }
.pbh-product:hover .pbh-product-img { transform: scale(1.06); }
.pbh-product-img--placeholder {
	display: flex; align-items: center; justify-content: center;
	background: radial-gradient(80% 80% at 50% 30%, var(--pbh-ink-4), var(--pbh-ink-2));
}
.pbh-product-img--placeholder img { width: 72px; height: 72px; opacity: 0.85; }

.pbh-badge {
	position: absolute;
	top: 12px; left: 12px;
	z-index: 3;
	display: inline-block;
	padding: 0.34em 0.8em;
	border-radius: var(--pbh-radius-pill);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.pbh-badge--sale { background: linear-gradient(135deg, var(--pbh-gold-2), var(--pbh-gold)); color: var(--pbh-ink); }
.pbh-badge--new { background: var(--pbh-ivory); color: var(--pbh-ink); }
.pbh-badge--soldout { background: rgba(10, 10, 11, 0.85); color: var(--pbh-ivory); border: 1px solid var(--pbh-line); }

.pbh-product-body { padding: 1.05rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; }
.pbh-product-cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pbh-gold); }
.pbh-product-title { font-family: var(--pbh-font-body); font-size: 0.98rem; font-weight: 600; line-height: 1.35; color: var(--pbh-ivory); margin: 0; }
.pbh-product-sizes { font-size: 0.78rem; color: var(--pbh-muted); }
.pbh-product-price { margin-top: auto; padding-top: 0.4rem; }
.pbh-product-price del { color: var(--pbh-faint); margin-right: 0.55em; font-size: 0.9em; }
.pbh-product-price ins { text-decoration: none; }
.pbh-product-price .amount {
	font-family: var(--pbh-font-head);
	font-weight: 700;
	font-size: 1.18rem;
	color: var(--pbh-gold-2);
}
.pbh-product-actions { margin-top: 0.7rem; }
.pbh-product-actions .pbh-btn { width: 100%; }

.pbh-product-wa {
	position: absolute;
	top: 12px; right: 12px;
	z-index: 3;
	width: 40px; height: 40px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--pbh-green);
	border-radius: 50%;
	color: #06260f;
	box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
	transition: transform var(--pbh-speed) var(--pbh-ease), box-shadow var(--pbh-speed) ease;
}
.pbh-product-wa .pbh-wa-icon { width: 20px; height: 20px; }
.pbh-product-wa:hover { transform: scale(1.12); color: #06260f; box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5); }

@media (min-width: 720px) { ul.products { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1200px) { ul.products { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Crafted / editorial ---------- */
.pbh-crafted-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.pbh-crafted-media { position: relative; }
.pbh-crafted-media svg { width: 100%; height: auto; }
.pbh-crafted-media .pbh-hero-visual-svg {
	width: 100%;
	max-width: 620px;
	border-radius: var(--pbh-radius-lg);
	border: 1px solid var(--pbh-line);
	box-shadow: var(--pbh-shadow-lg);
}
.pbh-crafted-badge {
	position: absolute;
	top: -14px; left: 18px;
	z-index: 2;
	display: inline-block;
	padding: 0.5em 1.2em;
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-gold-line);
	border-radius: var(--pbh-radius-pill);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--pbh-gold-2);
	box-shadow: var(--pbh-shadow);
}
.pbh-crafted-ghost {
	position: absolute;
	inset: auto 0 auto 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	font-family: var(--pbh-font-head);
	font-weight: 800;
	font-size: clamp(3.4rem, 11vw, 8rem);
	letter-spacing: 0.02em;
	color: transparent;
	-webkit-text-stroke: 1px var(--pbh-line);
	pointer-events: none;
	user-select: none;
	z-index: 0;
}
.pbh-crafted-list { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: 1.1rem; }
.pbh-crafted-item { display: flex; gap: 0.95rem; align-items: flex-start; }
.pbh-crafted-check {
	width: 34px; height: 34px;
	flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 10px;
	background: var(--pbh-gold-soft);
	color: var(--pbh-gold);
}
.pbh-crafted-check svg { width: 17px; height: 17px; }
.pbh-crafted-item strong { display: block; color: var(--pbh-ivory); font-size: 1.02rem; margin-bottom: 0.15rem; }
.pbh-crafted-item p { margin: 0; color: var(--pbh-muted); font-size: 0.92rem; }
@media (min-width: 980px) { .pbh-crafted-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }

/* ---------- Size guide ---------- */
.pbh-sizeguide-inner {
	position: relative;
	border-radius: var(--pbh-radius-lg);
	background: radial-gradient(90% 120% at 85% 0%, var(--pbh-gold-soft), transparent 55%), var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	overflow: hidden;
	padding: 2.4rem 1.6rem;
}
.pbh-sizeguide-content { max-width: 640px; }
.pbh-sizeguide-title { font-size: clamp(1.6rem, 4vw, 2.6rem); margin: 0 0 0.5rem; }
.pbh-sizeguide-sub { color: var(--pbh-muted); margin: 0 0 1.5rem; }
.pbh-size-pills { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.6rem; }
.pbh-size-pill {
	display: inline-flex;
	flex-direction: column;
	gap: 0.1rem;
	padding: 0.75em 1.25em;
	background: var(--pbh-ink-2);
	border: 1px solid var(--pbh-line);
	border-radius: var(--pbh-radius-sm);
	transition: border-color var(--pbh-speed) ease, transform var(--pbh-speed) ease;
}
.pbh-size-pill strong { font-family: var(--pbh-font-head); font-size: 1rem; color: var(--pbh-ivory); }
.pbh-size-pill span { font-size: 0.76rem; color: var(--pbh-muted); }
.pbh-size-pill:hover { border-color: var(--pbh-gold-line); transform: translateY(-2px); }

/* ---------- Why choose us ---------- */
.pbh-why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.9rem;
	counter-reset: pbh-why;
}
.pbh-why-card {
	position: relative;
	counter-increment: pbh-why;
	padding: 1.6rem 1.4rem;
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	border-radius: var(--pbh-radius);
	transition: transform var(--pbh-speed) var(--pbh-ease), border-color var(--pbh-speed) ease;
}
.pbh-why-card::before {
	content: "0" counter(pbh-why);
	position: absolute;
	top: 1.2rem; right: 1.3rem;
	font-family: var(--pbh-font-head);
	font-weight: 800;
	font-size: 1.6rem;
	color: transparent;
	-webkit-text-stroke: 1px var(--pbh-line);
}
.pbh-why-card:hover { transform: translateY(-4px); border-color: var(--pbh-gold-line); }
.pbh-why-icon {
	width: 44px; height: 44px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 13px;
	background: var(--pbh-gold-soft);
	color: var(--pbh-gold);
	margin-bottom: 0.9rem;
}
.pbh-why-icon svg { width: 21px; height: 21px; }
.pbh-why-card h3 { font-size: 1.1rem; margin: 0 0 0.3rem; }
.pbh-why-card p { margin: 0; color: var(--pbh-muted); font-size: 0.9rem; }
@media (min-width: 900px) { .pbh-why-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

/* ---------- Testimonials ---------- */
.pbh-testi-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.pbh-testi-card {
	position: relative;
	margin: 0;
	padding: 1.8rem 1.6rem 1.5rem;
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	border-radius: var(--pbh-radius);
}
.pbh-testi-quote {
	position: absolute;
	top: 1.2rem; right: 1.4rem;
	width: 30px; height: 30px;
	color: var(--pbh-gold);
	opacity: 0.35;
}
.pbh-testi-quote svg { width: 30px; height: 30px; }
.pbh-stars { display: inline-flex; gap: 2px; margin-bottom: 0.7rem; }
.pbh-stars svg { width: 15px; height: 15px; color: var(--pbh-gold); }
.pbh-testi-card blockquote { margin: 0 0 1rem; color: var(--pbh-ivory-soft); font-size: 0.98rem; font-weight: 400; line-height: 1.6; }
.pbh-testi-card figcaption { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; font-weight: 500; color: var(--pbh-ivory); }
.pbh-testi-avatar {
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: var(--pbh-gold-soft);
	border: 1px solid var(--pbh-gold-line);
	color: var(--pbh-gold);
	font-family: var(--pbh-font-head);
	font-weight: 700;
	font-size: 0.95rem;
}
@media (min-width: 900px) { .pbh-testi-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; } }

/* ---------- Instagram marquee ---------- */
.pbh-insta .pbh-section-head { text-align: center; }
.pbh-insta .pbh-section-eyebrow::before { display: none; }
.pbh-insta-grid { display: block; }
.pbh-insta-tiles { --pbh-marquee-duration: 34s; padding: 0.4rem 0; }
.pbh-insta-tile {
	width: 168px;
	aspect-ratio: 1;
	margin-right: 0.9rem;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--pbh-radius);
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	color: var(--pbh-muted);
	transition: border-color var(--pbh-speed) ease, color var(--pbh-speed) ease, background-color var(--pbh-speed) ease;
}
.pbh-insta-tile:hover { border-color: var(--pbh-gold-line); color: var(--pbh-gold); background: var(--pbh-ink-4); }
.pbh-insta-icon svg { width: 26px; height: 26px; }
.pbh-insta-handle { font-size: 0.74rem; letter-spacing: 0.06em; color: var(--pbh-muted); }
.pbh-insta-tiles .pbh-marquee__item { padding: 0; }
.pbh-insta-tiles .pbh-marquee__item::after { content: none; }

/* ---------- Blog ---------- */
.pbh-blog-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.pbh-blog-card {
	overflow: hidden;
	border-radius: var(--pbh-radius);
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	transition: transform var(--pbh-speed) var(--pbh-ease), border-color var(--pbh-speed) ease;
}
.pbh-blog-card:hover { transform: translateY(-4px); border-color: var(--pbh-gold-line); }
.pbh-blog-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--pbh-ink-2); }
.pbh-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--pbh-ease); }
.pbh-blog-card:hover .pbh-blog-thumb img { transform: scale(1.05); }
.pbh-blog-body { padding: 1.2rem 1.3rem 1.4rem; }
.pbh-blog-date { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pbh-gold); }
.pbh-blog-title { font-size: 1.08rem; margin: 0.3rem 0 0; line-height: 1.35; }
.pbh-blog-title a { color: var(--pbh-ivory); }
.pbh-blog-title a:hover { color: var(--pbh-gold); }
@media (min-width: 900px) { .pbh-blog-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; } }

/* ---------- Footer ---------- */
.pbh-footer { background: var(--pbh-ink-2); border-top: 1px solid var(--pbh-line); }
.pbh-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.2rem;
	padding: 3.4rem 20px 2.4rem;
}
.pbh-footer-brand { margin-bottom: 1rem; }
.pbh-footer-brand img { max-width: 240px; height: auto; }
.pbh-footer-about p { color: var(--pbh-muted); font-size: 0.92rem; max-width: 40ch; }
.pbh-socials { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.pbh-socials a {
	width: 42px; height: 42px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 12px;
	border: 1px solid var(--pbh-line);
	color: var(--pbh-muted);
	transition: border-color var(--pbh-speed) ease, color var(--pbh-speed) ease, transform var(--pbh-speed) ease, background-color var(--pbh-speed) ease;
}
.pbh-socials a svg { width: 18px; height: 18px; }
.pbh-socials a:hover { border-color: var(--pbh-gold-line); color: var(--pbh-gold); transform: translateY(-3px); background: var(--pbh-gold-soft); }
.pbh-socials a span { position: absolute; clip: rect(1px, 1px, 1px, 1px); }

.pbh-footer-col h4.widget-title {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--pbh-gold);
	margin-bottom: 1rem;
}
.pbh-footer-menu, .pbh-footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.pbh-footer-menu a { display: inline-flex; align-items: center; gap: 0.5em; color: var(--pbh-muted); font-size: 0.94rem; transition: color var(--pbh-speed) ease, transform var(--pbh-speed) ease; }
.pbh-footer-menu a::before { content: "→"; color: var(--pbh-gold); opacity: 0; margin-left: -1.2em; transition: opacity var(--pbh-speed) ease; }
.pbh-footer-menu a:hover { color: var(--pbh-gold); transform: translateX(6px); }
.pbh-footer-menu a:hover::before { opacity: 1; }
.pbh-footer-contact li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--pbh-muted); font-size: 0.92rem; }
.pbh-footer-contact svg { width: 17px; height: 17px; color: var(--pbh-gold); flex: 0 0 auto; margin-top: 0.25em; }
.pbh-payments { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.pbh-payments span {
	padding: 0.4em 0.85em;
	border: 1px solid var(--pbh-line);
	border-radius: var(--pbh-radius-pill);
	font-size: 0.76rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--pbh-ivory-soft);
	background: var(--pbh-ink-3);
}
.pbh-footer-bottom { border-top: 1px solid var(--pbh-line); padding: 1.2rem 20px; }
.pbh-footer-bottom-inner { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.84rem; color: var(--pbh-faint); }
@media (min-width: 900px) {
	.pbh-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding: 4.5rem 20px 3rem; }
	.pbh-footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

/* ---------- Floating WhatsApp + back-to-top ---------- */
.pbh-wa-float {
	position: fixed;
	right: 18px; bottom: 18px;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	padding: 0.85em 1.15em;
	background: linear-gradient(135deg, #2ae06f, var(--pbh-green-dark));
	color: #06260f;
	border-radius: var(--pbh-radius-pill);
	font-weight: 600;
	font-size: 0.9rem;
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
	transition: transform var(--pbh-speed) var(--pbh-ease);
}
.pbh-wa-float .pbh-wa-icon { width: 20px; height: 20px; }
.pbh-wa-float:hover { transform: translateY(-3px); color: #06260f; }
.pbh-wa-float span { white-space: nowrap; }

.pbh-totop {
	position: fixed;
	right: 18px; bottom: 84px;
	z-index: 90;
	width: 46px; height: 46px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	border-radius: 14px;
	color: var(--pbh-ivory);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity var(--pbh-speed) ease, transform var(--pbh-speed) ease, visibility var(--pbh-speed) ease, border-color var(--pbh-speed) ease;
}
.pbh-totop svg { width: 18px; height: 18px; }
.pbh-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.pbh-totop:hover { border-color: var(--pbh-gold-line); color: var(--pbh-gold); }

/* ---------- Pages / articles ---------- */
.pbh-page { padding: 3.5rem 0; min-height: 60vh; }
.pbh-page .entry-title { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.pbh-page .entry-content { max-width: 760px; }
.pbh-page .entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-meta { color: var(--pbh-muted); font-size: 0.88rem; margin-bottom: 1.5rem; }
.pbh-sidebar { margin-top: 3rem; }
.pbh-sidebar .widget { background: var(--pbh-ink-3); border: 1px solid var(--pbh-line); border-radius: var(--pbh-radius); padding: 1.4rem; margin-bottom: 1.2rem; }
.pbh-sidebar .widget-title { font-size: 1rem; }
.error-404 { padding: 6rem 0; text-align: center; }
.error-404 .page-title { font-size: clamp(2.4rem, 7vw, 4.5rem); }
@media (min-width: 980px) { .pbh-page { padding: 5rem 0; } }

/* ---------- Forms ---------- */
input[type="text"], input[type="email"], input[type="url"], input[type="tel"],
input[type="number"], input[type="password"], input[type="search"], select, textarea {
	width: 100%;
	padding: 0.8em 1em;
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	border-radius: var(--pbh-radius-sm);
	color: var(--pbh-ivory);
	font-family: var(--pbh-font-body);
	font-size: 0.96rem;
	transition: border-color var(--pbh-speed) ease, box-shadow var(--pbh-speed) ease;
}
input::placeholder, textarea::placeholder { color: var(--pbh-faint); }
input:focus, select:focus, textarea:focus {
	outline: none;
	border-color: var(--pbh-gold-line);
	box-shadow: 0 0 0 3px var(--pbh-gold-soft);
}
label { color: var(--pbh-ivory-soft); font-weight: 500; }
.search-form { display: flex; gap: 0.6rem; }
.search-form .search-submit { background: var(--pbh-gold); color: var(--pbh-ink); border: 0; padding: 0 1.4em; border-radius: var(--pbh-radius-pill); font-weight: 600; cursor: pointer; }

/* ---------- WooCommerce general ---------- */
.woocommerce-breadcrumb { color: var(--pbh-muted); font-size: 0.86rem; margin-bottom: 1.4rem; }
.woocommerce-breadcrumb a { color: var(--pbh-gold); }
.woocommerce-result-count, .woocommerce-ordering { color: var(--pbh-muted); font-size: 0.9rem; margin-bottom: 1.4rem; }
.woocommerce-ordering select { width: auto; }
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	border-radius: var(--pbh-radius-sm);
	color: var(--pbh-ivory-soft);
	padding: 0.9em 1.2em;
	margin-bottom: 1.2rem;
}
.woocommerce-message::before { color: var(--pbh-gold) !important; }
.woocommerce .woocommerce-message a, .woocommerce .woocommerce-info a { color: var(--pbh-gold); font-weight: 600; }
nav.woocommerce-pagination { margin: 2.4rem 0; }
nav.woocommerce-pagination ul {
	list-style: none; display: flex; gap: 0.4rem; margin: 0; padding: 0;
	border: 0;
}
nav.woocommerce-pagination ul li { border: 0; }
nav.woocommerce-pagination ul li a, nav.woocommerce-pagination ul li span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 0.6rem;
	border: 1px solid var(--pbh-line);
	border-radius: 10px;
	color: var(--pbh-muted);
	background: var(--pbh-ink-3);
}
nav.woocommerce-pagination ul li span.current { background: var(--pbh-gold); color: var(--pbh-ink); border-color: var(--pbh-gold); }

.pbh-wc-payment-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--pbh-line); }
.pbh-wc-payment-trust span { font-size: 0.82rem; color: var(--pbh-muted); display: inline-flex; align-items: center; gap: 0.4em; }
.pbh-wc-payment-trust span svg { width: 15px; height: 15px; color: var(--pbh-gold); }

.pbh-free-ship {
	display: flex; align-items: center; gap: 0.7rem;
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	border-radius: var(--pbh-radius-sm);
	padding: 0.9em 1.2em;
	margin-bottom: 1.4rem;
	font-size: 0.9rem;
	color: var(--pbh-ivory-soft);
}
.pbh-free-ship--ok { border-color: var(--pbh-gold-line); color: var(--pbh-gold-2); }
.pbh-free-ship-icon svg { width: 18px; height: 18px; color: var(--pbh-gold); }

/* WooCommerce blocks fallback */
.wc-block-components-form .wc-block-components-text-input input,
.wc-block-components-form .wc-block-components-select .wc-block-components-select__input,
.wc-block-components-text-input input,
.wc-block-components-select .wc-block-components-select__input {
	background: var(--pbh-ink-3) !important;
	color: var(--pbh-ivory) !important;
	border: 1px solid var(--pbh-line) !important;
}

/* ---------- WooCommerce single product ---------- */
.single-product .pbh-page { padding-top: 2rem; }
.woocommerce div.product .product_title { font-size: clamp(1.8rem, 4.2vw, 2.8rem); margin-bottom: 0.4rem; }
.woocommerce div.product p.price { font-family: var(--pbh-font-head); font-size: 1.6rem; font-weight: 700; color: var(--pbh-gold-2); margin: 0.6rem 0 1.2rem; }
.woocommerce div.product p.price del { color: var(--pbh-faint); font-size: 0.75em; margin-right: 0.5em; }
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product .woocommerce-product-gallery {
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	border-radius: var(--pbh-radius-lg);
	overflow: hidden;
	margin-bottom: 2rem;
}
.woocommerce div.product .quantity .qty {
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	border-radius: var(--pbh-radius-pill);
	padding: 0.7em 1em;
	width: 84px;
	color: var(--pbh-ivory);
}
.woocommerce div.product form.cart { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 0 0 1.2rem; }
.woocommerce div.product form.cart .single_add_to_cart_button {
	background: linear-gradient(135deg, var(--pbh-gold-2), var(--pbh-gold));
	color: var(--pbh-ink);
	font-weight: 600;
	border: 0;
	border-radius: var(--pbh-radius-pill);
	padding: 1em 2.2em;
	cursor: pointer;
	font-size: 1rem;
	transition: transform var(--pbh-speed) ease, box-shadow var(--pbh-speed) ease;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover { transform: translateY(-2px); box-shadow: var(--pbh-shadow-gold); }

.woocommerce div.product .woocommerce-tabs { margin-top: 2.5rem; }
.woocommerce div.product .woocommerce-tabs ul.tabs {
	margin: 0; padding: 0; list-style: none;
	display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: transparent; border: 1px solid var(--pbh-line); border-radius: var(--pbh-radius-pill);
	padding: 0; margin: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a { display: block; padding: 0.55em 1.2em; color: var(--pbh-muted); font-weight: 500; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--pbh-gold-soft); border-color: var(--pbh-gold-line); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--pbh-gold); }
.woocommerce div.product .woocommerce-tabs .panel { padding-top: 1.4rem; color: var(--pbh-ivory-soft); }
.woocommerce div.product .product_meta { color: var(--pbh-muted); font-size: 0.88rem; }
.woocommerce div.product .product_meta a { color: var(--pbh-gold); }
.woocommerce div.product form.cart .variations select { width: auto; min-width: 200px; }
.woocommerce div.product form.cart .variations td { padding-bottom: 0.7rem; }
.woocommerce .star-rating span { color: var(--pbh-gold); }

/* ---------- WooCommerce cart ---------- */
.woocommerce table.shop_table {
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	border-radius: var(--pbh-radius);
	border-collapse: separate;
}
.woocommerce table.shop_table th { color: var(--pbh-gold); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; }
.woocommerce table.shop_table td { color: var(--pbh-ivory-soft); border-top-color: var(--pbh-line-soft); }
.woocommerce table.shop_table .product-quantity .qty {
	background: var(--pbh-ink-2); border: 1px solid var(--pbh-line);
	border-radius: 8px; padding: 0.5em 0.7em; width: 70px; color: var(--pbh-ivory);
}
.woocommerce a.remove { color: var(--pbh-gold) !important; }
.woocommerce .cart_totals h2, .woocommerce .cart-collaterals h2 { font-size: 1.4rem; }
.woocommerce .cart_totals table.shop_table { background: var(--pbh-ink-2); }
.woocommerce a.button.checkout-button,
.woocommerce button.button.alt {
	background: linear-gradient(135deg, var(--pbh-gold-2), var(--pbh-gold));
	color: var(--pbh-ink);
	font-weight: 600;
	border: 0;
	border-radius: var(--pbh-radius-pill);
	padding: 1em 2.2em;
	transition: transform var(--pbh-speed) ease, box-shadow var(--pbh-speed) ease;
}
.woocommerce a.button.checkout-button:hover,
.woocommerce button.button.alt:hover { transform: translateY(-2px); box-shadow: var(--pbh-shadow-gold); color: var(--pbh-ink); }
.woocommerce a.button { background: var(--pbh-ink-4); color: var(--pbh-ivory); border-radius: var(--pbh-radius-pill); }
.woocommerce a.button:hover { color: var(--pbh-gold); }
.woocommerce .coupon { display: flex; gap: 0.6rem; }

/* ---------- WooCommerce checkout ---------- */
.woocommerce form .form-row label { color: var(--pbh-ivory-soft); font-weight: 500; }
.woocommerce form .form-row .required { color: var(--pbh-gold); }
.woocommerce form.checkout .woocommerce-checkout-payment,
#payment {
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-line);
	border-radius: var(--pbh-radius);
}
.woocommerce #payment ul.payment_methods { border-bottom-color: var(--pbh-line-soft); color: var(--pbh-ivory-soft); }
.woocommerce #payment div.payment_box { background: var(--pbh-ink-2); color: var(--pbh-ivory-soft); }
.woocommerce #payment div.payment_box::before { border-bottom-color: var(--pbh-ink-2); }
.woocommerce form.checkout .place-order button {
	background: linear-gradient(135deg, var(--pbh-gold-2), var(--pbh-gold));
	color: var(--pbh-ink); font-weight: 600; border: 0; border-radius: var(--pbh-radius-pill);
	padding: 1em 2.4em; cursor: pointer; transition: transform var(--pbh-speed) ease;
}
.woocommerce form.checkout .place-order button:hover { transform: translateY(-2px); }

/* ---------- WooCommerce my account ---------- */
.woocommerce-MyAccount-navigation ul {
	list-style: none; margin: 0 0 2rem; padding: 0;
	display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.woocommerce-MyAccount-navigation ul li a {
	display: block; padding: 0.55em 1.1em;
	border: 1px solid var(--pbh-line); border-radius: var(--pbh-radius-pill);
	color: var(--pbh-muted);
}
.woocommerce-MyAccount-navigation ul li.is-active a { background: var(--pbh-gold-soft); color: var(--pbh-gold); border-color: var(--pbh-gold-line); }

/* ---------- Toast ---------- */
.pbh-toast {
	position: fixed;
	left: 50%;
	bottom: 22px;
	transform: translate(-50%, 16px);
	z-index: 100;
	display: flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.85em 1.3em;
	background: var(--pbh-ink-3);
	border: 1px solid var(--pbh-gold-line);
	border-radius: var(--pbh-radius-pill);
	color: var(--pbh-ivory);
	font-size: 0.9rem;
	box-shadow: var(--pbh-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--pbh-speed) ease, transform var(--pbh-speed) var(--pbh-ease), visibility var(--pbh-speed) ease;
}
.pbh-toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.pbh-toast svg { width: 17px; height: 17px; color: var(--pbh-gold); }

/* ---------- Video banner ---------- */
.pbh-video-banner {
	position: relative;
	overflow: hidden;
	min-height: 480px;
	display: flex;
	align-items: center;
	background: var(--pbh-ink-2);
}
.pbh-video-media { position: absolute; inset: 0; }
.pbh-video-media video, .pbh-video-media iframe { width: 100%; height: 100%; object-fit: cover; }
.pbh-video-fallback { width: 100%; height: 100%; background: radial-gradient(90% 90% at 70% 20%, var(--pbh-ink-4), var(--pbh-ink)); background-size: cover; background-position: center; }
.pbh-video-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 10, 11, 0.55), rgba(10, 10, 11, 0.82));
}
.pbh-video-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 4rem 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
}
.pbh-video-play {
	width: 64px; height: 64px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: var(--pbh-gold);
	color: var(--pbh-ink);
	margin-bottom: 1rem;
	position: relative;
}
.pbh-video-play svg { width: 22px; height: 22px; margin-left: 3px; }
.pbh-video-play::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid var(--pbh-gold);
	animation: pbh-play-pulse 2.6s infinite;
}
.pbh-video-eyebrow { font-size: 0.76rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--pbh-gold); font-weight: 600; }
.pbh-video-title { font-size: clamp(1.8rem, 4.6vw, 3.2rem); margin: 0.3rem 0; }
.pbh-video-sub { color: var(--pbh-muted); max-width: 46ch; margin: 0 0 1.4rem; }
@keyframes pbh-play-pulse {
	0% { transform: scale(1); opacity: 0.7; }
	70% { transform: scale(1.5); opacity: 0; }
	100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 640px) { .pbh-video-banner { min-height: 400px; } }

/* ---------- Scroll reveal / masked text ---------- */
.pbh-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s var(--pbh-ease);
	transition-delay: var(--pbh-reveal-delay, 0s);
}
.pbh-reveal.is-visible { opacity: 1; transform: none; }

.pbh-mask { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.pbh-w {
	display: inline-block;
	transform: translateY(115%);
	opacity: 0;
	transition: transform 0.85s var(--pbh-ease), opacity 0.85s ease;
	transition-delay: var(--pbh-w-delay, 0s);
	will-change: transform;
}
.pbh-mask.is-visible .pbh-w { transform: translateY(0); opacity: 1; }
.pbh-mask .pbh-w.pbh-w-em { font-family: var(--pbh-font-serif); font-style: italic; color: var(--pbh-gold-2); }

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