/*
 * 333 Pure Camphor — storefront skin (House of Mangalam–style rhythm: promo strip, airy header, dense product grid).
 */

:root {
	--pc-bg: #f2f0e6;
	--pc-surface: #ffffff;
	--pc-ink: #141814;
	--pc-muted: #5c6358;
	--pc-line: #e3e6df;
	--pc-green: #1f4d3a;
	--pc-green-2: #2a6b4f;
	--pc-gold: #c6a04a;
	--pc-red: #c51d3c;
	--pc-yellow: #f7c325;
	--pc-brand: #c51d3c;
	--pc-radius: 14px;
	--pc-radius-sm: 10px;
	--pc-shadow: 0 18px 45px rgba(20, 24, 20, 0.08);
	--pc-max: 1180px;
}

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

body {
	margin: 0;
	font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	color: var(--pc-brand);
	background-color: var(--pc-bg);
	background-image: radial-gradient(ellipse at 50% 20%, #f8f6f0 0%, var(--pc-bg) 52%, #ebe8df 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--pc-brand);
}

a {
	color: var(--pc-brand);
}

a:hover {
	color: var(--pc-yellow);
}

.pc-footer a:hover,
.pc-icon-link:hover,
button.pc-icon-link:hover {
	color: inherit;
}

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

.pc-inner {
	max-width: var(--pc-max);
	margin: 0 auto;
	padding: 0 20px;
}

/* Promo bar */
.pc-promo-bar {
	background: var(--pc-promo-bg, var(--pc-yellow));
	color: var(--pc-promo-text, var(--pc-brand));
	text-align: center;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.pc-promo-inner {
	padding: 10px 20px;
}

.pc-promo-text {
	margin: 0;
}

/* Header */
.pc-header-wrap {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid var(--pc-line);
	overflow: visible;
}

.pc-header {
	position: static;
	z-index: auto;
	background: transparent;
	border: 0;
	overflow: visible;
}

.pc-header-inner {
	padding: 14px 20px 16px;
	overflow: visible;
}

.pc-header-row {
	display: flex;
	align-items: center;
	gap: 16px;
}

.pc-logo {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	text-decoration: none;
	color: var(--pc-ink);
	font-family: "Fraunces", Georgia, serif;
	font-weight: 700;
	font-size: 1.35rem;
}

.pc-logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--pc-yellow);
	color: var(--pc-brand);
	border-radius: 10px;
	padding: 4px 10px;
	font-size: 1rem;
	letter-spacing: 0.04em;
}

.pc-logo-text {
	text-transform: lowercase;
}

.pc-logo--image {
	align-items: center;
	font-size: 0;
	line-height: 0;
}

.pc-logo-img {
	display: block;
	width: auto;
	height: auto;
	max-height: 76px;
	max-width: 270px;
	object-fit: contain;
}

.pc-logo-img--mobile {
	display: none;
}

.pc-nav-toggle {
	display: none;
	flex-shrink: 0;
	margin-left: 0;
	background: #eef1ea;
	border: 0;
	border-radius: 999px;
	padding: 0;
	width: 42px;
	height: 42px;
	cursor: pointer;
	color: var(--pc-ink);
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.pc-nav-toggle-icon {
	display: block;
	flex-shrink: 0;
}

.pc-nav-close {
	display: none;
}

.pc-nav {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pc-nav-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 10000;
}

.pc-nav-backdrop.is-visible {
	display: block;
}

.pc-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	justify-content: center;
	align-items: center;
}

.pc-menu a {
	text-decoration: none;
	color: var(--pc-brand);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 6px 0;
	border-bottom: 2px solid transparent;
}

.pc-menu a:hover,
.pc-menu .current-menu-item > a {
	color: var(--pc-brand);
	border-color: var(--pc-yellow);
}

.pc-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pc-icon-link,
button.pc-icon-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	color: var(--pc-brand);
	background: #eef1ea;
	text-decoration: none;
	border: 0;
	padding: 0;
	font: inherit;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}

.pc-icon-link:hover,
button.pc-icon-link:hover {
	background: #e2e8db;
	transform: translateY(-1px);
}

.pc-search-toggle.is-active {
	background: var(--pc-brand);
	color: #fff;
}

.pc-search-toggle.is-active:hover {
	background: #a81833;
	color: #fff;
}

.pc-cart-count {
	position: absolute;
	top: 4px;
	right: 2px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--pc-gold);
	color: #1a1408;
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	opacity: 0;
	transform: scale(0.85);
	pointer-events: none;
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.pc-cart-count.is-visible {
	opacity: 1;
	transform: scale(1);
}

/* Cart drawer (slides in from right) */
.pc-cart-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 10002;
}

.pc-cart-backdrop.is-visible {
	display: block;
}

.pc-cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: auto;
	width: min(420px, 100vw);
	z-index: 10003;
	background: #fff;
	box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
	transform: translate3d(105%, 0, 0);
	transition: transform 0.24s ease;
	display: flex;
	flex-direction: column;
}

.pc-cart-drawer.is-open {
	transform: translate3d(0, 0, 0);
}

.pc-cart-drawer-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
}

.pc-cart-drawer-head {
	position: relative;
	padding: 24px 24px 18px;
	text-align: center;
}

.pc-cart-drawer-title {
	margin: 0;
	padding: 0 44px;
	font-family: "Fraunces", Georgia, serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--pc-ink);
	text-align: center;
}

.pc-cart-drawer-close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--pc-ink);
	cursor: pointer;
}

.pc-cart-drawer-trust {
	padding: 10px 20px;
	background: var(--pc-brand);
	color: #fff;
	text-align: center;
	font-size: 0.82rem;
	font-weight: 600;
}

.pc-cart-drawer-trust p {
	margin: 0;
}

.pc-cart-drawer-body {
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 8px 24px 12px;
}

.pc-drawer-cart-scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 8px;
}

.pc-drawer-cart-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pc-drawer-cart-item {
	flex: 0 0 auto;
	width: 100%;
}

.pc-drawer-item-card {
	position: relative;
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 14px;
	padding: 14px;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius-sm);
	background: #fff;
}

.pc-drawer-item-remove {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: var(--pc-muted) !important;
	text-decoration: none;
}

.pc-drawer-item-media {
	width: 88px;
	height: 88px;
	border-radius: var(--pc-radius-sm);
	overflow: hidden;
	background: #eef5ef;
	flex-shrink: 0;
}

.pc-drawer-item-media a {
	display: block;
	width: 100%;
	height: 100%;
}

.pc-drawer-item-img,
.pc-drawer-item-media img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

.pc-drawer-item-body {
	min-width: 0;
	padding-right: 24px;
}

.pc-drawer-item-name {
	display: block;
	margin: 0 0 6px;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--pc-ink);
	text-decoration: none;
}

.pc-drawer-item-pack,
.pc-drawer-item-meta {
	margin: 0 0 8px;
	font-size: 0.78rem;
	color: var(--pc-muted);
}

.pc-drawer-item-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.pc-drawer-item-price {
	font-size: 0.95rem;
	font-weight: 800;
	color: var(--pc-brand);
}

.pc-drawer-item-qty {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--pc-muted);
}

.pc-drawer-empty {
	padding: 32px 12px;
	text-align: center;
	color: var(--pc-muted);
}

.pc-drawer-empty-btn {
	display: inline-flex;
	margin-top: 14px;
	padding: 9px 16px;
	border: 1px solid var(--pc-brand);
	border-radius: var(--pc-radius-sm);
	background: #fff;
	color: var(--pc-brand);
	font-size: 0.84rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.pc-drawer-empty-btn:hover {
	background: var(--pc-yellow);
	border-color: var(--pc-yellow);
	color: var(--pc-brand);
}

.pc-drawer-upsells {
	flex: 0 0 auto;
	margin-top: 8px;
	padding: 20px 0 8px;
	border-top: 1px solid var(--pc-line);
	overflow: hidden;
	text-align: center;
}

.pc-drawer-upsells-title {
	margin: 0 0 18px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--pc-ink);
	text-align: center;
}

.pc-drawer-upsells-track {
	display: flex;
	justify-content: center;
	gap: 12px;
	overflow-x: auto;
	padding: 0 4px 12px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.pc-drawer-upsell-card {
	flex: 0 0 148px;
	width: 148px;
	max-width: 148px;
	padding: 10px;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius-sm);
	background: #fff;
	scroll-snap-align: start;
	overflow: hidden;
}

.pc-drawer-upsell-thumb {
	display: block;
	width: 100%;
	height: 108px;
	border-radius: var(--pc-radius-sm);
	overflow: hidden;
	background: #eef5ef;
}

.pc-drawer-upsell-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

.pc-drawer-upsell-name {
	margin: 8px 0 4px;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.3;
}

.pc-drawer-upsell-name a {
	color: var(--pc-ink);
	text-decoration: none;
}

.pc-drawer-upsell-price {
	margin: 0 0 8px;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--pc-brand);
}

.pc-drawer-upsell-price del {
	color: var(--pc-muted);
	font-weight: 500;
}

.pc-drawer-upsell-atc {
	display: block;
	width: 100%;
	padding: 6px 8px;
	border: 1px solid var(--pc-brand);
	border-radius: var(--pc-radius-sm);
	background: #fff;
	color: var(--pc-brand);
	font-size: 0.72rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.pc-drawer-upsell-atc:hover {
	background: var(--pc-yellow);
	border-color: var(--pc-yellow);
	color: var(--pc-brand);
}

.pc-cart-drawer-footer {
	flex-shrink: 0;
	padding: 22px 24px 24px;
	border-top: 1px solid var(--pc-line);
	background: #fff;
	box-shadow: 0 -8px 24px rgba(20, 24, 20, 0.06);
	text-align: center;
}

.pc-cart-drawer-footer:empty {
	display: none;
	padding: 0;
	border: 0;
	box-shadow: none;
}

.pc-drawer-total-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 18px;
	padding-bottom: 4px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--pc-ink);
	text-align: center;
}

.pc-drawer-total-row strong {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--pc-brand);
}

.pc-drawer-checkout {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: auto !important;
	min-width: 168px;
	max-width: 80%;
	min-height: 0;
	margin: 0 auto 12px !important;
	padding: 10px 28px !important;
	border: 1px solid var(--pc-brand) !important;
	border-radius: var(--pc-radius-sm) !important;
	background: #fff !important;
	color: var(--pc-brand) !important;
	font-size: 0.9rem !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pc-drawer-checkout:hover {
	background: var(--pc-yellow) !important;
	border-color: var(--pc-yellow) !important;
	color: var(--pc-brand) !important;
}

.pc-drawer-shipping-note {
	margin: 0 0 14px;
	font-size: 0.78rem;
	text-align: center;
	color: var(--pc-muted);
}

.pc-drawer-view-cart {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--pc-brand);
	font-size: 0.82rem;
	font-weight: 700;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.pc-drawer-view-cart:hover {
	color: var(--pc-brand);
	background: transparent;
	text-decoration: underline;
}

body.pc-cart-open {
	overflow: hidden;
}

.pc-header-search {
	margin-top: 0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.28s ease, opacity 0.22s ease, margin-top 0.28s ease;
}

.pc-header-search.is-open {
	margin-top: 12px;
	max-height: 72px;
	opacity: 1;
}

.pc-header-search .woocommerce-product-search {
	display: flex;
	gap: 8px;
	max-width: 520px;
	margin: 0 auto;
}

.pc-header-search input[type="search"] {
	flex: 1;
	border: 1px solid var(--pc-line);
	border-radius: 999px;
	padding: 10px 16px;
	font: inherit;
	background: #fff;
}

.pc-header-search button[type="submit"] {
	border: 1px solid var(--pc-brand);
	border-radius: var(--pc-radius-sm);
	padding: 10px 18px;
	background: #fff;
	color: var(--pc-brand);
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pc-header-search button[type="submit"]:hover {
	background: var(--pc-yellow);
	border-color: var(--pc-yellow);
	color: var(--pc-brand);
}

/* Hero */
.pc-hero {
	padding: 48px 0 32px;
}

.pc-hero-inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 36px;
	align-items: center;
}

.pc-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--pc-muted);
	margin: 0 0 10px;
}

.pc-hero-title {
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(2rem, 4vw, 2.75rem);
	line-height: 1.15;
	margin: 0 0 14px;
}

.pc-hero-lead {
	margin: 0 0 22px;
	color: var(--pc-muted);
	max-width: 46ch;
}

.pc-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.pc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.pc-btn-primary {
	background: var(--pc-brand);
	color: #fff;
	box-shadow: 0 12px 30px rgba(197, 29, 60, 0.22);
}

.pc-btn-primary:hover {
	background: var(--pc-yellow);
	color: var(--pc-brand);
	transform: translateY(-1px);
}

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

.pc-hero-card {
	background: var(--pc-surface);
	border-radius: var(--pc-radius);
	box-shadow: var(--pc-shadow);
	padding: 22px;
	border: 1px solid var(--pc-line);
}

.pc-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	background: #eaf7ef;
	color: var(--pc-brand);
	font-size: 0.75rem;
	font-weight: 700;
}

.pc-hero-card-title {
	font-family: "Fraunces", Georgia, serif;
	font-size: 1.25rem;
	margin: 12px 0 10px;
}

.pc-hero-list {
	margin: 0;
	padding-left: 18px;
	color: var(--pc-muted);
}

.pc-hero-list li {
	margin-bottom: 6px;
}

/* Sections */
.pc-section {
	padding: 36px 0 52px;
}

.pc-section-alt {
	background: #eef1ea;
}

.pc-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.pc-section-eyebrow {
	margin: 0 0 6px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--pc-muted);
}

.pc-section-title {
	font-family: "Fraunces", Georgia, serif;
	font-size: 1.75rem;
	margin: 0;
}

.pc-text-link {
	color: var(--pc-brand);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.pc-text-link:hover {
	text-decoration: underline;
}

.pc-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.pc-pill {
	padding: 10px 16px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--pc-line);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	color: var(--pc-ink);
	box-shadow: 0 6px 16px rgba(20, 24, 20, 0.04);
}

.pc-pill:hover {
	border-color: var(--pc-gold);
}

/* WooCommerce grid */
.pc-shop-main {
	padding-bottom: 48px;
}

.pc-shop-inner {
	padding-top: 24px;
}

.pc-product-thumb-wrap {
	position: relative;
}

.pc-product-hover {
	display: none;
}

/* Shop / category archive */
.pc-shop-archive {
	padding-bottom: 0;
}

.pc-shop-hero {
	background: #e3edf8;
	padding: clamp(28px, 5vw, 48px) 0;
}

.pc-shop-hero-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: center;
}

.pc-shop-hero-title {
	margin: 0 0 10px;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 700;
	line-height: 1.1;
	color: var(--pc-ink);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.pc-shop-hero-breadcrumbs {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--pc-muted);
}

.pc-shop-hero-breadcrumbs a {
	color: var(--pc-muted);
	text-decoration: none;
}

.pc-shop-hero-breadcrumbs a:hover {
	color: var(--pc-brand);
}

.pc-shop-hero-media {
	width: min(220px, 34vw);
	height: min(220px, 34vw);
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--pc-shadow);
}

.pc-shop-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pc-shop-categories {
	padding: 24px 0 8px;
	background: var(--pc-surface);
}

.pc-shop-categories-carousel {
	position: relative;
}

.pc-shop-cat-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding: 8px 44px 16px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.pc-shop-cat-track::-webkit-scrollbar {
	height: 0;
}

.pc-shop-cat-card {
	flex: 0 0 132px;
	width: 132px;
	text-align: center;
	text-decoration: none;
	color: inherit;
	scroll-snap-align: start;
}

.pc-shop-cat-thumb {
	display: block;
	width: 96px;
	height: 96px;
	margin: 0 auto 10px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid transparent;
	background: #f3f4f1;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.pc-shop-cat-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pc-shop-cat-name {
	display: block;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--pc-ink);
}

.pc-shop-cat-count {
	display: block;
	margin-top: 4px;
	font-size: 0.75rem;
	color: var(--pc-muted);
}

.pc-shop-cat-card:hover .pc-shop-cat-thumb,
.pc-shop-cat-card.is-active .pc-shop-cat-thumb {
	border-color: var(--pc-brand);
	transform: translateY(-2px);
}

.pc-shop-cat-nav {
	position: absolute;
	top: 44px;
	z-index: 2;
	width: 34px;
	height: 34px;
	border: 1px solid var(--pc-line);
	border-radius: 999px;
	background: #fff;
	color: var(--pc-ink);
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(20, 24, 20, 0.08);
}

.pc-shop-cat-nav-prev {
	left: 0;
}

.pc-shop-cat-nav-next {
	right: 0;
}

.pc-shop-archive-body {
	padding: 0 0 48px;
}

.pc-shop-archive-inner {
	padding-top: 0;
}

.pc-shop-toolbar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 16px;
	align-items: center;
	margin: 18px 0 22px;
	padding: 14px 18px;
	border-radius: var(--pc-radius-sm);
	background: #f3f4f1;
}

.pc-shop-view-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.pc-shop-view-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: transparent;
	color: var(--pc-muted);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pc-shop-view-btn.is-active,
.pc-shop-view-btn:hover {
	background: #fff;
	border-color: var(--pc-line);
	color: var(--pc-ink);
}

.pc-shop-toolbar-count {
	margin: 0;
	text-align: center;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--pc-muted);
}

.pc-shop-toolbar-sort .woocommerce-ordering {
	margin: 0;
}

.pc-shop-toolbar-sort select.orderby {
	padding: 8px 36px 8px 12px;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius-sm);
	background: #fff;
	font: inherit;
	font-size: 0.84rem;
	color: var(--pc-ink);
}

.pc-shop-archive .woocommerce ul.products {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 28px !important;
}

body.pc-shop-view-4.pc-shop-archive-page .pc-shop-archive .woocommerce ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.pc-shop-view-list.pc-shop-archive-page .pc-shop-archive .woocommerce ul.products {
	grid-template-columns: 1fr !important;
	gap: 18px !important;
}

body.pc-shop-view-list.pc-shop-archive-page .pc-shop-archive .pc-product-card {
	flex-direction: row;
	align-items: stretch;
}

body.pc-shop-view-list.pc-shop-archive-page .pc-shop-archive .pc-product-thumb-wrap {
	flex: 0 0 220px;
	max-width: 220px;
}

body.pc-shop-view-list.pc-shop-archive-page .pc-shop-archive .pc-product-thumb {
	aspect-ratio: auto;
	height: 100%;
	min-height: 200px;
}

body.pc-shop-view-list.pc-shop-archive-page .pc-shop-archive .pc-product-body {
	text-align: left;
	justify-content: center;
}

.pc-shop-archive .pc-product-excerpt {
	display: none;
}

.pc-shop-archive .pc-product-meta {
	display: flex;
	justify-content: center;
	margin-bottom: 6px;
}

.pc-shop-archive .pc-product-body {
	text-align: center;
	padding-top: 18px;
}

.pc-shop-archive .pc-product-title {
	font-size: 1rem;
}

.pc-shop-archive .pc-product-row {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: nowrap;
}

.pc-shop-archive .pc-product-price {
	text-align: left;
}

.pc-shop-archive .pc-product-card:not(.pc-product-card--has-packs) .pc-product-hover-atc {
	display: none;
}

.pc-shop-archive .pc-product-hover {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	inset: 0;
	padding: 12px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease;
	background: linear-gradient(180deg, rgba(10, 16, 12, 0.05) 0%, rgba(10, 16, 12, 0.45) 100%);
}

.pc-shop-archive .pc-product-card:hover .pc-product-hover {
	opacity: 1;
	pointer-events: auto;
}

.pc-shop-archive .pc-product-hover-actions {
	display: flex;
	justify-content: flex-end;
}

.pc-shop-archive .pc-product-hover-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #fff;
	color: var(--pc-ink);
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(20, 24, 20, 0.12);
}

.pc-shop-archive .pc-product-hover-atc {
	margin-top: auto;
}

.pc-shop-archive .pc-product-hover-atc .button,
.pc-shop-archive .pc-product-hover-atc .add_to_cart_button {
	display: block !important;
	width: 100% !important;
	text-align: center !important;
	background: var(--pc-brand) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 999px !important;
	padding: 12px 16px !important;
}

.pc-shop-archive .pc-product-hover-atc .button:hover,
.pc-shop-archive .pc-product-hover-atc .add_to_cart_button:hover {
	background: var(--pc-yellow) !important;
	color: var(--pc-brand) !important;
}

.pc-shop-loadmore {
	margin-top: 28px;
	text-align: center;
}

.pc-shop-loadmore-text {
	margin: 0 0 12px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--pc-muted);
}

.pc-shop-loadmore-bar {
	width: min(420px, 100%);
	height: 4px;
	margin: 0 auto 18px;
	border-radius: 999px;
	background: #e8ebe4;
	overflow: hidden;
}

.pc-shop-loadmore-progress {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--pc-brand);
	transition: width 0.25s ease;
}

.pc-shop-loadmore-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: min(100%, 420px);
	padding: 14px 28px;
	border: 1px solid var(--pc-line);
	border-radius: 999px;
	background: #f3f4f1;
	color: var(--pc-ink);
	font: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.pc-shop-loadmore-btn:hover:not(:disabled) {
	background: #fff;
	border-color: var(--pc-brand);
	color: var(--pc-brand);
}

.pc-shop-loadmore-btn:disabled {
	opacity: 0.7;
	cursor: wait;
}

@media (max-width: 900px) {
	.pc-shop-hero-inner {
		grid-template-columns: 1fr;
	}

	.pc-shop-hero-media {
		justify-self: center;
	}

	.pc-shop-archive .woocommerce ul.products,
	body.pc-shop-view-4.pc-shop-archive-page .pc-shop-archive .woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.pc-shop-toolbar {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.pc-shop-view-toggle,
	.pc-shop-toolbar-sort {
		justify-self: center;
	}
}

@media (max-width: 560px) {
	.pc-shop-archive .woocommerce ul.products,
	body.pc-shop-view-4.pc-shop-archive-page .pc-shop-archive .woocommerce ul.products {
		grid-template-columns: 1fr !important;
	}

	body.pc-shop-view-list.pc-shop-archive-page .pc-shop-archive .pc-product-card {
		flex-direction: column;
	}

	body.pc-shop-view-list.pc-shop-archive-page .pc-shop-archive .pc-product-thumb-wrap {
		flex: none;
		max-width: none;
	}
}

.woocommerce .woocommerce-breadcrumb {
	font-size: 0.85rem;
	color: var(--pc-muted);
	margin-bottom: 18px;
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--pc-brand);
	text-decoration: none;
}

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
}

.pc-product-li {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	min-width: 0;
}

.woocommerce ul.products > li.product {
	min-width: 0;
}

.pc-product-card {
	background: var(--pc-surface);
	border-radius: var(--pc-radius);
	border: 1px solid var(--pc-line);
	box-shadow: var(--pc-shadow);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pc-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 50px rgba(20, 24, 20, 0.12);
}

/* Pack row makes the card taller — don't clip the Add to cart button */
.pc-product-card--has-packs,
.pc-product-li--has-packs .pc-product-card {
	height: auto;
	min-height: 100%;
	overflow: visible;
}

.pc-product-card--has-packs .pc-product-body {
	overflow: visible;
}

.woocommerce ul.products > li.product.pc-product-li--has-packs {
	align-self: start;
	height: auto;
}

.pc-product-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.pc-chip {
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 4px 8px;
	border-radius: 999px;
	background: #fff7e8;
	color: #7a4b00;
	border: 1px solid #f0d7a8;
}

.pc-chip-sale {
	background: #ffecec;
	color: #8f1f1f;
	border-color: #f5c4c4;
}

.pc-product-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fbfbf8;
	padding: 18px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.pc-product-thumb img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	mix-blend-mode: multiply;
}

.pc-product-body {
	padding: 16px 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.pc-product-title {
	font-size: 1rem;
	margin: 0;
	font-weight: 700;
	line-height: 1.3;
}

.pc-product-title a {
	text-decoration: none;
	color: inherit;
}

.pc-product-title a:hover {
	color: var(--pc-brand);
}

.pc-product-excerpt {
	margin: 0;
	font-size: 0.85rem;
	color: var(--pc-muted);
}

.pc-product-meta .star-rating {
	margin: 0 !important;
	font-size: 0.85rem !important;
	color: var(--pc-gold) !important;
}

/* Product pack selector (Pack of 4 / 6 / 8) */
.pc-pack-select {
	margin-top: 4px;
	position: relative;
	z-index: 3;
}

.pc-pack-select-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--pc-muted);
	margin-bottom: 8px;
}

.pc-pack-select--card {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.pc-pack-select--card .pc-pack-select-label {
	display: inline-block;
	margin-bottom: 0;
	flex: 0 0 auto;
	text-transform: none;
	font-size: 0.8rem;
}

.pc-pack-select--card .pc-pack-options {
	flex: 1 1 auto;
	min-width: 0;
}

.pc-pack-options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pc-pack-option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 42px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid var(--pc-line);
	background: #fff;
	color: var(--pc-ink);
	font-size: 0.82rem;
	font-weight: 700;
	cursor: pointer;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 2;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.pc-pack-select--card .pc-pack-option {
	min-width: 36px;
	padding: 7px 10px;
	font-size: 0.88rem;
}

.pc-pack-option:hover {
	border-color: var(--pc-gold);
}

.pc-pack-option.is-active {
	background: var(--pc-brand);
	border-color: var(--pc-brand);
	color: #fff;
}

.pc-pack-select--single .pc-pack-options {
	width: 100%;
}

.pc-pack-select--single .pc-pack-option {
	flex: 1 1 auto;
	min-width: min(100%, 120px);
	flex-direction: column;
	align-items: flex-start;
	padding: 12px 14px;
	border-radius: var(--pc-radius-sm);
}

.pc-pack-admin-table {
	max-width: 480px;
}

.pc-pack-admin-table th,
.pc-pack-admin-table td {
	padding: 8px 10px;
	vertical-align: middle;
}

.pc-pack-option-label {
	font-weight: 700;
}

.pc-pack-option-price {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--pc-muted);
}

.pc-pack-option.is-active .pc-pack-option-price {
	color: rgba(255, 255, 255, 0.9);
}

.pc-single-pack-wrap {
	margin-bottom: 14px;
}

.pc-single-pack-wrap .pc-pack-select {
	margin-bottom: 12px;
}

.pc-single-pack-price {
	margin: 0 0 8px;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--pc-brand);
}

.pc-product-row {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: nowrap;
	width: 100%;
}

.pc-product-price {
	flex: 1 1 auto;
	min-width: 0;
	text-align: left;
}

.pc-product-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 4px;
	flex: 0 0 auto;
	min-width: 0;
}

.pc-product-actions .button,
.pc-product-actions .add_to_cart_button,
.pc-product-actions a.button {
	white-space: nowrap;
	text-align: center;
	padding: 8px 12px !important;
	font-size: 0.78rem !important;
}

.pc-product-actions .added_to_cart {
	display: inline-block !important;
	font-size: 0.78rem !important;
	font-weight: 600 !important;
	padding: 0 !important;
	background: transparent !important;
	color: var(--pc-brand) !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	text-decoration: underline !important;
	text-align: center;
	white-space: nowrap;
}

.pc-product-actions .added_to_cart:hover {
	color: var(--pc-yellow) !important;
	background: transparent !important;
}

.pc-product-price .price,
.pc-product-price .pc-pack-price,
.pc-product-price .amount,
.pc-product-price ins,
.pc-product-price .woocommerce-Price-amount {
	font-weight: 800;
	color: var(--pc-ink);
	font-size: 1rem;
}

.pc-product-price del,
.pc-product-price del .amount {
	color: var(--pc-muted);
	font-weight: 500;
	margin-right: 6px;
}

/* Add to cart — white + red text, yellow + red text on hover */
.pc-product-actions .button,
.pc-product-actions .add_to_cart_button,
.pc-product-actions a.button,
.pc-product-card .button,
.pc-product-card a.button,
.pc-product-card .add_to_cart_button,
.pc-collection-products .button,
.pc-collection-products a.button,
.pc-collection-products .add_to_cart_button,
.pc-shoppable-atc,
.pc-shoppable-modal-atc,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce a.add_to_cart_button,
.woocommerce a.button.add_to_cart_button,
.woocommerce a.button.ajax_add_to_cart,
.woocommerce div.product form.cart .button,
.woocommerce div.product .single_add_to_cart_button,
.woocommerce div.product button.single_add_to_cart_button {
	display: inline-block;
	line-height: 1.2;
	border-radius: var(--pc-radius-sm) !important;
	padding: 10px 16px !important;
	font-size: 0.82rem !important;
	font-weight: 700 !important;
	background: #fff !important;
	color: var(--pc-brand) !important;
	text-decoration: none !important;
	border: 1px solid var(--pc-brand) !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.woocommerce div.product form.cart .button,
.woocommerce div.product .single_add_to_cart_button,
.woocommerce div.product button.single_add_to_cart_button {
	padding: 12px 24px !important;
	font-size: 1rem !important;
}

.pc-product-actions .button:hover,
.pc-product-actions .add_to_cart_button:hover,
.pc-product-actions a.button:hover,
.pc-product-card .button:hover,
.pc-product-card a.button:hover,
.pc-product-card .add_to_cart_button:hover,
.pc-collection-products .button:hover,
.pc-collection-products a.button:hover,
.pc-collection-products .add_to_cart_button:hover,
.pc-shoppable-atc:hover,
.pc-shoppable-modal-atc:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover,
.woocommerce a.add_to_cart_button:hover,
.woocommerce a.button.add_to_cart_button:hover,
.woocommerce a.button.ajax_add_to_cart:hover,
.woocommerce div.product form.cart .button:hover,
.woocommerce div.product .single_add_to_cart_button:hover,
.woocommerce div.product button.single_add_to_cart_button:hover {
	background: var(--pc-yellow) !important;
	border-color: var(--pc-yellow) !important;
	color: var(--pc-brand) !important;
}

/* Single product — Velvety-inspired layout */
.single-product .pc-shop-main {
	padding-bottom: 0;
}

.single-product .pc-shop-inner {
	padding-top: 16px;
}

.single-product .woocommerce div.product,
.single-product .woocommerce div.product.pc-single-product-wrap {
	display: block;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
}

.pc-single-breadcrumb {
	margin-bottom: 18px;
}

.pc-single-breadcrumb .woocommerce-breadcrumb {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--pc-muted);
}

.pc-single-breadcrumb .woocommerce-breadcrumb a {
	color: var(--pc-brand);
	text-decoration: none;
}

.pc-single-breadcrumb .woocommerce-breadcrumb a:hover {
	text-decoration: underline;
}

.pc-single-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 52px);
	align-items: start;
	padding-bottom: 36px;
}

.pc-single-gallery {
	min-width: 0;
}

.single-product div.product div.images {
	display: block;
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

.single-product div.product div.images .woocommerce-product-gallery {
	width: 100% !important;
	margin: 0 !important;
	background: #e8efe6;
	border-radius: var(--pc-radius);
	padding: clamp(20px, 4vw, 32px);
}

.single-product div.product div.images .woocommerce-product-gallery__wrapper,
.single-product div.product div.images .woocommerce-product-gallery__image {
	border-radius: var(--pc-radius-sm);
	overflow: hidden;
	background: #fff;
}

.single-product div.product div.images .flex-control-thumbs {
	display: flex !important;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 12px;
	width: 100% !important;
	margin: 16px 0 0 !important;
	padding: 0 !important;
	list-style: none;
	overflow-x: auto;
}

.single-product div.product div.images .flex-control-thumbs li {
	width: 88px !important;
	flex: 0 0 88px;
	float: none !important;
	margin: 0 !important;
}

.single-product div.product div.images .flex-control-thumbs li img {
	display: block;
	width: 100%;
	height: 88px;
	object-fit: cover;
	border-radius: var(--pc-radius-sm);
	border: 2px solid transparent;
	background: #e8efe6;
	padding: 10px;
	box-sizing: border-box;
	opacity: 0.8;
	transition: opacity 0.15s ease, border-color 0.15s ease;
}

.single-product div.product div.images .flex-control-thumbs li img.flex-active,
.single-product div.product div.images .flex-control-thumbs li:hover img {
	opacity: 1;
	border-color: var(--pc-brand);
}

.pc-single-summary {
	min-width: 0;
	padding-top: 2px;
}

.pc-single-title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin-bottom: 10px;
}

.single-product .product_title {
	margin: 0;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(1.85rem, 3.5vw, 2.6rem);
	line-height: 1.1;
	font-weight: 700;
	color: var(--pc-brand);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.pc-single-badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--pc-brand);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.pc-single-badge--sale {
	background: var(--pc-brand);
}

.pc-single-meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	margin-bottom: 16px;
	font-size: 0.88rem;
	color: var(--pc-muted);
}

.pc-single-meta-item:not(:last-child)::after {
	content: "·";
	margin-left: 16px;
	color: var(--pc-muted);
}

.pc-single-meta-rating {
	display: inline-flex;
	align-items: center;
}

.pc-single-meta-rating .star-rating {
	margin: 0;
}

.single-product .summary .price {
	margin: 0 0 10px;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--pc-ink);
}

.single-product .summary .price del {
	color: var(--pc-muted);
	font-size: 1rem;
	font-weight: 500;
	margin-right: 8px;
}

.single-product .summary .price ins {
	text-decoration: none;
	color: var(--pc-brand);
}

.pc-single-social-proof {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--pc-brand);
}

.pc-single-social-icon {
	font-size: 1rem;
	line-height: 1;
}

.single-product .pc-single-pack-wrap {
	margin-bottom: 16px;
}

.single-product form.cart {
	display: block;
	margin: 0 0 20px;
}

.pc-single-cart-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	margin-bottom: 14px;
}

.single-product form.cart .quantity {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius-sm);
	overflow: hidden;
	background: #fff;
}

.single-product form.cart .quantity .qty {
	width: 48px;
	border: 0;
	text-align: center;
	font-weight: 700;
	padding: 11px 6px;
	-moz-appearance: textfield;
}

.single-product form.cart .quantity .qty::-webkit-outer-spin-button,
.single-product form.cart .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.pc-single-stock {
	margin-left: auto;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--pc-muted);
}

.single-product form.cart .button,
.single-product form.cart .single_add_to_cart_button {
	display: block;
	width: 100%;
	min-height: 50px;
	margin-top: 4px;
	text-align: center;
	background: var(--pc-brand) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: var(--pc-radius-sm) !important;
	font-size: 0.95rem !important;
}

.single-product form.cart .button:hover,
.single-product form.cart .single_add_to_cart_button:hover {
	background: var(--pc-yellow) !important;
	color: var(--pc-brand) !important;
}

.pc-single-tabs {
	margin-top: 8px;
	padding-top: 18px;
	border-top: 1px solid var(--pc-line);
}

.pc-single-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 22px;
	margin-bottom: 16px;
}

.pc-single-tab-btn {
	border: 0;
	background: transparent;
	padding: 0 0 8px;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--pc-muted);
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.pc-single-tab-btn.is-active,
.pc-single-tab-btn:hover {
	color: var(--pc-brand);
	border-color: var(--pc-brand);
}

.pc-single-tab-panel {
	color: var(--pc-muted);
	line-height: 1.65;
	font-size: 0.94rem;
}

.pc-single-tab-panel h2 {
	display: none;
}

.pc-single-tab-panel p {
	margin: 0 0 12px;
}

.pc-single-tab-panel table {
	width: 100%;
	border-collapse: collapse;
}

.pc-single-tab-panel th,
.pc-single-tab-panel td {
	padding: 10px 0;
	border-bottom: 1px solid var(--pc-line);
	text-align: left;
}

.pc-single-related {
	padding: 10px 0 48px;
	border-top: 1px solid var(--pc-line);
}

.pc-single-related-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.pc-single-related-title {
	margin: 0;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(1.45rem, 2.5vw, 1.85rem);
	color: var(--pc-brand);
}

.pc-single-related-nav {
	display: flex;
	gap: 8px;
}

.pc-single-related-btn {
	width: 38px;
	height: 38px;
	border: 1px solid var(--pc-line);
	border-radius: 999px;
	background: #fff;
	color: var(--pc-ink);
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.pc-single-related-btn:hover {
	background: #eef1ea;
	border-color: var(--pc-brand);
}

.pc-single-related-track {
	overflow: hidden;
}

.pc-single-related-track > .products,
.pc-single-related-track > section.products {
	margin: 0 !important;
}

.pc-single-related-track h2 {
	display: none !important;
}

.pc-single-related-track ul.products {
	display: flex !important;
	flex-wrap: nowrap;
	gap: 18px !important;
	margin: 0 !important;
	padding: 0 2px 8px !important;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}

.pc-single-related-track ul.products::before,
.pc-single-related-track ul.products::after {
	display: none !important;
}

.pc-single-related-track ul.products > li.product {
	flex: 0 0 min(260px, 78vw);
	width: min(260px, 78vw) !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	scroll-snap-align: start;
}

.pc-single-more-wrap {
	margin: 22px 0 0;
	text-align: center;
}

.pc-single-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 22px;
	border: 1px solid var(--pc-line);
	border-radius: 999px;
	background: #fff;
	color: var(--pc-ink);
	font-weight: 700;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.pc-single-more:hover {
	background: #eef1ea;
	border-color: var(--pc-brand);
	color: var(--pc-brand);
}

.woocommerce div.product .woocommerce-tabs {
	display: none;
}

.woocommerce span.onsale {
	background: var(--pc-gold) !important;
	color: #1a1408 !important;
	border-radius: 999px !important;
	min-height: auto !important;
	line-height: 1 !important;
	padding: 6px 12px !important;
}

/* Cart / checkout */
.woocommerce-cart table.shop_table,
.woocommerce-checkout .woocommerce-checkout-review-order-table {
	border-radius: var(--pc-radius-sm);
	overflow: hidden;
}

.woocommerce .button.alt,
.woocommerce button.button.alt {
	background: var(--pc-brand) !important;
	border-radius: 999px !important;
}

/* Pre-footer info sections */
.pc-pre-footer {
	margin-top: 8px;
}

.pc-info-section {
	padding: 48px 0;
}

.pc-info-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 36px;
}

.pc-info-eyebrow {
	margin: 0 0 10px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--pc-gold);
}

.pc-info-eyebrow--accent {
	color: #b8866b;
}

.pc-info-title {
	margin: 0 0 12px;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(1.65rem, 3vw, 2.15rem);
	line-height: 1.2;
	color: var(--pc-brand);
}

.pc-info-lead {
	margin: 0;
	color: var(--pc-muted);
	font-size: 1rem;
	line-height: 1.55;
}

.pc-benefits-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 28px 20px;
}

.pc-benefit-item {
	text-align: center;
}

.pc-benefit-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	margin: 0 auto 12px;
	color: #b84238;
}

.pc-benefit-icon-svg {
	display: block;
	width: 52px;
	height: 52px;
}

.pc-benefit-title {
	margin: 0 0 8px;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--pc-ink);
}

.pc-benefit-desc {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.45;
	color: var(--pc-muted);
}

.pc-purity-section {
	padding-top: 0;
	padding-bottom: 52px;
}

.pc-purity-card {
	background: var(--pc-surface);
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius);
	box-shadow: var(--pc-shadow);
	padding: clamp(24px, 4vw, 36px);
}

.pc-purity-list {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: grid;
	gap: 22px;
}

.pc-purity-step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.pc-purity-num {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: #b8866b;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 36px;
	text-align: center;
}

.pc-purity-step-title {
	margin: 0 0 4px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--pc-ink);
}

.pc-purity-step-desc {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--pc-muted);
}

@media (max-width: 1024px) {
	.pc-benefits-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.pc-info-section {
		padding: 36px 0;
	}

	.pc-benefits-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 16px;
	}
}

/* Footer */
.pc-footer {
	position: relative;
	background: var(--pc-yellow);
	color: var(--pc-brand);
	padding: 0 0 0;
	margin-top: 40px;
}

.pc-footer-silhouette {
	position: relative;
	height: clamp(56px, 8vw, 92px);
	margin-top: -1px;
	color: var(--pc-yellow);
	pointer-events: none;
}

.pc-footer-silhouette-svg {
	display: block;
	width: 100%;
	height: 100%;
}

.pc-footer-grid {
	display: grid;
	grid-template-columns: minmax(180px, 0.9fr) minmax(260px, 1.2fr) minmax(220px, 1fr);
	gap: 0;
	padding: 10px 20px 42px;
}

.pc-footer-col {
	padding: 8px 28px;
}

.pc-footer-col--links {
	padding-left: 0;
}

.pc-footer-col--newsletter,
.pc-footer-col--contact {
	border-left: 1px solid rgba(197, 29, 60, 0.22);
}

.pc-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.pc-footer-menu a {
	color: var(--pc-brand);
	font-size: 1.02rem;
	font-weight: 500;
	text-decoration: none;
}

.pc-footer-menu a:hover {
	color: var(--pc-brand);
	text-decoration: underline;
}

.pc-footer-social {
	display: flex;
	gap: 12px;
	margin-top: 28px;
}

.pc-footer-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(197, 29, 60, 0.45);
	border-radius: 999px;
	color: var(--pc-brand);
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pc-footer-social-link:hover {
	background: var(--pc-brand);
	border-color: var(--pc-brand);
	color: var(--pc-yellow);
}

.pc-footer-newsletter-title {
	margin: 0 0 12px;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 600;
	line-height: 1.2;
	color: var(--pc-brand);
}

.pc-footer-newsletter-text {
	margin: 0 0 18px;
	font-family: "Fraunces", Georgia, serif;
	font-size: 0.95rem;
	font-style: italic;
	line-height: 1.55;
	color: rgba(197, 29, 60, 0.88);
}

.pc-footer-newsletter-notice {
	margin: 0 0 12px;
	font-size: 0.85rem;
	font-weight: 600;
}

.pc-footer-newsletter-notice--success {
	color: var(--pc-yellow);
}

.pc-footer-newsletter-notice--error {
	color: #ffd0d8;
}

.pc-footer-newsletter-form {
	display: grid;
	gap: 12px;
	max-width: 360px;
}

.pc-footer-newsletter-form input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(197, 29, 60, 0.35);
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--pc-brand);
	font: inherit;
}

.pc-footer-newsletter-form input::placeholder {
	color: rgba(197, 29, 60, 0.55);
}

.pc-footer-newsletter-form input:focus {
	outline: none;
	border-color: var(--pc-brand);
	box-shadow: 0 0 0 2px rgba(197, 29, 60, 0.12);
}

.pc-footer-signup {
	justify-self: start;
	padding: 11px 28px;
	border: 1px solid var(--pc-brand);
	border-radius: 4px;
	background: var(--pc-brand);
	color: var(--pc-yellow);
	font: inherit;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pc-footer-signup:hover {
	background: #fff;
	border-color: var(--pc-brand);
	color: var(--pc-brand);
}

.pc-footer-message-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: var(--pc-brand);
	font-size: 1.02rem;
	font-weight: 600;
	text-decoration: none;
}

.pc-footer-message-link:hover {
	text-decoration: underline;
}

.pc-footer-contact-line,
.pc-footer-address p {
	margin: 0 0 6px;
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(197, 29, 60, 0.9);
}

.pc-footer-contact-line a {
	color: inherit;
	text-decoration: none;
}

.pc-footer-contact-line a:hover {
	text-decoration: underline;
}

.pc-footer-bar {
	background: var(--pc-brand);
}

.pc-footer-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 20px;
}

.pc-copy {
	margin: 0;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.78);
}

.pc-footer-privacy {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.82rem;
	text-decoration: none;
}

.pc-footer-privacy:hover {
	color: #fff;
	text-decoration: underline;
}

.pc-muted {
	color: var(--pc-muted);
	margin: 0;
}

/* My Account */
.pc-account-main {
	padding-bottom: 48px;
}

.pc-account-wrap {
	margin-bottom: 0;
}

.pc-account-hero {
	position: relative;
	padding: clamp(34px, 5vw, 56px) 0 clamp(28px, 4vw, 40px);
	background: #eef1ea;
	overflow: hidden;
	border-top: 6px solid var(--pc-yellow);
}

.pc-account-hero-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background-image:
		radial-gradient(circle at 12% 24%, rgba(31, 77, 58, 0.18) 0 8px, transparent 9px),
		radial-gradient(circle at 78% 18%, rgba(198, 160, 74, 0.2) 0 10px, transparent 11px),
		radial-gradient(circle at 34% 72%, rgba(31, 77, 58, 0.14) 0 7px, transparent 8px),
		radial-gradient(circle at 88% 68%, rgba(31, 77, 58, 0.12) 0 9px, transparent 10px),
		radial-gradient(circle at 52% 40%, rgba(198, 160, 74, 0.16) 0 6px, transparent 7px);
}

.pc-account-hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.pc-account-hero-title {
	margin: 0 0 10px;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--pc-ink);
}

.pc-account-breadcrumbs {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.92rem;
	color: var(--pc-muted);
}

.pc-account-breadcrumbs a {
	color: var(--pc-muted);
	text-decoration: none;
}

.pc-account-breadcrumbs a:hover {
	color: var(--pc-brand);
}

.pc-account-layout {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 32px;
	align-items: start;
	padding-top: clamp(28px, 4vw, 42px);
	padding-bottom: 0;
}

/* Override WooCommerce default floated account layout */
.woocommerce-account .pc-account-layout .woocommerce-MyAccount-navigation,
.woocommerce-account .pc-account-layout .woocommerce-MyAccount-content {
	float: none !important;
	width: auto !important;
	max-width: none !important;
}

.woocommerce-account .pc-account-layout::before,
.woocommerce-account .pc-account-layout::after,
.woocommerce-account .pc-account-wrap::before,
.woocommerce-account .pc-account-wrap::after {
	display: none !important;
	content: none !important;
}

.pc-account-nav {
	width: 100%;
	min-width: 0;
}

.pc-account-content {
	width: 100%;
	min-width: 0;
}

.pc-account-panel {
	width: 100%;
	max-width: 100%;
}

.pc-account-guest {
	padding: clamp(28px, 4vw, 42px) 20px 0;
}

.pc-account-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.pc-account-nav-list a {
	display: block;
	padding: 14px 18px;
	border: 1px solid var(--pc-line);
	border-radius: 999px;
	background: #fff;
	color: var(--pc-ink);
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pc-account-nav-list a:hover {
	border-color: var(--pc-gold);
	color: var(--pc-brand);
}

.pc-account-nav-list .is-active a {
	background: var(--pc-yellow);
	border-color: var(--pc-yellow);
	color: var(--pc-ink);
}

.pc-account-content {
	background: #fff;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius);
	padding: clamp(22px, 3vw, 32px);
	box-shadow: var(--pc-shadow);
	min-height: 320px;
}

.pc-account-panel-title {
	margin: 0 0 12px;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--pc-ink);
}

.pc-account-panel-lead {
	margin: 0 0 22px;
	color: var(--pc-muted);
	line-height: 1.6;
}

.pc-account-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
}

.pc-account-form .form-row-first,
.pc-account-form .form-row-last,
.pc-account-form .woocommerce-form-row--first,
.pc-account-form .woocommerce-form-row--last {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	min-width: 0;
}

.pc-account-form .form-row-wide,
.pc-account-form .woocommerce-form-row--wide,
.pc-account-form .clear,
.pc-account-form .pc-account-form-actions,
.pc-account-form fieldset {
	grid-column: 1 / -1;
}

.pc-account-form .clear {
	display: none;
}

.pc-account-form .form-row {
	margin-bottom: 0;
}

.pc-account-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--pc-ink);
}

.pc-account-form .input-text,
.pc-account-form input[type="email"],
.pc-account-form input[type="password"],
.pc-account-form input[type="text"],
.pc-account-form select,
.pc-account-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius-sm);
	background: #fff;
	font: inherit;
	color: var(--pc-ink);
}

.pc-account-form .input-text:focus,
.pc-account-form input:focus,
.pc-account-form select:focus,
.pc-account-form textarea:focus {
	outline: none;
	border-color: var(--pc-brand);
	box-shadow: 0 0 0 3px rgba(31, 77, 58, 0.12);
}

.pc-account-form-row-inline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.pc-account-form-actions {
	margin-top: 8px;
}

.pc-account-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 24px;
	border: 1px solid var(--pc-brand);
	border-radius: 999px;
	background: #fff;
	color: var(--pc-brand);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pc-account-btn-primary,
.pc-account-content .button.pc-account-btn-primary,
.pc-account-content button.pc-account-btn-primary {
	background: var(--pc-brand) !important;
	border-color: var(--pc-brand) !important;
	color: #fff !important;
}

.pc-account-btn-primary:hover,
.pc-account-content .button.pc-account-btn-primary:hover,
.pc-account-content button.pc-account-btn-primary:hover {
	background: var(--pc-yellow) !important;
	border-color: var(--pc-yellow) !important;
	color: var(--pc-brand) !important;
}

.pc-account-link {
	color: var(--pc-brand);
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
}

.pc-account-link:hover {
	text-decoration: underline;
}

.pc-account-auth-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.pc-account-content .woocommerce-message,
.pc-account-content .woocommerce-info,
.pc-account-content .woocommerce-error {
	margin: 0 0 18px;
}

.pc-account-content table.shop_table {
	width: 100%;
	border-collapse: collapse;
}

.pc-account-content table.shop_table th,
.pc-account-content table.shop_table td {
	padding: 12px 10px;
	border-bottom: 1px solid var(--pc-line);
	text-align: left;
	font-size: 0.9rem;
}

.pc-account-content table.shop_table th {
	font-weight: 700;
	color: var(--pc-ink);
}

.pc-account-content .woocommerce-orders-table__cell-order-actions a,
.pc-account-content .woocommerce-button,
.pc-account-content a.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 16px !important;
	border: 1px solid var(--pc-brand) !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: var(--pc-brand) !important;
	font-size: 0.82rem !important;
	font-weight: 700 !important;
	text-decoration: none !important;
}

.pc-account-content .woocommerce-orders-table__cell-order-actions a:hover,
.pc-account-content .woocommerce-button:hover,
.pc-account-content a.button:hover {
	background: var(--pc-yellow) !important;
	border-color: var(--pc-yellow) !important;
	color: var(--pc-brand) !important;
}

.pc-account-content .woocommerce-Addresses .woocommerce-Address {
	margin-bottom: 18px;
	padding: 18px;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius-sm);
	background: #fafaf8;
}

.pc-account-content .woocommerce-Addresses .title h3 {
	margin: 0 0 10px;
	font-family: "Fraunces", Georgia, serif;
	color: var(--pc-brand);
}

.pc-account-content .woocommerce-PaymentMethods {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pc-account-content .woocommerce-PaymentMethods li {
	margin-bottom: 12px;
	padding: 14px;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius-sm);
}

@media (max-width: 900px) {
	.pc-account-layout,
	.pc-account-auth-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.pc-account-nav-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pc-account-form {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.pc-account-nav-list {
		grid-template-columns: 1fr;
	}
}

/* Static page */
.pc-wrap {
	padding: 32px 0 48px;
}

.pc-page {
	max-width: 760px;
	margin: 0 auto;
	background: var(--pc-surface);
	padding: 28px;
	border-radius: var(--pc-radius);
	border: 1px solid var(--pc-line);
	box-shadow: var(--pc-shadow);
}

.pc-page-title {
	font-family: "Fraunces", Georgia, serif;
	margin-top: 0;
}

/* About Us — storytelling page */
.pc-about {
	padding-bottom: 0;
}

.pc-about-hero {
	padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 5vw, 56px);
	text-align: center;
}

.pc-about-hero-inner {
	max-width: 780px;
	margin: 0 auto;
}

.pc-about-eyebrow {
	margin: 0 0 12px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--pc-gold);
}

.pc-about-hero-title {
	margin: 0 0 16px;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(2rem, 4.5vw, 3rem);
	line-height: 1.15;
	color: var(--pc-brand);
}

.pc-about-hero-lead {
	margin: 0 0 22px;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--pc-ink);
}

.pc-about-hero-copy {
	text-align: left;
	color: var(--pc-muted);
	line-height: 1.65;
}

.pc-about-hero-copy p {
	margin: 0 0 14px;
}

.pc-about-pullquote {
	margin: 28px 0 0;
	padding: 22px 26px;
	border: 0;
	border-left: 4px solid var(--pc-yellow);
	border-radius: 0 var(--pc-radius-sm) var(--pc-radius-sm) 0;
	background: var(--pc-surface);
	box-shadow: var(--pc-shadow);
}

.pc-about-pullquote p {
	margin: 0;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(1.2rem, 2.5vw, 1.55rem);
	font-weight: 600;
	font-style: italic;
	line-height: 1.4;
	color: var(--pc-brand);
}

.pc-about-timeline {
	padding: 12px 0 48px;
}

.pc-about-timeline > .pc-inner {
	position: relative;
	max-width: 820px;
}

.pc-about-timeline > .pc-inner::before {
	content: "";
	position: absolute;
	left: 22px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: linear-gradient(180deg, var(--pc-yellow) 0%, var(--pc-line) 100%);
}

.pc-about-chapter {
	position: relative;
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 20px 24px;
	padding: 0 0 40px;
}

.pc-about-chapter:last-child {
	padding-bottom: 0;
}

.pc-about-chapter-marker {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	padding-top: 4px;
}

.pc-about-year {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	padding: 8px 10px;
	border-radius: 999px;
	background: var(--pc-yellow);
	color: var(--pc-brand);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 8px 20px rgba(247, 195, 37, 0.35);
}

.pc-about-chapter-body {
	background: var(--pc-surface);
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius);
	padding: clamp(20px, 3vw, 28px);
	box-shadow: var(--pc-shadow);
}

.pc-about-chapter--alt .pc-about-chapter-body {
	background: #faf8f3;
}

.pc-about-chapter-title {
	margin: 0 0 12px;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	line-height: 1.2;
	color: var(--pc-brand);
}

.pc-about-chapter-kicker {
	margin: 0 0 12px;
	font-weight: 700;
	color: var(--pc-ink);
}

.pc-about-chapter-body p {
	margin: 0 0 12px;
	color: var(--pc-muted);
	line-height: 1.6;
}

.pc-about-chapter-body p:last-child {
	margin-bottom: 0;
}

.pc-about-pillars {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.pc-about-pillars li {
	position: relative;
	padding-left: 22px;
	font-weight: 600;
	color: var(--pc-ink);
}

.pc-about-pillars li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--pc-brand);
}

.pc-about-closing {
	padding: clamp(36px, 5vw, 56px) 0;
	background: var(--pc-brand);
	color: #fff;
	text-align: center;
}

.pc-about-closing-inner {
	max-width: 720px;
	margin: 0 auto;
}

.pc-about-closing-tagline {
	margin: 0 0 28px;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	line-height: 1.35;
	font-weight: 600;
}

.pc-about-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.pc-about-stat {
	padding: 16px 12px;
	border-radius: var(--pc-radius-sm);
	background: rgba(255, 255, 255, 0.1);
}

.pc-about-stat-value {
	display: block;
	font-family: "Fraunces", Georgia, serif;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--pc-yellow);
}

.pc-about-stat-label {
	display: block;
	margin-top: 6px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 640px) {
	.pc-about-timeline > .pc-inner::before {
		left: 16px;
	}

	.pc-about-chapter {
		grid-template-columns: 48px 1fr;
		gap: 14px 16px;
	}

	.pc-about-year {
		min-width: 44px;
		padding: 6px 8px;
		font-size: 0.65rem;
	}

	.pc-about-stats {
		grid-template-columns: 1fr;
	}
}

/* Contact page */
.pc-contact {
	padding-bottom: 48px;
}

.pc-contact-hero {
	position: relative;
	padding: clamp(36px, 6vw, 64px) 0 clamp(28px, 4vw, 40px);
	background: var(--pc-surface);
	overflow: hidden;
}

.pc-contact-dots {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.pc-contact-dots span {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--pc-brand);
	opacity: 0.35;
}

.pc-contact-dots span:nth-child(1) { top: 18%; left: 8%; width: 6px; height: 6px; }
.pc-contact-dots span:nth-child(2) { top: 12%; left: 22%; opacity: 0.2; }
.pc-contact-dots span:nth-child(3) { top: 28%; right: 14%; width: 10px; height: 10px; background: var(--pc-gold); }
.pc-contact-dots span:nth-child(4) { top: 8%; right: 28%; width: 5px; height: 5px; }
.pc-contact-dots span:nth-child(5) { bottom: 22%; left: 12%; background: var(--pc-gold); opacity: 0.45; }
.pc-contact-dots span:nth-child(6) { bottom: 18%; right: 10%; width: 7px; height: 7px; }
.pc-contact-dots span:nth-child(7) { top: 42%; left: 4%; width: 5px; height: 5px; opacity: 0.25; }
.pc-contact-dots span:nth-child(8) { top: 36%; right: 6%; opacity: 0.3; }
.pc-contact-dots span:nth-child(9) { bottom: 34%; left: 30%; width: 6px; height: 6px; background: var(--pc-gold); }
.pc-contact-dots span:nth-child(10) { bottom: 10%; right: 22%; width: 9px; height: 9px; }

.pc-contact-hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.pc-contact-title {
	margin: 0 0 12px;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--pc-brand);
}

.pc-contact-breadcrumbs {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.92rem;
	color: var(--pc-muted);
}

.pc-contact-breadcrumbs a {
	color: var(--pc-muted);
	text-decoration: none;
}

.pc-contact-breadcrumbs a:hover {
	color: var(--pc-brand);
}

.pc-contact-grid-wrap {
	padding: clamp(28px, 4vw, 48px) 0 0;
}

.pc-contact-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.15fr);
	gap: clamp(24px, 4vw, 40px);
	align-items: start;
}

.pc-contact-panel {
	padding: clamp(28px, 4vw, 36px);
	border-radius: var(--pc-radius);
	background: var(--pc-yellow);
	color: var(--pc-brand);
	box-shadow: var(--pc-shadow);
}

.pc-contact-panel-title {
	margin: 0 0 14px;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(1.6rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
}

.pc-contact-panel-text {
	margin: 0 0 22px;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(197, 29, 60, 0.88);
}

.pc-contact-panel-rule {
	margin: 0 0 22px;
	border: 0;
	border-top: 1px solid rgba(197, 29, 60, 0.22);
}

.pc-contact-details {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 22px;
}

.pc-contact-detail {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 14px;
	align-items: start;
}

.pc-contact-detail-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: rgba(197, 29, 60, 0.12);
	color: var(--pc-brand);
}

.pc-contact-detail strong {
	display: block;
	margin-bottom: 6px;
	font-size: 0.95rem;
}

.pc-contact-detail p {
	margin: 0 0 4px;
	font-size: 0.9rem;
	line-height: 1.45;
	color: rgba(197, 29, 60, 0.88);
}

.pc-contact-detail a {
	color: var(--pc-brand);
	text-decoration: none;
}

.pc-contact-detail a:hover {
	text-decoration: underline;
}

.pc-contact-form-eyebrow {
	margin: 0 0 8px;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--pc-brand);
}

.pc-contact-form-title {
	margin: 0 0 12px;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--pc-brand);
}

.pc-contact-form-lead {
	margin: 0 0 22px;
	max-width: 560px;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--pc-muted);
}

.pc-contact-notice {
	margin: 0 0 18px;
	padding: 12px 16px;
	border-radius: var(--pc-radius-sm);
	font-size: 0.9rem;
	font-weight: 600;
}

.pc-contact-notice--success {
	background: #fff8df;
	color: var(--pc-brand);
	border: 1px solid rgba(247, 195, 37, 0.65);
}

.pc-contact-notice--error {
	background: #fff0f2;
	color: var(--pc-brand);
	border: 1px solid #f5c4cc;
}

.pc-contact-form-card {
	display: grid;
	gap: 14px;
	padding: clamp(20px, 3vw, 28px);
	border-radius: var(--pc-radius);
	background: #f3f4f1;
}

.pc-contact-form-card input,
.pc-contact-form-card textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius-sm);
	background: #fff;
	font: inherit;
	color: var(--pc-ink);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pc-contact-form-card input:focus,
.pc-contact-form-card textarea:focus {
	outline: none;
	border-color: var(--pc-brand);
	box-shadow: 0 0 0 3px rgba(197, 29, 60, 0.12);
}

.pc-contact-form-card textarea {
	resize: vertical;
	min-height: 140px;
}

.pc-contact-submit {
	justify-self: start;
	padding: 12px 28px;
	border: 1px solid var(--pc-brand);
	border-radius: 999px;
	background: var(--pc-brand);
	color: #fff;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pc-contact-submit:hover {
	background: var(--pc-yellow);
	border-color: var(--pc-yellow);
	color: var(--pc-brand);
}

@media (max-width: 900px) {
	.pc-contact-grid {
		grid-template-columns: 1fr;
	}
}

/* Homepage carousels */
.pc-home {
	padding-bottom: 24px;
}

.pc-home-banner {
	margin-bottom: 8px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.pc-banner-carousel {
	position: relative;
	overflow: hidden;
	background: #dfe8df;
	max-height: clamp(280px, 42vw, 520px);
}

.pc-banner-track {
	position: relative;
	height: clamp(280px, 42vw, 520px);
	max-height: clamp(280px, 42vw, 520px);
	overflow: hidden;
}

.pc-banner-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.55s ease;
	overflow: hidden;
}

.pc-banner-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.pc-banner-slide--media-only .pc-banner-content {
	display: none;
}

.pc-banner-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.pc-banner-image,
.pc-banner-fallback {
	width: 100%;
	height: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.pc-banner-fallback {
	background: linear-gradient(120deg, #1f4d3a 0%, #2a6b4f 45%, #c6a04a 100%);
}

.pc-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 16, 12, 0.72) 0%, rgba(10, 16, 12, 0.35) 50%, rgba(10, 16, 12, 0.15) 100%);
}

.pc-banner-content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	pointer-events: none;
}

.pc-banner-content a {
	pointer-events: auto;
}

.pc-banner-text {
	max-width: 620px;
	padding: 22px 26px;
	border-radius: var(--pc-radius-sm);
	background: rgba(10, 16, 12, 0.42);
	backdrop-filter: blur(4px);
}

.pc-banner-title {
	margin: 0 0 12px;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1.1;
	color: #fff !important;
}

.pc-banner-subtitle {
	margin: 0 0 20px;
	font-size: 1.05rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.95) !important;
}

.pc-banner-cta {
	align-self: flex-start;
}

.pc-carousel-nav--below {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 14px;
	padding: 0;
}

.pc-carousel-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: static;
	transform: none;
	z-index: 1;
	width: 42px;
	height: 42px;
	border: 1px solid var(--pc-line);
	border-radius: 999px;
	background: #fff;
	color: var(--pc-brand);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(20, 24, 20, 0.08);
}

.pc-carousel-btn:hover {
	background: var(--pc-yellow);
	border-color: var(--pc-yellow);
}

.pc-carousel-dots {
	position: static;
	left: auto;
	bottom: auto;
	transform: none;
	display: flex;
	gap: 8px;
	z-index: 1;
}

.pc-carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 0;
	padding: 0;
	background: rgba(197, 29, 60, 0.25);
	cursor: pointer;
}

.pc-carousel-dot.is-active {
	background: var(--pc-brand);
	width: 24px;
}

.pc-home-banner .pc-carousel-nav--below {
	margin-top: 12px;
	padding-bottom: 4px;
}

.pc-home-collection .pc-section-head {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 8px;
	margin-bottom: 18px;
}

.pc-home-collection {
	padding: 28px 0 8px;
}

.pc-home-collection + .pc-home-collection {
	padding-top: 12px;
}

/* Keep normal centered page width (1180px); only clip the carousel strip. */
.pc-home-collection .pc-inner {
	max-width: var(--pc-max);
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}

.pc-collection-carousel {
	position: relative;
	width: 100%;
	min-width: 0;
}

.pc-collection-track {
	display: block;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	padding: 4px 0 8px;
	scrollbar-width: none;
	width: 100%;
	min-width: 0;
	max-width: 100%;
}

.pc-collection-track::-webkit-scrollbar {
	display: none;
}

/* Product row scrolls inside the track only — must not stretch the page. */
.pc-collection-track ul.products.pc-collection-products {
	display: flex !important;
	flex-wrap: nowrap !important;
	grid-template-columns: none !important;
	gap: 18px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
	width: max-content;
	max-width: none;
}

.pc-collection-products .pc-product-li {
	flex: 0 0 260px;
	width: 260px !important;
	max-width: 260px;
	scroll-snap-align: start;
	min-width: 0;
}

.pc-collection-products .pc-product-card,
.pc-collection-products .pc-product-body,
.pc-collection-products .pc-pack-select--card {
	min-width: 0;
	max-width: 100%;
}

.pc-collection-products .pc-product-card--has-packs {
	height: auto;
	overflow: visible;
}

/* Shop + carousel cards: pack row must not blow out grid column width */
.pc-product-card,
.pc-product-body {
	min-width: 0;
	max-width: 100%;
}

.pc-pack-select--card .pc-pack-options {
	max-width: 100%;
}

/* Prevent ultra-wide carousel from shrinking/zooming the whole desktop layout */
.pc-front-page {
	overflow-x: hidden;
}

.pc-home {
	width: 100%;
	max-width: 100%;
}

/* Shoppable video collection (below banner) */
.pc-shoppable {
	padding: 32px 0 40px;
	background: var(--pc-bg);
}

.pc-shoppable-title {
	text-align: center;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0 0 24px;
}

.pc-shoppable-carousel {
	position: relative;
}

.pc-shoppable-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 8px 0 8px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.pc-shoppable-track::-webkit-scrollbar {
	display: none;
}

.pc-shoppable-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: static;
	transform: none;
	z-index: 1;
	width: 40px;
	height: 40px;
	border: 1px solid var(--pc-line);
	border-radius: 999px;
	background: #fff;
	color: var(--pc-brand);
	box-shadow: 0 4px 14px rgba(20, 24, 20, 0.08);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.pc-shoppable-nav:hover {
	background: var(--pc-yellow);
	border-color: var(--pc-yellow);
}

.pc-shoppable-card {
	flex: 0 0 min(220px, 72vw);
	scroll-snap-align: start;
	background: var(--pc-surface);
	border-radius: var(--pc-radius);
	border: 1px solid var(--pc-line);
	box-shadow: var(--pc-shadow);
	overflow: visible;
	display: flex;
	flex-direction: column;
}

.pc-shoppable-media {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: #111;
	cursor: pointer;
	border-radius: var(--pc-radius) var(--pc-radius) 0 0;
	overflow: hidden;
	aspect-ratio: 9 / 16;
	max-height: 380px;
}

.pc-shoppable-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pc-shoppable-play-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	color: var(--pc-ink);
	font-size: 0.85rem;
	line-height: 44px;
	text-align: center;
	pointer-events: none;
	opacity: 0.9;
}

.pc-shoppable-bar {
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pc-shoppable-product {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pc-shoppable-thumb {
	width: 44px;
	height: 44px;
	object-fit: contain;
	border-radius: 8px;
	background: #fbfbf8;
	flex-shrink: 0;
}

.pc-shoppable-meta {
	min-width: 0;
	flex: 1;
}

.pc-shoppable-name {
	display: block;
	font-weight: 700;
	font-size: 0.82rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pc-shoppable-price {
	font-size: 0.85rem;
	font-weight: 800;
	color: var(--pc-brand);
}

.pc-shoppable-actions {
	display: flex;
	align-items: stretch;
	gap: 8px;
}

.pc-shoppable-atc-wrap {
	position: relative;
	flex: 1;
}

.pc-shoppable-pack-pop {
	position: absolute;
	bottom: calc(100% + 6px);
	left: 0;
	right: 0;
	background: #2a2f2c;
	border-radius: var(--pc-radius-sm);
	overflow: hidden;
	z-index: 5;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.pc-shoppable-pack-opt {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}

.pc-shoppable-pack-opt.is-active,
.pc-shoppable-pack-opt:hover {
	background: var(--pc-brand);
}

.pc-shoppable-atc {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.pc-shoppable-atc-wrap .added_to_cart {
	display: none !important;
}

.pc-shoppable-cart-icon {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: var(--pc-brand);
	color: #fff;
	cursor: pointer;
	text-decoration: none;
}

.pc-shoppable-cart-icon:hover {
	background: var(--pc-yellow);
	color: #fff;
}

.pc-shoppable-soldout {
	display: block;
	width: 100%;
	padding: 10px;
	text-align: center;
	background: #e8e8e8;
	color: #666;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 8px;
}

/* Modal */
.pc-shoppable-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.pc-shoppable-modal[hidden] {
	display: none !important;
}

.pc-shoppable-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 16, 12, 0.65);
}

.pc-shoppable-modal-dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	max-height: 90vh;
	overflow: auto;
	background: var(--pc-surface);
	border-radius: var(--pc-radius);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.pc-shoppable-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

.pc-shoppable-modal-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.pc-shoppable-modal-media {
	background: #111;
	min-height: 320px;
}

.pc-shoppable-modal-video {
	width: 100%;
	height: 100%;
	min-height: 320px;
	max-height: 70vh;
	object-fit: cover;
	display: block;
}

.pc-shoppable-modal-panel {
	padding: 20px 24px 24px;
}

.pc-shoppable-modal-gallery {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
	overflow-x: auto;
}

.pc-shoppable-modal-gallery img {
	width: 72px;
	height: 72px;
	object-fit: contain;
	border-radius: 8px;
	border: 1px solid var(--pc-line);
	background: #fbfbf8;
	flex-shrink: 0;
}

.pc-shoppable-modal-gallery img.is-active {
	border-color: var(--pc-brand);
}

.pc-shoppable-modal-name {
	margin: 0 0 8px;
	font-size: 1.25rem;
}

.pc-shoppable-modal-price {
	margin: 0 0 16px;
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--pc-brand);
}

.pc-shoppable-modal-desc-label {
	margin: 0 0 8px;
	font-size: 0.85rem;
	font-weight: 700;
}

.pc-shoppable-modal-desc {
	margin: 0 0 16px;
	font-size: 0.9rem;
	color: var(--pc-muted);
	line-height: 1.5;
	max-height: 120px;
	overflow-y: auto;
}

.pc-shoppable-modal-packs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.pc-shoppable-modal-pack-opt {
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid var(--pc-line);
	background: #fff;
	font-weight: 700;
	font-size: 0.85rem;
	cursor: pointer;
}

.pc-shoppable-modal-pack-opt.is-active {
	background: var(--pc-brand);
	border-color: var(--pc-brand);
	color: #fff;
}

.pc-shoppable-modal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

body.pc-shoppable-modal-open {
	overflow: hidden;
}

@media (max-width: 820px) {
	.pc-shoppable-modal-grid {
		grid-template-columns: 1fr;
	}

	.pc-shoppable-modal-video {
		max-height: 50vh;
		min-height: 240px;
	}
}

/* Homepage Instagram (above footer, after collections) */
.pc-home-instagram {
	padding: 36px 0 44px;
	background: var(--pc-surface);
	border-top: 1px solid var(--pc-line);
	border-bottom: 1px solid var(--pc-line);
	margin-bottom: 8px;
}

.pc-instagram-head {
	margin-bottom: 20px;
}

.pc-instagram-handle {
	font-weight: 700;
}

.pc-instagram-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pc-instagram-item {
	margin: 0;
	border-radius: var(--pc-radius-sm);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #f0f2ee;
}

.pc-instagram-link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.pc-instagram-link::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(31, 77, 58, 0);
	transition: background 0.2s ease;
}

.pc-instagram-link:hover::after {
	background: rgba(31, 77, 58, 0.12);
}

.pc-instagram-play {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-size: 0.75rem;
	line-height: 32px;
	text-align: center;
	pointer-events: none;
	z-index: 1;
}

.pc-instagram-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pc-instagram-embed {
	max-width: 100%;
	overflow: hidden;
}

.pc-instagram-embed iframe {
	max-width: 100%;
}

.pc-home-editor {
	padding-top: 12px;
}

.pc-home-editor .entry-content {
	background: var(--pc-surface);
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius);
	padding: 24px;
	box-shadow: var(--pc-shadow);
}

.pc-empty-state {
	background: var(--pc-surface);
	border: 1px dashed var(--pc-line);
	border-radius: var(--pc-radius);
	padding: 24px;
	text-align: center;
}

.pc-empty-state p {
	margin-top: 0;
}

.pc-empty-state .pc-btn {
	margin: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
	.pc-instagram-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.woocommerce ul.products:not(.pc-collection-products) {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.pc-single-hero {
		grid-template-columns: 1fr;
	}

	.pc-single-stock {
		margin-left: 0;
		width: 100%;
	}
}

@media (max-width: 900px) {
	.pc-collection-products .pc-product-li {
		flex: 0 0 min(240px, 85vw);
		width: min(240px, 85vw) !important;
		max-width: min(240px, 85vw);
	}

	.pc-collection-track {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 821px) {
	.pc-header-wrap {
		position: sticky;
		top: 0;
		z-index: 50;
	}

	.pc-header-row {
		display: flex;
		align-items: center;
		gap: 16px;
		width: 100%;
	}

	.pc-nav-toggle {
		display: none !important;
	}

	.pc-logo {
		flex-shrink: 0;
	}

	.pc-nav {
		position: static;
		transform: none;
		flex: 1;
		min-width: 0;
		display: flex !important;
		align-items: center;
		justify-content: center;
		height: auto;
		padding: 0;
		background: transparent;
		box-shadow: none;
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
		overflow: visible;
		z-index: 1;
	}

	.pc-nav[hidden] {
		display: flex !important;
		transform: none;
	}

	.pc-header-actions {
		flex-shrink: 0;
		margin-left: 0;
	}

	.pc-nav-backdrop {
		display: none !important;
	}

	.pc-nav-close {
		display: none !important;
	}
}

@media (max-width: 820px) {
	.pc-logo-img--desktop {
		display: none;
	}

	.pc-logo-img--mobile {
		display: block;
		max-height: 64px;
		max-width: 220px;
	}

	.pc-header-row {
		display: grid;
		grid-template-columns: 42px 1fr auto;
		align-items: center;
		gap: 10px;
	}

	.pc-header-row .pc-nav {
		grid-column: 1;
		grid-row: 1;
	}

	.pc-nav-toggle {
		display: inline-flex !important;
		grid-column: 1;
		grid-row: 1;
		z-index: 2;
	}

	.pc-logo {
		grid-column: 2;
		grid-row: 1;
		justify-self: center;
		max-width: calc(100vw - 140px);
		z-index: 1;
	}

	.pc-header-actions {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
		z-index: 2;
	}

	.pc-hero-inner {
		grid-template-columns: 1fr;
	}

	.pc-nav-backdrop {
		z-index: 10000;
	}

	body.pc-nav-open .pc-header-wrap {
		z-index: 10001;
	}

	.pc-nav {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		right: auto;
		width: min(300px, 86vw);
		height: 100vh;
		height: 100dvh;
		max-height: none;
		flex: none;
		background: #fff;
		padding: 72px 24px 24px;
		transform: translate3d(-105%, 0, 0);
		box-shadow: 12px 0 40px rgba(0, 0, 0, 0.15);
		z-index: 2;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		transition: transform 0.24s ease;
	}

	.pc-nav-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 16px;
		right: 16px;
		width: 42px;
		height: 42px;
		padding: 0;
		border: 0;
		border-radius: 999px;
		background: #eef1ea;
		color: var(--pc-ink);
		cursor: pointer;
		z-index: 3;
	}

	.pc-nav[hidden] {
		display: block;
		transform: translate3d(-105%, 0, 0);
	}

	.pc-nav.is-open {
		transform: translate3d(0, 0, 0);
	}

	.pc-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.pc-menu a {
		display: block;
		width: 100%;
		padding: 12px 0;
		font-size: 1rem;
	}

	html,
	body {
		overflow-x: hidden;
		max-width: 100%;
	}

	body.pc-nav-open {
		overflow: hidden;
		touch-action: none;
	}

	.woocommerce ul.products:not(.pc-collection-products) {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.pc-footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-bottom: 32px;
	}

	.pc-footer-col {
		padding: 0;
	}

	.pc-footer-col--newsletter,
	.pc-footer-col--contact {
		border-left: 0;
		padding-top: 24px;
		border-top: 1px solid rgba(255, 255, 255, 0.18);
	}

	.pc-footer-bar-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 520px) {
	.pc-instagram-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.pc-home-instagram {
		padding: 28px 0 32px;
	}

	.woocommerce ul.products:not(.pc-collection-products) {
		grid-template-columns: 1fr !important;
	}
}
