/* ==========================================================================
   PrintMyCup theme
   Warm paper, tomato and butter, a serif with personality, and photos that
   look like they've been stuck on the fridge.
   ========================================================================== */

/* Fonts (self-hosted, SIL OFL) ------------------------------------------- */
@font-face {
	font-family: "Fraunces";
	src: url("../fonts/fraunces-latin-wght-normal.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Fraunces";
	src: url("../fonts/fraunces-latin-wght-italic.woff2") format("woff2");
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: "DM Sans";
	src: url("../fonts/dm-sans-latin-wght-normal.woff2") format("woff2");
	font-weight: 100 1000;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Caveat";
	src: url("../fonts/caveat-latin-wght-normal.woff2") format("woff2");
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
}

/* Tokens ------------------------------------------------------------------ */
:root {
	--cream: #FFF6EA;
	--paper: #FFFCF7;
	--ink: #2A1E17;
	--ink-2: #5E4F45;
	--muted: #7A6A5E;
	--line: #EBDCCB;
	--tomato: #E8553A;      /* decorative only */
	--brand: #C23E26;       /* text + buttons: 5.2:1 on white */
	--brand-dark: #A2321D;
	--butter: #FFCE5C;
	--blush: #F8D3CB;
	--mint: #CDE8CF;
	--sky: #BFE0F0;

	--font-display: "Fraunces", Georgia, "Times New Roman", serif;
	--font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--font-hand: "Caveat", "Segoe Print", "Bradley Hand", cursive;

	--radius: 18px;
	--radius-sm: 10px;
	--shadow: 0 1px 2px rgba(42, 30, 23, .06), 0 8px 24px rgba(42, 30, 23, .08);
	--shadow-lift: 0 2px 4px rgba(42, 30, 23, .08), 0 18px 40px rgba(42, 30, 23, .14);
	--wrap: 1200px;
}

/* Base ---------------------------------------------------------------------- */
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body,
button,
input,
select,
textarea {
	font-family: var(--font-body);
}
body {
	background: var(--cream);
	color: var(--ink);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6,
.product_title,
.woocommerce-products-header__title,
.entry-title {
	font-family: var(--font-display);
	color: var(--ink);
	font-weight: 650;
	letter-spacing: -0.015em;
	line-height: 1.12;
	font-variation-settings: "opsz" 72, "SOFT" 50;
}
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover, a:focus { color: var(--brand-dark); }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--butter); color: var(--ink); }
img { border-radius: 0; }

.pmc-wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.pmc-icon { width: 1.15em; height: 1.15em; flex: none; vertical-align: -0.2em; stroke-width: 2; }

/* Storefront resets */
.site-header { border: 0; padding: 0; background: none; margin: 0; }
.site-content { outline: 0; }
.col-full { max-width: var(--wrap); padding: 0 24px; box-sizing: border-box; margin: 0 auto; }
@media (min-width: 768px) { .col-full { padding: 0 24px; } }
.storefront-breadcrumb { background: transparent; margin: 0 0 1.5em; padding: 1.2em 0 0; }
.storefront-breadcrumb .col-full { padding: 0 24px; }
.woocommerce-breadcrumb { color: var(--muted); font-size: .88em; }
.woocommerce-breadcrumb a { color: var(--ink-2); }
.site-main { margin-bottom: 4em; }
.hentry .entry-header { border: 0; }

/* Buttons ------------------------------------------------------------------- */
.pmc-btn,
button.button,
a.button,
.button,
input[type="submit"],
.wc-block-components-button:not(.is-link),
.wp-block-button__link,
.added_to_cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	padding: .85em 1.5em;
	border-radius: 999px;
	border: 2px solid var(--brand);
	background: var(--brand);
	color: #fff;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
	box-shadow: 0 3px 0 var(--brand-dark);
}
.pmc-btn:hover,
button.button:hover,
a.button:hover,
.button:hover,
input[type="submit"]:hover,
.wc-block-components-button:not(.is-link):hover,
.wp-block-button__link:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 0 #7f2616;
}
.pmc-btn:active, .button:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--brand-dark); }
.pmc-btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--ink);
	box-shadow: 0 3px 0 var(--ink);
}
.pmc-btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); box-shadow: 0 4px 0 #000; }
.pmc-btn--ink { background: var(--ink); border-color: var(--ink); box-shadow: 0 3px 0 #000; }
.pmc-btn--ink:hover { background: #000; border-color: #000; }
.pmc-btn--light { background: var(--cream); color: var(--brand-dark); border-color: var(--cream); box-shadow: 0 3px 0 rgba(0,0,0,.25); }
.pmc-btn--light:hover { background: #fff; color: var(--brand-dark); border-color: #fff; }
.pmc-btn--small { padding: .55em 1.05em; font-size: .92rem; }
.single_add_to_cart_button.button { padding: 1em 2em; font-size: 1.05rem; }

/* Announcement bar ------------------------------------------------------- */
.pmc-announce { background: var(--ink); color: var(--cream); font-size: .86rem; font-weight: 500; }
.pmc-announce__inner { display: flex; justify-content: center; gap: 2.5em; padding-top: .55em; padding-bottom: .55em; }
.pmc-announce span { display: inline-flex; align-items: center; gap: .45em; white-space: nowrap; }
.pmc-announce .pmc-icon { color: var(--butter); }
@media (max-width: 900px) {
	.pmc-announce__inner span:not(:first-child) { display: none; }
}

/* Header -------------------------------------------------------------------- */
.pmc-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 246, 234, .92);
	backdrop-filter: saturate(1.4) blur(10px);
	-webkit-backdrop-filter: saturate(1.4) blur(10px);
	transition: box-shadow .2s ease;
}
.admin-bar .pmc-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .pmc-header { top: 0; } }
.pmc-header.is-scrolled { box-shadow: 0 1px 0 var(--line), 0 8px 20px rgba(42, 30, 23, .06); }
.pmc-header__inner { display: flex; align-items: center; gap: 1.5em; min-height: 76px; }

.pmc-logo { display: inline-flex; align-items: center; gap: .55em; text-decoration: none; color: var(--ink); flex: none; }
.pmc-logo:hover { color: var(--ink); }
.pmc-logo__mark { width: 42px; height: 42px; transition: transform .3s ease; }
.pmc-logo:hover .pmc-logo__mark { transform: rotate(-8deg); }
.pmc-logo__text { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; letter-spacing: -0.03em; }
.pmc-logo__text span { color: var(--brand); font-style: italic; }
.pmc-logo--light { color: var(--cream); }
.pmc-logo--light:hover { color: var(--cream); }
.pmc-logo--light .pmc-logo__text span { color: var(--butter); }

.pmc-nav { margin-left: auto; }
.pmc-nav ul { display: flex; gap: .25em; list-style: none; margin: 0; padding: 0; }
.pmc-nav a {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	padding: .5em .8em;
	border-radius: 999px;
	color: var(--ink);
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	transition: background-color .15s ease;
}
.pmc-nav a:hover, .pmc-nav a:focus-visible { background: var(--blush); color: var(--ink); }
.pmc-nav .pmc-icon { color: var(--brand); }

.pmc-header__actions { display: flex; align-items: center; gap: .35em; }
.pmc-iconlink {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: var(--ink);
	text-decoration: none;
}
.pmc-iconlink:hover { background: var(--blush); color: var(--ink); }
.pmc-iconlink .pmc-icon { width: 22px; height: 22px; }
.pmc-cartlink__count {
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	box-sizing: border-box;
	border-radius: 999px;
	background: var(--brand);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
}
.pmc-cartlink__count.is-empty { background: var(--ink-2); }

.pmc-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--ink);
	color: var(--cream);
	cursor: pointer;
	place-items: center;
}
.pmc-menu-toggle .pmc-icon { width: 22px; height: 22px; }
.pmc-menu-toggle__close { display: none; }
.pmc-menu-open .pmc-menu-toggle__open { display: none; }
.pmc-menu-open .pmc-menu-toggle__close { display: inline; }

@media (max-width: 1080px) {
	.pmc-nav .pmc-icon { display: none; }
	.pmc-nav a { padding: .5em .6em; }
}
@media (max-width: 960px) {
	/* backdrop-filter would make the header the containing block for the fixed menu panel. */
	.pmc-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--cream); }
	.pmc-menu-toggle { display: inline-grid; }
	.pmc-header__actions { margin-left: auto; }
	.pmc-nav {
		position: fixed;
		inset: 0;
		top: var(--pmc-header-h, 76px);
		margin: 0;
		background: var(--cream);
		padding: 1.5em 24px;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-8px);
		transition: opacity .2s ease, transform .2s ease, visibility 0s .2s;
		overflow-y: auto;
		z-index: 99;
	}
	.pmc-menu-open .pmc-nav { visibility: visible; opacity: 1; transform: none; transition: opacity .2s ease, transform .2s ease; }
	.pmc-menu-open { overflow: hidden; }
	.pmc-nav ul { flex-direction: column; gap: .4em; }
	.pmc-nav a { font-family: var(--font-display); font-size: 1.6rem; padding: .45em .6em; }
	.pmc-nav .pmc-icon { display: inline; }
}

/* Shared pieces ---------------------------------------------------------- */
.pmc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .45em;
	margin: 0 0 .9em;
	padding: .35em .85em;
	border-radius: 999px;
	background: var(--paper);
	border: 1.5px solid var(--ink);
	color: var(--ink);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: uppercase;
	box-shadow: 2px 2px 0 var(--ink);
}
.pmc-eyebrow .pmc-icon { color: var(--brand); }

.pmc-section { position: relative; padding: 5.5em 0; }
.pmc-section--paper { background: var(--paper); }
.pmc-section__head { max-width: 660px; margin: 0 auto 3em; text-align: center; }
.pmc-section__head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .35em; }
.pmc-section__head p:not(.pmc-eyebrow) { color: var(--ink-2); font-size: 1.1rem; margin: 0; }
.pmc-section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5em; max-width: none; text-align: left; flex-wrap: wrap; }
.pmc-section__head--row h2 { margin: 0; }

.pmc-wave { display: block; width: 100%; height: 44px; position: absolute; left: 0; bottom: -1px; z-index: 1; pointer-events: none; }
.pmc-wave--flip { top: -1px; bottom: auto; transform: scaleY(-1); }

.pmc-polaroid {
	position: relative;
	margin: 0;
	padding: 10px 10px 34px;
	background: #fff;
	box-shadow: var(--shadow);
	transform: rotate(var(--tilt, 0deg));
	transition: transform .3s ease, box-shadow .3s ease;
}
.pmc-polaroid img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.pmc-polaroid figcaption { position: absolute; left: 0; right: 0; bottom: 6px; text-align: center; font-family: var(--font-hand); font-size: 1.3rem; color: var(--ink-2); }
.pmc-polaroid__tape {
	position: absolute;
	top: -12px;
	left: 50%;
	width: 84px;
	height: 26px;
	margin-left: -42px;
	background: rgba(255, 206, 92, .75);
	transform: rotate(-3deg);
	box-shadow: 0 1px 2px rgba(0,0,0,.08);
	clip-path: polygon(2% 0, 98% 4%, 100% 100%, 0 96%);
}

.pmc-price { color: var(--brand); font-weight: 700; }

.pmc-doodle { position: absolute; color: var(--tomato); pointer-events: none; }

/* Hero ---------------------------------------------------------------------- */
.pmc-hero { position: relative; padding: 3.5em 0 6em; overflow: hidden; }
.pmc-hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3em; align-items: center; }
.pmc-hero__title { font-size: clamp(2.6rem, 5.6vw, 4.6rem); margin: 0 0 .35em; font-weight: 700; }
.pmc-hero__title em { color: var(--brand); font-style: italic; position: relative; white-space: nowrap; }
.pmc-hero__title em::after {
	content: "";
	position: absolute;
	left: -2%;
	right: -2%;
	bottom: .02em;
	height: .22em;
	background: var(--butter);
	z-index: -1;
	border-radius: 4px;
	transform: rotate(-1.5deg);
}
.pmc-hero__lede { font-size: 1.2rem; color: var(--ink-2); max-width: 34em; margin: 0 0 1.8em; }
.pmc-hero__ctas { display: flex; flex-wrap: wrap; gap: .9em; margin-bottom: 1.6em; }
.pmc-ticks { display: flex; flex-wrap: wrap; gap: .6em 1.4em; list-style: none; margin: 0; padding: 0; font-weight: 600; font-size: .95rem; }
.pmc-ticks li { display: inline-flex; align-items: center; gap: .4em; }
.pmc-ticks .pmc-icon { color: #2f7d4a; stroke-width: 3; }

.pmc-hero__stage { position: relative; display: flex; flex-direction: column; align-items: center; }
.pmc-hero__blob {
	position: absolute;
	top: 2%;
	left: 50%;
	width: 88%;
	aspect-ratio: 1;
	transform: translateX(-50%);
	background: var(--blush);
	border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
	animation: pmc-blob 14s ease-in-out infinite alternate;
	z-index: 0;
}
@keyframes pmc-blob {
	to { border-radius: 44% 56% 42% 58% / 56% 44% 56% 44%; transform: translateX(-50%) rotate(8deg); }
}
@media (prefers-reduced-motion: reduce) { .pmc-hero__blob { animation: none; } }
.pmc-hero__canvas { position: relative; z-index: 1; width: min(100%, 440px); aspect-ratio: 500 / 560; display: block; }
.pmc-doodle--steam { width: 90px; top: 0; left: 18%; z-index: 1; opacity: .7; }

.pmc-hero__controls { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1em; margin-top: -.5em; }
.pmc-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .4em; }
@media (max-width: 420px) { .pmc-chip { padding: .4em .7em; font-size: .85rem; } .pmc-chip .pmc-icon { display: none; } }
.pmc-chip {
	display: inline-flex;
	align-items: center;
	gap: .35em;
	padding: .45em .9em;
	border: 1.5px solid var(--ink);
	border-radius: 999px;
	background: var(--paper);
	color: var(--ink);
	font-weight: 600;
	font-size: .9rem;
	cursor: pointer;
	transition: background-color .15s ease, transform .15s ease;
}
.pmc-chip:hover { transform: translateY(-1px); background: #fff; }
.pmc-chip.is-active { background: var(--ink); color: var(--cream); }
.pmc-samples { display: flex; gap: .5em; }
.pmc-sample {
	position: relative;
	padding: 5px 5px 20px;
	border: 0;
	background: #fff;
	box-shadow: var(--shadow);
	transform: rotate(var(--tilt));
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease;
}
.pmc-sample img { display: block; width: 58px; height: 58px; object-fit: cover; }
.pmc-sample span { position: absolute; left: 0; right: 0; bottom: 1px; font-family: var(--font-hand); font-size: 1rem; color: var(--ink-2); line-height: 1.2; }
.pmc-sample:hover { transform: rotate(0) translateY(-3px); box-shadow: var(--shadow-lift); }
.pmc-sample.is-active { outline: 3px solid var(--brand); outline-offset: 2px; transform: rotate(0) translateY(-3px) scale(1.04); }
.pmc-handnote { margin: 0; font-family: var(--font-hand); font-size: 1.45rem; color: var(--brand); transform: rotate(-2deg); }

@media (max-width: 900px) {
	.pmc-hero { padding-top: 2em; }
	.pmc-hero__grid { grid-template-columns: 1fr; gap: 1.5em; }
	.pmc-hero__copy { text-align: center; }
	.pmc-hero__lede { margin-left: auto; margin-right: auto; }
	.pmc-hero__ctas, .pmc-ticks { justify-content: center; }
	.pmc-hero__canvas { width: min(80%, 360px); }
}
@media (max-width: 480px) {
	.pmc-sample img { width: 46px; height: 46px; }
	.pmc-hero__title em { white-space: normal; }
}

/* USPs ---------------------------------------------------------------------- */
.pmc-usps { padding-top: 3.5em; }
.pmc-usps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5em; }
.pmc-usp {
	position: relative;
	padding: 2em 1.8em 1.8em;
	background: #fff;
	border: 1.5px solid var(--ink);
	border-radius: var(--radius);
	box-shadow: 5px 5px 0 var(--accent);
	transition: transform .2s ease, box-shadow .2s ease;
}
.pmc-usp:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--accent); }
.pmc-usp__icon {
	display: inline-grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 1em;
	border-radius: 16px 22px 14px 20px;
	background: var(--accent);
	color: var(--ink);
}
.pmc-usp__icon .pmc-icon { width: 28px; height: 28px; }
.pmc-usp h3 { font-size: 1.45rem; margin: 0 0 .4em; }
.pmc-usp p { margin: 0; color: var(--ink-2); }
@media (max-width: 860px) { .pmc-usps__grid { grid-template-columns: 1fr; } }

/* Studio -------------------------------------------------------------------- */
.pmc-studio { background: var(--cream); padding-top: 6.5em; padding-bottom: 6.5em; }
.pmc-usps { padding-bottom: 3.5em; }
.pmc-studio__layout { display: grid; grid-template-columns: 300px 1fr; gap: 2em; align-items: stretch; }
.pmc-drop {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 2.5px dashed var(--ink-2);
	border-radius: var(--radius);
	background: var(--paper);
	transition: border-color .15s ease, background-color .15s ease;
}
.pmc-drop.is-over { border-color: var(--brand); background: var(--blush); }
.pmc-drop.has-photo { border-style: solid; border-color: var(--ink); }
.pmc-drop__input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.pmc-drop__input:focus-visible + .pmc-drop__label { outline: 3px solid var(--brand); outline-offset: -6px; border-radius: var(--radius); }
.pmc-drop__label {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .3em;
	padding: 2em 1.2em;
	text-align: center;
	cursor: pointer;
}
.pmc-drop__icon {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	margin-bottom: .6em;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	box-shadow: 0 4px 0 var(--brand-dark);
	transition: transform .2s ease;
}
.pmc-drop__label:hover .pmc-drop__icon { transform: translateY(-3px) rotate(-6deg); }
.pmc-drop__icon .pmc-icon { width: 32px; height: 32px; }
.pmc-drop__label strong { font-family: var(--font-display); font-size: 1.4rem; }
.pmc-drop__label span { color: var(--ink-2); }
.pmc-drop__label small { color: var(--muted); margin-top: .6em; }
.pmc-drop__status { padding: 0 1.2em 1.2em; font-size: .92rem; text-align: center; min-height: 1.2em; }
.pmc-drop__status[data-type="error"] { color: #a4200c; font-weight: 600; }
.pmc-drop__status[data-type="warn"] { color: #8a5300; }
.pmc-drop__status[data-type="ok"] { color: #2f7d4a; font-weight: 600; }

.pmc-studio__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1em; }
.pmc-studio__card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}
.pmc-studio__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.pmc-studio__canvas { display: block; width: 100%; aspect-ratio: 500 / 560; background: linear-gradient(180deg, var(--paper), #fff); }
.pmc-studio__meta { display: flex; flex-direction: column; gap: .15em; padding: .9em 1em 1.1em; flex: 1; }
.pmc-studio__meta h3 { font-size: 1.25rem; margin: 0; }
.pmc-studio__meta p { margin: 0; font-size: .9rem; color: var(--ink-2); }
.pmc-studio__meta .pmc-price { color: var(--brand); margin-bottom: .6em; }
.pmc-studio__meta .pmc-btn { margin-top: auto; align-self: flex-start; white-space: nowrap; }
@media (max-width: 480px) {
	.pmc-studio__grid { gap: .7em; }
	.pmc-studio__meta { padding: .8em .8em 1em; }
	.pmc-studio__meta .pmc-btn { align-self: stretch; padding: .55em .6em; font-size: .88rem; }
}
.pmc-btn.is-waiting { opacity: .6; pointer-events: none; }
.pmc-studio__note { display: flex; align-items: center; justify-content: center; gap: .4em; margin: 1.6em 0 0; color: var(--ink-2); font-weight: 600; }
.pmc-studio__note .pmc-icon { color: var(--brand); }
@media (max-width: 1080px) { .pmc-studio__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
	.pmc-studio__layout { grid-template-columns: 1fr; }
	.pmc-drop__label { padding: 1.5em 1em; }
}

/* How it works -------------------------------------------------------------- */
.pmc-how { padding-top: 6.5em; padding-bottom: 7em; }
.pmc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5em; list-style: none; margin: 0; padding: 0; counter-reset: none; }
.pmc-step { position: relative; text-align: center; }
.pmc-step .pmc-polaroid { margin: 0 auto 1.8em; max-width: 320px; }
.pmc-step:hover .pmc-polaroid { transform: rotate(0) scale(1.02); box-shadow: var(--shadow-lift); }
.pmc-step__num {
	position: absolute;
	top: -18px;
	left: calc(50% - 170px);
	z-index: 2;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 700;
	box-shadow: 0 3px 0 var(--brand-dark);
}
.pmc-step h3 { font-size: 1.5rem; margin: 0 0 .35em; }
.pmc-step p { color: var(--ink-2); margin: 0 auto; max-width: 22em; }
@media (max-width: 860px) {
	.pmc-steps { grid-template-columns: 1fr; gap: 3em; }
	.pmc-step__num { left: calc(50% - 160px); }
}
@media (max-width: 400px) { .pmc-step__num { left: 4px; } }

/* Occasions ----------------------------------------------------------------- */
.pmc-occasions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2em; }
.pmc-occasion {
	position: relative;
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	aspect-ratio: 4 / 5;
	box-shadow: var(--shadow);
	isolation: isolate;
}
.pmc-occasion img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; z-index: -2; }
.pmc-occasion::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,30,23,0) 45%, rgba(42,30,23,.85) 100%); z-index: -1; }
.pmc-occasion:hover img { transform: scale(1.06); }
.pmc-occasion:hover, .pmc-occasion:focus-visible { color: #fff; }
.pmc-occasion__text { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.3em 1.4em; }
.pmc-occasion__text strong { display: block; font-family: var(--font-display); font-size: 1.55rem; line-height: 1.15; margin-bottom: .2em; }
.pmc-occasion__text span { display: block; font-size: .95rem; opacity: .92; }
@media (max-width: 860px) { .pmc-occasions__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
	.pmc-occasions__grid { grid-template-columns: 1fr; }
	.pmc-occasion { aspect-ratio: 4 / 3; }
}

/* Gift ---------------------------------------------------------------------- */
.pmc-gift { padding: 44px 0; background: transparent; }
.pmc-gift__body { background: var(--butter); padding: 4.5em 0; }
.pmc-gift .pmc-wave { position: relative; bottom: auto; top: auto; }
.pmc-gift .pmc-wave--flip { transform: scaleY(-1); margin-bottom: -1px; }
.pmc-gift > .pmc-wave:last-child { transform: scaleY(-1) scaleX(-1); margin-top: -1px; }
.pmc-gift > .pmc-wave:first-child { transform: none; }
.pmc-gift__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4em; align-items: center; }
.pmc-gift__visual { position: relative; padding: 0 3em 4em 0; }
.pmc-polaroid--large img { aspect-ratio: 4 / 3; }
.pmc-note {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 58%;
	padding: 1.3em 1.4em 1.1em;
	background: var(--paper);
	background-image: repeating-linear-gradient(180deg, transparent 0 31px, #e7d8c6 31px 32px);
	background-position: 0 14px;
	box-shadow: var(--shadow-lift);
	transform: rotate(3deg);
	font-family: var(--font-hand);
	font-size: 1.55rem;
	line-height: 32px;
	color: #243a8f;
}
.pmc-note p { margin: 0; }
.pmc-note__from { text-align: right; }
.pmc-gift__copy h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin: 0 0 .4em; }
.pmc-gift__copy > p { font-size: 1.12rem; color: var(--ink); margin-bottom: 1.3em; }
.pmc-gift .pmc-eyebrow { background: var(--paper); }
.pmc-checklist { list-style: none; margin: 0 0 2em; padding: 0; display: grid; gap: .7em; }
.pmc-checklist li { display: flex; align-items: center; gap: .7em; font-weight: 600; }
.pmc-checklist .pmc-icon { width: 38px; height: 38px; padding: 8px; box-sizing: border-box; border-radius: 12px; background: var(--paper); color: var(--brand); }
@media (max-width: 860px) {
	.pmc-gift__grid { grid-template-columns: 1fr; gap: 2.5em; }
	.pmc-gift__visual { max-width: 460px; margin: 0 auto; padding: 0 1em 5.5em 0; }
	.pmc-note { width: 66%; font-size: 1.25rem; line-height: 26px; padding: .9em 1em .8em; background-size: 100% 26px; background-image: repeating-linear-gradient(180deg, transparent 0 25px, #e7d8c6 25px 26px); }
}

/* Shop by type -------------------------------------------------------------- */
.pmc-types { padding-bottom: 6.5em; }
.pmc-types__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2em; }
.pmc-type {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.5em 1em 1.3em;
	border-radius: var(--radius);
	background: var(--bg);
	color: var(--ink);
	text-decoration: none;
	overflow: hidden;
	transition: transform .2s ease;
}
.pmc-type:hover { transform: translateY(-4px) rotate(-1deg); color: var(--ink); }
.pmc-type img { width: 78%; aspect-ratio: 1; object-fit: contain; filter: brightness(1.05); mix-blend-mode: multiply; transition: transform .3s ease; }
.pmc-type:hover img { transform: scale(1.06) rotate(3deg); }
.pmc-type__label { display: inline-flex; align-items: center; gap: .4em; margin-top: .6em; font-family: var(--font-display); font-size: 1.35rem; font-weight: 650; }
.pmc-type__count { font-size: .88rem; color: var(--ink-2); }
@media (max-width: 860px) { .pmc-types__grid { grid-template-columns: repeat(2, 1fr); } }

/* Picks + all product grids ------------------------------------------------- */
.pmc-picks { padding-top: 6em; padding-bottom: 5em; }
ul.products { display: grid !important; grid-template-columns: repeat(var(--cols, 3), 1fr); gap: 1.5em; margin: 0 !important; }
ul.products::before, ul.products::after { display: none !important; }
.columns-4 ul.products, ul.products.columns-4 { --cols: 4; }
.site-main ul.products li.product,
ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	display: flex;
	flex-direction: column;
	padding: 0 0 1.2em;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	text-align: left;
	transition: transform .2s ease, box-shadow .2s ease;
}
ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
ul.products li.product a.woocommerce-LoopProduct-link { display: flex; flex-direction: column; flex: 1; text-decoration: none; color: var(--ink); }
ul.products li.product img {
	margin: 0 0 1em !important;
	aspect-ratio: 1;
	object-fit: contain;
	padding: .8em;
	box-sizing: border-box;
	filter: brightness(1.05);
	mix-blend-mode: multiply;
	transition: transform .3s ease;
}
ul.products li.product:hover img { transform: scale(1.04); }
ul.products li.product .woocommerce-loop-product__title {
	padding: 0 1.1rem;
	font-family: var(--font-display);
	font-size: 1.12rem !important;
	font-weight: 600;
	line-height: 1.25;
	color: var(--ink);
}
ul.products li.product .price { padding: 0 1.1rem; margin-bottom: 1em !important; color: var(--brand); font-weight: 700; font-size: 1rem; }
ul.products li.product .price del { color: var(--muted); }
ul.products li.product .button { margin: auto 1.1rem 0 !important; align-self: flex-start; padding: .6em 1.2em; font-size: .92rem; }
ul.products li.product .onsale { display: none; }
@media (max-width: 1000px) { ul.products, .columns-4 ul.products, ul.products.columns-4 { --cols: 2; } }
@media (max-width: 480px) {
	ul.products { gap: .8em; }
	ul.products li.product .woocommerce-loop-product__title { font-size: 1rem !important; }
}

/* FAQ ----------------------------------------------------------------------- */
.pmc-faq { padding-bottom: 6em; }
.pmc-faq__grid { display: grid; grid-template-columns: 5fr 7fr; gap: 4em; align-items: start; }
.pmc-faq h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .8em; }
.pmc-faq__photo { max-width: 380px; }
.pmc-faq__photo img { aspect-ratio: 4 / 3; }
.pmc-faq__list details {
	margin-bottom: .8em;
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	transition: border-color .15s ease;
}
.pmc-faq__list details[open] { border-color: var(--ink); box-shadow: 3px 3px 0 var(--blush); }
.pmc-faq__list summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	padding: 1.05em 1.3em;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}
.pmc-faq__list summary::-webkit-details-marker { display: none; }
.pmc-faq__list summary::after {
	content: "+";
	flex: none;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--blush);
	font-family: var(--font-body);
	font-size: 1.3rem;
	transition: transform .2s ease;
}
.pmc-faq__list details[open] summary::after { transform: rotate(45deg); background: var(--butter); }
.pmc-faq__list details p { margin: 0; padding: 0 1.3em 1.2em; color: var(--ink-2); }
@media (max-width: 860px) {
	.pmc-faq__grid { grid-template-columns: 1fr; gap: 2em; }
	.pmc-faq__photo { display: none; }
}

/* Final CTA ----------------------------------------------------------------- */
.pmc-cta { padding: 0 0 6em; }
.pmc-cta__inner {
	position: relative;
	padding: 4em 2em;
	border-radius: 32px;
	background: var(--brand);
	color: #fff;
	text-align: center;
	overflow: hidden;
	background-image: radial-gradient(circle at 12% 20%, rgba(255,206,92,.35) 0 60px, transparent 61px), radial-gradient(circle at 90% 85%, rgba(248,211,203,.3) 0 90px, transparent 91px);
}
.pmc-cta h2 { color: #fff; font-size: clamp(2rem, 4.2vw, 3.2rem); margin: 0 0 .3em; }
.pmc-cta p { font-size: 1.15rem; margin: 0 0 1.6em; opacity: .95; }
.pmc-doodle--heart { width: 56px; top: 1.5em; right: 12%; color: var(--butter); transform: rotate(12deg); }

/* Footer -------------------------------------------------------------------- */
.pmc-footer { position: relative; padding: 0; margin-top: 0; background: transparent; color: #E5D7C7; }
.pmc-footer .pmc-wave { position: relative; bottom: auto; transform: scaleY(-1); margin-bottom: -1px; }
.pmc-footer__body { background: var(--ink); padding: 3.5em 0 2em; }
.pmc-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5em; }
.pmc-footer__brand p { margin: 1em 0 0; max-width: 26em; color: #D9C9B8; }
.pmc-footer h2 { color: var(--butter); font-family: var(--font-body); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin: .6em 0 1em; }
.pmc-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55em; }
.pmc-footer a { color: var(--cream); text-decoration: none; }
.pmc-footer a:hover { color: var(--butter); text-decoration: underline; }
.pmc-footer__why li { display: flex; align-items: center; gap: .6em; color: var(--cream); }
.pmc-footer__why .pmc-icon { color: var(--butter); }
.pmc-footer__base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1em; margin-top: 3em; padding-top: 1.5em; border-top: 1px solid rgba(255,246,234,.15); font-size: .88rem; color: #C9B9A8; }
@media (max-width: 900px) { .pmc-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .pmc-footer__grid { grid-template-columns: 1fr; } }

/* Home notices -------------------------------------------------------------- */
.pmc-notices:empty { display: none; }
.pmc-notices .woocommerce-message, .pmc-notices .woocommerce-error, .pmc-notices .woocommerce-info { margin: 1em 0 0; }

/* Shop archive -------------------------------------------------------------- */
.woocommerce-products-header { padding: .5em 0 1em; text-align: center; }
.woocommerce-products-header__title { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0; }
.pmc-shop-usps { display: flex; flex-wrap: wrap; justify-content: center; gap: .6em; margin: 0 0 2em; clear: both; }
.pmc-shop-usps span {
	display: inline-flex;
	align-items: center;
	gap: .45em;
	padding: .5em 1em;
	border-radius: 999px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 600;
	font-size: .9rem;
}
.pmc-shop-usps .pmc-icon { color: var(--brand); }
.woocommerce-result-count { color: var(--muted); font-size: .92rem; }
.woocommerce-ordering select {
	padding: .6em 2.2em .6em 1em;
	border-radius: 999px;
	border: 1.5px solid var(--line);
	background-color: #fff;
}
.storefront-sorting { margin-bottom: 1.5em; }
.woocommerce-pagination .page-numbers li .page-numbers { border-radius: 999px; }

/* Single product ------------------------------------------------------------ */
.single-product div.product { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3.5em; align-items: start; margin-bottom: 3em; }
.single-product div.product > * { grid-column: 1 / -1; }
/* Storefront sizes these with floats and percentages; the grid does it here instead. */
body.single-product div.product > .pmc-media,
body.single-product div.product > .summary,
body.single-product div.product .woocommerce-product-gallery {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}
.single-product div.product > .pmc-media { grid-column: 1; position: sticky; top: 110px; }
.single-product div.product > .summary { grid-column: 2; }
.storefront-product-pagination { display: none !important; }
.single-product .storefront-breadcrumb { margin-bottom: 0; }
.single-product .site-main { margin-top: 0; padding-top: 0; }
.single-product div.product { margin-top: 1em; }
.single-product div.product form.cart .single_add_to_cart_button.disabled,
.single-product div.product form.cart .single_add_to_cart_button:disabled {
	background: var(--brand) !important;
	border-color: var(--brand) !important;
	color: #fff !important;
	opacity: .45 !important;
}
@media (max-width: 860px) {
	.single-product div.product { grid-template-columns: minmax(0, 1fr); gap: 2em; }
	.single-product div.product > .pmc-media, .single-product div.product > .summary { grid-column: 1; position: static; }
}
.single-product div.product .woocommerce-product-gallery { float: none; width: 100% !important; margin: 0; }
.single-product div.product .woocommerce-product-gallery .flex-viewport,
.single-product div.product .woocommerce-product-gallery__image { background: #fff; border-radius: var(--radius); }
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img { border-radius: var(--radius-sm); background: #fff; }

.pmc-media__tabs { display: inline-flex; gap: .3em; padding: .3em; margin-bottom: 1em; border-radius: 999px; background: #fff; border: 1.5px solid var(--line); }
.pmc-media__tab {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	padding: .5em 1em;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--ink-2);
	font-weight: 600;
	font-size: .92rem;
	cursor: pointer;
}
.pmc-media__tab:hover { color: var(--ink); background: var(--cream); }
.pmc-media__tab.is-active { background: var(--ink); color: var(--cream); }
.pmc-media__tab { white-space: nowrap; }
@media (max-width: 420px) {
	.pmc-media__tab { padding: .5em .8em; font-size: .86rem; }
	.pmc-media__tab .pmc-icon { display: none; }
}
/* Hidden panels stay laid out so the product slider can still measure itself. */
.pmc-media__panel:not(.is-active) { position: absolute; left: -9999px; width: 100%; visibility: hidden; }

.pmc-stage {
	position: relative;
	border-radius: 28px;
	background: radial-gradient(circle at 50% 42%, #fff 0 38%, var(--blush) 39% 100%);
	overflow: hidden;
	box-shadow: inset 0 0 0 1.5px rgba(42,30,23,.06);
}
.pmc-stage__canvas { display: block; width: 100%; aspect-ratio: 500 / 560; }
.pmc-stage__badge {
	position: absolute;
	top: 1em;
	left: 1em;
	display: inline-flex;
	align-items: center;
	gap: .4em;
	padding: .4em .85em;
	border-radius: 999px;
	background: rgba(255,255,255,.92);
	font-size: .85rem;
	font-weight: 600;
	box-shadow: var(--shadow);
}
.pmc-stage__badge .pmc-icon { color: var(--brand); }
.pmc-stage__badge[data-state="yours"] { background: var(--ink); color: var(--cream); }
.pmc-stage__badge[data-state="yours"] .pmc-icon { color: var(--butter); }
.pmc-stage__note { margin: .8em .4em 0; font-size: .85rem; color: var(--muted); }

.single-product .product_title { font-size: clamp(2rem, 3.6vw, 2.8rem); margin: 0 0 .25em; }
.single-product div.product .summary .price { color: var(--brand); font-size: 1.6rem; font-weight: 700; margin-bottom: .6em; }
.single-product .woocommerce-product-details__short-description { color: var(--ink-2); font-size: 1.05rem; }
.single-product div.product form.cart { padding: 1.5em; margin: 1.5em 0 1em; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.single-product div.product form.cart .variations { margin-bottom: 1em; border: 0; }
.single-product div.product form.cart .variations th, .single-product div.product form.cart .variations td { padding: .3em 0; background: none; border: 0; vertical-align: middle; }
.single-product div.product form.cart .variations label { font-weight: 700; }
.single-product div.product form.cart .variations select {
	width: 100%;
	padding: .7em 1em;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	background-color: var(--paper);
	font-size: 1rem;
}
.single-product div.product form.cart .reset_variations { font-size: .85rem; }
.single-product div.product form.cart .quantity .qty { padding: .75em .5em; border: 1.5px solid var(--line); border-radius: 999px; background: var(--paper); width: 4.5em; }
.single-product div.product form.cart .woocommerce-variation-add-to-cart,
.single-product div.product form.cart:not(.variations_form) { display: flex; flex-wrap: wrap; align-items: center; gap: .8em; }
.single-product div.product form.cart:not(.variations_form) .pmc-upload-wrap,
.single-product div.product form.cart .woocommerce-variation-add-to-cart .pmc-upload-wrap { flex: 1 0 100%; }
.single-product div.product form.cart .quantity { margin: 0; }
.single-product div.product form.cart .single_add_to_cart_button { flex: 1; }

/* Upload panel from the plugin, restyled */
.pmc-upload-wrap { margin: 0 0 .4em; padding: 1.3em; border: 2px dashed var(--ink-2); border-radius: var(--radius); background: var(--paper); }
.pmc-upload-wrap.pmc-dragover { border-color: var(--brand); background: var(--blush); }
.pmc-upload-label { font-family: var(--font-display); font-size: 1.25rem; }
.pmc-required { color: var(--brand); }
.pmc-upload-help { color: var(--ink-2); }
.pmc-file-input { padding: .8em; border-radius: var(--radius-sm); background: #fff; border: 1.5px solid var(--line); box-sizing: border-box; }
.pmc-file-input::file-selector-button {
	margin-right: 1em;
	padding: .55em 1.1em;
	border: 0;
	border-radius: 999px;
	background: var(--ink);
	color: var(--cream);
	font-weight: 700;
	cursor: pointer;
}
.pmc-progress span { background: var(--brand); }
.pmc-upload-status.pmc-ok { color: #2f7d4a; }
.pmc-preview-img { border-radius: var(--radius-sm); }
.pmc-see-preview { display: inline-block; margin-top: .8em; font-weight: 700; }

.pmc-assure { list-style: none; margin: 1.2em 0 1.5em; padding: 0; display: grid; gap: .7em; }
.pmc-assure li { display: flex; gap: .8em; align-items: flex-start; font-size: .95rem; color: var(--ink-2); }
.pmc-assure strong { color: var(--ink); }
.pmc-assure .pmc-icon { width: 36px; height: 36px; padding: 8px; box-sizing: border-box; border-radius: 11px; background: var(--blush); color: var(--brand); }
.pmc-assure li:nth-child(2) .pmc-icon { background: #FFE9B8; }
.pmc-assure li:nth-child(3) .pmc-icon { background: var(--mint); color: #2f7d4a; }

.product_meta { font-size: .9rem; color: var(--muted); padding-top: 1em; border-top: 1px solid var(--line); }
.woocommerce-tabs { padding: 2.5em 0 0; }
.woocommerce-tabs ul.tabs { border: 0; }
.woocommerce-tabs ul.tabs li a { font-weight: 700; }
.woocommerce-tabs .panel h2:first-of-type { font-size: 1.6rem; }
@media (min-width: 768px) {
	.single-product .woocommerce-tabs { display: grid; grid-template-columns: 1fr 3fr; gap: 2em; }
	.single-product .woocommerce-tabs ul.tabs { width: auto; float: none; margin: 0; }
	.single-product .woocommerce-tabs .panel { width: auto; float: none; margin: 0; }
}
.related.products, .upsells.products { padding-top: 2em; }
.related.products > h2, .upsells.products > h2 { font-size: 2rem; text-align: center; margin-bottom: 1.2em; }

/* Notices ------------------------------------------------------------------- */
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
	border-radius: var(--radius-sm);
	border-left: 5px solid var(--ink);
	background: #fff;
	color: var(--ink);
	box-shadow: var(--shadow);
}
.woocommerce-message { border-left-color: #2f7d4a; }
.woocommerce-error { border-left-color: var(--brand); }
.woocommerce-message a, .woocommerce-info a, .woocommerce-error a { color: var(--brand); }
.woocommerce-message .button, .woocommerce-info .button { float: right; padding: .5em 1em; font-size: .9rem; color: #fff !important; }

/* Cart / checkout blocks ---------------------------------------------------- */
.wc-block-cart, .wc-block-checkout { font-family: var(--font-body); }
.wp-block-woocommerce-cart .wc-block-cart-items, .wc-block-components-sidebar-layout .wc-block-components-main { color: var(--ink); }
.wc-block-components-sidebar .wc-block-components-totals-wrapper,
.wc-block-checkout__sidebar,
.wc-block-cart__sidebar {
	background: #fff;
	border-radius: var(--radius);
}
.wc-block-components-sidebar-layout .wc-block-components-sidebar { padding: 1.4em; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.wc-block-components-text-input input, .wc-block-components-combobox .wc-block-components-combobox-control input, .wc-blocks-components-select__select {
	border-radius: var(--radius-sm) !important;
}
.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]:checked { background: var(--brand); border-color: var(--brand); }
.wc-block-components-checkbox__mark { fill: #fff; }
/* The gift option lives in "Additional order information": make it stand out. */
.wc-block-checkout__additional-information-fields {
	padding: 1.2em 1.3em .6em;
	background: #FFF1C9;
	border: 1.5px dashed var(--ink-2);
	border-radius: var(--radius);
}
.wc-block-components-product-metadata .wc-block-components-product-details__your-photo img { border-radius: 6px; }
.wc-block-components-title.wc-block-components-title { font-family: var(--font-display); font-weight: 650; }
.wc-block-components-button:not(.is-link) .wc-block-components-button__text { color: #fff; }

/* Pages --------------------------------------------------------------------- */
.page .entry-title, .page .entry-header h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); text-align: center; margin: .3em 0 .8em; }
.page .entry-content { max-width: 760px; margin: 0 auto; }
.page .entry-content h2 { font-size: 1.6rem; margin-top: 1.6em; }

/* Inputs -------------------------------------------------------------------- */
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="search"], input[type="number"], textarea, select {
	border-radius: var(--radius-sm);
	border: 1.5px solid var(--line);
	background-color: #fff;
	color: var(--ink);
}
input:focus, textarea:focus, select:focus { border-color: var(--ink); outline: none; box-shadow: 0 0 0 3px var(--butter); }

/* Hide Storefront bits this theme replaces */
.storefront-handheld-footer-bar, .site-footer .site-info { display: none !important; }
