:root {
	--pmb-blush: #f8b5c8;
	--pmb-blush-light: #fde8ee;
	--pmb-red: #f3333a;
	--pmb-red-dark: #c01a20;
	--pmb-lemon: #ffd84d;
	--pmb-mint: #a8e6b2;
	--pmb-mint-dark: #5cb86e;
	--pmb-surface: #fff;
	--pmb-surface-warm: #fffbf4;
	--pmb-ink: #111;
	--pmb-ink-soft: #3a3a3a;
	--pmb-ink-muted: #6b6b6b;
	--pmb-line: #e8e0d8;
	--pmb-line-soft: #f5f0ea;
	--pmb-border-warm: rgba(214, 177, 144, .72);
	--pmb-shadow-paper: 0 4px 12px rgba(155, 106, 67, .08);
	--pmb-shadow-paper-hover: 0 8px 24px rgba(155, 106, 67, .12);
	--pmb-shadow-solid: 4px 4px 0 rgba(17, 17, 17, 1);
	--pmb-shadow-solid-hover: 6px 6px 0 rgba(17, 17, 17, 1);
	--pmb-font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--pmb-font-display: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--pmb-font-logo: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--pmb-surface-warm);
	color: var(--pmb-ink);
	font-family: var(--pmb-font-sans);
	-webkit-font-smoothing: antialiased;
	text-rendering: geometricPrecision;
}

a {
	color: inherit;
	text-decoration: none;
}

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

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

.screen-reader-text:focus,
.pmb-skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	overflow: visible;
	clip: auto;
	border: 2px solid var(--pmb-ink);
	border-radius: 999px;
	background: var(--pmb-surface);
	color: var(--pmb-ink);
	font-weight: 900;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 3px solid var(--pmb-red);
	outline-offset: 3px;
}

.pmb-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 251, 244, .95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--pmb-line);
}

.pmb-header-inner {
	max-width: 1280px;
	height: 80px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.pmb-header-left,
.pmb-header-actions,
.pmb-primary-nav,
.pmb-primary-menu {
	display: flex;
	align-items: center;
}

.pmb-header-left {
	gap: 16px;
}

.pmb-logo {
	display: inline-flex;
	flex-direction: column;
	color: var(--pmb-red);
	font-family: var(--pmb-font-logo);
	font-size: clamp(1.45rem, 2.4vw, 1.875rem);
	font-weight: 900;
	line-height: .85;
	transition: transform .2s ease;
}

.pmb-logo:not(.pmb-image-logo):hover {
	transform: rotate(-2deg);
}

.pmb-image-logo {
	flex-direction: row;
	align-items: center;
}

.pmb-image-logo:hover {
	transform: rotate(-2deg);
}

.pmb-image-logo img {
	display: block;
	width: auto;
	max-width: 168px;
	max-height: 54px;
}

.pmb-custom-logo {
	display: inline-flex;
	align-items: center;
}

.pmb-custom-logo .custom-logo-link {
	display: inline-flex;
}

.pmb-custom-logo img {
	width: auto;
	max-width: 180px;
	max-height: 58px;
}

.pmb-primary-nav,
.pmb-primary-menu {
	gap: 24px;
	font-weight: 600;
}

.pmb-primary-menu,
.pmb-primary-menu .sub-menu,
.pmb-mobile-menu-list,
.pmb-mobile-menu-list .sub-menu,
.pmb-footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.pmb-primary-menu > .menu-item {
	position: relative;
}

.pmb-primary-nav a,
.pmb-nav-dropdown button {
	font: inherit;
	color: var(--pmb-ink);
	background: transparent;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.pmb-nav-chevron {
	width: 16px;
	height: 16px;
	stroke: rgba(17, 17, 17, .55);
	stroke-width: 2.5;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke .18s ease;
}

.pmb-primary-nav a:hover,
.pmb-primary-menu .current-menu-item > a,
.pmb-primary-menu .current-menu-ancestor > a,
.pmb-nav-dropdown button:hover {
	color: var(--pmb-red);
}

.pmb-nav-dropdown button:hover .pmb-nav-chevron {
	stroke: var(--pmb-red);
}

.pmb-nav-dropdown {
	position: relative;
}

.pmb-primary-menu .sub-menu,
.pmb-nav-dropdown-panel {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	padding: 8px;
	margin-top: 10px;
	background: var(--pmb-surface);
	border: 2px solid var(--pmb-line);
	border-radius: 18px;
	box-shadow: var(--pmb-shadow-paper);
	opacity: 0;
	visibility: hidden;
	transition: .18s ease;
}

.pmb-primary-menu .menu-item-has-children:hover > .sub-menu,
.pmb-primary-menu .menu-item-has-children:focus-within > .sub-menu,
.pmb-nav-dropdown:hover .pmb-nav-dropdown-panel,
.pmb-nav-dropdown:focus-within .pmb-nav-dropdown-panel {
	opacity: 1;
	visibility: visible;
}

.pmb-primary-menu .sub-menu a,
.pmb-nav-dropdown-panel a {
	display: block;
	padding: 10px 16px;
	border-radius: 12px;
	white-space: nowrap;
	font-weight: 600;
}

.pmb-primary-menu .sub-menu a:hover,
.pmb-nav-dropdown-panel a:hover {
	background: var(--pmb-surface-warm);
}

.pmb-header-actions {
	gap: 12px;
}

.pmb-product-search {
	position: relative;
	display: flex;
	align-items: center;
}

.pmb-product-search input[type="search"] {
	width: 256px;
	border: 1px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface);
	padding: 10px 40px 10px 16px;
	font: inherit;
}

.pmb-product-search button {
	position: absolute;
	right: 10px;
	border: 0;
	background: transparent;
	color: var(--pmb-ink-muted);
	cursor: pointer;
	font-size: 1.1rem;
}

.pmb-product-search button svg,
.pmb-icon-link svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pmb-product-search button svg {
	width: 16px;
	height: 16px;
}

.pmb-social-links svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pmb-social-link-tiktok svg,
.pmb-social-link-pinterest svg {
	fill: currentColor;
	stroke: none;
}

.pmb-icon-link,
.pmb-icon-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	color: var(--pmb-ink);
	cursor: pointer;
	font-size: 1.25rem;
	transition: color .18s ease, transform .18s ease;
}

.pmb-icon-link:hover,
.pmb-icon-button:hover {
	color: var(--pmb-red);
	transform: scale(1.1);
}

.pmb-mini-bag {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 18px;
	border: 2px solid currentColor;
	border-radius: 4px 4px 6px 6px;
}

.pmb-mini-bag::before {
	position: absolute;
	left: 50%;
	top: -8px;
	width: 10px;
	height: 8px;
	border: 2px solid currentColor;
	border-bottom: 0;
	border-radius: 999px 999px 0 0;
	transform: translateX(-50%);
	content: "";
}

.pmb-mini-bag {
	width: 14px;
	height: 13px;
	border-width: 1.7px;
}

.pmb-mini-bag::before {
	top: -6px;
	width: 8px;
	height: 6px;
	border-width: 1.7px;
}

.pmb-cart-count {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--pmb-surface-warm);
	border-radius: 999px;
	background: var(--pmb-red);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

.pmb-menu-toggle {
	display: none;
}

.pmb-menu-icon,
.pmb-menu-icon::before,
.pmb-menu-icon::after {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	content: "";
}

.pmb-menu-icon::before {
	transform: translateY(-7px);
}

.pmb-menu-icon::after {
	transform: translateY(5px);
}

.pmb-mobile-menu {
	position: absolute;
	top: 80px;
	left: 0;
	width: 100%;
	max-height: 80vh;
	overflow-y: auto;
	padding: 16px;
	background: var(--pmb-surface-warm);
	border-bottom: 1px solid var(--pmb-line);
	box-shadow: 0 14px 34px rgba(17, 17, 17, .12);
}

.pmb-mobile-search {
	display: flex;
	gap: 8px;
	margin: 0 0 14px;
}

.pmb-mobile-search input[type="search"] {
	min-width: 0;
	flex: 1;
	border: 1px solid var(--pmb-line);
	border-radius: 999px;
	padding: 10px 14px;
	background: var(--pmb-surface);
	font: inherit;
}

.pmb-mobile-search button {
	border: 0;
	border-radius: 999px;
	padding: 10px 14px;
	background: var(--pmb-red);
	color: #fff;
	font-weight: 900;
	cursor: pointer;
}

.pmb-mobile-menu a {
	display: block;
	padding: 12px;
	border-radius: 12px;
	font-weight: 700;
}

.pmb-mobile-menu-list .sub-menu {
	margin-left: 12px;
	padding-left: 12px;
	border-left: 2px solid var(--pmb-line);
}

.pmb-mobile-menu-list .sub-menu a {
	font-weight: 600;
}

.pmb-mobile-menu a:hover {
	background: var(--pmb-surface);
	color: var(--pmb-red);
}

.pmb-site-main {
	min-height: 52vh;
}

.pmb-site-footer {
	margin-top: 56px;
}

.pmb-newsletter {
	max-width: 896px;
	margin: 0 auto 44px;
	padding: 0 24px;
}

.pmb-newsletter-card {
	position: relative;
	overflow: hidden;
	padding: 28px 32px 26px;
	text-align: center;
	background: var(--pmb-blush-light);
	border: 2px solid rgba(248, 181, 200, .3);
	border-radius: 24px;
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-newsletter-card::before,
.pmb-newsletter-card::after {
	position: absolute;
	border-radius: 999px;
	content: "";
	pointer-events: none;
}

.pmb-newsletter-card::before {
	top: -56px;
	right: -44px;
	width: 160px;
	height: 160px;
	background: rgba(255, 216, 77, .34);
}

.pmb-newsletter-card::after {
	bottom: -64px;
	left: -48px;
	width: 150px;
	height: 150px;
	background: rgba(248, 181, 200, .45);
}

.pmb-newsletter-card > * {
	position: relative;
	z-index: 1;
}

.pmb-newsletter-card h2 {
	margin: 0 0 8px;
	font-family: var(--pmb-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 900;
	line-height: 1.08;
	text-wrap: balance;
}

.pmb-newsletter-card p {
	margin: 0 auto 22px;
	max-width: 480px;
	color: rgba(17, 17, 17, .8);
	line-height: 1.55;
	text-wrap: pretty;
}

.pmb-button {
	border: 0;
	border-radius: 999px;
	background: var(--pmb-red);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
	box-shadow: var(--pmb-shadow-solid);
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.pmb-button:hover {
	background: var(--pmb-red-dark);
	transform: scale(1.03);
	box-shadow: var(--pmb-shadow-solid-hover);
}

.pmb-newsletter-shortcode {
	max-width: 400px;
	margin: 0 auto 14px;
}

.pmb-newsletter-shortcode .mailpoet_form {
	padding: 0 !important;
}

.pmb-newsletter-shortcode .mailpoet_paragraph {
	margin: 0 !important;
}

.pmb-newsletter-shortcode form.mailpoet_form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	align-items: center;
}

.pmb-newsletter-shortcode .mailpoet_text_label,
.pmb-newsletter-shortcode .mailpoet_form_loading,
.pmb-newsletter-shortcode .mailpoet_form_loading + br {
	display: none !important;
}

.pmb-newsletter-shortcode input.mailpoet_text[type="email"] {
	width: 100% !important;
	min-height: 44px;
	padding: 10px 16px !important;
	border: 2px solid var(--pmb-line) !important;
	border-radius: 999px !important;
	background: var(--pmb-surface) !important;
	color: var(--pmb-ink) !important;
	font: inherit !important;
	font-size: .95rem !important;
	transition: border-color .18s ease, box-shadow .18s ease;
}

.pmb-newsletter-shortcode input.mailpoet_text[type="email"]:focus {
	border-color: var(--pmb-red) !important;
	box-shadow: 0 0 0 3px rgba(243, 51, 58, .16);
	outline: 0;
}

.pmb-newsletter-shortcode .mailpoet_submit {
	min-height: 44px;
	padding: 10px 24px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--pmb-red) !important;
	color: #fff !important;
	font: inherit !important;
	font-size: .95rem !important;
	font-weight: 900 !important;
	cursor: pointer;
	box-shadow: var(--pmb-shadow-solid);
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.pmb-newsletter-shortcode .mailpoet_submit:hover {
	background: var(--pmb-red-dark) !important;
	transform: scale(1.04);
	box-shadow: var(--pmb-shadow-solid-hover);
}

.pmb-newsletter-shortcode .mailpoet_submit:active {
	transform: scale(.98);
}

.pmb-newsletter-shortcode .mailpoet_message {
	margin: 12px 0 0 !important;
	padding: 0 !important;
	font-size: .9rem;
	font-weight: 800;
}

.pmb-newsletter-note {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0 !important;
	color: rgba(17, 17, 17, .6) !important;
	font-size: .82rem;
	font-weight: 600;
}

.pmb-newsletter-note svg {
	width: 13px;
	height: 13px;
	fill: var(--pmb-red);
}

.pmb-admin-setup-notice {
	display: inline-block;
	margin: 12px auto 0;
	padding: 10px 14px;
	border: 1px solid rgba(229, 75, 75, .28);
	border-radius: 12px;
	background: rgba(255, 255, 255, .72);
	color: var(--pmb-red-dark);
	font-size: .92rem;
	font-weight: 800;
}

.pmb-footer-main {
	background: var(--pmb-surface);
	border-top: 1px solid var(--pmb-line);
	padding: 64px 24px 32px;
}

.pmb-footer-grid {
	max-width: 1280px;
	margin: 0 auto 56px;
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
	gap: 48px;
}

.pmb-footer-brand p {
	max-width: 420px;
	color: rgba(17, 17, 17, .7);
	line-height: 1.65;
}

.pmb-footer-logo {
	font-size: 2.5rem;
	margin-bottom: 16px;
}

.pmb-social-links {
	display: flex;
	gap: 14px;
}

.pmb-social-links a {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface-warm);
	font-weight: 800;
	transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.pmb-social-links a:hover {
	border-color: var(--pmb-red);
	color: var(--pmb-red);
	background: var(--pmb-surface);
}

.pmb-social-links .pmb-social-link-instagram:hover {
	border-color: #e1306c;
	color: #e1306c;
}

.pmb-social-links .pmb-social-link-tiktok:hover {
	border-color: #000;
	color: #000;
}

.pmb-social-links .pmb-social-link-twitter:hover {
	border-color: #1da1f2;
	color: #1da1f2;
}

.pmb-social-links .pmb-social-link-pinterest:hover {
	border-color: #e60023;
	color: #e60023;
}

.pmb-footer-column h3 {
	display: inline-block;
	margin: 0 0 16px;
	border-bottom: 2px solid rgba(243, 51, 58, .3);
	font-family: var(--pmb-font-display);
}

.pmb-footer-column ul,
.pmb-footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.pmb-footer-menu {
	column-count: 2;
	column-gap: 36px;
}

.pmb-footer-menu li {
	break-inside: avoid;
}

.pmb-footer-column li + li {
	margin-top: 12px;
}

.pmb-footer-column a {
	color: rgba(17, 17, 17, .7);
}

.pmb-footer-column a:hover {
	color: var(--pmb-red);
}

.pmb-footer-bottom {
	max-width: 1280px;
	margin: 0 auto;
	padding-top: 32px;
	border-top: 1px solid rgba(17, 17, 17, .1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: rgba(17, 17, 17, .6);
	font-size: .9rem;
}

.pmb-footer-bottom nav {
	display: flex;
	gap: 24px;
}

@media (max-width: 1100px) {
	.pmb-primary-nav,
	.pmb-product-search,
	.pmb-account-link {
		display: none;
	}

	.pmb-menu-toggle {
		display: inline-flex;
	}
}

@media (max-width: 760px) {
	.pmb-header-inner {
		padding: 0 16px;
	}

	.pmb-newsletter {
		padding: 0 16px;
	}

	.pmb-newsletter-card {
		padding: 24px 18px;
	}

	.pmb-newsletter-shortcode form.mailpoet_form {
		grid-template-columns: 1fr;
	}

	.pmb-newsletter-shortcode .mailpoet_submit {
		width: 100%;
	}

	.pmb-footer-bottom {
		flex-direction: column;
	}

	.pmb-footer-grid {
		grid-template-columns: 1fr;
	}

	.pmb-footer-menu {
		column-count: 1;
	}
}

.pmb-shop-page,
.pmb-single-product,
.pmb-content-page,
.pmb-post-page,
.pmb-archive-page,
.pmb-search-page,
.pmb-404-page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 48px 32px;
}

.pmb-shop-hero {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 28px;
	margin-bottom: 32px;
	padding: 24px 24px 0;
	background: var(--pmb-blush-light);
	border: 2px solid rgba(248, 181, 200, .3);
	border-radius: 16px;
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-shop-hero::before,
.pmb-shop-hero::after {
	position: absolute;
	width: 256px;
	height: 256px;
	border-radius: 999px;
	content: "";
	pointer-events: none;
	filter: blur(32px);
}

.pmb-shop-hero::before {
	top: -48px;
	right: -48px;
	background: rgba(243, 51, 58, .1);
}

.pmb-shop-hero::after {
	left: -48px;
	bottom: -48px;
	background: rgba(255, 216, 77, .2);
}

.pmb-shop-hero-copy,
.pmb-shop-hero-art {
	position: relative;
	z-index: 1;
}

.pmb-shop-hero-copy {
	padding-left: 16px;
}

.pmb-shop-hero-copy h1 {
	margin: 0 0 8px;
	font-family: var(--pmb-font-display);
	font-size: clamp(2rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.1;
}

.pmb-shop-hero-copy h1 span {
	color: var(--pmb-red);
}

.pmb-shop-hero-copy p {
	max-width: 384px;
	margin: 0;
	color: rgba(17, 17, 17, .7);
	font-weight: 500;
	line-height: 1.5;
}

.pmb-shop-hero-art {
	width: 100%;
	max-width: 448px;
	align-self: end;
	justify-self: end;
}

.pmb-shop-hero-card {
	height: 224px;
	margin-bottom: -2px;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	position: relative;
}

.pmb-shop-hero-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right bottom;
}

.pmb-shop-hero-card:hover {
	transform: none;
}

.pmb-shop-hero-card::before,
.pmb-shop-hero-card::after {
	position: absolute;
	border: 2px solid rgba(17, 17, 17, .12);
	border-radius: 999px;
	background: rgba(255, 255, 255, .72);
	content: "";
	display: none;
}

.pmb-shop-hero-card::before {
	width: 42%;
	height: 30%;
	left: 17%;
	top: 23%;
	transform: rotate(-12deg);
}

.pmb-shop-hero-card::after {
	width: 34%;
	height: 24%;
	right: 16%;
	bottom: 22%;
	transform: rotate(10deg);
}

.pmb-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.pmb-collection-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: 0 auto 40px;
}

.pmb-collection-pills a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border: 2px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
	font-size: .95rem;
	font-weight: 800;
	transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.pmb-collection-pills a:first-child,
.pmb-collection-pills a:hover {
	border-color: var(--pmb-blush);
	background: var(--pmb-blush-light);
	color: var(--pmb-ink);
}

.pmb-home-product-section {
	margin-top: 0;
}

.pmb-home-filter-stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	max-width: 1000px;
	margin: 0 auto 34px;
}

.pmb-category-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 12px;
}

.pmb-category-pills a,
.pmb-category-pills button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 19px;
	border: 2px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
	color: var(--pmb-ink);
	font-size: .95rem;
	font-weight: 700;
	font-family: inherit;
	white-space: nowrap;
	cursor: pointer;
	transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.pmb-category-pills svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pmb-category-pills a.is-active,
.pmb-category-pills a:hover,
.pmb-category-pills button.is-active,
.pmb-category-pills button:hover {
	border-color: var(--pmb-blush);
	background: var(--pmb-blush-light);
}

.pmb-home-filter-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding-top: 18px;
	border-top: 1px solid var(--pmb-line);
	color: rgba(17, 17, 17, .62);
	font-size: .92rem;
	font-weight: 600;
}

.pmb-collection-sort-form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.pmb-home-filter-row label {
	display: block;
}

.pmb-home-filter-row select {
	min-height: 39px;
	max-width: 260px;
	padding: 0 34px 0 16px;
	border: 2px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface);
	color: var(--pmb-ink);
	font: inherit;
	font-weight: 500;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(17, 17, 17, .03);
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--pmb-ink) 50%),
		linear-gradient(135deg, var(--pmb-ink) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 50%,
		calc(100% - 13px) 50%;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

.pmb-home-filter-row select:hover,
.pmb-home-filter-row select:focus {
	border-color: var(--pmb-red);
	color: var(--pmb-red);
	outline: none;
}

.pmb-collection-count {
	max-width: 1120px;
	margin: 0 auto 22px;
	color: rgba(17, 17, 17, .62);
	font-size: .92rem;
	font-weight: 700;
	text-align: center;
}

.pmb-home-section-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.pmb-home-section-header h2 {
	margin: 0;
	font-family: var(--pmb-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.05;
}

.pmb-home-section-header a {
	color: var(--pmb-red);
	font-weight: 900;
}

.pmb-safe-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.pmb-safe-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 16px;
	border: 2px solid var(--pmb-line);
	border-radius: 24px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pmb-product-card-link {
	position: absolute;
	inset: 0;
	z-index: 3;
	border-radius: inherit;
	cursor: pointer;
}

.pmb-home-pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 34px 0 0;
}

.pmb-home-pagination a {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface);
	color: var(--pmb-ink);
	font-size: .95rem;
	font-weight: 900;
}

.pmb-home-pagination a.is-active,
.pmb-home-pagination a:hover {
	border-color: var(--pmb-red);
	background: var(--pmb-red);
	color: #fff;
}

.pmb-collection-page.is-loading .pmb-home-filter-stack,
.pmb-collection-page.is-loading .pmb-collection-results,
[data-pmb-filter-root].is-loading .pmb-home-filter-stack,
[data-pmb-filter-root].is-loading [data-pmb-collection-results] {
	opacity: .55;
	pointer-events: none;
	transition: opacity .18s ease;
}

.pmb-safe-product-card:hover {
	border-color: var(--pmb-border-warm);
	box-shadow: var(--pmb-shadow-paper-hover);
	transform: translateY(-2px);
}

.pmb-safe-product-card:hover .pmb-product-card-image img {
	transform: scale(1.05);
}

.pmb-safe-product-card .screen-reader-text,
.pmb-product-card .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pmb-shop-toolbar select,
.woocommerce-ordering select {
	padding: 10px 36px 10px 16px;
	border: 2px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface);
	font: inherit;
	font-weight: 600;
}

.pmb-product-count {
	color: rgba(17, 17, 17, .6);
	font-weight: 700;
}

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

.woocommerce ul.products li.product.pmb-product-card,
li.product.pmb-product-card {
	position: relative;
	float: none;
	width: auto;
	margin: 0;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 16px;
	border: 2px solid var(--pmb-line);
	border-radius: 24px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.woocommerce ul.products li.product.pmb-product-card:hover,
li.product.pmb-product-card:hover {
	border-color: var(--pmb-border-warm);
	box-shadow: var(--pmb-shadow-paper-hover);
	transform: translateY(-2px);
}

.pmb-product-card-badges {
	position: absolute;
	top: 24px;
	left: 24px;
	right: 24px;
	z-index: 5;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	pointer-events: none;
}

.pmb-product-badge {
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--pmb-lemon);
	color: var(--pmb-ink);
	font-size: .72rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .04em;
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-product-card-image {
	position: relative;
	z-index: 2;
	aspect-ratio: 1;
	overflow: hidden;
	margin-bottom: 14px;
	border-radius: 16px;
	background: var(--pmb-surface-warm);
}

.pmb-product-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
	transition: transform .5s ease;
}

.pmb-product-card:hover .pmb-product-card-image img {
	transform: scale(1.05);
}

.pmb-product-card-body {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1;
	flex-direction: column;
}

.pmb-product-type {
	margin: 0 0 4px;
	color: rgba(17, 17, 17, .5);
	font-size: .75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.woocommerce ul.products li.product .pmb-product-title,
.pmb-product-title {
	margin: 0 0 8px;
	padding: 0;
	color: var(--pmb-ink);
	font-family: var(--pmb-font-display);
	font-size: 1.04rem;
	font-weight: 600;
	line-height: 1.2;
}

.pmb-product-card:hover .pmb-product-title {
	color: var(--pmb-red);
}

.pmb-product-card-footer {
	margin-top: auto;
	padding-top: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.woocommerce ul.products li.product .price,
.pmb-product-price {
	color: var(--pmb-red);
	font-size: 1.125rem;
	font-weight: 900;
}

.woocommerce a.button.pmb-card-add-button,
.woocommerce ul.products li.product .button.pmb-card-add-button,
.pmb-card-add-button {
	position: relative;
	z-index: 6;
	margin: 0;
	padding: 9px 14px;
	border: 1px solid var(--pmb-ink);
	border-radius: 999px;
	background: var(--pmb-surface);
	color: var(--pmb-ink);
	font-size: .9rem;
	font-weight: 900;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.woocommerce a.button.pmb-card-add-button:hover,
.pmb-card-add-button:hover {
	border-color: var(--pmb-red);
	background: var(--pmb-red);
	color: #fff;
}

.pmb-empty-state {
	padding: 96px 24px;
	text-align: center;
	border: 2px solid var(--pmb-line);
	border-radius: 28px;
	background: var(--pmb-surface);
}

.pmb-empty-state .pmb-button {
	display: inline-flex;
	margin-top: 24px;
	padding: 12px 24px;
}

.pmb-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
	color: rgba(17, 17, 17, .6);
	font-size: .9rem;
	font-weight: 600;
}

.pmb-breadcrumb a:hover {
	color: var(--pmb-red);
}

.pmb-product-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 64px;
	margin-bottom: 96px;
}

.pmb-product-gallery-main {
	position: relative;
	overflow: hidden;
	border: 2px solid var(--pmb-line);
	border-radius: 28px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
	aspect-ratio: 1;
}

.pmb-product-gallery-main img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	mix-blend-mode: multiply;
	transition: transform .7s ease;
}

.pmb-product-gallery-main:hover img {
	transform: scale(1.05);
}

.pmb-product-thumbnail-shell {
	position: relative;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 42px;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
}

.pmb-product-thumbnails {
	display: flex;
	gap: 16px;
	padding-bottom: 8px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
}

.pmb-product-thumbnails::-webkit-scrollbar {
	display: none;
}

.pmb-product-thumbnails button {
	flex: 0 0 auto;
	width: 96px;
	height: 96px;
	padding: 0;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 14px;
	background: var(--pmb-surface);
	opacity: .6;
	cursor: pointer;
	scroll-snap-align: start;
	transition: opacity .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.pmb-thumb-scroll {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface);
	color: var(--pmb-ink);
	box-shadow: var(--pmb-shadow-paper);
	cursor: pointer;
	transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease;
}

.pmb-thumb-scroll:hover {
	border-color: var(--pmb-red);
	color: var(--pmb-red);
	transform: translateY(-1px);
}

.pmb-thumb-scroll svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pmb-product-thumbnails button:hover,
.pmb-product-thumbnails button.is-active {
	border-color: var(--pmb-red);
	opacity: 1;
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-product-thumbnails img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
}

.pmb-product-summary {
	display: flex;
	flex-direction: column;
}

.pmb-product-type-pill {
	align-self: flex-start;
	margin-bottom: 12px;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--pmb-lemon);
	font-size: .75rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.pmb-single-title {
	margin: 0 0 16px;
	font-family: var(--pmb-font-display);
	font-size: clamp(2.4rem, 5vw, 3.5rem);
	line-height: 1.05;
}

.pmb-single-excerpt {
	color: rgba(17, 17, 17, .72);
	font-size: 1.1rem;
	line-height: 1.65;
}

.pmb-single-price {
	margin: 24px 0 32px;
	color: var(--pmb-red);
	font-size: 2rem;
	font-weight: 900;
}

.pmb-personalization-panel {
	flex: 0 0 100%;
	width: 100%;
	margin-bottom: 32px;
	padding: 24px;
	border: 2px solid rgba(248, 181, 200, .3);
	border-radius: 20px;
	background: var(--pmb-blush-light);
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-personalization-heading {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 14px;
}

.pmb-personalization-icon {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border-radius: 999px;
	background: rgba(255, 255, 255, .52);
	color: var(--pmb-red);
}

.pmb-personalization-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pmb-personalization-panel h2 {
	margin: 0 0 4px;
	font-family: var(--pmb-font-display);
	font-size: 1.1rem;
}

.pmb-personalization-panel p {
	margin: 0;
	color: rgba(17, 17, 17, .7);
	font-size: .95rem;
}

.pmb-personalization-panel input {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--pmb-line);
	border-radius: 12px;
	background: var(--pmb-surface);
	font: inherit;
}

.pmb-personalization-panel small {
	display: block;
	margin-top: 8px;
	color: rgba(17, 17, 17, .5);
	text-align: right;
	font-weight: 700;
}

.pmb-add-to-cart-panel form.cart {
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;
	align-items: center;
	margin-bottom: 20px;
}

.pmb-add-to-cart-panel form.variations_form.cart {
	display: flex !important;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.pmb-add-to-cart-panel .single_variation_wrap {
	width: 100%;
	margin-top: 22px;
}

.pmb-add-to-cart-panel .woocommerce-variation-price {
	display: none;
}

.pmb-add-to-cart-panel .woocommerce-variation-add-to-cart {
	display: flex !important;
	flex-wrap: wrap;
	width: 100%;
	gap: 16px;
	align-items: center;
}

.pmb-add-to-cart-panel #wc-stripe-express-checkout-element {
	min-height: 56px;
}

.pmb-add-to-cart-panel table.variations {
	margin: 0 0 22px;
	border: 0;
}

.pmb-add-to-cart-panel form.is-pmb-enhanced table.variations {
	display: none;
}

.pmb-option-groups {
	display: grid;
	gap: 22px;
	margin: 0 0 28px;
}

.pmb-option-group h4 {
	margin: 0 0 12px;
	color: var(--pmb-ink);
	font-size: .95rem;
	font-weight: 900;
}

.pmb-selected-option-label {
	color: rgba(17, 17, 17, .68);
	font-weight: 600;
}

.pmb-option-choices {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pmb-option-button {
	cursor: pointer;
	transition: border-color .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.pmb-size-option {
	padding: 9px 16px;
	border: 2px solid var(--pmb-line);
	border-radius: 14px;
	background: var(--pmb-surface);
	color: rgba(17, 17, 17, .72);
	font: inherit;
	font-size: .9rem;
	font-weight: 800;
}

.pmb-size-option:hover,
.pmb-size-option.is-active {
	border-color: var(--pmb-red);
	background: rgba(243, 51, 58, .05);
	color: var(--pmb-red);
}

.pmb-color-option {
	width: 42px;
	height: 42px;
	padding: 4px;
	border: 2px solid transparent;
	border-radius: 999px;
	background: transparent;
}

.pmb-color-option span {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid var(--pmb-line);
	border-radius: inherit;
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-color-option:hover,
.pmb-color-option.is-active {
	border-color: var(--pmb-red);
}

.pmb-add-to-cart-panel table.variations th,
.pmb-add-to-cart-panel table.variations td {
	display: block;
	padding: 0 0 10px;
	border: 0;
	text-align: left;
}

.pmb-add-to-cart-panel table.variations label {
	font-weight: 900;
}

.pmb-add-to-cart-panel table.variations select {
	min-width: 190px;
	padding: 10px 34px 10px 16px;
	border: 2px solid var(--pmb-line);
	border-radius: 14px;
	background: var(--pmb-surface);
	color: var(--pmb-ink);
	font: inherit;
	font-weight: 700;
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-add-to-cart-panel .reset_variations {
	margin-left: 10px;
	color: rgba(17, 17, 17, .55);
	font-weight: 700;
}

.pmb-add-to-cart-panel .quantity {
	display: inline-flex;
	align-items: center;
	overflow: hidden;
	height: 56px;
	border: 2px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-add-to-cart-panel .quantity input.qty {
	height: 56px;
	width: 52px;
	border: 0;
	background: transparent;
	font-weight: 900;
	font-size: 1.1rem;
	text-align: center;
	-moz-appearance: textfield;
}

.pmb-add-to-cart-panel .quantity input.qty::-webkit-inner-spin-button,
.pmb-add-to-cart-panel .quantity input.qty::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.pmb-quantity-step {
	width: 54px;
	height: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: var(--pmb-ink);
	cursor: pointer;
	transition: color .18s ease, background .18s ease;
}

.pmb-quantity-step:hover {
	background: rgba(232, 224, 216, .45);
	color: var(--pmb-red);
}

.pmb-quantity-step svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.woocommerce div.product .pmb-add-to-cart-panel button.button,
.woocommerce div.product .pmb-add-to-cart-panel button.button.alt,
.woocommerce div.product .pmb-add-to-cart-panel form.cart .button,
.pmb-add-to-cart-panel button.single_add_to_cart_button,
.pmb-add-to-cart-panel .single_add_to_cart_button.button.alt {
	flex: 1;
	min-height: 56px;
	padding: 0 34px;
	border-radius: 999px;
	border: 0;
	background: var(--pmb-red) !important;
	color: #fff !important;
	font-size: 1.1rem;
	font-weight: 900;
	box-shadow: var(--pmb-shadow-solid);
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.woocommerce div.product .pmb-add-to-cart-panel button.button::before,
.pmb-add-to-cart-panel button.single_add_to_cart_button::before {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 8px;
	vertical-align: -3px;
	background: currentColor;
	clip-path: path("M4 8h16l-2 12H6L4 8Zm4 0a4 4 0 0 1 8 0h-2a2 2 0 0 0-4 0H8Z");
	content: "";
}

.woocommerce div.product .pmb-add-to-cart-panel button.button:hover,
.woocommerce div.product .pmb-add-to-cart-panel button.button.alt:hover,
.pmb-add-to-cart-panel .single_add_to_cart_button.button.alt:hover {
	background: var(--pmb-red-dark) !important;
	box-shadow: var(--pmb-shadow-solid-hover);
	transform: scale(1.02);
}

.pmb-product-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 24px;
}

.pmb-gift-note {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	max-width: 330px;
	padding: 14px 16px;
	border: 2px solid var(--pmb-line);
	border-radius: 18px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
	color: rgba(17, 17, 17, .7);
	font-size: .95rem;
	font-weight: 600;
}

.pmb-gift-note svg {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	color: var(--pmb-mint-dark);
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pmb-share-links {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pmb-share-links > span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: rgba(17, 17, 17, .6);
	font-size: .9rem;
	font-weight: 800;
}

.pmb-share-links a,
.pmb-share-links button {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface);
	color: var(--pmb-ink);
	box-shadow: var(--pmb-shadow-paper);
	cursor: pointer;
	transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.pmb-share-links svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pmb-share-pinterest svg {
	fill: currentColor;
	stroke: none;
}

.pmb-share-links a:hover,
.pmb-share-links button:hover {
	transform: translateY(-1px);
}

.pmb-share-facebook:hover {
	border-color: #1877f2;
	color: #1877f2;
}

.pmb-share-twitter:hover {
	border-color: #1da1f2;
	color: #1da1f2;
}

.pmb-share-pinterest:hover {
	border-color: #e60023;
	color: #e60023;
}

.pmb-copy-link.is-copied {
	border-color: var(--pmb-mint-dark);
	color: var(--pmb-mint-dark);
}

.pmb-product-tabs {
	margin-bottom: 96px;
	padding: 48px;
	border: 2px solid var(--pmb-line);
	border-radius: 32px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-tab-list {
	display: flex;
	gap: 28px;
	margin-bottom: 28px;
	border-bottom: 1px solid var(--pmb-line);
	overflow-x: auto;
}

.pmb-tab-list button {
	position: relative;
	padding: 0 0 16px;
	border: 0;
	background: transparent;
	color: rgba(17, 17, 17, .42);
	font: inherit;
	font-weight: 900;
	white-space: nowrap;
	cursor: pointer;
}

.pmb-tab-list button.is-active {
	color: var(--pmb-ink);
}

.pmb-tab-list button.is-active::after {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 3px;
	border-radius: 999px 999px 0 0;
	background: var(--pmb-red);
	content: "";
}

.pmb-tab-section {
	display: none;
	max-width: 720px;
	color: rgba(17, 17, 17, .8);
	font-size: 1.05rem;
	line-height: 1.7;
}

.pmb-tab-section.is-active {
	display: block;
}

.pmb-related-products h2 {
	margin: 0 0 32px;
	font-family: var(--pmb-font-display);
	font-size: 2rem;
}

.pmb-related-products ul.products,
.pmb-related-product-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
	.woocommerce ul.products,
	ul.products,
	.pmb-safe-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.pmb-product-main {
		gap: 40px;
	}

	.pmb-product-meta-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.pmb-share-links {
		flex-wrap: wrap;
	}
}

@media (max-width: 820px) {
	.pmb-shop-hero,
	.pmb-product-main,
	.pmb-home-safe-shell {
		grid-template-columns: 1fr;
	}

	.pmb-shop-hero {
		padding-bottom: 0;
	}

	.pmb-shop-hero-art {
		max-width: 100%;
		justify-self: end;
	}

	.pmb-shop-hero-card {
		height: 220px;
	}

	.woocommerce ul.products,
	ul.products,
	.pmb-safe-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.pmb-shop-page,
	.pmb-single-product,
	.pmb-content-page,
	.pmb-post-page,
	.pmb-archive-page,
	.pmb-search-page,
	.pmb-404-page {
		padding: 32px 16px;
	}

	.woocommerce ul.products,
	ul.products,
	.pmb-safe-product-grid {
		grid-template-columns: 1fr;
	}

	.pmb-shop-hero-card {
		height: 180px;
	}

	.pmb-product-thumbnail-shell {
		display: block;
	}

	.pmb-thumb-scroll {
		display: none;
	}

	.pmb-product-tabs {
		padding: 24px;
		border-radius: 24px;
	}

	.pmb-add-to-cart-panel form.cart,
	.pmb-add-to-cart-panel .woocommerce-variation-add-to-cart {
		flex-direction: column;
		align-items: stretch;
	}

	.pmb-add-to-cart-panel .quantity {
		align-self: flex-start;
	}

	.pmb-related-products ul.products {
		grid-template-columns: 1fr;
	}
}

.pmb-empty-cart {
	max-width: 760px;
	margin: 0 auto;
	padding: 128px 24px;
	text-align: center;
}

.pmb-empty-cart-icon {
	width: 96px;
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	border: 2px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface-warm);
	box-shadow: var(--pmb-shadow-paper);
	font-size: 2.5rem;
}

.pmb-empty-cart h1,
.pmb-cart-page h1 {
	margin: 0 0 16px;
	font-family: var(--pmb-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
}

.pmb-empty-cart p {
	max-width: 520px;
	margin: 0 auto 32px;
	color: rgba(17, 17, 17, .7);
	font-size: 1.1rem;
	line-height: 1.6;
}

.pmb-empty-cart .pmb-button {
	display: inline-flex;
	padding: 16px 32px;
}

.pmb-cart-page,
.pmb-checkout-page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 48px 24px;
}

.pmb-cart-layout,
.pmb-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
	gap: 48px;
	align-items: start;
}

.pmb-cart-items {
	display: grid;
	gap: 24px;
}

.pmb-cart-item {
	display: flex;
	gap: 24px;
	padding: 24px;
	border: 2px solid var(--pmb-line);
	border-radius: 28px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-cart-item-image {
	width: 128px;
	height: 128px;
	flex: 0 0 128px;
	overflow: hidden;
	border: 2px solid var(--pmb-line);
	border-radius: 18px;
	background: var(--pmb-surface-warm);
}

.pmb-cart-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
}

.pmb-cart-item-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.pmb-cart-item-top {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.pmb-cart-item h2 {
	margin: 4px 0 6px;
	font-family: var(--pmb-font-display);
	font-size: 1.15rem;
	line-height: 1.2;
}

.pmb-cart-line-price {
	color: var(--pmb-red);
	font-weight: 900;
	white-space: nowrap;
}

.pmb-cart-unit-price {
	display: block;
	color: rgba(17, 17, 17, .54);
	font-size: .82rem;
	font-weight: 800;
}

.pmb-cart-item-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 20px;
}

.pmb-cart-item .quantity input.qty {
	width: 88px;
	height: 42px;
	border: 2px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface-warm);
	font-weight: 900;
}

.pmb-remove-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	color: rgba(17, 17, 17, .45);
	font-size: 1.8rem;
	line-height: 1;
}

.pmb-remove-item:hover {
	color: var(--pmb-red);
}

.pmb-cart-update-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.pmb-coupon {
	display: flex;
	gap: 8px;
}

.pmb-coupon input {
	min-height: 44px;
	padding: 0 16px;
	border: 2px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface);
}

.woocommerce .pmb-cart-page button.button,
.woocommerce .pmb-cart-page .coupon button,
.woocommerce .pmb-checkout-page button.button,
.woocommerce .pmb-checkout-page #place_order {
	border-radius: 999px;
	background: var(--pmb-red);
	color: #fff;
	font-weight: 900;
}

.pmb-cart-summary,
.pmb-checkout-summary {
	position: sticky;
	top: 112px;
	padding: 32px;
	border: 2px solid var(--pmb-line);
	border-radius: 32px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-cart-summary h2,
.pmb-checkout-summary h2 {
	margin: 0 0 24px;
	font-family: var(--pmb-font-display);
	font-size: 1.6rem;
}

.pmb-cart-summary .wc-proceed-to-checkout a.checkout-button,
.woocommerce .pmb-checkout-page #place_order {
	width: 100%;
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--pmb-red);
	color: #fff;
	font-size: 1.05rem;
	font-weight: 900;
	box-shadow: var(--pmb-shadow-solid);
}

.pmb-back-link {
	display: inline-flex;
	margin-bottom: 32px;
	color: rgba(17, 17, 17, .6);
	font-weight: 800;
}

.pmb-back-link:hover {
	color: var(--pmb-red);
}

.pmb-checkout-card {
	padding: 32px;
	border: 2px solid var(--pmb-line);
	border-radius: 28px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-checkout-section + .pmb-checkout-section {
	margin-top: 32px;
}

.pmb-checkout-section h3,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#order_review_heading {
	margin: 0 0 24px;
	font-family: var(--pmb-font-display);
	font-size: 1.5rem;
}

.pmb-checkout-page input.input-text,
.pmb-checkout-page select,
.pmb-checkout-page textarea,
.pmb-checkout-page .select2-container .select2-selection--single {
	min-height: 48px;
	border: 2px solid var(--pmb-line);
	border-radius: 12px;
	background: var(--pmb-surface-warm);
}

.pmb-secure-note {
	margin: 24px 0 0;
	color: rgba(17, 17, 17, .55);
	text-align: center;
	font-weight: 700;
}

.pmb-content-card,
.pmb-post-card {
	border: 2px solid var(--pmb-line);
	border-radius: 28px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-account-page {
	max-width: 1180px;
	margin: 0 auto;
	padding: 48px 24px;
}

.pmb-account-header {
	margin-bottom: 28px;
	text-align: center;
}

.pmb-account-header h1 {
	margin: 0 0 8px;
	font-family: var(--pmb-font-display);
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	line-height: 1.05;
}

.pmb-account-header p {
	margin: 0;
	color: rgba(17, 17, 17, .68);
	font-weight: 600;
}

.pmb-account-card {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	float: none;
	width: auto;
	padding: 20px;
	border: 2px solid var(--pmb-line);
	border-radius: 24px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li + li {
	margin-top: 8px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 11px 14px;
	border-radius: 14px;
	font-weight: 800;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
	background: var(--pmb-blush-light);
	color: var(--pmb-red);
}

.pmb-account-content,
.woocommerce-account .woocommerce-MyAccount-content {
	float: none;
	width: auto;
	min-width: 0;
	padding: 28px;
	border: 2px solid var(--pmb-line);
	border-radius: 28px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	min-height: 46px;
	border: 2px solid var(--pmb-line);
	border-radius: 12px;
	background: var(--pmb-surface-warm);
	padding: 10px 12px;
}

.woocommerce form .form-row label {
	font-weight: 800;
}

.woocommerce table.shop_table {
	border: 2px solid var(--pmb-line);
	border-radius: 18px;
	overflow: hidden;
	background: var(--pmb-surface);
}

.woocommerce table.shop_table th {
	font-family: var(--pmb-font-display);
}

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
	border-top-color: var(--pmb-red);
	border-radius: 18px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-content-card {
	max-width: 860px;
	margin: 0 auto;
	padding: 40px;
}

.pmb-content-card h1,
.pmb-archive-header h1 {
	margin: 0 0 24px;
	font-family: var(--pmb-font-display);
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	line-height: 1.05;
}

.pmb-entry-content {
	color: rgba(17, 17, 17, .78);
	line-height: 1.75;
}

.pmb-static-shell {
	max-width: 1120px;
	margin: 0 auto;
}

.pmb-static-page-narrow {
	max-width: 760px;
	margin: 0 auto;
}

.pmb-static-page-about {
	max-width: 900px;
	margin: 0 auto;
}

.pmb-static-page-contact {
	max-width: 980px;
	margin: 0 auto;
}

.pmb-static-header {
	margin: 0 auto 46px;
	text-align: center;
}

.pmb-static-header h1 {
	margin: 0 0 16px;
	font-family: var(--pmb-font-display);
	font-size: clamp(2.35rem, 6vw, 3.7rem);
	line-height: 1.04;
}

.pmb-static-header p {
	max-width: 640px;
	margin: 0 auto;
	color: rgba(17, 17, 17, .68);
	font-size: 1.18rem;
	font-weight: 600;
	line-height: 1.55;
}

.pmb-static-card,
.pmb-contact-card {
	border: 2px solid var(--pmb-line);
	border-radius: 28px;
	background: var(--pmb-surface);
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-static-card {
	padding: clamp(28px, 5vw, 48px);
	color: rgba(17, 17, 17, .78);
	font-size: 1.08rem;
	line-height: 1.78;
	text-align: left;
}

.pmb-static-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 28px;
	border: 2px solid var(--pmb-blush);
	border-radius: 999px;
	background: var(--pmb-blush-light);
	color: var(--pmb-red);
	font-size: 2rem;
	font-weight: 900;
}

.pmb-static-card h2,
.pmb-policy-content h2,
.pmb-faq-list h2,
.pmb-contact-card h2,
.pmb-contact-aside h2 {
	margin: 0 0 12px;
	color: var(--pmb-ink);
	font-family: var(--pmb-font-display);
	line-height: 1.15;
}

.pmb-static-card h2 {
	margin-top: 38px;
	text-align: center;
}

.pmb-static-card h2:first-of-type {
	margin-top: 0;
}

.pmb-static-card p {
	margin: 0 0 18px;
}

.pmb-static-actions {
	margin-top: 28px;
	text-align: center;
}

.pmb-policy-content {
	color: rgba(17, 17, 17, .72);
	font-size: 1.04rem;
	line-height: 1.78;
}

.pmb-policy-content h2 {
	margin-top: 34px;
	font-size: 1.55rem;
}

.pmb-policy-content h2:first-child,
.pmb-policy-content p:first-child + h2 {
	margin-top: 0;
}

.pmb-policy-content p,
.pmb-policy-content ul {
	margin: 0 0 18px;
}

.pmb-policy-content a,
.pmb-contact-aside a {
	color: var(--pmb-red);
	font-weight: 800;
}

.pmb-faq-list {
	display: grid;
	gap: 30px;
}

.pmb-faq-list section {
	padding-bottom: 28px;
	border-bottom: 1px solid var(--pmb-line);
}

.pmb-faq-list section:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.pmb-faq-list h2 {
	font-size: 1.35rem;
}

.pmb-faq-list p {
	margin: 0;
	color: rgba(17, 17, 17, .7);
	line-height: 1.7;
}

.pmb-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, .75fr);
	gap: 42px;
	align-items: center;
	min-width: 0;
}

.pmb-contact-card {
	padding: 30px;
	position: relative;
	overflow: hidden;
	min-width: 0;
	background:
		radial-gradient(circle at 18% 0, rgba(255, 210, 196, .55), transparent 34%),
		radial-gradient(circle at 100% 12%, rgba(248, 181, 200, .36), transparent 32%),
		var(--pmb-surface);
}

.pmb-contact-card::before {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px dashed rgba(229, 75, 75, .18);
	border-radius: 22px;
	pointer-events: none;
}

.pmb-contact-shortcode {
	position: relative;
	z-index: 1;
	margin-top: 22px;
}

.pmb-contact-card .wpcf7 {
	color: var(--pmb-ink);
}

.pmb-contact-card .wpcf7 form {
	display: grid;
	gap: 16px;
	margin: 0;
}

.pmb-contact-card .wpcf7 p {
	margin: 0;
	color: rgba(17, 17, 17, .74);
	font-size: .9rem;
	font-weight: 900;
	line-height: 1.35;
}

.pmb-contact-card .wpcf7-form-control-wrap {
	display: block;
	margin-top: 8px;
}

.pmb-contact-card .wpcf7 input[type="text"],
.pmb-contact-card .wpcf7 input[type="email"],
.pmb-contact-card .wpcf7 input[type="tel"],
.pmb-contact-card .wpcf7 input[type="url"],
.pmb-contact-card .wpcf7 textarea,
.pmb-contact-card .wpcf7 select {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: 50px;
	padding: 14px 16px;
	border: 2px solid rgba(17, 17, 17, .12);
	border-radius: 16px;
	background: rgba(255, 255, 255, .86);
	color: var(--pmb-ink);
	font: inherit;
	font-size: 1rem;
	font-weight: 700;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85), 0 2px 0 rgba(17, 17, 17, .03);
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

.pmb-contact-card .wpcf7 textarea {
	min-height: 144px;
	resize: vertical;
}

.pmb-contact-card .wpcf7 input:focus,
.pmb-contact-card .wpcf7 textarea:focus,
.pmb-contact-card .wpcf7 select:focus {
	outline: 0;
	border-color: var(--pmb-red);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(229, 75, 75, .14), 0 6px 18px rgba(229, 75, 75, .08);
}

.pmb-contact-card .wpcf7 input[type="submit"] {
	justify-self: start;
	min-height: 50px;
	padding: 0 26px;
	border: 0;
	border-radius: 999px;
	background: var(--pmb-red);
	color: #fff;
	font: inherit;
	font-weight: 900;
	cursor: pointer;
	box-shadow: var(--pmb-shadow-solid);
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.pmb-contact-card .wpcf7 input[type="submit"]:hover,
.pmb-contact-card .wpcf7 input[type="submit"]:focus-visible {
	background: var(--pmb-red-dark);
	transform: translateY(-1px);
	box-shadow: var(--pmb-shadow-solid-hover);
}

.pmb-contact-card .wpcf7 input[type="submit"]:active {
	transform: translateY(1px) scale(.99);
}

.pmb-contact-card .wpcf7-spinner {
	margin: 0 0 0 12px;
	vertical-align: middle;
}

.pmb-contact-card .wpcf7-not-valid-tip {
	margin-top: 7px;
	color: var(--pmb-red-dark);
	font-size: .82rem;
	font-weight: 800;
}

.pmb-contact-card .wpcf7-response-output {
	margin: 4px 0 0;
	padding: 12px 14px;
	border: 2px solid rgba(229, 75, 75, .26);
	border-radius: 14px;
	background: rgba(255, 255, 255, .76);
	color: rgba(17, 17, 17, .76);
	font-weight: 800;
}

.pmb-contact-aside {
	display: grid;
	gap: 26px;
}

.pmb-contact-aside p {
	margin: 0 0 8px;
	color: rgba(17, 17, 17, .68);
	font-weight: 700;
}

.pmb-contact-social-links {
	display: grid;
	gap: 10px;
}

.pmb-contact-social-link {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 14px;
	border: 2px solid var(--pmb-line);
	border-radius: 16px;
	background: var(--pmb-surface);
	box-shadow: 0 1px 2px rgba(17, 17, 17, .03);
	color: var(--pmb-ink);
	text-decoration: none;
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.pmb-contact-social-link span {
	font-weight: 900;
}

.pmb-contact-social-link small {
	color: rgba(17, 17, 17, .56);
	font-size: .84rem;
	font-weight: 700;
}

.pmb-contact-social-link:hover {
	border-color: var(--pmb-red);
	transform: translateY(-1px);
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-contact-note {
	padding: 22px;
	border: 1px solid rgba(248, 181, 200, .55);
	border-radius: 22px;
	background: var(--pmb-blush-light);
}

.pmb-post-meta {
	margin: -12px 0 24px;
	color: rgba(17, 17, 17, .55);
	font-weight: 700;
}

.pmb-post-image {
	overflow: hidden;
	margin: 0 0 28px;
	border-radius: 22px;
}

.pmb-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.pmb-post-card {
	overflow: hidden;
}

.pmb-post-card a {
	display: block;
	padding: 18px;
}

.pmb-post-card-image {
	overflow: hidden;
	aspect-ratio: 4 / 3;
	margin: 0 0 16px;
	border-radius: 18px;
	background: var(--pmb-surface-warm);
}

.pmb-post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pmb-post-card h2 {
	margin: 0 0 8px;
	font-family: var(--pmb-font-display);
}

.pmb-post-card p {
	color: rgba(17, 17, 17, .68);
	line-height: 1.55;
}

.pmb-blog-page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 48px 32px 64px;
}

.pmb-blog-header {
	max-width: 672px;
	margin: 0 auto 64px;
	text-align: center;
}

.pmb-blog-header h1,
.pmb-blog-post-header h1 {
	margin: 0;
	font-family: var(--pmb-font-display);
	font-weight: 700;
	letter-spacing: 0;
	color: var(--pmb-ink);
}

.pmb-blog-header h1 {
	margin-bottom: 16px;
	font-size: clamp(2.25rem, 5vw, 3rem);
	line-height: 1.08;
}

.pmb-blog-header h1 span,
.pmb-blog-post-meta span:first-child,
.pmb-blog-meta-row span:first-child {
	color: var(--pmb-red);
}

.pmb-blog-header p {
	margin: 0;
	color: rgba(17, 17, 17, .7);
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
}

.pmb-featured-post-wrap {
	margin-bottom: 64px;
}

.pmb-featured-post-card,
.pmb-blog-card {
	display: flex;
	overflow: hidden;
	border: 2px solid var(--pmb-line);
	background: var(--pmb-surface);
	color: inherit;
	box-shadow: var(--pmb-shadow-paper);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.pmb-featured-post-card {
	min-height: 390px;
	border-radius: 32px;
}

.pmb-featured-post-card:hover,
.pmb-blog-card:hover {
	transform: translateY(-4px);
	border-color: rgba(229, 75, 75, .5);
	box-shadow: var(--pmb-shadow-solid);
	color: inherit;
}

.pmb-featured-post-image,
.pmb-blog-card-image,
.pmb-blog-post-image {
	overflow: hidden;
	background: var(--pmb-surface-warm);
}

.pmb-featured-post-image {
	flex: 0 0 60%;
}

.pmb-featured-post-image img,
.pmb-blog-card-image img,
.pmb-blog-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
	transition: transform .5s ease;
}

.pmb-featured-post-card:hover .pmb-featured-post-image img,
.pmb-blog-card:hover .pmb-blog-card-image img {
	transform: scale(1.04);
}

.pmb-featured-post-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	padding: 48px;
}

.pmb-blog-meta-row,
.pmb-blog-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	color: rgba(17, 17, 17, .45);
	font-size: .875rem;
	font-weight: 800;
	line-height: 1.2;
}

.pmb-blog-meta-row {
	margin-bottom: 16px;
}

.pmb-featured-post-card .pmb-blog-meta-row span:first-child,
.pmb-blog-post-meta span:first-child {
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(229, 75, 75, .1);
}

.pmb-featured-post-body h2,
.pmb-blog-card-body h3,
.pmb-related-posts h2 {
	margin: 0;
	font-family: var(--pmb-font-display);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
	color: var(--pmb-ink);
	transition: color .2s ease;
}

.pmb-featured-post-body h2 {
	font-size: clamp(1.75rem, 3vw, 2rem);
}

.pmb-featured-post-card:hover h2,
.pmb-blog-card:hover h3 {
	color: var(--pmb-red);
}

.pmb-featured-post-body p,
.pmb-blog-card-body p {
	margin: 16px 0 0;
	color: rgba(17, 17, 17, .68);
	font-weight: 500;
	line-height: 1.6;
}

.pmb-featured-post-body time,
.pmb-blog-card-body time {
	display: block;
	margin-top: 24px;
	color: rgba(17, 17, 17, .42);
	font-size: .875rem;
	font-weight: 800;
}

.pmb-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.pmb-blog-card {
	min-width: 0;
	flex-direction: column;
	border-radius: 16px;
}

.pmb-blog-card-image {
	aspect-ratio: 4 / 3;
}

.pmb-blog-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.pmb-blog-card-body h3 {
	font-size: 1.25rem;
}

.pmb-blog-card-body p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.pmb-blog-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 48px;
}

.pmb-blog-pagination .page-numbers {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	border: 2px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface);
	font-weight: 800;
}

.pmb-blog-pagination .page-numbers.current,
.pmb-blog-pagination .page-numbers:hover {
	border-color: var(--pmb-red);
	background: var(--pmb-red);
	color: #fff;
}

.pmb-blog-post-page {
	max-width: 960px;
	margin: 0 auto;
	padding: 48px 32px 64px;
}

.pmb-blog-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 32px;
	color: rgba(17, 17, 17, .6);
	font-weight: 800;
}

.pmb-blog-back svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pmb-blog-back:hover {
	color: var(--pmb-red);
}

.pmb-blog-post-header {
	max-width: 800px;
	margin: 0 auto 32px;
}

.pmb-blog-post-meta {
	margin-bottom: 20px;
}

.pmb-blog-post-header h1 {
	font-size: clamp(2.4rem, 6vw, 3.75rem);
	line-height: 1.1;
}

.pmb-blog-post-header p {
	max-width: 720px;
	margin: 24px 0 0;
	color: rgba(17, 17, 17, .7);
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.55;
}

.pmb-blog-post-image {
	aspect-ratio: 21 / 9;
	margin: 0 0 64px;
	border-radius: 32px;
	border: 2px solid var(--pmb-line);
	box-shadow: var(--pmb-shadow-paper);
}

.pmb-blog-entry {
	max-width: 672px;
	margin: 0 auto 80px;
	color: rgba(17, 17, 17, .78);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.75;
}

.pmb-blog-entry > *:first-child {
	margin-top: 0;
}

.pmb-blog-entry h2,
.pmb-blog-entry h3 {
	margin: 2em 0 .75em;
	font-family: var(--pmb-font-display);
	line-height: 1.18;
	color: var(--pmb-ink);
}

.pmb-blog-entry p,
.pmb-blog-entry ul,
.pmb-blog-entry ol {
	margin: 0 0 1.35em;
}

.pmb-blog-entry a {
	color: var(--pmb-red);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pmb-blog-author {
	display: flex;
	max-width: 672px;
	align-items: center;
	gap: 16px;
	margin: 0 auto 80px;
	padding: 32px 0;
	border-top: 2px solid var(--pmb-line);
	border-bottom: 2px solid var(--pmb-line);
}

.pmb-blog-author-avatar {
	width: 56px;
	height: 56px;
	overflow: hidden;
	flex: 0 0 auto;
	border: 2px solid var(--pmb-line);
	border-radius: 999px;
	background: var(--pmb-surface-warm);
}

.pmb-blog-author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pmb-blog-author strong,
.pmb-blog-author span {
	display: block;
}

.pmb-blog-author strong {
	font-family: var(--pmb-font-display);
	font-size: 1.125rem;
}

.pmb-blog-author span {
	color: rgba(17, 17, 17, .55);
	font-size: .9rem;
	font-weight: 800;
}

.pmb-related-posts {
	max-width: 896px;
	margin: 0 auto;
}

.pmb-related-posts h2 {
	margin-bottom: 24px;
	font-size: 2rem;
}

.pmb-related-post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}

@media (max-width: 900px) {
	.pmb-cart-layout,
	.pmb-checkout-layout,
	.pmb-post-grid,
	.pmb-account-card {
		grid-template-columns: 1fr;
	}

	.pmb-cart-summary,
	.pmb-checkout-summary {
		position: static;
	}

	.pmb-featured-post-card {
		min-height: 0;
		flex-direction: column;
	}

	.pmb-featured-post-image {
		flex: none;
		aspect-ratio: 16 / 9;
	}

	.pmb-featured-post-body {
		padding: 32px;
	}

	.pmb-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pmb-contact-grid {
		grid-template-columns: 1fr;
		align-items: stretch;
	}
}

@media (max-width: 620px) {
	.pmb-blog-page,
	.pmb-blog-post-page {
		padding: 32px 16px 48px;
	}

	.pmb-blog-header {
		margin-bottom: 40px;
	}

	.pmb-blog-header p,
	.pmb-blog-post-header p {
		font-size: 1.05rem;
	}

	.pmb-featured-post-wrap,
	.pmb-blog-post-image {
		margin-bottom: 40px;
	}

	.pmb-featured-post-card,
	.pmb-blog-post-image {
		border-radius: 24px;
	}

	.pmb-featured-post-body,
	.pmb-blog-card-body {
		padding: 22px;
	}

	.pmb-blog-grid,
	.pmb-related-post-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.pmb-blog-post-header {
		text-align: center;
	}

	.pmb-blog-post-meta {
		justify-content: center;
	}

	.pmb-blog-post-image {
		aspect-ratio: 4 / 3;
	}

	.pmb-blog-entry,
	.pmb-blog-author {
		margin-bottom: 56px;
	}

	.pmb-cart-item {
		flex-direction: column;
	}

	.pmb-cart-item-image {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
	}

	.pmb-cart-item-top,
	.pmb-coupon {
		flex-direction: column;
	}

	.pmb-static-card,
	.pmb-contact-card {
		border-radius: 22px;
		padding: 22px;
	}

	.pmb-static-header {
		margin-bottom: 34px;
	}
}
