/*
Theme Name: Pawcursion Child
Theme URI: https://pawcursion.com/
Description: A measurement-first WooCommerce storefront for Pawcursion, built as a Blocksy child theme.
Author: Pawcursion
Template: blocksy
Version: 1.5.2
Requires at least: 6.7
Requires PHP: 8.3
Text Domain: pawcursion
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

@font-face {
	font-family: "Pawcursion Inter";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("assets/fonts/InterVariable.woff2") format("woff2");
}

@font-face {
	font-family: "Pawcursion Fraunces";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("assets/fonts/FrauncesVariable.woff2") format("woff2");
}

:root {
	--paw-forest: #1f3a32;
	--paw-forest-deep: #142a24;
	--paw-forest-light: #315749;
	--paw-rust: #d96a3b;
	--paw-rust-dark: #b94e27;
	--paw-cream: #f7f2e8;
	--paw-cream-light: #fffdf8;
	--paw-sand: #ddd0bc;
	--paw-sand-light: #eee5d7;
	--paw-sage: #9aac9a;
	--paw-charcoal: #202421;
	--paw-muted: #5e665f;
	--paw-white: #fff;
	--paw-danger: #9f3229;
	--paw-success: #316746;
	--paw-warning: #8b5b19;
	--paw-display: "Pawcursion Fraunces", Georgia, "Times New Roman", serif;
	--paw-serif: var(--paw-display);
	--paw-sans: "Pawcursion Inter", "Segoe UI", Arial, Helvetica, sans-serif;
	--paw-shell: 1240px;
	--paw-content: 760px;
	--paw-gutter: clamp(1rem, 3vw, 2rem);
	--paw-radius-sm: 0.5rem;
	--paw-radius-md: 1rem;
	--paw-radius-lg: 1.5rem;
	--paw-radius-xl: 2rem;
	--paw-pill: 999px;
	--paw-shadow-sm: 0 8px 24px rgba(31, 58, 50, 0.08);
	--paw-shadow: 0 18px 50px rgba(31, 58, 50, 0.12);
	--paw-shadow-lg: 0 24px 72px rgba(32, 36, 33, 0.18);
	--paw-border: 1px solid rgba(31, 58, 50, 0.17);
	--paw-transition: 180ms ease;
	--paw-nav-transition: 240ms cubic-bezier(0.22, 1, 0.36, 1);
	--theme-palette-color-1: var(--paw-rust);
	--theme-palette-color-2: var(--paw-rust-dark);
	--theme-palette-color-3: var(--paw-charcoal);
	--theme-palette-color-4: var(--paw-forest);
	--theme-palette-color-5: var(--paw-muted);
	--theme-palette-color-6: var(--paw-sage);
	--theme-palette-color-7: var(--paw-sand);
	--theme-palette-color-8: var(--paw-cream);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 9rem;
}

body.pawcursion-site {
	min-width: 320px;
	margin: 0;
	padding: 0 !important;
	background: var(--paw-cream);
	color: var(--paw-charcoal);
	font-family: var(--paw-sans);
	font-size: 1rem;
	font-weight: 450;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	font-optical-sizing: auto;
	-webkit-font-smoothing: antialiased;
}

body.paw-menu-open {
	overflow: hidden;
}

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

img {
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
select {
	cursor: pointer;
}

a {
	color: var(--paw-forest);
	text-decoration-color: rgba(217, 106, 59, 0.55);
	text-decoration-thickness: 0.1em;
	text-underline-offset: 0.17em;
	transition: color var(--paw-transition), text-decoration-color var(--paw-transition);
}

a:hover {
	color: var(--paw-rust-dark);
	text-decoration-color: currentColor;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 3px solid var(--paw-rust);
	outline-offset: 3px;
	box-shadow: 0 0 0 2px var(--paw-cream);
}

::selection {
	background: var(--paw-rust);
	color: var(--paw-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.55em;
	color: var(--paw-forest);
	font-family: var(--paw-display);
	font-optical-sizing: auto;
	font-variation-settings: "SOFT" 72, "WONK" 1;
	font-weight: 650;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

h1 {
	font-size: clamp(2.65rem, 1.7rem + 3.6vw, 5.25rem);
}

h2 {
	font-size: clamp(2rem, 1.5rem + 1.8vw, 3.3rem);
}

h3 {
	font-size: clamp(1.45rem, 1.2rem + 0.85vw, 2.1rem);
}

h4 {
	font-size: clamp(1.15rem, 1.05rem + 0.35vw, 1.45rem);
}

p,
ul,
ol,
dl,
blockquote,
figure {
	margin-top: 0;
	margin-bottom: 1.25rem;
}

hr {
	border: 0;
	border-top: var(--paw-border);
	margin: 2.5rem 0;
}

blockquote {
	margin-inline: 0;
	padding: 1.25rem 1.5rem;
	border-left: 4px solid var(--paw-rust);
	background: rgba(255, 255, 255, 0.52);
	border-radius: 0 var(--paw-radius-md) var(--paw-radius-md) 0;
	color: var(--paw-forest);
	font-family: var(--paw-display);
	font-size: 1.2em;
}

[hidden] {
	display: none !important;
}

.screen-reader-text {
	position: absolute !important;
	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 {
	top: 0.75rem;
	left: 0.75rem;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 0.8rem 1rem;
	clip: auto !important;
	background: var(--paw-cream-light);
	color: var(--paw-forest);
	font-weight: 750;
	white-space: normal;
	border-radius: var(--paw-radius-sm);
	box-shadow: var(--paw-shadow);
}

.paw-skip-link:focus {
	position: fixed !important;
}

.paw-shell {
	width: min(100% - (2 * var(--paw-gutter)), var(--paw-shell));
	margin-inline: auto;
}

.paw-content-width {
	max-width: var(--paw-content);
}

.paw-main {
	min-height: 48vh;
}

.paw-page-main,
.paw-index-main,
.paw-shop-main {
	padding-block: clamp(2.5rem, 6vw, 5.5rem);
}

.home .paw-page-main,
.home .paw-entry-content {
	padding-top: 0;
}

.paw-entry-content::after {
	display: table;
	clear: both;
	content: "";
}

.paw-entry-content > :where(:not(.alignfull):not(.alignwide):not(.paw-section):not(.paw-hero):not(.paw-home)) {
	width: min(100% - (2 * var(--paw-gutter)), var(--paw-content));
	margin-inline: auto;
}

.paw-entry-content > .alignwide {
	width: min(100% - (2 * var(--paw-gutter)), var(--paw-shell));
	max-width: var(--paw-shell);
	margin-inline: auto;
}

.paw-entry-content > .alignfull {
	width: 100%;
	max-width: none;
	margin-inline: 0;
}

.paw-entry-content > :last-child,
.paw-page > :last-child {
	margin-bottom: 0;
}

.paw-eyebrow {
	margin-bottom: 0.75rem;
	color: var(--paw-rust-dark);
	font-family: var(--paw-sans);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.paw-display {
	font-size: clamp(2.8rem, 1.6rem + 4.4vw, 6rem);
	line-height: 0.98;
}

.paw-lede {
	max-width: 52rem;
	color: var(--paw-muted);
	font-size: clamp(1.1rem, 1rem + 0.42vw, 1.35rem);
	line-height: 1.65;
}

.paw-section {
	padding-block: clamp(3.75rem, 8vw, 7.5rem);
}

.paw-section--cream {
	background: var(--paw-cream);
}

.paw-section--white {
	background: var(--paw-cream-light);
}

.paw-section--sand {
	background: var(--paw-sand-light);
}

.paw-section--forest {
	background: var(--paw-forest);
	color: var(--paw-cream);
}

.paw-section--forest :where(h1, h2, h3, h4, a) {
	color: var(--paw-cream);
}

.paw-section__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: clamp(1.75rem, 4vw, 3.25rem);
}

.paw-section__header > :first-child {
	max-width: 50rem;
}

.paw-actions,
.wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.paw-button,
.wp-element-button,
.wp-block-button__link,
.woocommerce :where(a.button, button.button, input.button, #respond input#submit),
.wc-block-components-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.78rem 1.35rem;
	border: 2px solid transparent;
	border-radius: var(--paw-pill) !important;
	background: var(--paw-rust);
	color: var(--paw-white) !important;
	font-family: var(--paw-sans);
	font-size: 0.9375rem;
	font-weight: 780;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	box-shadow: none;
	transition: transform var(--paw-transition), background var(--paw-transition), border-color var(--paw-transition), color var(--paw-transition), box-shadow var(--paw-transition);
}

.paw-button:hover,
.wp-element-button:hover,
.wp-block-button__link:hover,
.woocommerce :where(a.button, button.button, input.button, #respond input#submit):hover,
.wc-block-components-button:hover {
	transform: translateY(-1px);
	background: var(--paw-rust-dark);
	color: var(--paw-white) !important;
	box-shadow: 0 8px 20px rgba(185, 78, 39, 0.22);
}

.paw-button:active,
.wp-element-button:active,
.wp-block-button__link:active,
.woocommerce :where(a.button, button.button, input.button, #respond input#submit):active,
.wc-block-components-button:active {
	transform: translateY(0) scale(0.985);
	box-shadow: none;
}

.paw-button--outline,
.is-style-outline > .wp-block-button__link {
	border-color: var(--paw-forest);
	background: transparent;
	color: var(--paw-forest) !important;
}

.paw-button--outline:hover,
.is-style-outline > .wp-block-button__link:hover {
	background: var(--paw-forest);
	color: var(--paw-white) !important;
}

.paw-button--cream {
	background: var(--paw-cream);
	color: var(--paw-forest) !important;
}

.paw-button--cream:hover {
	background: var(--paw-white);
	color: var(--paw-forest-deep) !important;
}

.paw-button--forest {
	background: var(--paw-forest);
}

.paw-button[disabled],
.paw-button[aria-disabled="true"],
.woocommerce :where(button.button, input.button):disabled,
.woocommerce :where(button.button, input.button).disabled,
.wc-block-components-button:disabled {
	cursor: not-allowed;
	transform: none;
	background: var(--paw-sage);
	color: var(--paw-forest-deep) !important;
	opacity: 0.72;
	box-shadow: none;
}

.paw-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 760;
	text-decoration: none;
}

.paw-text-link span {
	transition: transform var(--paw-transition);
}

.paw-text-link:hover span {
	transform: translateX(0.2rem);
}

/* Sticky site header. */
.paw-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	background: rgba(247, 242, 232, 0.97);
	box-shadow: 0 1px 0 rgba(31, 58, 50, 0.14);
	backdrop-filter: blur(14px);
}

.admin-bar .paw-site-header {
	top: 32px;
}

.paw-announcement {
	background: var(--paw-forest);
	color: var(--paw-cream);
}

.paw-announcement__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 2.25rem;
	padding-block: 0.4rem;
	font-size: clamp(0.68rem, 0.64rem + 0.18vw, 0.78rem);
	font-weight: 560;
	letter-spacing: 0.015em;
	line-height: 1.3;
	text-align: center;
}

.paw-header-main {
	position: relative;
}

.paw-header-main__inner {
	display: grid;
	grid-template-columns: minmax(11rem, auto) minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(1rem, 2.5vw, 2.5rem);
	min-height: 5rem;
}

.paw-brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.paw-brand__link {
	display: inline-grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 0.65rem;
	min-width: 0;
	color: var(--paw-forest);
	text-decoration: none;
}

.paw-brand__mark {
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 0.74rem;
	box-shadow: 0 3px 10px rgba(20, 42, 36, 0.09);
	object-fit: contain;
	transition: transform var(--paw-nav-transition), box-shadow var(--paw-nav-transition);
}

.paw-brand__copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.paw-brand__name {
	font-family: var(--paw-display);
	font-size: clamp(1.5rem, 1.23rem + 0.55vw, 1.82rem);
	font-variation-settings: "SOFT" 72, "WONK" 1;
	font-weight: 610;
	letter-spacing: -0.045em;
	line-height: 0.95;
	white-space: nowrap;
}

.paw-brand__tagline {
	margin-top: 0.3rem;
	color: var(--paw-muted);
	font-size: 0.62rem;
	font-weight: 720;
	letter-spacing: 0.09em;
	line-height: 1;
	text-transform: uppercase;
}

.paw-brand__link:hover .paw-brand__mark,
.paw-brand__link:focus-visible .paw-brand__mark {
	box-shadow: 0 6px 16px rgba(20, 42, 36, 0.13);
	transform: translateY(-1px);
}

.paw-primary-nav {
	justify-self: center;
}

.paw-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.paw-menu--primary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(0.8rem, 1.6vw, 1.65rem);
}

.paw-menu--primary > li {
	position: relative;
	margin: 0;
}

.paw-menu--primary > li > a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 3rem;
	padding: 0.4rem 0;
	color: var(--paw-muted);
	font-size: 0.86rem;
	font-weight: 600;
	text-decoration: none;
	transition: color var(--paw-nav-transition);
	white-space: nowrap;
}

.paw-menu--primary > li > a:hover,
.paw-menu--primary > .current-menu-item > a,
.paw-menu--primary > .current-menu-ancestor > a {
	color: var(--paw-forest);
}

.paw-menu--primary > li > a::after {
	position: absolute;
	right: auto;
	bottom: 0.35rem;
	left: 50%;
	width: 1.2rem;
	height: 2px;
	border-radius: var(--paw-pill);
	background: var(--paw-rust);
	content: "";
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	transition: transform var(--paw-nav-transition);
}

.paw-menu--primary > li > a:hover::after,
.paw-menu--primary > .current-menu-item > a::after,
.paw-menu--primary > .current-menu-ancestor > a::after {
	transform: translateX(-50%) scaleX(1);
	transform-origin: center;
}

.paw-menu--primary .sub-menu {
	position: absolute;
	top: calc(100% - 0.15rem);
	left: -1rem;
	z-index: 10;
	min-width: 15rem;
	margin: 0;
	padding: 0.65rem;
	visibility: hidden;
	list-style: none;
	background: var(--paw-cream-light);
	border: var(--paw-border);
	border-radius: var(--paw-radius-md);
	box-shadow: var(--paw-shadow-sm);
	opacity: 0;
	transform: translateY(0.45rem);
	transition: opacity var(--paw-nav-transition), transform var(--paw-nav-transition), visibility var(--paw-nav-transition);
}

.paw-menu--primary li:hover > .sub-menu,
.paw-menu--primary li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.paw-menu--primary .sub-menu a {
	display: block;
	padding: 0.65rem 0.75rem;
	border-radius: 0.6rem;
	color: var(--paw-charcoal);
	font-size: 0.875rem;
	font-weight: 580;
	text-decoration: none;
}

.paw-menu--primary .sub-menu a:hover,
.paw-menu--primary .sub-menu a:focus-visible {
	background: var(--paw-sand-light);
	color: var(--paw-forest);
}

.paw-header-tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.35rem;
}

.paw-header-tool,
.paw-menu-toggle,
.paw-search-close {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--paw-forest-light);
	text-decoration: none;
	transition: background var(--paw-nav-transition), color var(--paw-nav-transition), transform var(--paw-nav-transition);
}

.paw-header-tool:hover,
.paw-menu-toggle:hover,
.paw-search-close:hover {
	background: rgba(31, 58, 50, 0.06);
	color: var(--paw-forest-deep);
}

.paw-search-toggle {
	display: none;
}

.paw-js .paw-search-toggle {
	display: inline-flex;
}

.paw-cart-count {
	position: absolute;
	top: 0.15rem;
	right: 0.05rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.15rem;
	height: 1.15rem;
	padding: 0 0.2rem;
	border: 2px solid var(--paw-cream);
	border-radius: var(--paw-pill);
	background: var(--paw-rust);
	color: var(--paw-white);
	font-size: 0.62rem;
	font-weight: 800;
	line-height: 1;
}

.paw-menu-toggle {
	display: none;
	width: auto;
	padding-inline: 0.7rem;
	gap: 0.45rem;
	border-radius: var(--paw-pill);
}

.paw-menu-toggle__icon {
	display: grid;
	gap: 3px;
	width: 1.2rem;
}

.paw-menu-toggle__icon span {
	display: block;
	width: 100%;
	height: 1.5px;
	background: currentColor;
	border-radius: 2px;
	transition: transform var(--paw-nav-transition), opacity var(--paw-nav-transition);
}

.paw-menu-toggle__label {
	font-size: 0.8rem;
	font-weight: 750;
}

.paw-menu-toggle[aria-expanded="true"] .paw-menu-toggle__icon span:first-child {
	transform: translateY(5px) rotate(45deg);
}

.paw-menu-toggle[aria-expanded="true"] .paw-menu-toggle__icon span:nth-child(2) {
	opacity: 0;
}

.paw-menu-toggle[aria-expanded="true"] .paw-menu-toggle__icon span:last-child {
	transform: translateY(-5px) rotate(-45deg);
}

.paw-header-search {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	padding-block: 1rem;
	background: var(--paw-cream-light);
	border-top: var(--paw-border);
	border-bottom: var(--paw-border);
	box-shadow: var(--paw-shadow-sm);
}

.paw-search-form {
	display: grid;
	grid-template-columns: minmax(12rem, 18rem) minmax(0, 1fr);
	align-items: center;
	gap: 1rem;
	margin: 0;
}

.paw-search-form > label {
	color: var(--paw-forest);
	font-family: var(--paw-display);
	font-size: 1.25rem;
	font-weight: 650;
}

.paw-search-form__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 0.6rem;
}

.paw-search-close {
	align-self: center;
	font-size: 1.7rem;
}

/* Forms. */
:where(.pawcursion-site, .editor-styles-wrapper) :where(input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]), select, textarea),
.woocommerce :where(input.input-text, select, textarea),
.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
	width: 100%;
	min-height: 3.15rem;
	padding: 0.75rem 0.95rem;
	border: 1px solid rgba(31, 58, 50, 0.3);
	border-radius: 0.75rem;
	background: var(--paw-white);
	color: var(--paw-charcoal);
	box-shadow: inset 0 1px 2px rgba(32, 36, 33, 0.035);
	transition: border-color var(--paw-transition), box-shadow var(--paw-transition), background var(--paw-transition);
}

:where(.pawcursion-site, .editor-styles-wrapper) :where(input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]), select, textarea):focus,
.woocommerce :where(input.input-text, select, textarea):focus,
.wc-block-components-text-input input:focus {
	border-color: var(--paw-rust);
	background: var(--paw-cream-light);
	outline: 0;
	box-shadow: 0 0 0 3px rgba(217, 106, 59, 0.18);
}

textarea {
	min-height: 9rem;
	resize: vertical;
}

label {
	color: var(--paw-forest);
	font-weight: 680;
}

.paw-checkbox {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 0.65rem;
	font-size: 0.78rem;
	font-weight: 520;
	line-height: 1.45;
}

.paw-checkbox input {
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0.1rem;
	accent-color: var(--paw-rust);
}

.paw-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Homepage and reusable Pawcursion components. */
.paw-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--paw-forest);
	color: var(--paw-cream);
}

.paw-hero::before {
	position: absolute;
	top: -20%;
	right: -8%;
	z-index: -1;
	width: min(58vw, 50rem);
	aspect-ratio: 1;
	border: 1px solid rgba(247, 242, 232, 0.16);
	border-radius: 46% 54% 58% 42% / 48% 42% 58% 52%;
	background: radial-gradient(circle at 35% 35%, rgba(154, 172, 154, 0.32), transparent 62%);
	content: "";
	transform: rotate(14deg);
}

.paw-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 6rem);
	min-height: min(760px, calc(100vh - 7rem));
	padding-block: clamp(4rem, 9vw, 8rem);
}

.paw-hero__copy {
	position: relative;
	z-index: 2;
	max-width: 43rem;
}

.paw-hero :where(h1, h2) {
	color: var(--paw-cream);
}

.paw-hero .paw-eyebrow {
	color: #f0a17d;
}

.paw-hero__lede {
	max-width: 38rem;
	color: rgba(247, 242, 232, 0.84);
	font-size: clamp(1.08rem, 0.98rem + 0.45vw, 1.35rem);
}

.paw-hero__media {
	position: relative;
	min-height: 28rem;
}

.paw-hero__media::after {
	position: absolute;
	right: -1rem;
	bottom: -1.25rem;
	left: 2rem;
	z-index: -1;
	height: 70%;
	border-radius: 48% 52% 34% 66% / 46% 36% 64% 54%;
	background: var(--paw-rust);
	content: "";
	opacity: 0.92;
}

.paw-hero__media :where(img, video, .paw-media-placeholder) {
	width: 100%;
	height: 100%;
	min-height: 28rem;
	object-fit: cover;
	border-radius: 48% 52% 36% 64% / 39% 42% 58% 61%;
	box-shadow: var(--paw-shadow-lg);
}

.paw-media-placeholder {
	display: grid;
	place-items: center;
	padding: 2rem;
	background: linear-gradient(145deg, var(--paw-sage), var(--paw-sand));
	color: var(--paw-forest);
	font-weight: 750;
	text-align: center;
}

.paw-trust-strip {
	background: var(--paw-sand-light);
	border-block: var(--paw-border);
}

.paw-trust-strip__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.paw-trust-item {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 0.8rem;
	padding: 1.25rem clamp(0.8rem, 2.5vw, 2rem);
	border-right: var(--paw-border);
}

.paw-trust-item:last-child {
	border-right: 0;
}

.paw-trust-item__icon {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--paw-forest);
	color: var(--paw-cream);
}

.paw-trust-item strong {
	display: block;
	color: var(--paw-forest);
	font-size: 0.9rem;
}

.paw-trust-item span {
	display: block;
	color: var(--paw-muted);
	font-size: 0.78rem;
}

.paw-problem-grid,
.paw-collection-grid,
.paw-product-grid,
.paw-guide-grid,
.paw-bundle-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}

.paw-problem-card,
.paw-collection-card,
.paw-guide-card,
.paw-bundle-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	border: var(--paw-border);
	border-radius: var(--paw-radius-lg);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow-sm);
	transition: transform var(--paw-transition), box-shadow var(--paw-transition), border-color var(--paw-transition);
}

.paw-problem-card:hover,
.paw-collection-card:hover,
.paw-guide-card:hover {
	transform: translateY(-4px);
	border-color: rgba(217, 106, 59, 0.52);
	box-shadow: var(--paw-shadow);
}

.paw-problem-card__body,
.paw-collection-card__body,
.paw-guide-card__body,
.paw-bundle-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.25rem, 2.5vw, 2rem);
}

.paw-problem-card__body > :last-child,
.paw-collection-card__body > :last-child,
.paw-guide-card__body > :last-child,
.paw-bundle-card__body > :last-child {
	margin-top: auto;
	margin-bottom: 0;
}

.paw-problem-card__number {
	display: inline-grid;
	place-items: center;
	width: 2.65rem;
	height: 2.65rem;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(31, 58, 50, 0.25);
	border-radius: 50%;
	color: var(--paw-rust-dark);
	font-family: var(--paw-display);
	font-weight: 700;
}

.paw-collection-card__media,
.paw-guide-card__media,
.paw-bundle-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--paw-sand);
}

.paw-collection-card__media img,
.paw-guide-card__media img,
.paw-bundle-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.paw-collection-card:hover img,
.paw-guide-card:hover img {
	transform: scale(1.025);
}

.paw-proof-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(2rem, 7vw, 6rem);
	align-items: start;
}

.paw-proof-list {
	display: grid;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.paw-proof-list li {
	position: relative;
	padding: 1.25rem 1.25rem 1.25rem 3.5rem;
	border: var(--paw-border);
	border-radius: var(--paw-radius-md);
	background: rgba(255, 255, 255, 0.55);
}

.paw-proof-list li::before {
	position: absolute;
	top: 1.2rem;
	left: 1.2rem;
	display: grid;
	place-items: center;
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 50%;
	background: var(--paw-forest);
	color: var(--paw-cream);
	content: "✓";
	font-size: 0.72rem;
	font-weight: 900;
}

.paw-measure-callout,
.paw-callout {
	position: relative;
	padding: clamp(1.5rem, 4vw, 3rem);
	overflow: hidden;
	border: 1px solid rgba(31, 58, 50, 0.2);
	border-radius: var(--paw-radius-xl);
	background: var(--paw-sand-light);
}

.paw-callout--forest {
	background: var(--paw-forest);
	color: var(--paw-cream);
}

.paw-callout--forest :where(h2, h3, h4, a) {
	color: var(--paw-cream);
}

.paw-badge,
.paw-status,
.paw-product-kicker,
.woocommerce span.onsale {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 1.8rem;
	padding: 0.3rem 0.65rem;
	border-radius: var(--paw-pill);
	background: var(--paw-sand-light);
	color: var(--paw-forest);
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	line-height: 1.2;
	text-transform: uppercase;
}

.paw-badge--rust,
.paw-status--ready,
.woocommerce span.onsale {
	background: var(--paw-rust);
	color: var(--paw-white);
}

.paw-status--draft,
.paw-badge--pending {
	background: #f1dfbd;
	color: #69420f;
}

.paw-action-required {
	padding: 0.9rem 1rem;
	border-left: 4px solid var(--paw-warning);
	border-radius: 0 var(--paw-radius-sm) var(--paw-radius-sm) 0;
	background: #fff4dc;
	color: #5f3b0b;
	font-size: 0.88rem;
}

/* Fit Finder. */
.paw-fit-finder {
	overflow: hidden;
	border: 1px solid rgba(31, 58, 50, 0.22);
	border-radius: var(--paw-radius-xl);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow);
}

.paw-fit-finder__header {
	padding: clamp(1.5rem, 4vw, 3rem);
	background: var(--paw-forest);
	color: var(--paw-cream);
}

.paw-fit-finder__header :where(h1, h2, h3) {
	color: var(--paw-cream);
}

.paw-fit-finder__header .paw-eyebrow {
	color: #f0a17d;
}

.paw-fit-finder__body {
	padding: clamp(1.5rem, 4vw, 3rem);
}

.paw-fit-progress {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.45rem;
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
}

.paw-fit-progress li {
	height: 0.35rem;
	overflow: hidden;
	border-radius: var(--paw-pill);
	background: var(--paw-sand);
	color: transparent;
}

.paw-fit-progress li.is-complete,
.paw-fit-progress li[aria-current="step"] {
	background: var(--paw-rust);
}

.paw-fit-step {
	margin: 0;
	padding: 0;
	border: 0;
}

.paw-fit-step legend {
	width: 100%;
	margin-bottom: 1.5rem;
	color: var(--paw-forest);
	font-family: var(--paw-display);
	font-size: clamp(1.5rem, 1.2rem + 1vw, 2.25rem);
	font-weight: 650;
	line-height: 1.15;
}

.paw-fit-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.paw-fit-option {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	min-height: 5rem;
	padding: 1rem;
	border: 1px solid rgba(31, 58, 50, 0.25);
	border-radius: var(--paw-radius-md);
	background: var(--paw-white);
	cursor: pointer;
	transition: border-color var(--paw-transition), background var(--paw-transition), box-shadow var(--paw-transition), transform var(--paw-transition);
}

.paw-fit-option:hover {
	transform: translateY(-1px);
	border-color: var(--paw-rust);
	box-shadow: var(--paw-shadow-sm);
}

.paw-fit-option:has(input:checked) {
	border-color: var(--paw-rust);
	background: #fff8f2;
	box-shadow: 0 0 0 2px rgba(217, 106, 59, 0.16);
}

.paw-fit-option input {
	flex: 0 0 auto;
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0.15rem;
	accent-color: var(--paw-rust);
}

.paw-fit-option strong,
.paw-fit-option span {
	display: block;
}

.paw-fit-option span {
	margin-top: 0.2rem;
	color: var(--paw-muted);
	font-size: 0.82rem;
	font-weight: 480;
	line-height: 1.45;
}

.paw-fit-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.paw-fit-field {
	display: grid;
	gap: 0.35rem;
}

.paw-fit-field small {
	color: var(--paw-muted);
}

.paw-fit-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: var(--paw-border);
}

.paw-fit-results {
	margin-top: 2.5rem;
}

.paw-fit-result:not([tabindex="-1"]) {
	display: grid;
	grid-template-columns: 8rem minmax(0, 1fr) auto;
	align-items: center;
	gap: 1.25rem;
	padding: 1rem;
	border: var(--paw-border);
	border-radius: var(--paw-radius-md);
	background: var(--paw-white);
}

.paw-fit-result:not([tabindex="-1"]) + .paw-fit-result:not([tabindex="-1"]) {
	margin-top: 0.75rem;
}

.paw-fit-result:not([tabindex="-1"]) > img {
	width: 8rem;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 0.75rem;
}

.paw-fit-result:not([tabindex="-1"]) > div > h3 {
	margin-bottom: 0.35rem;
	font-size: 1.25rem;
}

.paw-fit-explanation {
	margin-bottom: 0;
	color: var(--paw-muted);
	font-size: 0.86rem;
}

/* Product detail components. */
.paw-product-intro,
.paw-product-story,
.paw-product-fit,
.paw-specification-grid {
	margin-block: clamp(2rem, 5vw, 4.5rem);
}

.paw-specification-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.paw-specification {
	padding: 1rem 1.15rem;
	border: var(--paw-border);
	border-radius: var(--paw-radius-md);
	background: rgba(255, 255, 255, 0.52);
}

.paw-specification dt {
	margin-bottom: 0.2rem;
	color: var(--paw-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.paw-specification dd {
	margin: 0;
	color: var(--paw-forest);
	font-weight: 680;
}

.paw-details-list {
	border-top: var(--paw-border);
}

.paw-details-list details {
	border-bottom: var(--paw-border);
}

.paw-details-list summary {
	position: relative;
	padding: 1.15rem 3rem 1.15rem 0;
	color: var(--paw-forest);
	font-weight: 750;
	list-style: none;
	cursor: pointer;
}

.paw-details-list summary::-webkit-details-marker {
	display: none;
}

.paw-details-list summary::after {
	position: absolute;
	top: 50%;
	right: 0.35rem;
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50%;
	background: var(--paw-sand-light);
	content: "+";
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.5rem;
	text-align: center;
	transform: translateY(-50%);
}

.paw-details-list details[open] summary::after {
	content: "−";
}

.paw-details-list__content {
	padding: 0 2.5rem 1.25rem 0;
}

.paw-empty-state {
	max-width: 46rem;
	margin: 3rem auto;
	padding: clamp(2rem, 6vw, 4rem);
	border: var(--paw-border);
	border-radius: var(--paw-radius-xl);
	background: var(--paw-cream-light);
	text-align: center;
	box-shadow: var(--paw-shadow-sm);
}

/* Pages and journal. */
.paw-page-header,
.paw-archive-header {
	margin-bottom: clamp(2rem, 5vw, 4rem);
}

.paw-page-header h1,
.paw-archive-header h1 {
	font-size: clamp(2.5rem, 1.7rem + 3vw, 4.8rem);
}

.paw-archive-description {
	max-width: 50rem;
	color: var(--paw-muted);
	font-size: 1.1rem;
}

.paw-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.paw-post-card {
	overflow: hidden;
	border: var(--paw-border);
	border-radius: var(--paw-radius-lg);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow-sm);
}

.paw-post-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--paw-sand);
}

.paw-post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.paw-post-card__body {
	padding: 1.35rem;
}

.paw-post-card__body h2 {
	font-size: 1.55rem;
}

.paw-post-card__body h2 a {
	color: inherit;
	text-decoration: none;
}

.paw-post-card__meta {
	margin-bottom: 0.55rem;
	color: var(--paw-muted);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.paw-post-card__excerpt {
	color: var(--paw-muted);
	font-size: 0.92rem;
}

.navigation.pagination {
	margin-top: 3rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
}

.nav-links .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 2.75rem;
	min-height: 2.75rem;
	padding: 0.35rem 0.7rem;
	border: var(--paw-border);
	border-radius: var(--paw-pill);
	background: var(--paw-cream-light);
	font-weight: 700;
	text-decoration: none;
}

.nav-links .page-numbers.current,
.nav-links a.page-numbers:hover {
	background: var(--paw-forest);
	color: var(--paw-white);
}

/* WooCommerce shell and notices. */
.paw-shop-shell {
	--paw-shop-gap: clamp(1.25rem, 2.4vw, 2rem);
}

.woocommerce .woocommerce-breadcrumb {
	margin-bottom: 1.5rem;
	color: var(--paw-muted);
	font-size: 0.78rem;
	font-weight: 620;
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--paw-forest);
}

.woocommerce-notices-wrapper:empty {
	display: none;
}

.woocommerce :where(.woocommerce-message, .woocommerce-info, .woocommerce-error),
:where(.wc-block-components-notice-banner, .wc-block-store-notice) {
	position: relative;
	margin: 0 0 1.25rem;
	padding: 1rem 1rem 1rem 3.25rem !important;
	border: 0;
	border-left: 4px solid var(--paw-success);
	border-radius: var(--paw-radius-md);
	background: #e9f4ea;
	color: #203b28;
	box-shadow: none;
	list-style: none outside;
}

.woocommerce .woocommerce-info,
.wc-block-components-notice-banner.is-info {
	border-left-color: var(--paw-forest-light);
	background: #e7f0ed;
	color: var(--paw-forest-deep);
}

.woocommerce .woocommerce-error,
.wc-block-components-notice-banner.is-error {
	border-left-color: var(--paw-danger);
	background: #fbe9e6;
	color: #6e211b;
}

.woocommerce :where(.woocommerce-message, .woocommerce-info, .woocommerce-error)::before {
	top: 1rem;
	left: 1.1rem;
	color: currentColor;
}

.woocommerce :where(.woocommerce-message, .woocommerce-info) .button {
	float: right;
	min-height: 2.2rem;
	padding: 0.45rem 0.85rem;
	font-size: 0.75rem;
}

.woocommerce .woocommerce-result-count {
	color: var(--paw-muted);
	font-size: 0.88rem;
}

.woocommerce .woocommerce-ordering select {
	min-width: 13rem;
	min-height: 2.75rem;
	padding-block: 0.55rem;
}

/* WooCommerce product archives and product cards. */
.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	clear: both;
	gap: var(--paw-shop-gap);
	margin: 2rem 0 0 !important;
	padding: 0;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	position: relative;
	display: flex;
	float: none !important;
	flex-direction: column;
	width: auto !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 0 1.25rem;
	overflow: hidden;
	border: var(--paw-border);
	border-radius: var(--paw-radius-lg);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow-sm);
	transition: transform var(--paw-transition), border-color var(--paw-transition), box-shadow var(--paw-transition);
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-4px);
	border-color: rgba(217, 106, 59, 0.5);
	box-shadow: var(--paw-shadow);
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.woocommerce ul.products li.product a img {
	width: 100%;
	margin: 0 0 1.15rem;
	aspect-ratio: 1;
	object-fit: cover;
	background: var(--paw-sand-light);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
	padding: 0 1.15rem;
	font-size: clamp(1.15rem, 1rem + 0.45vw, 1.45rem);
	line-height: 1.18;
}

.woocommerce ul.products li.product .price {
	margin: 0.5rem 0 1rem;
	padding-inline: 1.15rem;
	color: var(--paw-forest);
	font-size: 1rem;
	font-weight: 780;
}

.woocommerce ul.products li.product .price del {
	color: var(--paw-muted);
	font-size: 0.82em;
	opacity: 0.72;
}

.woocommerce ul.products li.product .price ins {
	font-weight: inherit;
	text-decoration: none;
}

.woocommerce ul.products li.product .button {
	align-self: flex-start;
	margin: auto 1.15rem 0;
}

.woocommerce ul.products li.product .added_to_cart {
	margin: 0.65rem 1.15rem 0;
	font-size: 0.8rem;
	font-weight: 750;
}

.woocommerce span.onsale {
	top: 0.75rem;
	right: auto;
	left: 0.75rem;
	z-index: 2;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 0.42rem 0.7rem;
	line-height: 1.2;
}

/* Single products. */
.single-product .woocommerce div.product {
	display: block;
}

.single-product .product-entry-wrapper {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
	align-items: start;
	gap: clamp(2rem, 5vw, 5rem);
}

.single-product .product-entry-wrapper > .woocommerce-product-gallery,
.single-product .product-entry-wrapper > .entry-summary {
	min-width: 0;
	width: 100%;
	margin: 0;
}

.single-product .woocommerce div.product::before,
.single-product .woocommerce div.product::after {
	display: none;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
	margin: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	margin: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image,
.woocommerce div.product div.images .flex-control-thumbs li img {
	overflow: hidden;
	border-radius: var(--paw-radius-md);
	background: var(--paw-sand-light);
}

.woocommerce div.product div.images .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.65rem;
	width: 100%;
	margin: 0.75rem 0 0;
	padding: 0;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	float: none;
	width: auto;
}

.woocommerce div.product .product_title {
	margin-bottom: 0.5rem;
	font-size: clamp(2.35rem, 1.7rem + 2.5vw, 4.25rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--paw-forest);
	font-size: clamp(1.35rem, 1.15rem + 0.6vw, 1.75rem);
	font-weight: 800;
}

.woocommerce-product-details__short-description {
	color: var(--paw-muted);
	font-size: 1.05rem;
}

.woocommerce div.product p.stock {
	font-size: 0.82rem;
	font-weight: 750;
}

.woocommerce div.product p.in-stock {
	color: var(--paw-success);
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-block: 1.5rem;
	padding: 1rem;
	border: 1px solid rgba(31, 58, 50, 0.2);
	border-radius: var(--paw-radius-md);
	background: var(--paw-sand-light);
}

.woocommerce div.product form.cart::before,
.woocommerce div.product form.cart::after {
	display: none;
}

.woocommerce .quantity .qty {
	width: 4.5rem;
	min-height: 3rem;
	padding: 0.5rem;
	text-align: center;
}

.woocommerce div.product form.cart .button {
	float: none;
	height: 3rem;
	min-height: 3rem !important;
	padding-inline: 1.5rem;
}

.woocommerce div.product form.cart .single_variation_wrap,
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
	width: 100%;
}

.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.woocommerce div.product form.cart .variations {
	width: 100%;
	margin: 0;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
	display: block;
	padding: 0 0 0.5rem;
	text-align: left;
}

.woocommerce div.product form.cart .variations label {
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.woocommerce div.product form.cart .variations select {
	width: 100%;
	margin-right: 0;
}

.woocommerce div.product form.cart .reset_variations {
	display: inline-block;
	margin-top: 0.4rem;
	font-size: 0.76rem;
}

.woocommerce div.product .product_meta {
	display: grid;
	gap: 0.35rem;
	padding-top: 1.25rem;
	border-top: var(--paw-border);
	color: var(--paw-muted);
	font-size: 0.78rem;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells {
	grid-column: 1 / -1;
	width: 100%;
	margin-top: clamp(2.5rem, 6vw, 5.5rem);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0 0 1.5rem;
	padding: 0;
	border-bottom: var(--paw-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 0.8rem 1rem;
	border-radius: var(--paw-radius-sm) var(--paw-radius-sm) 0 0;
	color: var(--paw-muted);
	font-size: 0.82rem;
	font-weight: 750;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	background: var(--paw-sand-light);
	color: var(--paw-forest);
}

.woocommerce div.product .woocommerce-tabs .panel {
	max-width: var(--paw-content);
	margin-inline: auto;
}

.woocommerce .star-rating,
.woocommerce .star-rating::before {
	color: var(--paw-rust);
}

.paw-sticky-add-to-cart {
	display: none;
}

.summary form.cart[data-paw-purchase-target="true"] {
	scroll-margin-top: 0.75rem;
}

body.paw-menu-open .paw-sticky-add-to-cart {
	visibility: hidden;
	pointer-events: none;
}

@supports selector(body:has(*)) {
	body:has(.pswp--open) .paw-sticky-add-to-cart {
		visibility: hidden;
		pointer-events: none;
	}
}

/* Cart, checkout, account, and tables. */
.woocommerce table.shop_table,
.woocommerce table.shop_table_responsive,
.wc-block-cart-items,
.wc-block-checkout__order-notes,
.wc-block-components-order-summary {
	border: var(--paw-border);
	border-collapse: separate;
	border-spacing: 0;
	border-radius: var(--paw-radius-md);
	background: var(--paw-cream-light);
	overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 1rem;
	border-top: var(--paw-border);
}

.woocommerce table.shop_table thead th {
	border-top: 0;
	background: var(--paw-sand-light);
	color: var(--paw-forest);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.woocommerce-cart table.cart img {
	width: 5rem;
	border-radius: 0.65rem;
}

.woocommerce a.remove {
	display: inline-grid;
	place-items: center;
	width: 1.8rem;
	height: 1.8rem;
	border-radius: 50%;
	color: var(--paw-danger) !important;
	font-weight: 500;
}

.woocommerce a.remove:hover {
	background: var(--paw-danger);
	color: var(--paw-white) !important;
}

.woocommerce-cart table.cart td.actions .coupon {
	display: flex;
	gap: 0.5rem;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
	width: min(16rem, 100%);
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	float: none;
	width: min(100%, 34rem);
	margin: 2rem 0 0 auto;
	padding: 1.5rem;
	border: var(--paw-border);
	border-radius: var(--paw-radius-lg);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow-sm);
}

.woocommerce .cart-collaterals .cart_totals h2 {
	font-size: 1.65rem;
}

.woocommerce-cart .ct-woocommerce-cart-form .cart_totals table {
	table-layout: auto;
}

.woocommerce-cart .ct-woocommerce-cart-form .cart_totals table th,
.woocommerce-cart .ct-woocommerce-cart-form .cart_totals table .amount {
	white-space: nowrap;
}

@media (min-width: 1000px) {
	.woocommerce-cart .ct-woocommerce-cart-form {
		grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.66fr);
	}
}

.woocommerce .wc-proceed-to-checkout {
	padding-bottom: 0;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button {
	width: 100%;
	margin-bottom: 0;
}

.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
	gap: clamp(1.5rem, 4vw, 3rem);
}

.woocommerce-checkout #customer_details {
	grid-column: 1;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
	grid-column: 2;
}

.woocommerce-checkout #order_review_heading {
	align-self: end;
	margin: 0;
	font-size: 1.65rem;
}

.woocommerce-checkout #order_review {
	align-self: start;
	padding: 1.25rem;
	border: var(--paw-border);
	border-radius: var(--paw-radius-lg);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow-sm);
}

.woocommerce form .form-row {
	padding: 0;
	margin-bottom: 1rem;
}

.woocommerce form .form-row label {
	font-size: 0.82rem;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	max-width: 38rem;
	padding: 1.5rem;
	border: var(--paw-border);
	border-radius: var(--paw-radius-lg);
	background: var(--paw-cream-light);
}

.woocommerce-checkout #payment {
	background: var(--paw-sand-light);
	border-radius: var(--paw-radius-md);
}

.woocommerce-checkout #payment ul.payment_methods,
.woocommerce-checkout #payment div.form-row {
	padding: 1rem;
	border-color: rgba(31, 58, 50, 0.16);
}

.woocommerce-checkout #payment div.payment_box {
	background: var(--paw-cream-light);
	color: var(--paw-charcoal);
}

.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--paw-cream-light);
}

.woocommerce-MyAccount-navigation {
	float: left;
	width: 24%;
}

.woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0.6rem;
	border: var(--paw-border);
	border-radius: var(--paw-radius-md);
	background: var(--paw-cream-light);
	list-style: none;
}

.woocommerce-MyAccount-navigation a {
	display: block;
	padding: 0.7rem 0.8rem;
	border-radius: 0.55rem;
	font-weight: 680;
	text-decoration: none;
}

.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover {
	background: var(--paw-sand-light);
}

.woocommerce-MyAccount-content {
	float: right;
	width: 72%;
}

/* WooCommerce blocks. */
.wc-block-grid__products,
.wc-block-product-template {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--paw-shop-gap, 1.5rem);
	margin: 0 !important;
	padding: 0 !important;
}

.wc-block-grid__product,
.wc-block-product {
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 0 1.25rem !important;
	overflow: hidden;
	border: var(--paw-border) !important;
	border-radius: var(--paw-radius-lg);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow-sm);
}

.wc-block-grid__product-image img,
.wc-block-components-product-image img {
	width: 100%;
	background: var(--paw-sand-light);
}

.wc-block-grid__product-title,
.wc-block-components-product-name,
.wp-block-woocommerce-product-name {
	color: var(--paw-forest);
	font-family: var(--paw-display);
	font-size: 1.25rem;
	font-weight: 650;
	line-height: 1.2;
}

.wc-block-grid__product-title,
.wc-block-grid__product-price,
.wc-block-grid__product-add-to-cart {
	padding-inline: 1rem;
}

.wc-block-cart,
.wc-block-checkout {
	font-family: var(--paw-sans);
}

.wc-block-cart__main,
.wc-block-checkout__main {
	padding-right: clamp(1rem, 3vw, 2.5rem) !important;
}

.wc-block-cart__sidebar,
.wc-block-checkout__sidebar {
	padding: 1.25rem !important;
	border: var(--paw-border);
	border-radius: var(--paw-radius-lg);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow-sm);
}

.wc-block-components-sidebar-layout .wc-block-components-main,
.wc-block-components-sidebar {
	box-sizing: border-box;
}

.wc-block-components-totals-wrapper {
	border-color: rgba(31, 58, 50, 0.17) !important;
}

.wc-block-components-checkout-step {
	margin-bottom: 1.25rem;
	padding: 1.25rem !important;
	border: var(--paw-border);
	border-radius: var(--paw-radius-md);
	background: rgba(255, 255, 255, 0.5);
}

.wc-block-components-checkout-step__heading h2,
.wc-block-components-title {
	font-family: var(--paw-display) !important;
}

.wc-block-components-radio-control-accordion-option,
.wc-block-components-radio-control__option {
	border-color: rgba(31, 58, 50, 0.2) !important;
}

.wc-block-components-quantity-selector {
	border-color: rgba(31, 58, 50, 0.25) !important;
	border-radius: var(--paw-pill) !important;
}

/* Newsletter and footer. */
.paw-newsletter {
	background: var(--paw-rust);
	color: var(--paw-white);
}

.paw-newsletter__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1.15fr);
	align-items: center;
	gap: clamp(2rem, 7vw, 6rem);
	padding-block: clamp(3rem, 7vw, 5.5rem);
}

.paw-newsletter :where(h2, .paw-eyebrow) {
	color: var(--paw-white);
}

.paw-newsletter h2 {
	max-width: 35rem;
	font-size: clamp(2rem, 1.5rem + 1.8vw, 3.2rem);
}

.paw-newsletter__copy > :last-child {
	margin-bottom: 0;
	opacity: 0.86;
}

.paw-newsletter-form {
	position: relative;
	display: grid;
	gap: 0.85rem;
}

.paw-newsletter-form__field > label {
	display: inline-block;
	margin-bottom: 0.45rem;
	color: var(--paw-white);
	font-size: 0.78rem;
	font-weight: 750;
}

.paw-newsletter-form__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.6rem;
}

.paw-newsletter-form__row input[type="email"] {
	min-height: 3.35rem;
	border-color: transparent;
	background: var(--paw-white);
}

.paw-newsletter .paw-checkbox {
	color: rgba(255, 255, 255, 0.9);
}

.paw-newsletter .paw-checkbox input {
	accent-color: var(--paw-forest);
}

.paw-site-footer {
	padding-block: clamp(3rem, 7vw, 5.5rem) 1.5rem;
	background: var(--paw-forest-deep);
	color: rgba(247, 242, 232, 0.78);
}

.paw-site-footer a {
	color: var(--paw-cream);
}

.paw-site-footer a:hover,
.paw-site-footer a:focus-visible {
	color: #ffc9ad;
	text-decoration-color: currentColor;
}

.paw-footer-grid {
	display: grid;
	grid-template-columns: minmax(15rem, 1.6fr) repeat(4, minmax(8rem, 1fr));
	gap: clamp(1.5rem, 4vw, 3.5rem);
}

.paw-footer-brand .paw-brand__link {
	gap: 0.8rem;
	margin-bottom: 1.15rem;
	color: var(--paw-cream);
}

.paw-footer-brand .paw-brand__mark {
	width: 3rem;
	height: 3rem;
	border-radius: 0.94rem;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.paw-footer-brand .paw-brand__name {
	font-size: clamp(1.7rem, 1.45rem + 0.6vw, 2rem);
}

.paw-footer-brand .paw-brand__tagline {
	color: var(--paw-sand);
}

.paw-footer-brand__promise {
	max-width: 23rem;
	margin-top: 0;
	font-size: 0.88rem;
}

.paw-footer-column h2 {
	margin-bottom: 0.9rem;
	color: var(--paw-cream);
	font-family: var(--paw-sans);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.paw-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.paw-footer-menu li + li {
	margin-top: 0.55rem;
}

.paw-footer-menu a,
.paw-menu-placeholder {
	font-size: 0.84rem;
	text-decoration: none;
}

.paw-menu-placeholder {
	display: block;
	color: #e7b28e;
	font-size: 0.72rem;
	line-height: 1.45;
}

.paw-footer-action-required {
	display: flex;
	gap: 0.5rem;
	margin-top: 3rem;
	padding: 0.8rem 1rem;
	border: 1px solid rgba(240, 161, 125, 0.35);
	border-radius: var(--paw-radius-sm);
	background: rgba(217, 106, 59, 0.08);
	color: #f0c3a7;
	font-size: 0.72rem;
	line-height: 1.5;
}

.paw-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(247, 242, 232, 0.13);
	font-size: 0.72rem;
}

.paw-footer-bottom p {
	margin: 0;
}

.paw-local-note {
	max-width: 42rem;
	color: #e7b28e;
	text-align: right;
}

/* Pawcursion Core component contract. These selectors intentionally mirror the
 * plugin's public class names so the presentation remains owned by the theme. */
.paw-section-wide {
	width: min(100% - (2 * var(--paw-gutter)), var(--paw-shell));
	margin: clamp(2rem, 5vw, 4.5rem) auto;
	padding: clamp(2rem, 5vw, 4.5rem);
	border-radius: var(--paw-radius-xl);
}

.paw-home > .paw-section,
.paw-product-story.paw-section,
.paw-video-module.paw-section,
.paw-gallery-plan.paw-section,
.paw-comparison.paw-section {
	width: min(100% - (2 * var(--paw-gutter)), var(--paw-shell));
	margin-inline: auto;
}

.paw-reading-width {
	width: min(100%, var(--paw-content));
	margin-inline: auto;
}

.paw-product-specs {
	display: grid;
	margin: 1.5rem 0 0;
	border-top: 1px solid color-mix(in srgb, var(--paw-forest) 18%, transparent);
}

.paw-product-specs > div {
	display: grid;
	grid-template-columns: minmax(10rem, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(1rem, 3vw, 2.5rem);
	padding-block: 1rem;
	border-bottom: 1px solid color-mix(in srgb, var(--paw-forest) 18%, transparent);
}

.paw-product-specs :where(dt, dd) {
	margin: 0;
}

.paw-product-specs dt {
	color: var(--paw-forest);
	font-weight: 780;
}

.paw-product-specs dd {
	color: var(--paw-muted);
	line-height: 1.65;
}

@media (max-width: 640px) {
	.paw-product-specs > div {
		grid-template-columns: 1fr;
		gap: 0.3rem;
	}
}

@media (min-width: 900px) {
	body.single-product.woocommerce div.product div.images .flex-control-thumbs {
		display: grid !important;
		grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
		justify-content: stretch !important;
		gap: 0.65rem !important;
	}

	body.single-product.woocommerce div.product div.images .flex-control-thumbs li {
		float: none !important;
		width: 100% !important;
		max-width: none !important;
		padding: 0 !important;
	}
}

.paw-lead {
	max-width: 42rem;
	color: var(--paw-muted);
	font-size: clamp(1.08rem, 0.98rem + 0.45vw, 1.35rem);
	line-height: 1.6;
}

.paw-button-rust {
	background: var(--paw-rust);
}

.paw-button-ghost {
	border-color: currentColor;
	background: transparent;
	color: var(--paw-forest) !important;
}

.paw-section--forest .paw-button-ghost,
.paw-hero .paw-button-ghost {
	border-color: rgba(247, 242, 232, 0.62);
	color: var(--paw-cream) !important;
}

.paw-button-ghost:hover {
	border-color: var(--paw-forest);
	background: var(--paw-forest);
	color: var(--paw-white) !important;
}

.paw-hero .paw-button-ghost:hover {
	border-color: var(--paw-cream);
	background: var(--paw-cream);
	color: var(--paw-forest) !important;
}

.paw-button.is-disabled {
	background: var(--paw-sage);
	color: var(--paw-forest-deep) !important;
	box-shadow: none;
}

.paw-local-ribbon,
.paw-media-badge {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	width: fit-content;
	margin: 0 0 1rem;
	padding: 0.45rem 0.75rem;
	border: 1px solid rgba(139, 91, 25, 0.25);
	border-radius: var(--paw-pill);
	background: #fff4dc;
	color: #69420f;
	font-size: 0.7rem;
	font-weight: 780;
	letter-spacing: 0.045em;
	line-height: 1.35;
	text-transform: uppercase;
}

.paw-buy-panel {
	display: grid;
	gap: 0.75rem;
	margin-block: 1.25rem;
	padding: 1rem;
	border: 1px solid rgba(31, 58, 50, 0.22);
	border-radius: var(--paw-radius-md);
	background: var(--paw-sand-light);
}

.paw-buy-panel > div {
	padding: 0.85rem;
	border-radius: 0.65rem;
	background: rgba(255, 255, 255, 0.58);
}

.paw-buy-panel p {
	margin: 0.25rem 0 0;
	font-size: 0.86rem;
}

.paw-panel-label,
.paw-status-chip > span {
	display: inline-flex;
	color: var(--paw-rust-dark);
	font-size: 0.68rem;
	font-weight: 820;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.paw-status-chip {
	border-left: 3px solid var(--paw-warning);
}

.paw-section-heading {
	max-width: 50rem;
	margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.paw-section-heading > :last-child {
	margin-bottom: 0;
	color: var(--paw-muted);
}

.paw-page-hero {
	width: min(100% - (2 * var(--paw-gutter)), var(--paw-shell));
	margin: 0 auto clamp(2rem, 5vw, 4rem);
	padding: clamp(2rem, 6vw, 5rem);
	border-radius: var(--paw-radius-xl);
	background: linear-gradient(135deg, var(--paw-forest) 0%, var(--paw-forest-light) 100%);
	color: rgba(247, 242, 232, 0.84);
}

.paw-page-hero :where(h1, .paw-eyebrow) {
	color: var(--paw-cream);
}

.paw-page-hero .paw-eyebrow {
	color: #f0a17d;
}

.paw-page-hero .paw-lead {
	margin-bottom: 0;
	color: rgba(247, 242, 232, 0.82);
}

.paw-editorial-content {
	width: min(100% - (2 * var(--paw-gutter)), var(--paw-content));
	margin: 0 auto clamp(3rem, 7vw, 6rem);
}

.paw-editorial-content > h2:not(:first-child) {
	margin-top: 2.5rem;
}

.paw-product-opening {
	margin-bottom: 2rem;
	padding: 1.25rem 1.5rem;
	border-left: 4px solid var(--paw-rust);
	border-radius: 0 var(--paw-radius-md) var(--paw-radius-md) 0;
	background: var(--paw-sand-light);
	color: var(--paw-forest);
	font-family: var(--paw-display);
	font-size: clamp(1.1rem, 1rem + 0.45vw, 1.35rem);
	line-height: 1.55;
}

.paw-faq-list {
	border-top: var(--paw-border);
}

.paw-faq-list details {
	border-bottom: var(--paw-border);
}

.paw-faq-list summary {
	position: relative;
	padding: 1.1rem 3rem 1.1rem 0;
	color: var(--paw-forest);
	font-weight: 750;
	list-style: none;
	cursor: pointer;
}

.paw-faq-list summary::-webkit-details-marker {
	display: none;
}

.paw-faq-list summary::after {
	position: absolute;
	top: 50%;
	right: 0.35rem;
	display: grid;
	place-items: center;
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 50%;
	background: var(--paw-sand-light);
	content: "+";
	font-size: 1.15rem;
	font-weight: 500;
	transform: translateY(-50%);
}

.paw-faq-list details[open] summary::after {
	content: "−";
}

.paw-faq-list details > p {
	padding: 0 2.5rem 1.15rem 0;
	color: var(--paw-muted);
}

.paw-claim-guard {
	margin-block: 2.5rem;
	padding: clamp(1.25rem, 4vw, 2rem);
	border: 1px solid rgba(159, 50, 41, 0.25);
	border-radius: var(--paw-radius-lg);
	background: #fbe9e6;
	color: #6e211b;
}

.paw-claim-guard h2 {
	color: #6e211b;
	font-size: clamp(1.35rem, 1.15rem + 0.7vw, 1.8rem);
}

.paw-claim-guard li::marker {
	color: var(--paw-danger);
}

.paw-launch-picks {
	padding-inline: clamp(1.5rem, 4vw, 3rem);
	border-radius: var(--paw-radius-xl);
	background: var(--paw-sand-light);
}

/* Core homepage hero. */
.paw-hero.paw-section-wide {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 6rem);
	min-height: min(740px, calc(100vh - 9rem));
	padding: clamp(2.5rem, 7vw, 6.5rem);
}

.paw-hero-copy {
	position: relative;
	z-index: 2;
}

.paw-hero-copy h1 {
	font-size: clamp(2.8rem, 1.55rem + 4.3vw, 5.9rem);
	color: var(--paw-cream);
}

.paw-hero-copy .paw-lead {
	color: rgba(247, 242, 232, 0.85);
}

.paw-hero .paw-button:not(.paw-button-ghost) {
	border-color: var(--paw-rust);
	background: var(--paw-rust);
}

.paw-trust-line {
	margin: 1.25rem 0 0;
	color: rgba(247, 242, 232, 0.72);
	font-size: 0.74rem;
	font-weight: 650;
	letter-spacing: 0.025em;
}

.paw-trust-line span {
	padding-inline: 0.25rem;
	color: #f0a17d;
}

.paw-hero-video {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 32rem;
	padding: 1.15rem;
	overflow: hidden;
	border: 1px solid rgba(247, 242, 232, 0.22);
	border-radius: 48% 52% 38% 62% / 40% 43% 57% 60%;
	background-image: linear-gradient(180deg, rgba(20, 42, 36, 0.14), rgba(20, 42, 36, 0.82)), var(--paw-hero-poster, linear-gradient(145deg, var(--paw-sage), var(--paw-sand)));
	background-position: center;
	background-size: cover;
	box-shadow: var(--paw-shadow-lg);
}

.paw-video-top {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.paw-video-top span {
	padding: 0.3rem 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: var(--paw-pill);
	background: rgba(20, 42, 36, 0.6);
}

.paw-hero-play,
.paw-play {
	display: grid;
	place-items: center;
	width: 4.25rem;
	height: 4.25rem;
	margin: auto;
	padding-left: 0.2rem;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	background: rgba(247, 242, 232, 0.9);
	color: var(--paw-forest);
	box-shadow: var(--paw-shadow);
}

.paw-video-caption {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
	padding: 0.85rem 1rem;
	border-radius: var(--paw-radius-md);
	background: rgba(20, 42, 36, 0.78);
	backdrop-filter: blur(8px);
}

.paw-video-caption strong,
.paw-video-caption span {
	display: block;
}

.paw-hero-video > p {
	margin: 0.75rem 0 0;
	color: rgba(247, 242, 232, 0.84);
	font-size: 0.72rem;
	line-height: 1.4;
}

/* Core cards and grids. */
.paw-problem-grid,
.paw-guide-grid,
.paw-bundle-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr));
}

.paw-problem-grid > article,
.paw-guide-grid > article,
.paw-bundle-grid > article {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: clamp(1.25rem, 2.5vw, 2rem);
	border: var(--paw-border);
	border-radius: var(--paw-radius-lg);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow-sm);
	transition: transform var(--paw-transition), border-color var(--paw-transition), box-shadow var(--paw-transition);
}

.paw-problem-grid > article:hover,
.paw-guide-grid > article:hover {
	transform: translateY(-4px);
	border-color: rgba(217, 106, 59, 0.5);
	box-shadow: var(--paw-shadow);
}

.paw-problem-grid > article > span,
.paw-guide-grid > article > span {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	margin-bottom: 1.35rem;
	border: var(--paw-border);
	border-radius: 50%;
	color: var(--paw-rust-dark);
	font-family: var(--paw-display);
	font-weight: 700;
}

.paw-problem-grid > article h3,
.paw-guide-grid > article h3,
.paw-bundle-grid > article h3 {
	font-size: 1.45rem;
}

.paw-problem-grid > article > a,
.paw-guide-grid > article > a,
.paw-bundle-grid > article > a {
	margin-top: auto;
	font-weight: 750;
	text-decoration: none;
}

.paw-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 100%;
	overflow: hidden;
	border: var(--paw-border);
	border-radius: var(--paw-radius-lg);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow-sm);
	transition: transform var(--paw-transition), border-color var(--paw-transition), box-shadow var(--paw-transition);
}

.paw-product-card:hover {
	transform: translateY(-4px);
	border-color: rgba(217, 106, 59, 0.5);
	box-shadow: var(--paw-shadow);
}

.paw-product-image {
	position: relative;
	display: block;
	aspect-ratio: 1;
	overflow: hidden;
	background: var(--paw-sand-light);
}

.paw-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.paw-product-card:hover .paw-product-image img {
	transform: scale(1.025);
}

.paw-draft-label,
.paw-reference-corner {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	padding: 0.35rem 0.55rem;
	border-radius: var(--paw-pill);
	font-size: 0.6rem;
	font-weight: 820;
	letter-spacing: 0.07em;
	line-height: 1.2;
	text-transform: uppercase;
}

.paw-draft-label {
	top: 0.7rem;
	left: 0.7rem;
	background: #fff4dc;
	color: #69420f;
}

.paw-reference-corner {
	right: 0.7rem;
	bottom: 0.7rem;
	background: rgba(20, 42, 36, 0.82);
	color: var(--paw-cream);
	backdrop-filter: blur(6px);
}

.paw-product-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 1.25rem;
}

.paw-product-card-body h3 {
	font-size: 1.42rem;
}

.paw-product-card-body h3 a {
	color: inherit;
	text-decoration: none;
}

.paw-card-brand {
	margin-bottom: 0.45rem;
	color: var(--paw-rust-dark);
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.paw-card-price {
	margin-bottom: 0.8rem;
	color: var(--paw-forest);
	font-size: 1rem;
	font-weight: 800;
}

.paw-card-price del {
	color: var(--paw-muted);
	opacity: 0.7;
}

.paw-card-price ins {
	text-decoration: none;
}

.paw-card-fit {
	color: var(--paw-muted);
	font-size: 0.84rem;
	line-height: 1.5;
}

.paw-card-link {
	margin-top: auto;
	font-size: 0.82rem;
	font-weight: 760;
	text-decoration: none;
}

.paw-bundle-price {
	display: block;
	margin: 0.5rem 0;
	color: var(--paw-forest);
	font-size: 1.35rem;
}

.paw-bundle-products,
.paw-bundle-note {
	color: var(--paw-muted);
	font-size: 0.82rem;
}

.paw-bundle-note {
	padding-top: 0.75rem;
	border-top: var(--paw-border);
}

/* Core homepage supporting sections. */
.paw-fit-callout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.65fr);
	align-items: center;
	gap: clamp(2rem, 7vw, 6rem);
	background: var(--paw-sand-light);
}

.paw-measure-graphic {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 15rem;
	padding: 2rem;
	border-radius: 50%;
	background: var(--paw-forest);
	color: var(--paw-cream);
	text-align: center;
}

.paw-measure-graphic strong,
.paw-measure-graphic small {
	display: block;
}

.paw-measure-graphic strong {
	font-family: var(--paw-display);
	font-size: 1.6rem;
}

.paw-measure-graphic small {
	color: var(--paw-sage);
	font-size: 0.65rem;
	font-weight: 750;
	letter-spacing: 0.08em;
}

.paw-measure-line {
	position: absolute;
	top: 1.4rem;
	bottom: 1.4rem;
	left: 50%;
	width: 1px;
	background: rgba(247, 242, 232, 0.32);
}

.paw-measure-line::before,
.paw-measure-line::after {
	position: absolute;
	left: 50%;
	width: 0.6rem;
	height: 0.6rem;
	border: solid var(--paw-rust);
	content: "";
	transform: translateX(-50%) rotate(45deg);
}

.paw-measure-line::before {
	top: 0;
	border-width: 2px 0 0 2px;
}

.paw-measure-line::after {
	bottom: 0;
	border-width: 0 2px 2px 0;
}

.paw-comparison-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.paw-comparison-list > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem;
	border: var(--paw-border);
	border-radius: var(--paw-radius-md);
	background: var(--paw-cream-light);
}

.paw-comparison-list span {
	color: var(--paw-muted);
	font-size: 0.82rem;
}

.paw-comparison-list strong {
	color: var(--paw-forest);
	font-size: 0.85rem;
	text-align: right;
}

.paw-why {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(1.5rem, 5vw, 4rem);
	background: var(--paw-forest);
	color: rgba(247, 242, 232, 0.84);
}

.paw-why :where(h2, .paw-eyebrow) {
	color: var(--paw-cream);
}

.paw-why .paw-eyebrow {
	color: #f0a17d;
}

.paw-why ul {
	grid-column: 2;
	margin: -1rem 0 0;
	padding: 0;
	list-style: none;
}

.paw-why li {
	padding: 0.55rem 0 0.55rem 1.5rem;
	border-bottom: 1px solid rgba(247, 242, 232, 0.13);
}

.paw-why li::before {
	margin-left: -1.5rem;
	margin-right: 0.6rem;
	color: #f0a17d;
	content: "✓";
}

/* Collection, shop filters, and empty states. */
.paw-collection-intro,
.paw-shop-header {
	background: linear-gradient(135deg, var(--paw-sand-light), var(--paw-cream-light));
}

.paw-collection-intro > p:last-child,
.paw-shop-header > p:last-child {
	max-width: 48rem;
	margin-bottom: 0;
	color: var(--paw-muted);
	font-size: 1.08rem;
}

.paw-collection-guide {
	max-width: var(--paw-content);
	margin-inline: auto;
}

.paw-filter-bar {
	display: grid;
	grid-template-columns: repeat(5, minmax(8.5rem, 1fr)) auto;
	align-items: end;
	gap: 0.75rem;
	margin-bottom: 2rem;
	padding: 1rem;
	border: var(--paw-border);
	border-radius: var(--paw-radius-lg);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow-sm);
}

.paw-filter-bar label,
.paw-field-pair label,
.paw-contact-form > label {
	display: grid;
	gap: 0.35rem;
	font-size: 0.75rem;
	font-weight: 760;
}

.paw-filter-bar select {
	min-height: 2.9rem;
	font-size: 0.82rem;
}

.paw-empty {
	padding: clamp(1.5rem, 5vw, 3.5rem);
	border: 1px dashed rgba(31, 58, 50, 0.32);
	border-radius: var(--paw-radius-lg);
	background: rgba(255, 255, 255, 0.4);
	text-align: center;
}

.paw-empty strong {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--paw-forest);
	font-family: var(--paw-display);
	font-size: 1.4rem;
}

.paw-empty p {
	margin: 0;
	color: var(--paw-muted);
}

/* Core Fit Finder markup. */
.paw-fit-finder[data-paw-fit-finder] {
	display: block;
	width: min(100% - (2 * var(--paw-gutter)), 68rem);
	margin: clamp(2rem, 6vw, 5rem) auto;
}

.paw-fit-intro {
	padding: clamp(1.5rem, 5vw, 3.5rem);
	background: var(--paw-forest);
	color: rgba(247, 242, 232, 0.84);
}

.paw-fit-intro :where(h1, .paw-eyebrow) {
	color: var(--paw-cream);
}

.paw-fit-intro .paw-eyebrow {
	color: #f0a17d;
}

.paw-fit-intro h1 {
	font-size: clamp(2.25rem, 1.6rem + 2.5vw, 4.25rem);
}

.paw-progress {
	height: 0.38rem;
	margin-top: 1.75rem;
	overflow: hidden;
	border-radius: var(--paw-pill);
	background: rgba(247, 242, 232, 0.18);
}

.paw-progress span {
	display: block;
	width: var(--paw-progress, 16.666%);
	height: 100%;
	border-radius: inherit;
	background: #f0a17d;
	transition: width var(--paw-transition);
}

.paw-fit-form {
	padding: clamp(1.5rem, 5vw, 3.5rem);
}

.paw-fit-form__utility {
	display: flex;
	justify-content: flex-end;
	margin: 0 0 1rem;
}

.paw-fit-form__utility a {
	display: inline-flex;
	align-items: center;
	min-height: var(--paw-target-min);
	color: var(--paw-action-hover);
	font-size: 0.82rem;
	font-weight: 750;
	text-underline-offset: 0.2em;
}

.paw-fit-form fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.paw-fit-form[data-enhanced="true"] fieldset[hidden] {
	display: none;
}

.paw-fit-form legend {
	width: 100%;
	margin-bottom: 1.5rem;
	color: var(--paw-forest);
	font-family: var(--paw-display);
	font-size: clamp(1.35rem, 1.12rem + 0.85vw, 2rem);
	font-weight: 650;
	line-height: 1.2;
}

.paw-fit-form legend > span {
	display: inline-grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	margin-right: 0.45rem;
	border-radius: 50%;
	background: var(--paw-rust);
	color: var(--paw-white);
	font-family: var(--paw-sans);
	font-size: 0.75rem;
}

.paw-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.paw-choice-grid label {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 0.7rem;
	min-height: 3.75rem;
	padding: 0.85rem 1rem;
	border: var(--paw-border);
	border-radius: var(--paw-radius-md);
	background: var(--paw-white);
	cursor: pointer;
	transition: transform var(--paw-transition), border-color var(--paw-transition), box-shadow var(--paw-transition), background var(--paw-transition);
}

.paw-choice-grid label:hover,
.paw-choice-grid label:has(input:checked) {
	transform: translateY(-1px);
	border-color: var(--paw-rust);
	background: #fff8f2;
	box-shadow: 0 0 0 2px rgba(217, 106, 59, 0.14);
}

.paw-choice-grid input {
	width: 1.1rem;
	height: 1.1rem;
	accent-color: var(--paw-rust);
}

.paw-field-pair {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.paw-field-pair label > span {
	color: var(--paw-muted);
	font-size: 0.68rem;
	font-weight: 600;
}

.paw-help-text {
	margin-top: 0.75rem;
	color: var(--paw-muted);
	font-size: 0.76rem;
	line-height: 1.5;
}

.paw-fit-controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.65rem;
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: var(--paw-border);
}

.paw-fit-result[tabindex="-1"] {
	display: block;
	grid-template-columns: none;
	margin: 0 clamp(1.5rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3.5rem);
	padding: clamp(1.25rem, 4vw, 2.5rem);
	border-color: rgba(217, 106, 59, 0.35);
	background: #fff8f2;
}

.paw-fit-result[tabindex="-1"] > .paw-product-card {
	max-width: 24rem;
	margin-block: 1.25rem;
}

.paw-preview-candidate {
	margin-block: 1rem;
	padding: 1rem;
	border-left: 4px solid var(--paw-warning);
	border-radius: 0 var(--paw-radius-sm) var(--paw-radius-sm) 0;
	background: #fff4dc;
}

.paw-preview-candidate p {
	margin-block: 0.25rem;
	font-size: 0.84rem;
}

/* Product evidence, gallery, and video placeholders. */
.paw-video-frame {
	position: relative;
	display: grid;
	place-items: center;
	min-height: clamp(20rem, 48vw, 38rem);
	overflow: hidden;
	border-radius: var(--paw-radius-xl);
	background-image: linear-gradient(rgba(20, 42, 36, 0.34), rgba(20, 42, 36, 0.78)), var(--paw-poster, linear-gradient(145deg, var(--paw-sage), var(--paw-sand)));
	background-position: center;
	background-size: cover;
	box-shadow: var(--paw-shadow);
}

.paw-video-overlay {
	display: grid;
	justify-items: center;
	gap: 0.55rem;
	max-width: 30rem;
	padding: 2rem;
	color: var(--paw-white);
	text-align: center;
}

.paw-video-overlay strong {
	font-family: var(--paw-display);
	font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.8rem);
}

.paw-video-overlay small {
	color: rgba(255, 255, 255, 0.76);
}

.paw-timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
	gap: 0.65rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	counter-reset: paw-timeline;
}

.paw-timeline li {
	padding: 0.8rem 0.9rem;
	border: var(--paw-border);
	border-radius: var(--paw-radius-sm);
	background: var(--paw-cream-light);
	font-size: 0.78rem;
	counter-increment: paw-timeline;
}

.paw-timeline li::before {
	margin-right: 0.45rem;
	color: var(--paw-rust-dark);
	content: counter(paw-timeline, decimal-leading-zero);
	font-weight: 800;
}

.paw-gallery-plan .paw-proof-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.paw-gallery-plan .paw-proof-grid li {
	padding: 1rem;
	border: var(--paw-border);
	border-radius: var(--paw-radius-md);
	background: var(--paw-cream-light);
}

.paw-gallery-plan .paw-proof-grid li > span {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	margin-bottom: 0.7rem;
	border-radius: 50%;
	background: var(--paw-forest);
	color: var(--paw-cream);
	font-size: 0.72rem;
	font-weight: 800;
}

.paw-gallery-plan .paw-proof-grid p {
	margin: 0;
	font-size: 0.82rem;
}

/* Core forms and newsletter shortcode. */
.paw-contact-form {
	display: grid;
	gap: 1rem;
	max-width: 48rem;
	margin-inline: auto;
	padding: clamp(1.25rem, 4vw, 2.5rem);
	border: var(--paw-border);
	border-radius: var(--paw-radius-lg);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow-sm);
}

.paw-form-success {
	margin: 0;
	padding: 0.8rem 1rem;
	border-left: 4px solid var(--paw-success);
	border-radius: 0 var(--paw-radius-sm) var(--paw-radius-sm) 0;
	background: #e9f4ea;
	color: #203b28;
	font-weight: 700;
}

.paw-form-error {
	margin: 0;
	padding: 0.8rem 1rem;
	border-left: 4px solid var(--paw-danger);
	border-radius: 0 var(--paw-radius-sm) var(--paw-radius-sm) 0;
	background: #fbe9e6;
	color: #6e211b;
	font-weight: 700;
}

.paw-form-status:focus {
	outline: 3px solid var(--paw-action, var(--paw-rust-dark));
	outline-offset: 3px;
}

.paw-payment-debug {
	margin-block: 0.75rem;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(139, 91, 25, 0.28);
	border-radius: var(--paw-radius-sm);
	background: #fff4dc;
	color: #5f3b0b;
}

.paw-payment-debug strong,
.paw-payment-debug p {
	display: block;
	margin: 0;
}

.paw-payment-debug p {
	margin-top: 0.3rem;
	font-size: 0.78rem;
	line-height: 1.45;
}

section.paw-newsletter.paw-section-wide {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1.15fr);
	align-items: center;
	gap: clamp(2rem, 7vw, 6rem);
}

section.paw-newsletter.paw-section-wide > .paw-newsletter-form {
	display: grid;
	gap: 0.7rem;
}

section.paw-newsletter.paw-section-wide .paw-newsletter-form__field > label {
	color: var(--paw-white);
	font-size: 0.78rem;
}

section.paw-newsletter.paw-section-wide > .paw-newsletter-form small {
	color: rgba(255, 255, 255, 0.76);
}

/* Responsive layouts. */
@media (max-width: 1100px) {
	.paw-header-main__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 1rem;
	}

	.paw-menu--primary {
		gap: 0.85rem;
	}

	.paw-menu--primary > li > a {
		font-size: 0.8rem;
	}

	.paw-problem-grid,
	.paw-collection-grid,
	.paw-product-grid,
	.paw-guide-grid,
	.paw-bundle-grid,
	.paw-post-grid,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.wc-block-grid__products,
	.wc-block-product-template {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.paw-footer-grid {
		grid-template-columns: minmax(15rem, 1.5fr) repeat(2, 1fr);
	}

	.paw-filter-bar {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.paw-filter-bar .paw-button {
		width: 100%;
	}

	.paw-gallery-plan .paw-proof-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.paw-footer-brand {
		grid-row: span 2;
	}
}

@media (max-width: 899px) {
	html {
		scroll-padding-top: 8rem;
	}

	.paw-header-main__inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		min-height: 4.5rem;
	}

	.paw-js .paw-menu-toggle {
		display: inline-flex;
		grid-column: 2;
	}

	.paw-primary-nav {
		grid-column: 1 / -1;
		grid-row: 2;
		justify-self: stretch;
		max-height: calc(100vh - 8rem);
		overflow: auto;
		border-top: var(--paw-border);
	}

	.paw-js .paw-primary-nav {
		display: none;
	}

	.paw-js .paw-primary-nav.is-open {
		display: block;
	}

	.paw-menu--primary {
		display: block;
		padding-block: 0.7rem 1rem;
	}

	.paw-menu--primary > li > a {
		min-height: 2.8rem;
		padding: 0.55rem 0.25rem;
		font-size: 0.95rem;
		font-weight: 600;
	}

	.paw-menu--primary > :is(.current-menu-item, .current-menu-ancestor) {
		border-radius: 0.7rem;
		background: rgba(238, 229, 215, 0.42);
	}

	.paw-menu--primary > li > a::after {
		display: none;
	}

	.paw-menu--primary .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		margin: 0 0 0.5rem 0.75rem;
		padding: 0 0 0 0.75rem;
		visibility: visible;
		border: 0;
		border-left: 2px solid var(--paw-sand);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		transform: none;
	}

	.paw-menu--primary .sub-menu a {
		padding: 0.48rem 0.65rem;
	}

	.paw-header-tools {
		grid-column: 3;
		grid-row: 1;
	}

	.paw-header-search {
		position: static;
	}

	.paw-search-form {
		grid-template-columns: 1fr;
	}

	.paw-hero__inner,
	.paw-hero.paw-section-wide,
	.paw-proof-grid,
	.paw-fit-callout,
	.paw-why,
	.paw-newsletter__inner,
	section.paw-newsletter.paw-section-wide,
	.single-product .product-entry-wrapper,
	.woocommerce-checkout form.checkout {
		grid-template-columns: 1fr;
	}

	.paw-hero__inner {
		min-height: 0;
		padding-block: 4rem;
	}

	.paw-hero__media,
	.paw-hero__media :where(img, video, .paw-media-placeholder) {
		min-height: min(65vw, 30rem);
	}

	.paw-hero-video {
		min-height: min(78vw, 32rem);
	}

	.paw-why ul {
		grid-column: 1;
		margin-top: 0;
	}

	.woocommerce-checkout #customer_details,
	.woocommerce-checkout #order_review_heading,
	.woocommerce-checkout #order_review {
		grid-column: 1;
	}

	.woocommerce-checkout #order_review_heading {
		margin-top: 1.5rem;
	}

	.wc-block-cart__main,
	.wc-block-checkout__main {
		padding-right: 0 !important;
	}
}

@media (max-width: 782px) {
	.admin-bar .paw-site-header {
		top: 46px;
	}

	.paw-section__header,
	.paw-footer-bottom,
	.paw-footer-action-required {
		align-items: flex-start;
		flex-direction: column;
	}

	.paw-trust-strip__inner {
		grid-template-columns: 1fr;
	}

	.paw-trust-item {
		border-right: 0;
		border-bottom: var(--paw-border);
	}

	.paw-trust-item:last-child {
		border-bottom: 0;
	}

	.paw-fit-result:not([tabindex="-1"]) {
		grid-template-columns: 5.5rem minmax(0, 1fr);
	}

	.paw-fit-result:not([tabindex="-1"]) > img {
		width: 5.5rem;
	}

	.paw-fit-result:not([tabindex="-1"]) > .paw-button {
		grid-column: 1 / -1;
	}

	.paw-comparison-list {
		grid-template-columns: 1fr;
	}

	.woocommerce-MyAccount-navigation,
	.woocommerce-MyAccount-content {
		float: none;
		width: 100%;
	}

	.woocommerce-MyAccount-navigation {
		margin-bottom: 1.5rem;
	}

	.paw-local-note {
		text-align: left;
	}
}

@media (max-width: 640px) {
	:root {
		--paw-gutter: 1rem;
	}

	.paw-announcement__inner {
		min-height: 2.65rem;
	}

	.paw-header-main__inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 0.25rem;
	}

	.paw-brand__link--header .paw-brand__mark {
		width: 2rem;
		height: 2rem;
		border-radius: 0.62rem;
	}

	.paw-brand__link--header .paw-brand__name {
		font-size: 1.34rem;
	}

	.paw-menu-toggle {
		width: 2.65rem;
		padding: 0;
	}

	.paw-menu-toggle__label {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
	}

	.paw-header-tool {
		width: 2.35rem;
		height: 2.35rem;
	}

	.paw-search-form__row,
	.paw-newsletter-form__row {
		grid-template-columns: 1fr;
	}

	.paw-search-close {
		position: absolute;
		top: 0.4rem;
		right: 0.65rem;
	}

	.paw-problem-grid,
	.paw-collection-grid,
	.paw-product-grid,
	.paw-guide-grid,
	.paw-bundle-grid,
	.paw-post-grid,
	.paw-fit-options,
	.paw-fit-fields,
	.paw-choice-grid,
	.paw-field-pair,
	.paw-specification-grid,
	.paw-gallery-plan .paw-proof-grid,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.wc-block-grid__products,
	.wc-block-product-template {
		grid-template-columns: 1fr;
	}

	.paw-fit-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.paw-fit-controls {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.paw-fit-actions .paw-button,
	.paw-fit-controls .paw-button {
		width: 100%;
	}

	.paw-filter-bar {
		grid-template-columns: 1fr;
	}

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

	.paw-footer-brand {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.woocommerce :where(.woocommerce-message, .woocommerce-info) .button {
		float: none;
		width: 100%;
		margin-bottom: 0.65rem;
	}

	.woocommerce-cart table.cart td.actions .coupon {
		flex-direction: column;
	}

	.woocommerce-cart table.cart td.actions .coupon .input-text,
	.woocommerce-cart table.cart td.actions .coupon .button,
	.woocommerce-cart table.cart td.actions > .button {
		width: 100%;
	}

	.paw-sticky-add-to-cart:not([hidden]) {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1100;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
		padding: 0.7rem max(0.8rem, env(safe-area-inset-right)) calc(0.7rem + env(safe-area-inset-bottom)) max(0.8rem, env(safe-area-inset-left));
		border-top: 1px solid rgba(31, 58, 50, 0.2);
		background: rgba(255, 253, 248, 0.98);
		box-shadow: 0 -12px 32px rgba(32, 36, 33, 0.15);
		backdrop-filter: blur(14px);
	}

	.paw-sticky-add-to-cart__details {
		min-width: 0;
	}

	.paw-sticky-add-to-cart__details strong,
	.paw-sticky-add-to-cart__details span {
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.paw-sticky-add-to-cart__details strong {
		max-width: 48vw;
		color: var(--paw-forest);
		font-size: 0.8rem;
	}

	.paw-sticky-add-to-cart__details span {
		color: var(--paw-muted);
		font-size: 0.72rem;
		font-weight: 700;
	}

	.paw-sticky-add-to-cart .paw-button {
		flex: 0 0 auto;
		min-height: 2.65rem;
		padding: 0.65rem 1rem;
		font-size: 0.78rem;
	}
}

@media (max-width: 360px) {
	.single-product .paw-product-jump-nav {
		scroll-snap-type: none;
	}
}

@media (max-width: 420px) {
	.paw-header-tools .paw-search-toggle {
		display: none;
	}

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

	.paw-footer-brand {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media (forced-colors: active) {
	.paw-button,
	.wp-element-button,
	.wp-block-button__link,
	.woocommerce :where(a.button, button.button, input.button) {
		border-color: ButtonText;
	}

	.paw-fit-option,
	.paw-problem-card,
	.paw-collection-card,
	.woocommerce ul.products li.product {
		border: 1px solid CanvasText;
	}
}

/* ========================================================================== 
   PAWCURSION PRODUCTION UX FOUNDATION
   Shared interaction, rhythm and responsive consistency primitives.
   ========================================================================== */

:root {
	--paw-target-min: 2.75rem;
	--paw-rhythm-xs: 0.75rem;
	--paw-rhythm-sm: 1rem;
	--paw-rhythm-md: 1.5rem;
	--paw-rhythm-lg: clamp(2.75rem, 5vw, 5rem);
}

.paw-catalog-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--paw-rhythm-sm);
	margin: 0 0 var(--paw-rhythm-md);
	color: var(--paw-muted);
}

.paw-catalog-summary p {
	margin: 0;
}

.paw-catalog-summary a,
.paw-brand__link,
.paw-footer-brand__name,
.paw-text-link,
.paw-card-link,
.paw-problem-grid article > a,
.paw-guide-grid article > a,
.paw-decision-grid article > a,
.paw-editorial-media figcaption > a,
.paw-bundle-products a,
.woocommerce a.reset_variations {
	display: inline-flex;
	align-items: center;
	min-height: var(--paw-target-min);
	padding-block: 0.55rem;
}

.paw-menu a,
.paw-footer-menu a {
	display: flex;
	align-items: center;
	min-height: var(--paw-target-min);
}

.paw-trust-line {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 1.25rem;
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
}

.paw-trust-line > li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.paw-trust-line > li + li::before {
	content: "•";
	color: #f0a17d;
}

.paw-fit-error {
	margin: var(--paw-rhythm-sm) 0 0;
	padding: 0.75rem 0.9rem;
	border-left: 0.25rem solid var(--paw-danger);
	border-radius: 0.5rem;
	background: #fbe9e6;
	color: #6e211b;
	font-size: 0.9rem;
	font-weight: 700;
}

.paw-fit-form fieldset.paw-step-error {
	border-color: var(--paw-danger);
	box-shadow: 0 0 0 0.2rem rgba(150, 44, 31, 0.12);
}

.paw-fit-form [aria-invalid="true"] {
	border-color: var(--paw-danger) !important;
}

.paw-owner-review summary,
.paw-media-production summary,
.woocommerce div.product .woocommerce-product-gallery__trigger {
	min-width: var(--paw-target-min);
	min-height: var(--paw-target-min);
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #place_order,
.woocommerce :where(.woocommerce-message, .woocommerce-info) .button,
.wc-block-components-button {
	min-height: var(--paw-target-min) !important;
}

.woocommerce :where(.woocommerce-message, .woocommerce-info) .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1rem;
	font-size: 0.82rem;
}

.paw-not-found-main .paw-empty-state {
	margin-block: var(--paw-rhythm-lg);
}

.paw-not-found-main .paw-search-form {
	margin-block: var(--paw-rhythm-md);
}

@media (min-width: 641px) and (max-width: 899px) {
	.paw-product-highlights > :where(header, div) + ul,
	.paw-product-assurances > ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	body.single-product.woocommerce div.product div.images .flex-control-thumbs {
		display: flex !important;
		flex-wrap: nowrap !important;
		width: 100%;
		padding: 0 0 0.35rem;
		overflow-x: auto;
		overflow-y: hidden;
		gap: 0.65rem;
		justify-content: flex-start !important;
		overscroll-behavior-inline: contain;
		scroll-snap-type: inline proximity;
		scrollbar-width: thin;
	}

	body.single-product.woocommerce div.product div.images .flex-control-thumbs li {
		flex: 0 0 5.75rem;
		width: 5.75rem !important;
		max-width: 5.75rem !important;
		scroll-snap-align: start;
	}

	.paw-catalog-summary {
		align-items: flex-start;
		flex-direction: column;
	}

	.paw-trust-line {
		display: grid;
		gap: 0.45rem;
	}

	.paw-trust-line > li::before,
	.paw-trust-line > li + li::before {
		content: "•";
		color: #f0a17d;
	}
}

@media print {
	.paw-site-header,
	.paw-newsletter,
	.paw-site-footer,
	.paw-sticky-add-to-cart,
	.woocommerce .button,
	.paw-button {
		display: none !important;
	}

	body.pawcursion-site {
		background: #fff;
		color: #000;
	}

	.paw-main {
		padding: 0;
	}

	a {
		color: #000;
		text-decoration: underline;
	}
}

/* ========================================================================== 
   PAWCURSION COMMERCIAL UI V2
   Canonical commercial component layer. The final production interaction
   contract follows the responsive component rules below.
   ========================================================================== */

:root {
	--paw-action: #b94e27;
	--paw-action-hover: #8f3d20;
	--paw-section-space: clamp(3.25rem, 6vw, 5.75rem);
	--paw-panel-space: clamp(1.4rem, 3vw, 2.5rem);
	--paw-card-border: 1px solid rgba(31, 58, 50, 0.18);
	--paw-card-background: var(--paw-cream-light);
	--paw-card-radius: 1.25rem;
	--paw-commerce-shell: 1180px;
	--theme-palette-color-1: var(--paw-action);
	--theme-palette-color-2: var(--paw-action-hover);
}

body.pawcursion-site {
	font-size: clamp(0.98rem, 0.95rem + 0.12vw, 1.05rem);
	line-height: 1.65;
}

body.pawcursion-site :where(p, li, dd) {
	overflow-wrap: break-word;
}

h1 {
	font-size: clamp(2.45rem, 1.75rem + 3vw, 4.75rem);
}

h2 {
	font-size: clamp(1.9rem, 1.5rem + 1.55vw, 3.05rem);
}

h3 {
	font-size: clamp(1.35rem, 1.16rem + 0.62vw, 1.9rem);
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline-color: var(--paw-action);
}

::selection {
	background: var(--paw-action);
	color: var(--paw-white);
}

.paw-page-main,
.paw-index-main,
.paw-shop-main {
	padding-block: clamp(2.25rem, 5vw, 4.75rem);
}

.paw-section {
	padding-block: var(--paw-section-space);
}

.paw-section-wide {
	margin-block: clamp(1.75rem, 4vw, 4rem);
	padding: clamp(1.6rem, 4vw, 3.75rem);
}

.paw-section-heading,
.paw-section__header {
	margin-bottom: clamp(1.5rem, 3vw, 2.6rem);
}

.paw-section-heading > :last-child,
.paw-section__header > :last-child {
	margin-bottom: 0;
}

/* One accessible action colour across native, WooCommerce and block buttons. */
.paw-button,
.paw-button-rust,
.wp-element-button,
.wp-block-button__link,
.woocommerce :where(a.button, button.button, input.button, #respond input#submit),
.wc-block-components-button {
	background: var(--paw-action);
	color: var(--paw-white) !important;
}

.paw-button:hover,
.paw-button-rust:hover,
.wp-element-button:hover,
.wp-block-button__link:hover,
.woocommerce :where(a.button, button.button, input.button, #respond input#submit):hover,
.wc-block-components-button:hover {
	background: var(--paw-action-hover);
	color: var(--paw-white) !important;
}

.paw-button--outline,
.is-style-outline > .wp-block-button__link,
.paw-button-ghost {
	border-color: var(--paw-forest);
	background: transparent;
	color: var(--paw-forest) !important;
}

.paw-button--outline:hover,
.is-style-outline > .wp-block-button__link:hover,
.paw-button-ghost:hover {
	border-color: var(--paw-forest);
	background: var(--paw-forest);
	color: var(--paw-white) !important;
}

.paw-button--cream,
.paw-newsletter .paw-button--cream {
	border-color: var(--paw-cream);
	background: var(--paw-cream);
	color: var(--paw-forest-deep) !important;
}

.paw-button--cream:hover,
.paw-newsletter .paw-button--cream:hover {
	border-color: var(--paw-white);
	background: var(--paw-white);
	color: var(--paw-forest-deep) !important;
}

.paw-hero .paw-button:not(.paw-button-ghost) {
	border-color: var(--paw-action);
	background: var(--paw-action);
}

.paw-hero .paw-button:not(.paw-button-ghost):hover {
	border-color: var(--paw-action-hover);
	background: var(--paw-action-hover);
}

.paw-button.is-disabled,
.paw-button[aria-disabled="true"],
.paw-button:disabled,
.woocommerce :where(button.button, input.button):disabled {
	background: var(--paw-sage);
	color: var(--paw-forest-deep) !important;
	box-shadow: none;
}

/* Local review state is a compact, full-width environment bar. */
.paw-local-ribbon {
	position: relative;
	inset: auto;
	z-index: 999;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.8rem;
	width: 100%;
	max-width: none;
	min-height: 2.5rem;
	margin: 0;
	padding-block: 0.4rem;
	padding-inline: max(var(--paw-gutter), calc((100vw - var(--paw-shell)) / 2));
	border: 0;
	border-bottom: 1px solid #d7b76d;
	border-radius: 0;
	background: #fff1c9;
	color: #4e3604;
	font-size: 0.75rem;
	font-weight: 680;
	letter-spacing: 0.01em;
	line-height: 1.4;
	text-align: center;
	text-transform: none;
}

.paw-local-ribbon strong {
	flex: 0 0 auto;
	padding: 0.18rem 0.5rem;
	border-radius: var(--paw-pill);
	background: #4e3604;
	color: #fff8e8;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.paw-local-ribbon span {
	min-width: 0;
}

/* Media status is an overlay on a positioned media owner, never a flex column. */
.single-product .product-entry-wrapper,
.single-product .woocommerce-product-gallery,
.paw-editorial-media,
.paw-media-production {
	position: relative;
}

.paw-media-badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 20;
	display: inline-flex;
	align-items: flex-start;
	gap: 0.4rem;
	width: auto;
	max-width: min(30rem, calc(50% - 1.5rem));
	margin: 0;
	padding: 0.48rem 0.7rem;
	border: 1px solid #d7b76d;
	border-radius: 0.75rem;
	background: rgba(255, 244, 220, 0.96);
	color: #513900;
	font-size: 0.69rem;
	font-weight: 760;
	letter-spacing: 0.015em;
	line-height: 1.35;
	text-transform: none;
	box-shadow: 0 7px 24px rgba(32, 36, 33, 0.14);
	backdrop-filter: blur(8px);
}

.woocommerce-product-gallery .paw-media-badge,
.paw-editorial-media .paw-media-badge,
.paw-media-production .paw-media-badge {
	max-width: calc(100% - 1.5rem);
}

.paw-media-badge span {
	flex: 0 0 auto;
	color: #9b5f00;
}

/* The footer newsletter owns only the outer band; its inner shell owns layout. */
.paw-newsletter {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: var(--paw-action);
	color: var(--paw-white);
}

.paw-newsletter > .paw-newsletter__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1.08fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 5rem);
	width: min(100% - (2 * var(--paw-gutter)), var(--paw-shell));
	margin-inline: auto;
	padding-block: clamp(2.75rem, 6vw, 5rem);
}

.paw-newsletter :where(h2, h3, .paw-eyebrow, p, label, small),
.paw-newsletter .paw-checkbox,
.paw-newsletter .paw-checkbox span {
	color: var(--paw-white);
	opacity: 1;
}

.paw-newsletter .paw-form-success {
	color: #203b28;
}

.paw-newsletter .paw-form-error {
	color: #6e211b;
}

.paw-newsletter .paw-eyebrow {
	color: #fff1c9;
}

.paw-newsletter__copy {
	min-width: 0;
}

.paw-newsletter__copy > :last-child,
.paw-newsletter-form > :last-child {
	margin-bottom: 0;
}

section.paw-newsletter.paw-section-wide {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1.08fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 5rem);
	width: min(100% - (2 * var(--paw-gutter)), var(--paw-shell));
	margin: clamp(1.75rem, 4vw, 4rem) auto;
	padding: clamp(2rem, 5vw, 4rem);
	border-radius: var(--paw-radius-xl);
}

/* The light Fit Finder callout must never inherit the plugin's white text. */
.paw-fit-callout {
	background: var(--paw-sand-light);
	color: var(--paw-charcoal);
}

.paw-fit-callout h2,
.paw-fit-callout h3 {
	color: var(--paw-forest);
}

.paw-fit-callout .paw-eyebrow {
	color: var(--paw-action-hover);
}

.paw-fit-callout p,
.paw-fit-callout li {
	color: var(--paw-charcoal);
}

.paw-fit-callout .paw-text-link,
.paw-fit-callout a:not(.paw-button) {
	color: var(--paw-forest);
	font-weight: 780;
	text-decoration-color: var(--paw-action);
}

.paw-fit-callout .paw-text-link:hover,
.paw-fit-callout a:not(.paw-button):hover {
	color: var(--paw-action-hover);
}

/* Balanced catalog systems. Legacy child spans are explicitly neutralized. */
.paw-problem-grid,
.paw-collection-grid,
.paw-product-grid,
.paw-guide-grid,
.paw-bundle-grid,
.paw-post-grid,
.paw-decision-grid,
.woocommerce ul.products,
.woocommerce-page ul.products,
.wc-block-grid__products,
.wc-block-product-template {
	display: grid;
	align-items: stretch;
	gap: clamp(1rem, 2vw, 1.5rem);
}

.paw-problem-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
}

.paw-collection-grid,
.paw-guide-grid,
.paw-bundle-grid,
.paw-post-grid,
.paw-decision-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.paw-product-grid,
.woocommerce ul.products,
.woocommerce-page ul.products,
.wc-block-grid__products,
.wc-block-product-template {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr));
}

.paw-problem-grid > article:nth-child(n),
.paw-collection-grid > :nth-child(n),
.paw-product-grid > :nth-child(n),
.paw-guide-grid > :nth-child(n),
.paw-bundle-grid > :nth-child(n),
.paw-post-grid > :nth-child(n),
.paw-decision-grid > :nth-child(n) {
	grid-column: auto;
	min-width: 0;
	min-height: 0;
}

.paw-problem-grid > article,
.paw-collection-grid > article,
.paw-guide-grid > article,
.paw-bundle-grid > article,
.paw-decision-grid > :where(article, div, li),
.paw-product-card,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	border: var(--paw-card-border);
	border-radius: var(--paw-card-radius);
	background: var(--paw-card-background);
	box-shadow: var(--paw-shadow-sm);
}

.paw-problem-grid > article,
.paw-guide-grid > article,
.paw-bundle-grid > article,
.paw-decision-grid > :where(article, div, li) {
	padding: var(--paw-panel-space);
}

.paw-product-card,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	overflow: hidden;
}

.paw-product-card-body {
	padding: clamp(1.15rem, 2vw, 1.55rem);
}

.paw-product-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: clamp(1.25rem, 1.1rem + 0.4vw, 1.55rem);
	line-height: 1.18;
}

.paw-product-card .paw-card-brand {
	max-width: 100%;
	font-size: 0.68rem;
	line-height: 1.45;
	white-space: normal;
}

.paw-product-image,
.woocommerce ul.products li.product a img {
	background: #f0eadf;
}

/* Commerce pages use the available shell rather than the editorial measure. */
body.woocommerce-cart .paw-entry-content > .woocommerce,
body.woocommerce-checkout .paw-entry-content > .woocommerce,
body.woocommerce-order-received .paw-entry-content > .woocommerce {
	width: min(100% - (2 * var(--paw-gutter)), var(--paw-commerce-shell));
	max-width: none;
	margin-inline: auto;
}

.woocommerce-cart .ct-woocommerce-cart-form {
	display: grid;
	align-items: start;
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

.woocommerce-cart .ct-woocommerce-cart-form .cart_totals,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
	margin: 0;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	border: var(--paw-card-border);
	border-radius: var(--paw-card-radius);
	background: var(--paw-card-background);
	box-shadow: var(--paw-shadow-sm);
}

.woocommerce-cart .ct-woocommerce-cart-form .cart_totals h2 {
	margin-bottom: 1rem;
	font-size: 1.65rem;
}

.woocommerce-cart .ct-woocommerce-cart-form .cart_totals table.shop_table,
.woocommerce-checkout #order_review table.shop_table {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.woocommerce-cart .ct-woocommerce-cart-form .cart_totals table.shop_table th,
.woocommerce-cart .ct-woocommerce-cart-form .cart_totals table.shop_table td,
.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
	padding-inline: 0;
	background: transparent;
}

.woocommerce-checkout form.checkout {
	grid-template-columns: minmax(0, 1.2fr) minmax(21rem, 0.8fr);
	gap: clamp(1.75rem, 4vw, 3.5rem);
}

.woocommerce-checkout .ct-customer-details {
	grid-column: 1;
	min-width: 0;
}

.woocommerce-checkout .ct-order-review {
	grid-column: 2;
	align-self: start;
	min-width: 0;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	border: var(--paw-card-border);
	border-radius: var(--paw-card-radius);
	background: var(--paw-card-background);
	box-shadow: var(--paw-shadow-sm);
}

.woocommerce-checkout .ct-order-review #order_review_heading {
	margin: 0 0 1rem;
}

.woocommerce-checkout .ct-order-review #order_review {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.woocommerce-checkout #payment {
	border: 1px solid rgba(31, 58, 50, 0.15);
	background: var(--paw-sand-light);
}

/* Reliable touch targets and persistent mobile product search. */
.paw-header-tool,
.paw-menu-toggle,
.paw-search-close,
.woocommerce a.remove {
	width: 2.75rem;
	min-width: 44px;
	height: 2.75rem;
	min-height: 44px;
}

.paw-js .paw-header-tools .paw-search-toggle {
	display: inline-flex;
}

/* Editorial and commercial modules introduced by the V2 content pass. */
.paw-entry-content > :is(
	.paw-editorial-hero,
	.paw-collection-story,
	.paw-owner-review,
	.paw-product-highlights,
	.paw-product-evidence,
	.paw-cross-sells,
	.paw-media-production,
	.paw-product-assurances
) {
	width: min(100% - (2 * var(--paw-gutter)), var(--paw-shell));
	max-width: var(--paw-shell);
	margin-inline: auto;
}

.paw-editorial-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(18rem, 0.98fr);
	align-items: center;
	gap: clamp(1.75rem, 5vw, 4.5rem);
	margin-bottom: clamp(2.5rem, 6vw, 5.5rem);
	padding: clamp(2rem, 5vw, 4.5rem);
	overflow: hidden;
	border: 1px solid rgba(247, 242, 232, 0.11);
	border-radius: var(--paw-radius-xl);
	background: linear-gradient(135deg, var(--paw-forest-deep), var(--paw-forest-light));
	color: rgba(255, 253, 248, 0.9);
	box-shadow: var(--paw-shadow);
}

.paw-editorial-hero :where(h1, h2, h3) {
	color: var(--paw-cream-light);
}

.paw-collection-intro.paw-editorial-hero h1 {
	color: var(--paw-cream-light);
}

.paw-editorial-hero .paw-eyebrow {
	color: #ffc9ad;
}

.paw-editorial-hero :where(.paw-lead, p) {
	color: rgba(255, 253, 248, 0.88);
}

.paw-editorial-hero > :not(.paw-editorial-media) > :last-child {
	margin-bottom: 0;
}

.paw-page-seed-guides .paw-editorial-hero .paw-button,
.paw-page-seed-help .paw-editorial-hero .paw-button {
	margin-top: 0.6rem;
	background: var(--paw-action);
	color: var(--paw-white) !important;
}

.paw-page-seed-guides .paw-editorial-hero .paw-button:hover,
.paw-page-seed-guides .paw-editorial-hero .paw-button:focus-visible,
.paw-page-seed-help .paw-editorial-hero .paw-button:hover,
.paw-page-seed-help .paw-editorial-hero .paw-button:focus-visible {
	background: var(--paw-action-hover);
}

.paw-editorial-media {
	min-width: 0;
	min-height: clamp(17rem, 36vw, 31rem);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: calc(var(--paw-radius-xl) - 0.35rem);
	background: linear-gradient(145deg, rgba(154, 172, 154, 0.34), rgba(20, 42, 36, 0.8));
}

.paw-editorial-media :where(img, picture, video, iframe) {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.paw-collection-story,
.paw-product-highlights,
.paw-product-evidence,
.paw-cross-sells,
.paw-media-production,
.paw-product-assurances {
	margin-block: clamp(2.5rem, 6vw, 5.5rem);
}

.paw-collection-story {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	align-items: start;
	gap: clamp(1.75rem, 5vw, 4rem);
	padding: clamp(1.75rem, 4vw, 3.5rem);
	border: var(--paw-card-border);
	border-radius: var(--paw-radius-xl);
	background: linear-gradient(145deg, var(--paw-sand-light), var(--paw-cream-light));
}

.paw-decision-grid {
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.paw-decision-grid > :where(article, div, li) > :last-child {
	margin-bottom: 0;
}

.paw-owner-review,
.paw-media-production {
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid #d7b76d;
	border-left: 5px solid #9b5f00;
	border-radius: var(--paw-card-radius);
	background: #fff4dc;
	color: #513900;
}

.paw-owner-review :where(h2, h3, h4),
.paw-media-production :where(h2, h3, h4) {
	color: #513900;
}

.paw-owner-review > :last-child,
.paw-media-production > :last-child {
	margin-bottom: 0;
}

.paw-product-highlights > :where(ul, ol),
.paw-product-assurances > :where(ul, ol),
.paw-product-evidence > :where(ul, ol) {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
	gap: 1rem;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.paw-product-highlights > :where(ul, ol) > li,
.paw-product-assurances > :where(ul, ol) > li,
.paw-product-evidence > :where(ul, ol) > li {
	min-width: 0;
	padding: 1.15rem 1.2rem;
	border: var(--paw-card-border);
	border-radius: var(--paw-radius-md);
	background: var(--paw-card-background);
	box-shadow: var(--paw-shadow-sm);
}

.paw-product-highlights > :where(ul, ol) > li::marker,
.paw-product-assurances > :where(ul, ol) > li::marker,
.paw-product-evidence > :where(ul, ol) > li::marker {
	color: var(--paw-action);
	font-weight: 800;
}

.paw-product-evidence {
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border: var(--paw-card-border);
	border-radius: var(--paw-radius-xl);
	background: var(--paw-sand-light);
}

.paw-product-assurances {
	padding: clamp(1.4rem, 3vw, 2.25rem);
	border: var(--paw-card-border);
	border-radius: var(--paw-radius-xl);
	background: var(--paw-cream-light);
}

.paw-cross-sells .paw-product-grid,
.paw-cross-sells .products {
	margin-top: clamp(1.25rem, 3vw, 2rem);
}

/* Integrated editorial, evidence, video, and bundle markup contracts. */
.paw-editorial-hero.paw-hero {
	min-height: 0;
	isolation: isolate;
}

.paw-editorial-hero.paw-hero::before,
.paw-editorial-hero.paw-hero::after {
	display: none;
	content: none;
}

.paw-editorial-hero > :not(.paw-editorial-media),
.paw-editorial-hero > .paw-editorial-media {
	min-width: 0;
}

.paw-editorial-media {
	position: relative;
	margin: 0;
}

.paw-editorial-media > img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
}

.paw-editorial-media > img + figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: grid;
	gap: 0.25rem;
	margin: 0;
	padding: clamp(1rem, 2.5vw, 1.5rem);
	background: linear-gradient(180deg, rgba(13, 31, 26, 0), rgba(13, 31, 26, 0.94) 38%);
	color: var(--paw-white);
	font-size: 0.82rem;
	line-height: 1.45;
}

.paw-editorial-media > img + figcaption :where(strong, span, a) {
	color: inherit;
}

.paw-editorial-media > img + figcaption strong {
	font-family: var(--paw-display);
	font-size: clamp(1.05rem, 0.96rem + 0.35vw, 1.3rem);
	line-height: 1.25;
}

.paw-editorial-media > img + figcaption a {
	width: fit-content;
	margin-top: 0.25rem;
	font-weight: 780;
	text-decoration-color: rgba(255, 255, 255, 0.58);
	text-underline-offset: 0.22em;
}

.paw-editorial-media--hero {
	min-height: clamp(22rem, 38vw, 32rem);
	box-shadow: var(--paw-shadow-lg);
}

.paw-editorial-media--hero > img + figcaption {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 0.35rem 1rem;
	padding: clamp(1.15rem, 3vw, 1.75rem);
}

.paw-editorial-media--hero > img + figcaption > span:first-child {
	grid-column: 1 / -1;
	font-size: 0.66rem;
	font-weight: 820;
	letter-spacing: 0.095em;
	text-transform: uppercase;
}

.paw-editorial-media--hero > img + figcaption > strong {
	max-width: 22rem;
}

.paw-editorial-media--hero > img + figcaption > a {
	justify-self: end;
	white-space: nowrap;
}

.paw-inline-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.paw-inline-proof > li {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 2.25rem;
	padding: 0.4rem 0.7rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--paw-pill);
	background: rgba(255, 255, 255, 0.08);
	color: var(--paw-cream-light);
	font-size: 0.72rem;
	font-weight: 720;
	line-height: 1.3;
}

.paw-inline-proof > li::before {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 1.05rem;
	height: 1.05rem;
	border-radius: 50%;
	background: #ffc9ad;
	color: var(--paw-forest-deep);
	content: "\2713";
	font-size: 0.7rem;
	font-weight: 900;
}

.paw-collection-card {
	overflow: hidden;
}

.paw-collection-card > figure {
	position: relative;
	flex: 0 0 auto;
	width: 100%;
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--paw-sand-light);
}

.paw-collection-card > figure > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.paw-collection-story > div {
	min-width: 0;
}

.paw-collection-story > div:first-child > img:only-child {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--paw-radius-lg);
	box-shadow: var(--paw-shadow-sm);
}

.paw-collection-story > .paw-decision-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-self: stretch;
	margin: 0;
}

.paw-collection-story > .paw-decision-grid > article {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.paw-collection-story > .paw-decision-grid > article > span,
.paw-product-highlights > :where(header, div) + ul > li > span,
.paw-product-assurances > ul > li > span {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	margin-bottom: 0.8rem;
	border-radius: 50%;
	background: var(--paw-forest);
	color: var(--paw-cream-light);
	font-size: 0.69rem;
	font-weight: 820;
	letter-spacing: 0.04em;
}

.paw-collection-story > .paw-decision-grid > article > h3 {
	font-size: clamp(1.1rem, 1rem + 0.3vw, 1.35rem);
}

.paw-collection-story > .paw-decision-grid > article > p {
	margin-top: auto;
}

.single-product :where(
	.paw-product-assurances,
	.paw-product-highlights,
	.paw-product-story,
	.paw-video-module,
	.paw-cross-sells,
	.paw-media-production
) {
	width: min(100% - (2 * var(--paw-gutter)), var(--paw-shell));
	max-width: var(--paw-shell);
	margin-inline: auto;
}

.paw-product-highlights.paw-section {
	padding-block: clamp(2.25rem, 5vw, 4.5rem);
}

.paw-product-highlights > :where(header, div) {
	max-width: 49rem;
}

.paw-product-highlights > :where(header, div) + ul {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 0;
}

.paw-product-highlights > :where(header, div) + ul > li,
.paw-product-assurances > ul > li {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--paw-white);
}

.paw-product-highlights > :where(header, div) + ul > li > strong,
.paw-product-assurances > ul > li > strong {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--paw-forest);
	font-family: var(--paw-display);
	font-size: 1.08rem;
	line-height: 1.25;
}

.paw-product-highlights > :where(header, div) + ul > li > p,
.paw-product-assurances > ul > li > p {
	margin: 0;
	color: var(--paw-muted);
	font-size: 0.84rem;
	line-height: 1.55;
}

.paw-product-assurances > ul {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
}

.paw-product-assurances > ul > li > span {
	background: var(--paw-action);
	color: var(--paw-white);
}

.paw-media-production > details {
	margin: 0;
}

.paw-media-production > details > summary {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) 2.75rem;
	grid-template-rows: auto auto;
	align-items: center;
	gap: 0.15rem 0.8rem;
	min-height: 44px;
	padding: 0.15rem 0;
	color: #513900;
	list-style: none;
	cursor: pointer;
}

.paw-media-production > details > summary::-webkit-details-marker {
	display: none;
}

.paw-media-production > details > summary::after {
	display: grid;
	grid-column: 3;
	grid-row: 1 / 3;
	place-items: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid rgba(81, 57, 0, 0.34);
	border-radius: 50%;
	content: "+";
	font-size: 1.45rem;
	font-weight: 500;
	line-height: 1;
}

.paw-media-production > details[open] > summary::after {
	content: "\2212";
}

.paw-media-production > details > summary > span {
	grid-column: 1;
	grid-row: 1;
	width: fit-content;
	padding: 0.28rem 0.55rem;
	border-radius: var(--paw-pill);
	background: #513900;
	color: #fff8e8;
	font-size: 0.62rem;
	font-weight: 820;
	letter-spacing: 0.075em;
	line-height: 1.3;
	text-transform: uppercase;
}

.paw-media-production > details > summary > strong {
	grid-column: 2;
	grid-row: 1;
	color: #513900;
	font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
}

.paw-media-production > details > summary > small {
	grid-column: 1 / 3;
	grid-row: 2;
	color: #6b510f;
	font-size: 0.74rem;
	line-height: 1.45;
}

.paw-media-production > details[open] > summary {
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(81, 57, 0, 0.2);
}

.paw-media-production > details > .paw-proof-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.paw-media-production > details > .paw-proof-grid > li {
	display: grid;
	grid-template-columns: 2rem minmax(0, 1fr);
	align-items: start;
	gap: 0.7rem;
	min-width: 0;
	padding: 0.9rem;
	border: 1px solid rgba(81, 57, 0, 0.2);
	border-radius: var(--paw-radius-md);
	background: rgba(255, 253, 248, 0.68);
}

.paw-media-production > details > .paw-proof-grid > li > span {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: #513900;
	color: #fff8e8;
	font-size: 0.7rem;
	font-weight: 820;
}

.paw-media-production > details > .paw-proof-grid > li > p {
	margin: 0;
	color: #513900;
	font-size: 0.78rem;
	line-height: 1.5;
}

.paw-media-production > details > h3 {
	margin: 1.5rem 0 0;
	font-size: 1.15rem;
}

.paw-media-production > details > .paw-timeline {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
	gap: 0.7rem;
	margin-top: 0.85rem;
}

.paw-media-production > details > .paw-timeline > li {
	border-color: rgba(81, 57, 0, 0.2);
	background: rgba(255, 253, 248, 0.68);
	color: #513900;
	line-height: 1.5;
}

.paw-video-module {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.5fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 5rem);
}

.paw-video-module > .paw-section-heading {
	margin: 0;
}

.paw-video-frame {
	justify-self: end;
	width: min(100%, 26rem);
	min-height: 0;
	aspect-ratio: 9 / 16;
	background: #10241e;
}

.paw-video-frame > video {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	aspect-ratio: 9 / 16;
	background: #10241e;
	object-fit: contain;
}

.paw-video-frame:has(> video) > .paw-video-overlay {
	display: none;
}

.paw-video-transcript {
	grid-column: 2;
	justify-self: end;
	width: min(100%, 26rem);
	margin-top: 1rem;
	border: var(--paw-card-border);
	border-radius: var(--paw-radius-md);
	background: var(--paw-cream-light);
}

.paw-video-transcript > summary {
	min-height: 44px;
	padding: 0.8rem 1rem;
	color: var(--paw-forest);
	font-weight: 760;
	cursor: pointer;
}

.paw-video-transcript > p {
	margin: 0;
	padding: 0 1rem 1rem;
	color: var(--paw-muted);
}

.paw-bundle-grid > article {
	padding: 0;
	overflow: hidden;
}

.paw-entry-content > .paw-bundle-grid,
.paw-bundle-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: min(100% - (2 * var(--paw-gutter)), var(--paw-shell));
	max-width: var(--paw-shell);
	margin-inline: auto;
}

.paw-bundle-media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: minmax(0, 1fr);
	flex: 0 0 auto;
	width: 100%;
	aspect-ratio: 16 / 9;
	gap: 2px;
	overflow: hidden;
	background: var(--paw-forest-deep);
}

.paw-bundle-media > img {
	display: block;
	width: 100%;
	height: 100%;
	min-width: 0;
	object-fit: cover;
}

.paw-bundle-media > img:first-child {
	grid-row: 1;
}

.paw-bundle-media > img:only-child {
	grid-column: 1 / -1;
	grid-row: 1 / -1;
}

.paw-bundle-media > img:nth-child(2):last-child {
	grid-row: 1;
}

.paw-bundle-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.paw-bundle-body > h3 {
	margin-bottom: 0.7rem;
}

.paw-bundle-products {
	display: grid;
	gap: 0.5rem;
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
}

.paw-bundle-products > li {
	position: relative;
	padding-left: 1.1rem;
	line-height: 1.45;
}

.paw-bundle-products > li::before {
	position: absolute;
	top: 0.58em;
	left: 0;
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 50%;
	background: var(--paw-action);
	content: "";
}

.paw-bundle-products a {
	color: var(--paw-forest);
	font-weight: 690;
	text-decoration-color: rgba(31, 58, 50, 0.32);
	text-underline-offset: 0.18em;
}

.paw-bundle-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.75rem;
	margin-top: auto;
	padding-top: 1rem;
	border-top: var(--paw-card-border);
}

.paw-bundle-footer .paw-bundle-price {
	margin: 0;
}

.paw-bundle-footer > span {
	color: var(--paw-muted);
	font-size: 0.7rem;
	font-weight: 720;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.paw-bundle-note {
	margin: 0.8rem 0 1rem;
	padding: 0;
	border: 0;
	line-height: 1.5;
}

.paw-bundle-form {
	margin-top: auto;
}

.paw-bundle-form > .paw-button {
	width: 100%;
	margin-top: 0;
}

.paw-page-editorial {
	width: min(100% - (2 * var(--paw-gutter)), 62rem);
	max-width: 62rem;
	min-height: clamp(18rem, 52vw, 38rem);
	margin: clamp(2rem, 5vw, 4rem) auto;
	border-color: rgba(31, 58, 50, 0.16);
	box-shadow: var(--paw-shadow);
}

body .paw-editorial-hero > .paw-page-editorial {
	width: 100%;
	max-width: none;
	min-height: clamp(16rem, 24vw, 21rem);
	margin: 0;
	aspect-ratio: 4 / 3;
}

.single-product .woocommerce-product-gallery__wrapper {
	position: relative;
}

.single-product .woocommerce-product-gallery .paw-media-badge {
	top: 0.75rem;
	left: 0.75rem;
	z-index: 35;
	max-width: calc(100% - 1.5rem);
	margin: 0;
	pointer-events: none;
}

@media (min-width: 1000px) {
	.woocommerce-cart .ct-woocommerce-cart-form {
		grid-template-columns: minmax(0, 1.5fr) minmax(20rem, 0.72fr);
	}
}

@media (max-width: 899px) {
	.paw-newsletter > .paw-newsletter__inner,
	section.paw-newsletter.paw-section-wide,
	.paw-editorial-hero,
	.paw-collection-story,
	.woocommerce-checkout form.checkout {
		grid-template-columns: minmax(0, 1fr);
	}

	.paw-editorial-media {
		min-height: clamp(16rem, 70vw, 28rem);
	}

	.paw-editorial-media--hero {
		min-height: clamp(21rem, 72vw, 31rem);
	}

	.paw-collection-story > .paw-decision-grid,
	.paw-product-highlights > :where(header, div) + ul,
	.paw-product-assurances > ul {
		grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
	}

	.paw-entry-content > .paw-bundle-grid,
	.paw-bundle-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.paw-media-production > details > .paw-proof-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.paw-video-module {
		grid-template-columns: minmax(0, 1fr);
	}

	.paw-video-module > .paw-section-heading {
		margin-bottom: 0;
	}

	.paw-video-frame,
	.paw-video-transcript {
		grid-column: 1;
		justify-self: center;
	}

	.single-product .product-entry-wrapper > .paw-media-badge {
		position: static;
		width: fit-content;
		max-width: 100%;
		margin: 0 0 0.75rem;
	}

	.single-product .woocommerce-product-gallery .paw-media-badge,
	.paw-editorial-media .paw-media-badge,
	.paw-media-production .paw-media-badge {
		position: absolute;
		top: 0.65rem;
		left: 0.65rem;
		max-width: calc(100% - 1.3rem);
		margin: 0;
	}

	.woocommerce-checkout #customer_details,
	.woocommerce-checkout #order_review_heading,
	.woocommerce-checkout #order_review,
	.woocommerce-checkout .ct-customer-details,
	.woocommerce-checkout .ct-order-review {
		grid-column: 1;
	}
}

@media (max-width: 640px) {
	:root {
		--paw-section-space: clamp(2.75rem, 12vw, 4.25rem);
	}

	html.paw-sticky-cart-visible {
		scroll-padding-bottom: calc(var(--paw-sticky-cart-height, 5rem) + 1rem);
	}

	body.pawcursion-site.paw-sticky-cart-visible {
		padding-bottom: var(--paw-sticky-cart-height, 5rem) !important;
	}

	body.paw-menu-open .paw-sticky-add-to-cart {
		visibility: hidden;
	}

	.paw-local-ribbon {
		justify-content: flex-start;
		min-height: 0;
		padding-block: 0.45rem;
		text-align: left;
	}

	.paw-header-main__inner {
		gap: 0.2rem;
	}

	.paw-header-tools {
		gap: 0;
	}

	.paw-hero.paw-section-wide {
		width: min(100% - (2 * var(--paw-gutter)), var(--paw-shell));
		min-width: 0;
		padding: clamp(1.5rem, 8vw, 2.5rem);
		overflow: hidden;
	}

	.paw-hero.paw-section-wide > *,
	.paw-hero-copy,
	.paw-hero-copy > * {
		min-width: 0;
		max-width: 100%;
	}

	.paw-hero-copy h1 {
		font-size: clamp(2.6rem, 12.5vw, 3.75rem);
	}

	.paw-trust-line {
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.paw-problem-grid,
	.paw-collection-grid,
	.paw-product-grid,
	.paw-guide-grid,
	.paw-entry-content > .paw-bundle-grid,
	.paw-bundle-grid,
	.paw-post-grid,
	.paw-decision-grid,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.wc-block-grid__products,
	.wc-block-product-template {
		grid-template-columns: minmax(0, 1fr);
	}

	.paw-newsletter-form__row {
		grid-template-columns: minmax(0, 1fr);
	}

	.paw-newsletter-form__row .paw-button,
	section.paw-newsletter.paw-section-wide > .paw-newsletter-form .paw-button {
		width: 100%;
	}

	.paw-editorial-hero,
	.paw-collection-story,
	.paw-product-evidence,
	.paw-product-assurances {
		padding: 1.35rem;
		border-radius: var(--paw-radius-lg);
	}

	.paw-editorial-media--hero > img + figcaption {
		grid-template-columns: minmax(0, 1fr);
	}

	.paw-editorial-media--hero > img + figcaption > a {
		justify-self: start;
		white-space: normal;
	}

	.paw-inline-proof {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.paw-inline-proof > li {
		width: 100%;
	}

	.paw-media-production > details > summary {
		grid-template-columns: minmax(0, 1fr) 2.75rem;
	}

	.paw-media-production > details > summary > span,
	.paw-media-production > details > summary > strong,
	.paw-media-production > details > summary > small {
		grid-column: 1;
	}

	.paw-media-production > details > summary > span {
		grid-row: 1;
	}

	.paw-media-production > details > summary > strong {
		grid-row: 2;
	}

	.paw-media-production > details > summary > small {
		grid-row: 3;
	}

	.paw-media-production > details > summary::after {
		grid-column: 2;
		grid-row: 1 / 4;
	}

	.paw-media-production > details > .paw-proof-grid,
	.paw-media-production > details > .paw-timeline {
		grid-template-columns: minmax(0, 1fr);
	}

	.paw-bundle-media {
		aspect-ratio: 3 / 2;
	}

	.paw-page-editorial {
		width: min(100% - (2 * var(--paw-gutter)), 62rem);
		min-height: clamp(16rem, 72vw, 28rem);
		border-radius: var(--paw-radius-lg);
	}

	.woocommerce-cart table.cart img {
		width: 4.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.paw-problem-grid > article:hover,
	.paw-collection-grid > article:hover,
	.paw-guide-grid > article:hover,
	.paw-bundle-grid > article:hover,
	.paw-product-card:hover,
	.paw-collection-card:hover > figure > img {
		transform: none;
	}
}

@media (forced-colors: active) {
	.paw-local-ribbon,
	.paw-media-badge,
	.paw-editorial-hero,
	.paw-editorial-media,
	.paw-collection-story,
	.paw-owner-review,
	.paw-product-highlights,
	.paw-product-evidence,
	.paw-cross-sells,
	.paw-media-production,
	.paw-product-assurances,
	.paw-decision-grid > :where(article, div, li),
	.paw-collection-card > figure,
	.paw-media-production > details > .paw-proof-grid > li,
	.paw-media-production > details > .paw-timeline > li,
	.paw-video-frame,
	.paw-video-transcript,
	.paw-bundle-media,
	.paw-page-editorial,
	.woocommerce-cart .ct-woocommerce-cart-form .cart_totals,
	.woocommerce-checkout .ct-order-review,
	.woocommerce-checkout #order_review {
		border: 1px solid CanvasText;
	}

	.paw-button,
	.wp-element-button,
	.wp-block-button__link,
	.woocommerce :where(a.button, button.button, input.button),
	.wc-block-components-button {
		border-color: ButtonText;
	}
}

/* ========================================================================== 
   PAWCURSION PRODUCTION UX FINAL
   Authoritative target sizing, rhythm and responsive consistency contract.
   Keep this layer last so it wins after every commercial component query.
   ========================================================================== */

:root {
	--paw-target-min: 2.75rem;
	--paw-rhythm-xs: 0.75rem;
	--paw-rhythm-sm: 1rem;
	--paw-rhythm-md: 1.5rem;
	--paw-rhythm-lg: clamp(2.75rem, 5vw, 5rem);
}

.paw-catalog-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--paw-rhythm-sm);
	margin: 0 0 var(--paw-rhythm-md);
	color: var(--paw-muted);
}

.paw-catalog-summary p {
	margin: 0;
}

.paw-catalog-summary a,
.paw-brand__link,
.paw-footer-brand__name,
.paw-text-link,
.paw-card-link,
.paw-problem-grid article > a,
.paw-guide-grid article > a,
.paw-decision-grid article > a,
.paw-editorial-media figcaption > a,
.paw-bundle-products a,
.woocommerce a.reset_variations {
	display: inline-flex;
	align-items: center;
	min-width: var(--paw-target-min);
	min-height: var(--paw-target-min);
	padding-block: 0.55rem;
}

.paw-menu a,
.paw-footer-menu a {
	display: flex;
	align-items: center;
	min-height: var(--paw-target-min);
}

.paw-product-card h3 a,
.woocommerce div.product .product_meta a {
	display: inline-flex;
	align-items: center;
	min-height: var(--paw-target-min);
}

.woocommerce div.product .product_meta a {
	margin: 0.15rem 0.1rem;
	padding-inline: 0.5rem;
	border-radius: 999px;
	background: var(--paw-sand-light);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

.woocommerce-form__label-for-checkbox input[type="checkbox"] {
	width: var(--paw-target-min) !important;
	min-width: var(--paw-target-min);
	height: var(--paw-target-min) !important;
	min-height: var(--paw-target-min);
	margin-inline-end: 0.45rem;
	vertical-align: middle;
}

.paw-trust-line {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 1.25rem;
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
}

.paw-trust-line > li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.paw-trust-line > li + li::before {
	color: #f0a17d;
	content: "\2022";
}

.paw-fit-error {
	margin: var(--paw-rhythm-sm) 0 0;
	padding: 0.75rem 0.9rem;
	border-left: 0.25rem solid var(--paw-danger);
	border-radius: 0.5rem;
	background: #fbe9e6;
	color: #6e211b;
	font-size: 0.9rem;
	font-weight: 700;
}

.paw-fit-form fieldset.paw-step-error {
	border-color: var(--paw-danger);
	box-shadow: 0 0 0 0.2rem rgba(150, 44, 31, 0.12);
}

.paw-fit-form [aria-invalid="true"] {
	border-color: var(--paw-danger) !important;
}

.paw-owner-review summary,
.paw-media-production summary,
.woocommerce div.product .woocommerce-product-gallery__trigger {
	min-width: var(--paw-target-min);
	min-height: var(--paw-target-min);
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #place_order,
.woocommerce :where(.woocommerce-message, .woocommerce-info) .button,
.wc-block-components-button {
	min-height: var(--paw-target-min) !important;
}

.woocommerce :where(.woocommerce-message, .woocommerce-info) .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1rem;
	font-size: 0.82rem;
}

.paw-sticky-add-to-cart .paw-button {
	min-height: var(--paw-target-min);
}

.woocommerce div.product div.images .flex-control-thumbs {
	grid-template-columns: repeat(auto-fit, minmax(5rem, 6.5rem));
	justify-content: start;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	width: 100%;
	max-width: 6.5rem;
}

.paw-not-found-main .paw-empty-state {
	margin-block: var(--paw-rhythm-lg);
}

.paw-not-found-main .paw-search-form {
	margin-block: var(--paw-rhythm-md);
}

@media (min-width: 641px) and (max-width: 899px) {
	.paw-product-highlights > :where(header, div) + ul,
	.paw-product-assurances > ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.paw-catalog-summary {
		align-items: flex-start;
		flex-direction: column;
	}

	.paw-trust-line {
		display: grid;
		gap: 0.45rem;
	}

	.paw-trust-line > li::before,
    .paw-trust-line > li + li::before {
        color: #f0a17d;
        content: "\2022";
    }
}

/* ========================================================================== 
   PAWCURSION COMMERCIAL UX V3
   Cohesive decision-first catalog, product, Fit Finder and checkout layer.
   ========================================================================== */

:root {
	--paw-space-1: 0.5rem;
	--paw-space-2: 0.75rem;
	--paw-space-3: 1rem;
	--paw-space-4: 1.5rem;
	--paw-space-5: 2rem;
	--paw-space-6: clamp(2.75rem, 5vw, 4.75rem);
	--paw-control-border: 1px solid rgba(31, 58, 50, 0.24);
}

.paw-site-header {
	transition: box-shadow var(--paw-nav-transition), background var(--paw-nav-transition);
}

.paw-site-header.is-scrolled {
	background: rgba(247, 242, 232, 0.985);
	box-shadow: 0 8px 24px rgba(20, 42, 36, 0.065), 0 1px 0 rgba(31, 58, 50, 0.1);
}

.paw-header-fit,
.paw-mobile-account-link {
	display: none;
}

.paw-page-main,
.paw-shop-main {
	padding-top: clamp(1.5rem, 3vw, 2.75rem);
}

.home .paw-page-main {
	padding-top: 0;
}

.paw-entry-content > :is(.paw-editorial-hero, .paw-fit-finder, .paw-page-hero):first-child,
.paw-shop-main .paw-shop-header:first-child {
	margin-top: 0;
}

/* Compact wayfinding for a long product decision. */
.paw-product-breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	min-width: 0;
	margin: 0 0 1.15rem;
	color: var(--paw-muted);
	font-size: 0.76rem;
	line-height: 1.35;
}

.paw-product-breadcrumb a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: var(--paw-target-min);
	min-height: var(--paw-target-min);
	color: var(--paw-forest);
	font-weight: 740;
	text-decoration-color: rgba(185, 78, 39, 0.4);
}

.paw-product-breadcrumb__current {
	min-width: 0;
	overflow: hidden;
	color: var(--paw-muted);
	text-overflow: ellipsis;
	white-space: nowrap;
}

.paw-fit-snapshot {
	border-top: 1px solid rgba(31, 58, 50, 0.13);
}

.paw-fit-snapshot dl,
.paw-card-facts {
	margin: 0;
}

.paw-fit-snapshot dl {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.55rem;
	margin-top: 0.75rem;
}

.paw-fit-snapshot dl > div,
.paw-card-facts > div {
	min-width: 0;
	padding: 0.72rem 0.78rem;
	border: 1px solid rgba(31, 58, 50, 0.12);
	border-radius: 0.75rem;
	background: rgba(255, 253, 248, 0.76);
}

.paw-fit-snapshot dt,
.paw-card-facts dt {
	margin: 0 0 0.2rem;
	color: var(--paw-muted);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1.3;
	text-transform: uppercase;
}

.paw-fit-snapshot dd,
.paw-card-facts dd {
	margin: 0;
	color: var(--paw-forest-deep);
	font-size: 0.77rem;
	font-weight: 720;
	line-height: 1.4;
}

.paw-product-card {
	isolation: isolate;
}

.paw-product-card:focus-within {
	border-color: rgba(185, 78, 39, 0.58);
	box-shadow: 0 18px 42px rgba(31, 58, 50, 0.14);
}

.paw-card-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
	width: 100%;
	margin-bottom: 0.9rem;
}

.paw-card-facts > div {
	padding: 0.62rem 0.68rem;
	background: var(--paw-sand-light);
}

.paw-card-fit {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.paw-card-link {
	justify-content: space-between;
	width: 100%;
	margin-top: auto;
	padding-top: 0.65rem;
	border-top: 1px solid rgba(31, 58, 50, 0.12);
}

.paw-card-link span {
	transition: transform var(--paw-transition);
}

.paw-card-link:hover span {
	transform: translateX(0.2rem);
}

/* Faster product discovery without sacrificing useful filters. */
.paw-shop-header {
	width: 100%;
	max-width: none;
	margin-inline: 0;
	margin-bottom: clamp(1.25rem, 3vw, 2rem);
	padding: clamp(1.6rem, 3.5vw, 2.75rem);
	border: 1px solid rgba(31, 58, 50, 0.08);
	box-shadow: none;
}

.paw-shop-header h1 {
	max-width: 12ch;
	font-size: clamp(2.5rem, 2rem + 2.4vw, 4.2rem);
}

.paw-filter-drawer {
	margin-bottom: 1rem;
}

.paw-filter-drawer > summary {
	display: none;
}

.paw-filter-drawer > .paw-filter-bar {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
	width: 100%;
	margin: 0;
	padding: 0.9rem;
	border-radius: var(--paw-card-radius);
}

.paw-filter-bar .paw-button {
	min-width: 11.5rem;
}

.paw-catalog-summary {
	min-height: var(--paw-target-min);
	margin-bottom: 0.55rem;
	font-size: 0.9rem;
}

.paw-catalog-summary a {
	font-weight: 760;
}

.paw-applied-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
}

.paw-applied-filters a {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-height: var(--paw-target-min);
	padding: 0.45rem 0.72rem;
	border: 1px solid rgba(31, 58, 50, 0.2);
	border-radius: var(--paw-pill);
	background: var(--paw-cream-light);
	font-size: 0.76rem;
	font-weight: 720;
	text-decoration: none;
}

.paw-applied-filters a:hover {
	border-color: var(--paw-action);
	background: #fff8f2;
}

/* A legible, unambiguous multi-step Fit Finder. */
.paw-fit-finder[data-paw-fit-finder] {
	margin-top: 0;
}

.paw-progress-status {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.35rem;
	color: var(--paw-cream-light);
}

.paw-progress-status strong {
	font-size: 0.84rem;
	letter-spacing: 0.02em;
}

.paw-progress-status span {
	color: rgba(255, 253, 248, 0.7);
	font-size: 0.72rem;
	line-height: 1.4;
	text-align: right;
}

.paw-progress {
	margin-top: 0.55rem;
}

.paw-choice-grid label {
	position: relative;
	display: grid;
	grid-template-columns: 1.3rem minmax(0, 1fr);
	align-items: center;
	gap: 0.8rem;
	min-height: 4.25rem;
	padding: 0.9rem 1rem;
	border-width: 1.5px;
}

.paw-choice-grid label::before {
	display: none;
}

.paw-choice-grid label > input {
	position: static !important;
	grid-column: 1;
	width: 1.2rem !important;
	min-width: 1.2rem;
	height: 1.2rem !important;
	min-height: 1.2rem;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible;
	clip: auto;
	clip-path: none;
	accent-color: var(--paw-action);
}

.paw-choice-grid label > span {
	display: block;
	grid-column: 2;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--paw-forest-deep);
	font-size: 0.9rem;
	font-weight: 720;
	line-height: 1.35;
}

.paw-choice-grid label > input:checked + span,
.paw-choice-grid label > input:focus-visible + span {
	border: 0;
	background: transparent;
	box-shadow: none;
	outline: 0;
}

.paw-fit-form:not([data-enhanced="true"]) [data-fit-back],
.paw-fit-form:not([data-enhanced="true"]) [data-fit-next] {
	display: none;
}

.paw-choice-grid label:has(input:checked) {
	border-color: var(--paw-action);
	background: #fff8f2;
	box-shadow: 0 0 0 3px rgba(185, 78, 39, 0.12);
}

.paw-choice-grid label:has(input:focus-visible) {
	outline: 3px solid var(--paw-action);
	outline-offset: 3px;
	box-shadow: 0 0 0 2px var(--paw-cream);
}

/* Scannable navigation for the long-form product evidence. */
.paw-product-jump-nav-shell {
	position: sticky;
	top: calc(var(--paw-header-height) + var(--wp-admin--admin-bar--height, 0px) + var(--paw-sticky-gap));
	z-index: 30;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto clamp(2rem, 4vw, 3.25rem);
	border: var(--paw-card-border);
	border-radius: var(--paw-pill);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow-sm);
	isolation: isolate;
}

.paw-product-jump-nav-shell::before {
	position: absolute;
	right: 0;
	bottom: 100%;
	left: 0;
	height: calc(var(--paw-sticky-gap) + 1px);
	background: var(--paw-cream);
	content: "";
	opacity: 0;
	pointer-events: none;
}

.paw-product-jump-nav-shell[data-paw-stuck="true"]::before {
	opacity: 1;
}

.paw-product-jump-nav {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: nowrap;
	gap: 0.35rem;
	width: 100%;
	max-width: 100%;
	padding: 0.4rem;
	overflow-x: auto;
	overflow-y: hidden;
	border-radius: inherit;
	background: transparent;
	overscroll-behavior-inline: contain;
	scrollbar-color: rgba(31, 58, 50, 0.32) transparent;
	scrollbar-width: thin;
	scroll-snap-type: inline proximity;
}

.paw-product-jump-nav::-webkit-scrollbar {
	height: 0.3rem;
}

.paw-product-jump-nav::-webkit-scrollbar-thumb {
	border-radius: var(--paw-pill);
	background: rgba(31, 58, 50, 0.32);
}

.paw-product-jump-nav__progress {
	display: none;
}

.paw-product-jump-nav[data-paw-enhanced="true"] .paw-product-jump-nav__progress {
	position: sticky;
	left: 0;
	z-index: 1;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	min-height: var(--paw-target-min);
	padding: 0.45rem 0.72rem;
	border-right: 1px solid rgba(31, 58, 50, 0.13);
	background: rgba(255, 253, 248, 0.98);
	color: var(--paw-muted);
	font-size: 0.68rem;
	font-weight: 650;
	letter-spacing: 0.035em;
	line-height: 1;
	text-transform: uppercase;
}

.paw-product-jump-nav a {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	min-height: var(--paw-target-min);
	padding: 0.45rem 0.78rem;
	border-radius: var(--paw-pill);
	color: var(--paw-muted);
	font-size: 0.74rem;
	font-weight: 600;
	text-decoration: none;
	scroll-snap-align: center;
	transition: background-color var(--paw-nav-transition), color var(--paw-nav-transition), box-shadow var(--paw-nav-transition);
}

.paw-product-jump-nav a:hover {
	background: rgba(31, 58, 50, 0.055);
	color: var(--paw-forest);
}

.paw-product-jump-nav a[data-paw-visited="true"]:not([aria-current="location"]) {
	background: rgba(154, 172, 154, 0.12);
	color: var(--paw-forest-deep);
}

.paw-product-jump-nav a[data-paw-visited="true"]:not([aria-current="location"])::after {
	position: absolute;
	top: 0.48rem;
	right: 0.5rem;
	width: 0.34rem;
	height: 0.34rem;
	border: 1px solid var(--paw-cream-light);
	border-radius: 50%;
	background: var(--paw-success);
	box-shadow: 0 0 0 1px rgba(49, 103, 70, 0.2);
	content: "";
}

/* Cart and checkout should feel like one calm, linear task. */
.paw-commerce-steps {
	margin: 0 0 clamp(1.25rem, 3vw, 2rem);
}

.paw-commerce-steps ol {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.paw-commerce-steps li {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 0.55rem;
	min-width: 0;
	color: var(--paw-muted);
	font-size: 0.74rem;
	font-weight: 720;
}

.paw-commerce-steps li:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: 0.75rem;
	left: 2.25rem;
	z-index: 0;
	height: 1px;
	background: rgba(31, 58, 50, 0.18);
	content: "";
}

.paw-commerce-steps li > span {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 1.65rem;
	height: 1.65rem;
	border: 2px solid rgba(31, 58, 50, 0.22);
	border-radius: 50%;
	background: var(--paw-cream);
}

.paw-commerce-steps li > span::before {
	width: 0.42rem;
	height: 0.42rem;
	border-radius: 50%;
	background: rgba(31, 58, 50, 0.28);
	content: "";
}

.paw-commerce-steps li[aria-current="step"] {
	color: var(--paw-forest);
}

.paw-commerce-steps li[aria-current="step"] > span {
	border-color: var(--paw-action);
	background: var(--paw-action);
}

.paw-commerce-steps li[aria-current="step"] > span::before {
	background: var(--paw-white);
}

.paw-commerce-steps :where(a, strong) {
	position: relative;
	z-index: 1;
	width: fit-content;
	max-width: 100%;
	padding-right: 0.5rem;
	background: var(--paw-cream);
	color: inherit;
	text-decoration: none;
}

.paw-cart-coupon {
	width: min(100%, 26rem);
}

.paw-cart-coupon > summary {
	display: inline-flex;
	align-items: center;
	min-height: var(--paw-target-min);
	color: var(--paw-forest);
	font-size: 0.82rem;
	font-weight: 750;
	cursor: pointer;
}

.paw-cart-coupon > summary::after {
	margin-left: 0.5rem;
	content: "+";
	font-size: 1.15rem;
}

.paw-cart-coupon[open] > summary::after {
	content: "−";
}

.paw-cart-coupon__fields {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.55rem;
	margin-top: 0.55rem;
}

.paw-cart-coupon__fields label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.woocommerce-cart .ct-woocommerce-cart-form .cart_totals,
.woocommerce-checkout .ct-order-review {
	position: sticky;
	top: 9rem;
}

.woocommerce-checkout .ct-customer-details {
	min-width: 0;
	padding: clamp(1.2rem, 2.5vw, 1.75rem);
	border: var(--paw-card-border);
	border-radius: var(--paw-card-radius);
	background: rgba(255, 253, 248, 0.62);
	box-shadow: var(--paw-shadow-sm);
}

.woocommerce-checkout #customer_details {
	min-width: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.woocommerce-checkout .ct-customer-details h3,
.woocommerce-checkout .ct-order-review #order_review_heading {
	margin-bottom: 1rem;
	font-size: clamp(1.55rem, 1.35rem + 0.45vw, 1.8rem);
	line-height: 1.15;
}

.woocommerce-checkout :where(input.input-text, select, textarea),
.woocommerce-checkout .select2-container .select2-selection--single {
	width: 100%;
	min-height: 3.15rem;
	padding: 0.75rem 0.95rem;
	border: 1px solid rgba(31, 58, 50, 0.3) !important;
	border-radius: 0.75rem !important;
	background: var(--paw-white) !important;
	color: var(--paw-charcoal);
	box-shadow: inset 0 1px 2px rgba(32, 36, 33, 0.035);
}

.woocommerce-checkout .form-row .select2-container {
	width: 100% !important;
}

.woocommerce-checkout .select2-container .select2-selection--single {
	padding-block: 0;
}

.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
	padding-inline: 0;
	color: var(--paw-charcoal);
	line-height: calc(3.15rem - 2px);
}

.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
	height: calc(3.15rem - 2px);
	right: 0.65rem;
}

.woocommerce-checkout :where(input.input-text, select, textarea):focus,
.woocommerce-checkout .select2-container--focus .select2-selection--single,
.woocommerce-checkout .select2-container--open .select2-selection--single {
	border-color: var(--paw-action) !important;
	background: var(--paw-cream-light) !important;
	outline: 0;
	box-shadow: 0 0 0 3px rgba(185, 78, 39, 0.17);
}

.paw-checkout-compact-summary {
	display: none;
}

.woocommerce-form__label-for-checkbox {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.55rem;
	min-height: var(--paw-target-min);
	padding-block: 0.65rem;
	cursor: pointer;
}

.woocommerce-form__label-for-checkbox input[type="checkbox"] {
	width: 1.15rem !important;
	min-width: 1.15rem;
	height: 1.15rem !important;
	min-height: 1.15rem;
	margin: 0.08rem 0 0;
}

/* Utility pages should reveal their routes, not make visitors admire a hero. */
.paw-page-seed-help .paw-editorial-hero,
.paw-page-seed-guides .paw-editorial-hero {
	gap: clamp(1.5rem, 4vw, 3rem);
	margin-bottom: clamp(1.75rem, 4vw, 3rem);
	padding: clamp(1.6rem, 3.5vw, 2.75rem);
}

.paw-page-seed-help .paw-editorial-media,
.paw-page-seed-guides .paw-editorial-media {
	min-height: clamp(16rem, 27vw, 21rem);
}

.paw-page-seed-help .paw-editorial-content,
.paw-page-seed-guides .paw-editorial-content {
	padding-top: clamp(1rem, 2vw, 1.75rem);
}

@media (max-width: 1100px) {
	.paw-filter-drawer > .paw-filter-bar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.paw-filter-bar .paw-button {
		grid-column: 1 / -1;
		width: 100%;
	}
}

/* Password visibility and quantity controls keep large hit areas without stretching their glyphs. */
:where(.woocommerce form, .ct-account-modal) :where(.password-input, .account-password-input) {
	position: relative;
}

:where(.woocommerce form, .ct-account-modal) :where(.password-input, .account-password-input) > input {
	padding-inline-end: 3.5rem !important;
}

:where(.woocommerce form, .ct-account-modal) .show-password-input {
	position: absolute !important;
	top: 50% !important;
	inset-inline-end: 0.2rem !important;
	display: grid !important;
	place-items: center;
	width: 2.75rem !important;
	height: 2.75rem !important;
	min-width: 2.75rem !important;
	min-height: 2.75rem !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: transparent !important;
	color: var(--paw-forest) !important;
	-webkit-mask: none !important;
	mask: none !important;
	transform: translateY(-50%) !important;
	cursor: pointer;
}

:where(.woocommerce form, .ct-account-modal) .show-password-input::before {
	content: "";
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

:where(.woocommerce form, .ct-account-modal) .show-password-input:is(.display-password, [aria-pressed="true"])::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 3 18 18'/%3E%3Cpath d='M10.6 10.6A2 2 0 0 0 13.4 13.4'/%3E%3Cpath d='M9.9 4.2A10.4 10.4 0 0 1 12 4c6.5 0 10 8 10 8a18.5 18.5 0 0 1-2.1 3.2'/%3E%3Cpath d='M6.6 6.6C3.8 8.5 2 12 2 12s3.5 8 10 8a9.8 9.8 0 0 0 5.4-1.6'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 3 18 18'/%3E%3Cpath d='M10.6 10.6A2 2 0 0 0 13.4 13.4'/%3E%3Cpath d='M9.9 4.2A10.4 10.4 0 0 1 12 4c6.5 0 10 8 10 8a18.5 18.5 0 0 1-2.1 3.2'/%3E%3Cpath d='M6.6 6.6C3.8 8.5 2 12 2 12s3.5 8 10 8a9.8 9.8 0 0 0 5.4-1.6'/%3E%3C/svg%3E");
}

:where(.woocommerce form, .ct-account-modal) .show-password-input:hover {
	background: color-mix(in srgb, var(--paw-forest) 8%, transparent) !important;
}

:where(.woocommerce form, .ct-account-modal) .show-password-input:focus-visible {
	outline: 2px solid var(--paw-rust) !important;
	outline-offset: -4px;
}

/* Premium quantity steppers: exact geometry, font-independent marks and truthful limits. */
.woocommerce div.product form.cart .quantity[data-type="type-2"],
.woocommerce-cart .quantity[data-type="type-2"] {
	--paw-quantity-control-size: 2.875rem;
	--paw-quantity-input-size: 3rem;
	--paw-quantity-shell-height: 3rem;
	position: relative;
	display: grid;
	grid-template-columns: var(--paw-quantity-control-size) var(--paw-quantity-input-size) var(--paw-quantity-control-size);
	grid-template-rows: calc(var(--paw-quantity-shell-height) - 2px);
	align-items: stretch;
	width: calc(var(--paw-quantity-control-size) + var(--paw-quantity-control-size) + var(--paw-quantity-input-size) + 2px);
	min-width: calc(var(--paw-quantity-control-size) + var(--paw-quantity-control-size) + var(--paw-quantity-input-size) + 2px);
	height: var(--paw-quantity-shell-height);
	min-height: var(--paw-quantity-shell-height);
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(31, 58, 50, 0.22);
	border-radius: 0.75rem;
	background: var(--paw-cream-light);
	box-shadow: 0 1px 2px rgba(20, 42, 36, 0.08);
	isolation: isolate;
}

.woocommerce-cart .quantity[data-type="type-2"] {
	--paw-quantity-control-size: 2.75rem;
	--paw-quantity-input-size: 2.75rem;
	--paw-quantity-shell-height: 2.875rem;
}

.woocommerce div.product form.cart .quantity[data-type="type-2"] > :is(.ct-decrease, .qty, .ct-increase),
.woocommerce-cart .quantity[data-type="type-2"] > :is(.ct-decrease, .qty, .ct-increase) {
	position: static;
	inset: auto;
	width: 100% !important;
	min-width: 0;
	height: 100% !important;
	min-height: 0;
	margin: 0;
	border: 0;
	border-radius: 0 !important;
	box-shadow: none;
	color: var(--paw-forest);
}

.woocommerce div.product form.cart .quantity[data-type="type-2"] > .ct-decrease,
.woocommerce-cart .quantity[data-type="type-2"] > .ct-decrease {
	grid-column: 1;
	grid-row: 1;
	border-inline-end: 1px solid rgba(31, 58, 50, 0.13);
}

.woocommerce div.product form.cart .quantity[data-type="type-2"] > .qty,
.woocommerce-cart .quantity[data-type="type-2"] > .qty {
	grid-column: 2;
	grid-row: 1;
	padding: 0 !important;
	background: transparent;
	caret-color: var(--paw-rust-dark);
	font-family: var(--paw-sans);
	font-size: 0.94rem;
	font-variant-numeric: tabular-nums;
	font-weight: 760;
	line-height: 1;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
}

.woocommerce div.product form.cart .quantity[data-type="type-2"] > .ct-increase,
.woocommerce-cart .quantity[data-type="type-2"] > .ct-increase {
	grid-column: 3;
	grid-row: 1;
	border-inline-start: 1px solid rgba(31, 58, 50, 0.13);
}

.woocommerce div.product form.cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase),
.woocommerce-cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase) {
	position: relative;
	display: grid;
	place-items: center;
	width: var(--paw-quantity-control-size) !important;
	min-width: var(--paw-target-min);
	height: 100% !important;
	min-height: var(--paw-target-min);
	padding: 0;
	background: transparent;
	font-family: inherit !important;
	user-select: none;
	cursor: pointer;
	transition: background-color var(--paw-transition), color var(--paw-transition);
}

.woocommerce div.product form.cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase)::before,
.woocommerce-cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase)::before,
.woocommerce div.product form.cart .quantity[data-type="type-2"] > .ct-increase::after,
.woocommerce-cart .quantity[data-type="type-2"] > .ct-increase::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 0.875rem;
	height: 2px;
	margin: 0 !important;
	border-radius: var(--paw-pill);
	background: currentColor;
	content: "" !important;
	transform: translate(-50%, -50%);
	transform-origin: center;
	transition: transform var(--paw-transition);
}

.woocommerce div.product form.cart .quantity[data-type="type-2"] > .ct-increase::after,
.woocommerce-cart .quantity[data-type="type-2"] > .ct-increase::after {
	width: 2px;
	height: 0.875rem;
}

.woocommerce div.product form.cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase):not([aria-disabled="true"]):hover,
.woocommerce-cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase):not([aria-disabled="true"]):hover {
	background: color-mix(in srgb, var(--paw-forest) 9%, transparent);
	color: var(--paw-forest-deep);
}

.woocommerce div.product form.cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase):not([aria-disabled="true"]):active,
.woocommerce-cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase):not([aria-disabled="true"]):active {
	background: color-mix(in srgb, var(--paw-forest) 15%, transparent);
}

.woocommerce div.product form.cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase):not([aria-disabled="true"]):active::before,
.woocommerce-cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase):not([aria-disabled="true"]):active::before,
.woocommerce div.product form.cart .quantity[data-type="type-2"] > .ct-increase:not([aria-disabled="true"]):active::after,
.woocommerce-cart .quantity[data-type="type-2"] > .ct-increase:not([aria-disabled="true"]):active::after {
	transform: translate(-50%, -50%) scale(0.88);
}

.woocommerce div.product form.cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase):focus-visible,
.woocommerce-cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase):focus-visible,
.woocommerce div.product form.cart .quantity[data-type="type-2"] > .qty:focus-visible,
.woocommerce-cart .quantity[data-type="type-2"] > .qty:focus-visible {
	z-index: 2;
	outline: 0;
	box-shadow: inset 0 0 0 2px var(--paw-rust);
}

.woocommerce div.product form.cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase)[aria-disabled="true"],
.woocommerce-cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase)[aria-disabled="true"] {
	pointer-events: none;
	background: transparent;
	color: var(--paw-muted);
	cursor: default;
	opacity: 0.42;
}

@media (max-width: 899px) {
	.paw-header-fit {
		display: inline-flex;
		width: auto;
		padding-inline: 0.65rem;
		gap: 0.3rem;
		border-radius: var(--paw-pill);
	}

	.paw-header-fit > span {
		font-size: 0.7rem;
		font-weight: 650;
	}

	.paw-mobile-account-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: var(--paw-target-min);
		margin: 0.35rem 0 0.7rem;
		padding: 0.65rem 0.25rem;
		border-top: var(--paw-border);
		color: var(--paw-forest);
		font-size: 0.9rem;
		font-weight: 720;
		text-decoration: none;
	}

	.paw-header-account {
		display: none;
	}

	.paw-fit-snapshot dl {
		grid-template-columns: minmax(0, 1fr);
	}

	.paw-product-jump-nav {
		justify-content: flex-start;
		width: 100%;
		border-radius: var(--paw-radius-md);
	}

	.woocommerce-cart .ct-woocommerce-cart-form .cart_totals,
	.woocommerce-checkout .ct-order-review {
		position: static;
	}

	.paw-checkout-compact-summary {
		display: block;
		grid-column: 1 / -1;
		margin-bottom: 1rem;
		border: var(--paw-card-border);
		border-radius: var(--paw-card-radius);
		background: var(--paw-cream-light);
		box-shadow: var(--paw-shadow-sm);
	}

	.paw-checkout-compact-summary > summary {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		min-height: 3.75rem;
		padding: 0.85rem 1rem;
		color: var(--paw-forest);
		font-weight: 780;
		cursor: pointer;
	}

	.paw-checkout-compact-summary > summary strong {
		font-size: 0.95rem;
		white-space: nowrap;
	}

	.paw-checkout-compact-summary__body {
		padding: 0 1rem 1rem;
		border-top: 1px solid rgba(31, 58, 50, 0.12);
	}

	.paw-checkout-compact-summary__body ul {
		display: grid;
		gap: 0.75rem;
		margin: 0;
		padding: 0.9rem 0;
		list-style: none;
	}

	.paw-checkout-compact-summary__body li {
		display: grid;
		grid-template-columns: 3.25rem minmax(0, 1fr) auto;
		align-items: center;
		gap: 0.7rem;
	}

	.paw-checkout-compact-summary__body li img {
		width: 3.25rem;
		height: 3.25rem;
		border-radius: 0.55rem;
		object-fit: cover;
	}

	.paw-checkout-compact-summary__body li span,
	.paw-checkout-compact-summary__body li small {
		display: block;
		min-width: 0;
	}

	.paw-checkout-compact-summary__body li strong {
		color: var(--paw-forest-deep);
		font-size: 0.78rem;
		line-height: 1.35;
	}

	.paw-checkout-compact-summary__body li small {
		color: var(--paw-muted);
		font-size: 0.68rem;
	}

	.paw-checkout-compact-summary__body li b {
		font-size: 0.76rem;
		white-space: nowrap;
	}

	.paw-checkout-compact-summary__total {
		display: flex;
		justify-content: space-between;
		gap: 1rem;
		padding: 0.8rem 0;
		border-block: 1px solid rgba(31, 58, 50, 0.12);
		color: var(--paw-forest);
		font-size: 0.86rem;
	}

	.paw-checkout-compact-summary__body > a {
		display: inline-flex;
		align-items: center;
		min-height: var(--paw-target-min);
		margin-top: 0.55rem;
		font-size: 0.78rem;
		font-weight: 750;
	}
}

@media (max-width: 640px) {
	.paw-page-main,
	.paw-shop-main {
		padding-top: 1.35rem;
	}

	.paw-header-main__inner {
		column-gap: 0.05rem;
	}

	.paw-header-fit {
		min-width: 3.1rem;
		padding-inline: 0.45rem;
	}

	.paw-header-tools .paw-header-tool:not(.paw-header-fit),
	.paw-menu-toggle {
		width: 44px;
		min-width: 44px;
		height: 2.75rem;
		flex-shrink: 0;
	}

	.paw-brand__link--header .paw-brand__name {
		font-size: 1.26rem;
	}

	.paw-product-breadcrumb {
		margin-bottom: 0.7rem;
	}

	.paw-product-breadcrumb__current {
		display: none;
	}

	.paw-shop-header {
		margin-bottom: 1rem;
		padding: 1.4rem;
		border-radius: var(--paw-radius-lg);
	}

	.paw-shop-header h1 {
		font-size: clamp(2.45rem, 11vw, 3rem);
	}

	.paw-filter-drawer {
		margin-bottom: 0.7rem;
		border: var(--paw-card-border);
		border-radius: var(--paw-card-radius);
		background: var(--paw-cream-light);
		box-shadow: var(--paw-shadow-sm);
	}

	.paw-filter-drawer > summary {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		min-height: 3.75rem;
		padding: 0.85rem 1rem;
		color: var(--paw-forest);
		font-weight: 780;
		cursor: pointer;
	}

	.paw-filter-drawer > summary small {
		max-width: 56%;
		color: var(--paw-muted);
		font-size: 0.68rem;
		font-weight: 620;
		line-height: 1.35;
		text-align: right;
	}

	.paw-filter-drawer[open] > summary {
		border-bottom: 1px solid rgba(31, 58, 50, 0.12);
	}

	.paw-filter-drawer > .paw-filter-bar {
		display: none !important;
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
		padding: 1rem;
		border: 0;
		border-radius: 0 0 var(--paw-card-radius) var(--paw-card-radius);
		box-shadow: none;
	}

	.paw-filter-drawer[open] > .paw-filter-bar {
		display: grid !important;
	}

	.paw-filter-bar .paw-button {
		grid-column: auto;
		min-width: 0;
	}

	.paw-catalog-summary {
		margin-bottom: 0.55rem;
	}

	.paw-card-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.paw-card-fit {
		-webkit-line-clamp: 2;
	}

	.paw-fit-intro {
		padding: 1.45rem;
	}

	.paw-fit-intro h1 {
		font-size: clamp(2.2rem, 10.5vw, 2.85rem);
	}

	.paw-progress-status {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.25rem;
	}

	.paw-progress-status span {
		text-align: left;
	}

	.paw-fit-form {
		padding: 1.45rem;
	}

	.paw-choice-grid {
		gap: 0.65rem;
	}

	.paw-choice-grid label {
		min-height: 3.8rem;
	}

	.paw-commerce-steps li {
		grid-template-columns: auto;
		justify-items: start;
		gap: 0.3rem;
		font-size: 0.65rem;
	}

	.paw-commerce-steps li:not(:last-child)::after {
		top: 0.82rem;
		right: 0.45rem;
		left: 1.65rem;
	}

	.paw-commerce-steps :where(a, strong) {
		padding-right: 0.3rem;
		white-space: nowrap;
	}

	.paw-cart-coupon,
	.paw-cart-coupon__fields {
		width: 100%;
	}

	.paw-cart-coupon__fields {
		grid-template-columns: minmax(0, 1fr);
	}

	.paw-cart-coupon__fields .button {
		width: 100%;
	}

	.woocommerce-checkout .ct-customer-details {
		padding: 1rem;
	}

	.paw-page-seed-help .paw-editorial-media,
	.paw-page-seed-guides .paw-editorial-media {
		min-height: 11rem;
	}

	.paw-page-seed-help .paw-editorial-hero,
	.paw-page-seed-guides .paw-editorial-hero {
		gap: 1.15rem;
		margin-bottom: 1.25rem;
		padding: 1.35rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.paw-site-header,
	.paw-choice-grid label::before,
	.paw-card-link span {
		transition: none;
	}
}

:where(.pawcursion-site, .editor-styles-wrapper) :where(input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]), select, textarea):focus-visible,
.woocommerce :where(input.input-text, select, textarea):focus-visible,
.wc-block-components-text-input input:focus-visible,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus-visible {
	outline: 3px solid var(--paw-rust) !important;
	outline-offset: 3px;
}

@media (forced-colors: active) {
	:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
		outline: 3px solid Highlight !important;
		outline-offset: 3px;
		box-shadow: none !important;
	}
}

/* Accessible primary-navigation disclosures. Parent destinations remain links. */
.paw-submenu-toggle[hidden],
.paw-js .paw-menu--primary .sub-menu[hidden] {
	display: none !important;
}

.paw-js .paw-menu--primary > .menu-item-has-children {
	display: grid;
	grid-template-columns: minmax(0, auto) 2rem;
	align-items: center;
	column-gap: 0.1rem;
}

.paw-submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--paw-forest-light);
	cursor: pointer;
	transition: background-color var(--paw-nav-transition), color var(--paw-nav-transition);
}

.paw-submenu-toggle:hover,
.paw-submenu-toggle[aria-expanded="true"] {
	background: rgba(31, 58, 50, 0.06);
	color: var(--paw-forest-deep);
}

.paw-submenu-toggle__icon {
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-0.14rem) rotate(45deg);
	transition: transform var(--paw-nav-transition);
}

.paw-submenu-toggle[aria-expanded="true"] .paw-submenu-toggle__icon {
	transform: translateY(0.14rem) rotate(225deg);
}

.paw-js .paw-menu--primary li.is-submenu-open > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 899px) {
	.paw-js .paw-menu--primary > .menu-item-has-children {
		grid-template-columns: minmax(0, 1fr) 2.75rem;
		column-gap: 0.25rem;
	}

	.paw-menu--primary > .menu-item-has-children > a {
		min-width: 0;
	}

	.paw-submenu-toggle {
		width: 2.75rem;
		height: 2.75rem;
	}

	.paw-menu--primary .menu-item-has-children > .sub-menu {
		grid-column: 1 / -1;
		width: auto;
		margin: 0.15rem 0 0.65rem 0.75rem;
	}

	.paw-menu--primary .menu-item-has-children.is-submenu-open {
		border-radius: var(--paw-radius-sm);
		background: rgba(238, 229, 215, 0.58);
	}
}

@media (prefers-reduced-motion: reduce) {
	.paw-submenu-toggle,
	.paw-submenu-toggle__icon {
		transition: none;
	}
}

/* Live header and section-rail measurements keep focused anchors fully visible. */
:root {
	--paw-header-height: 8rem;
	--paw-section-nav-height: 3.75rem;
	--paw-sticky-gap: 0.75rem;
}

html {
	scroll-padding-top: calc(var(--paw-header-height) + var(--wp-admin--admin-bar--height, 0px) + var(--paw-sticky-gap));
}

.paw-product-copy-block[id] {
	scroll-margin-top: calc(var(--paw-section-nav-height) + 0.75rem);
}

.paw-product-copy-block[id]:focus {
	outline: none;
}

.paw-product-copy-block[id]:focus-visible {
	border-radius: var(--paw-radius-sm);
	outline: 3px solid var(--paw-action);
	outline-offset: 0.45rem;
}

/* Release hardening: one grid owner, one card destination, and stable spacing. */
.paw-product-grid {
	width: 100%;
	margin-inline: 0;
}

.paw-product-card {
	position: relative;
}

.paw-product-card-body {
	flex: 1;
	min-height: 0;
}

.paw-card-primary-link::after {
	position: absolute;
	z-index: 2;
	inset: 0;
	border-radius: inherit;
	content: "";
}

.paw-card-link {
	pointer-events: none;
}

.paw-product-card:hover .paw-card-link span {
	transform: translateX(0.2rem);
}

.paw-fit-snapshot dt,
.paw-card-facts dt {
	font-size: 0.7rem;
}

.paw-choice-grid label > input {
	opacity: 1;
}

.paw-product-jump-nav-shell,
.woocommerce-cart .ct-woocommerce-cart-form .cart_totals,
.woocommerce-checkout .ct-order-review {
	top: calc(var(--paw-header-height) + var(--wp-admin--admin-bar--height, 0px) + var(--paw-sticky-gap));
}

.paw-cart-count,
.woocommerce span.onsale,
.paw-fit-form legend > span {
	background: var(--paw-action);
}

.paw-fit-result__why {
	margin: 1.25rem 0;
	padding: clamp(1rem, 2.5vw, 1.5rem);
	border: 1px solid rgba(31, 58, 50, 0.16);
	border-radius: var(--paw-radius-md);
	background: rgba(255, 253, 248, 0.72);
}

.paw-fit-result__why h3 {
	font-size: clamp(1.3rem, 1.1rem + 0.5vw, 1.65rem);
}

.paw-fit-result__why dl {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.65rem;
	margin: 0;
}

.paw-fit-result__why dl > div {
	padding: 0.75rem;
	border-radius: var(--paw-radius-sm);
	background: var(--paw-sand-light);
}

.paw-fit-result__why dt {
	color: var(--paw-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.paw-fit-result__why dd {
	margin: 0.2rem 0 0;
	color: var(--paw-forest);
	font-weight: 720;
}

.paw-fit-result__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.paw-empty-cart-routes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.85rem, 2vw, 1.25rem);
	width: 100%;
	margin: 1.5rem 0 2rem;
}

.paw-empty-cart-routes article {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.1rem, 2.5vw, 1.5rem);
	border: var(--paw-card-border);
	border-radius: var(--paw-card-radius);
	background: var(--paw-cream-light);
	box-shadow: var(--paw-shadow-sm);
}

.paw-empty-cart-routes h2 {
	font-size: clamp(1.25rem, 1.1rem + 0.35vw, 1.55rem);
}

.paw-empty-cart-routes p {
	font-size: 0.9rem;
}

.paw-empty-cart-routes .paw-text-link {
	margin-top: auto;
}

@media (min-width: 641px) and (max-width: 899px) {
	.paw-fit-snapshot dl {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.paw-fit-result__why dl,
	.paw-empty-cart-routes {
		grid-template-columns: minmax(0, 1fr);
	}

	.paw-fit-result__actions .paw-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.paw-product-image img,
	.paw-product-card:hover .paw-product-image img,
	.paw-choice-grid label,
	.paw-choice-grid label:hover,
	.paw-card-link span {
		transform: none !important;
	}
}

/* Mobile cart hierarchy and a durable checkout-summary disclosure. */
.paw-mobile-cart-checkout {
	display: none;
}

.paw-checkout-summary-state--open {
	display: none;
}

.paw-checkout-compact-summary[open] .paw-checkout-summary-state--closed {
	display: none;
}

.paw-checkout-compact-summary[open] .paw-checkout-summary-state--open {
	display: inline;
}

@media (max-width: 640px) {
	html.paw-mobile-cart-checkout-visible {
		scroll-padding-bottom: calc(var(--paw-mobile-cart-bar-height, 5.25rem) + 1rem);
	}

	body.woocommerce-cart.paw-mobile-cart-checkout-ready,
	body.woocommerce-cart.paw-mobile-cart-checkout-visible {
		padding-bottom: var(--paw-mobile-cart-bar-height, 5.25rem) !important;
	}

	.paw-mobile-cart-checkout {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1090;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
		padding: 0.7rem max(0.8rem, env(safe-area-inset-right)) calc(0.7rem + env(safe-area-inset-bottom)) max(0.8rem, env(safe-area-inset-left));
		border-top: 1px solid rgba(31, 58, 50, 0.2);
		background: rgba(255, 253, 248, 0.98);
		box-shadow: 0 -12px 32px rgba(32, 36, 33, 0.15);
		backdrop-filter: blur(14px);
	}

	body.paw-menu-open .paw-mobile-cart-checkout {
		visibility: hidden;
	}

	.paw-mobile-cart-checkout__total {
		min-width: 0;
	}

	.paw-mobile-cart-checkout__total > span,
	.paw-mobile-cart-checkout__total > strong {
		display: block;
	}

	.paw-mobile-cart-checkout__total > span {
		color: var(--paw-muted);
		font-size: 0.68rem;
		font-weight: 750;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}

	.paw-mobile-cart-checkout__total > strong {
		color: var(--paw-forest);
		font-size: 0.95rem;
		white-space: nowrap;
	}

	.paw-mobile-cart-checkout .paw-button {
		flex: 0 0 auto;
		min-height: 2.75rem;
		margin: 0;
		padding: 0.65rem 1rem;
		border-color: var(--paw-action) !important;
		background: var(--paw-action) !important;
		color: var(--paw-white) !important;
		font-size: 0.78rem;
		white-space: nowrap;
	}

	.paw-mobile-cart-checkout .paw-button:hover,
	.paw-mobile-cart-checkout .paw-button:focus-visible {
		border-color: var(--paw-action-hover) !important;
		background: var(--paw-action-hover) !important;
		color: var(--paw-white) !important;
	}

	.woocommerce-cart table.cart td.actions > [name="update_cart"]:disabled {
		display: none !important;
	}

	.woocommerce-cart table.cart td.actions > [name="update_cart"]:not(:disabled) {
		border: 1px solid var(--paw-action) !important;
		background: transparent !important;
		box-shadow: none !important;
		color: var(--paw-action-hover) !important;
	}

	.woocommerce-checkout .paw-checkout-compact-summary > summary {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto 1.25rem;
		align-items: center;
		gap: 0.7rem;
		list-style: none;
	}

	.woocommerce-checkout .paw-checkout-compact-summary > summary::-webkit-details-marker {
		display: none;
	}

	.woocommerce-checkout .paw-checkout-compact-summary > summary::marker {
		content: "";
	}

	.paw-checkout-compact-summary__label,
	.paw-checkout-compact-summary__label > span,
	.paw-checkout-compact-summary__label small {
		display: block;
		min-width: 0;
	}

	.paw-checkout-compact-summary__label small {
		margin-top: 0.12rem;
		color: var(--paw-muted);
		font-size: 0.68rem;
		font-weight: 650;
	}

	.paw-checkout-compact-summary[open] > summary {
		background: var(--paw-sand-light);
	}

	.paw-checkout-compact-summary__icon {
		display: block;
		width: 0.58rem;
		height: 0.58rem;
		margin-left: auto;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: translateY(-0.12rem) rotate(45deg);
	}

	.paw-checkout-compact-summary[open] .paw-checkout-compact-summary__icon {
		transform: translateY(0.12rem) rotate(225deg);
	}
}

/* ========================================================================== 
   PAWCURSION COMMERCIAL UX V4
   First-fold efficiency, clearer merchandising and contextual purchase paths.
   ========================================================================== */

/* The announcement remains available at the top, then gives space back while shopping. */
.paw-announcement {
	max-height: 4rem;
	overflow: hidden;
	transition: max-height var(--paw-nav-transition), opacity var(--paw-nav-transition), padding var(--paw-nav-transition);
}

.paw-site-header.is-scrolled .paw-announcement {
	max-height: 0;
	min-height: 0;
	padding-block: 0;
	border: 0;
	opacity: 0;
}

/* Brand hero: preserve the editorial character without consuming the next decision. */
@media (min-width: 900px) {
	.paw-home .paw-hero {
		grid-template-columns: minmax(0, 1.16fr) minmax(18rem, 0.84fr);
		gap: clamp(2rem, 3.5vw, 3.5rem);
		margin-bottom: clamp(2.75rem, 4vw, 4rem);
		padding: clamp(2.75rem, 4vw, 3.75rem);
	}

	.paw-home .paw-hero-copy h1 {
		max-width: 11ch;
		font-size: clamp(4rem, 5.3vw, 5.35rem);
		line-height: 0.9;
		text-wrap: balance;
	}

	.paw-home .paw-editorial-media--hero {
		min-height: clamp(20rem, 30vw, 27rem);
	}
}

/* Shop header turns unused space into immediate, factual collection routes. */
.paw-shop-header {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(22rem, 0.96fr);
	align-items: stretch;
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

.paw-shop-header__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.paw-shop-header__copy > :last-child,
.paw-shop-shortcuts > :last-child {
	margin-bottom: 0;
}

.paw-shop-shortcuts {
	min-width: 0;
	padding: clamp(1rem, 2vw, 1.35rem);
	border: 1px solid rgba(31, 58, 50, 0.14);
	border-radius: var(--paw-radius-lg);
	background: rgba(255, 253, 248, 0.72);
}

.paw-shop-shortcuts .paw-eyebrow {
	margin-bottom: 0.7rem;
}

.paw-shop-shortcuts__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
}

.paw-shop-shortcuts__grid a,
.paw-shop-shortcuts__fit {
	display: flex;
	min-width: 0;
	min-height: var(--paw-target-min);
	border: 1px solid rgba(31, 58, 50, 0.14);
	border-radius: var(--paw-radius-sm);
	color: var(--paw-forest);
	text-decoration: none;
}

.paw-shop-shortcuts__grid a {
	flex-direction: column;
	justify-content: center;
	padding: 0.72rem 0.8rem;
	background: var(--paw-cream-light);
}

.paw-shop-shortcuts__grid a:hover,
.paw-shop-shortcuts__grid a:focus-visible {
	border-color: var(--paw-action);
	background: #fff8f2;
}

.paw-shop-shortcuts__grid strong,
.paw-shop-shortcuts__grid span {
	display: block;
}

.paw-shop-shortcuts__grid strong {
	font-size: 0.79rem;
	line-height: 1.25;
}

.paw-shop-shortcuts__grid span {
	margin-top: 0.18rem;
	color: var(--paw-muted);
	font-size: 0.75rem;
	line-height: 1.35;
}

.paw-shop-shortcuts__fit {
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 0.65rem;
	padding: 0.68rem 0.78rem;
	border-color: rgba(31, 58, 50, 0.2);
	background: var(--paw-forest);
	color: var(--paw-cream-light);
}

.paw-shop-shortcuts__fit:hover,
.paw-shop-shortcuts__fit:focus-visible {
	border-color: rgba(255, 253, 248, 0.5);
	background: var(--paw-forest-deep);
	color: var(--paw-cream-light);
}

.paw-shop-shortcuts__fit > span {
	font-size: 0.75rem;
}

.paw-shop-shortcuts__fit > strong {
	font-size: 0.8rem;
	white-space: nowrap;
}

.paw-catalog-toolbar {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.paw-catalog-toolbar .paw-catalog-summary {
	flex: 1;
	margin: 0;
}

.paw-sort-form {
	display: flex;
	align-items: end;
	gap: 0.5rem;
}

.paw-sort-form label,
.paw-sort-form label > span {
	display: block;
}

.paw-sort-form label > span {
	margin-bottom: 0.25rem;
	font-size: 0.68rem;
	font-weight: 780;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.paw-sort-form select {
	min-width: 11.5rem;
	height: var(--paw-target-min);
}

.paw-button-compact {
	min-width: 4.5rem;
	min-height: var(--paw-target-min);
	padding: 0.65rem 0.9rem;
}

/* Product cards expose the decision copy sooner without cropping exact-item evidence. */
.paw-product-image {
	aspect-ratio: 5 / 4;
	background: #fffdfa;
}

.paw-product-image img,
.paw-product-card:hover .paw-product-image img {
	object-fit: contain;
}

.paw-product-card-body {
	padding: clamp(1rem, 2vw, 1.2rem);
}

/* A visual lift now means the entire single-destination card is actionable. */
.paw-problem-grid > article,
.paw-guide-grid > article,
.paw-collection-card,
.paw-page-seed-help .paw-decision-grid > article {
	position: relative;
	isolation: isolate;
}

.paw-problem-grid > article > a:last-child::after,
.paw-guide-grid > article > a:last-child::after,
.paw-collection-card .paw-collection-card__body > a:last-child::after,
.paw-page-seed-help .paw-decision-grid > article > a:last-child::after {
	position: absolute;
	z-index: 2;
	inset: 0;
	border-radius: inherit;
	content: "";
}

.paw-problem-grid > article:focus-within,
.paw-guide-grid > article:focus-within,
.paw-collection-card:focus-within,
.paw-page-seed-help .paw-decision-grid > article:hover,
.paw-page-seed-help .paw-decision-grid > article:focus-within {
	transform: translateY(-4px);
	border-color: rgba(185, 78, 39, 0.55);
	box-shadow: var(--paw-shadow);
}

/* Collection pages move directly from intent to products. */
.paw-collection-intro {
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.paw-collection-intro + .paw-collection-products {
	padding-top: 0;
}

@media (min-width: 900px) {
	.paw-collection-intro.paw-editorial-hero {
		padding: clamp(2.4rem, 4vw, 3.5rem);
	}

	.paw-collection-intro .paw-editorial-media {
		min-height: clamp(20rem, 30vw, 25rem);
	}
}

/* Bundle cards lead with the proposition, exact component count and set price. */
.paw-bundle-header {
	padding: clamp(1.2rem, 2.5vw, 1.6rem);
	background: var(--paw-cream-light);
}

.paw-bundle-header h3 {
	margin-bottom: 0.45rem;
	font-size: clamp(1.4rem, 1.2rem + 0.45vw, 1.75rem);
}

.paw-bundle-header > p:last-child {
	margin: 0.65rem 0 0;
	color: var(--paw-muted);
	font-size: 0.82rem;
	line-height: 1.5;
}

.paw-bundle-header .paw-bundle-footer {
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	border: 0;
}

.paw-bundle-media {
	aspect-ratio: 16 / 8;
}

.paw-bundle-body {
	padding-top: 1.05rem;
}

.paw-bundle-includes {
	margin: 0 0 0.65rem;
	color: var(--paw-forest);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Compact decision-and-purchase module. */
.single-product .entry-summary .product_title {
	font-size: clamp(2.65rem, 3.8vw, 4rem);
	line-height: 0.98;
	text-wrap: balance;
}

.paw-buy-panel {
	gap: 0.6rem;
	padding: 0.75rem;
}

.paw-buy-panel > div {
	padding: 0.8rem 0.9rem;
}

.paw-buy-panel > div > p {
	margin-bottom: 0.45rem;
	font-size: 0.82rem;
	line-height: 1.5;
}

.paw-buy-panel__fit-link {
	display: inline-flex;
	align-items: center;
	min-height: var(--paw-target-min);
	color: var(--paw-action-hover);
	font-size: 0.74rem;
	font-weight: 780;
	text-underline-offset: 0.18em;
}

.paw-buy-panel .paw-fit-snapshot dl {
	margin-top: 0.55rem;
}

.paw-buy-panel .paw-fit-snapshot dl > div {
	padding: 0.58rem 0.64rem;
}

/* Exact 4-Step/5-Step comparison; WooCommerce's native select remains the source of truth. */
.paw-variation-chooser {
	display: none;
	min-width: 0;
	margin: 0 0 1rem;
	padding: 0;
	border: 0;
}

.paw-variation-chooser[data-enhanced="true"] {
	display: block;
}

.paw-variation-chooser > legend {
	margin-bottom: 0.35rem;
	color: var(--paw-forest-deep);
	font-family: var(--paw-display);
	font-size: 1.3rem;
	font-weight: 760;
}

.paw-variation-chooser > p {
	margin: 0 0 0.8rem;
	color: var(--paw-muted);
	font-size: 0.78rem;
	line-height: 1.5;
}

.paw-variation-chooser__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.paw-variation-chooser__grid label {
	position: relative;
	min-width: 0;
	cursor: pointer;
}

.paw-variation-chooser__grid input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
}

.paw-variation-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 0.8rem;
	border: 1.5px solid rgba(31, 58, 50, 0.2);
	border-radius: var(--paw-radius-md);
	background: var(--paw-cream-light);
	transition: border-color var(--paw-transition), background-color var(--paw-transition), box-shadow var(--paw-transition);
}

.paw-variation-card > span:first-child {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem;
}

.paw-variation-card > span:first-child strong {
	color: var(--paw-forest);
	font-family: var(--paw-display);
	font-size: 1.18rem;
}

.paw-variation-card > span:first-child b {
	font-size: 0.85rem;
	white-space: nowrap;
}

.paw-variation-card > small {
	min-height: 2.1em;
	margin: 0.25rem 0 0.65rem;
	color: var(--paw-action-hover);
	font-size: 0.7rem;
	font-weight: 750;
	line-height: 1.4;
}

.paw-variation-card dl {
	display: grid;
	gap: 0.35rem;
	margin: auto 0 0;
}

.paw-variation-card dl > div {
	display: grid;
	grid-template-columns: 3.3rem minmax(0, 1fr);
	gap: 0.4rem;
	padding-top: 0.35rem;
	border-top: 1px solid rgba(31, 58, 50, 0.11);
}

.paw-variation-card dt,
.paw-variation-card dd {
	margin: 0;
	font-size: 0.64rem;
	line-height: 1.35;
}

.paw-variation-card dt {
	color: var(--paw-muted);
	font-weight: 800;
	text-transform: uppercase;
}

.paw-variation-card dd {
	color: var(--paw-forest-deep);
	font-weight: 680;
}

.paw-variation-chooser__grid input:checked + .paw-variation-card {
	border-color: var(--paw-action);
	background: #fff8f2;
	box-shadow: 0 0 0 3px rgba(185, 78, 39, 0.13);
}

.paw-variation-chooser__grid input:checked + .paw-variation-card > span:first-child strong::after {
	display: inline-flex;
	margin-left: 0.45rem;
	padding: 0.2rem 0.38rem;
	border-radius: var(--paw-pill);
	background: var(--paw-action);
	color: var(--paw-white);
	content: "Selected";
	font-family: var(--paw-body);
	font-size: 0.58rem;
	font-weight: 820;
	letter-spacing: 0.04em;
	line-height: 1;
	text-transform: uppercase;
	vertical-align: middle;
}

.paw-variation-chooser__grid input:focus-visible + .paw-variation-card {
	outline: 3px solid var(--paw-action);
	outline-offset: 3px;
}

.paw-variation-chooser__clear {
	min-height: var(--paw-target-min);
	margin-top: 0.35rem;
	padding: 0.45rem 0;
	border: 0;
	background: transparent;
	color: var(--paw-action-hover);
	font-size: 0.72rem;
	font-weight: 750;
	text-decoration: underline;
	text-underline-offset: 0.18em;
	cursor: pointer;
}

.paw-native-variation-control {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

/* Product gallery controls make the full exact-item evidence set explicit. */
.paw-gallery-controls {
	display: grid;
	grid-template-columns: var(--paw-target-min) minmax(8.5rem, auto) var(--paw-target-min);
	align-items: center;
	gap: 0.35rem;
	width: fit-content;
	max-width: 100%;
	margin: 0.75rem auto 0;
	padding: 0.25rem;
	border: 1px solid rgba(31, 58, 50, 0.16);
	border-radius: var(--paw-pill);
	background: rgba(255, 253, 248, 0.94);
	box-shadow: var(--paw-shadow-sm);
}

.paw-gallery-control {
	display: grid;
	place-items: center;
	width: var(--paw-target-min);
	height: var(--paw-target-min);
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--paw-sand-light);
	color: var(--paw-forest);
	cursor: pointer;
	transition: transform var(--paw-transition), background var(--paw-transition), color var(--paw-transition);
}

.paw-gallery-control:not(:disabled):hover,
.paw-gallery-control:not(:disabled):focus-visible {
	background: var(--paw-forest);
	color: var(--paw-cream-light);
}

.paw-gallery-control:not(:disabled):active {
	transform: scale(0.92);
}

.paw-gallery-control:disabled {
	cursor: default;
	opacity: 0.38;
}

.paw-gallery-status {
	min-width: 0;
	color: var(--paw-forest);
	font-size: 0.75rem;
	font-weight: 740;
	line-height: 1.3;
	text-align: center;
}

.woocommerce div.product div.images :where(.flex-control-thumbs, .flexy-pills) img[role="button"] {
	cursor: pointer;
}

.woocommerce div.product div.images .flex-control-thumbs img.flex-active,
.woocommerce div.product div.images .flexy-pills li.active img {
	outline: 3px solid var(--paw-action);
	outline-offset: -3px;
	opacity: 1;
}

.woocommerce div.product div.images .flex-control-thumbs,
.woocommerce div.product div.images .flexy-pills {
	scrollbar-width: none;
	scroll-snap-type: x proximity;
}

.woocommerce div.product div.images .flex-control-thumbs::-webkit-scrollbar,
.woocommerce div.product div.images .flexy-pills::-webkit-scrollbar {
	display: none;
}

.woocommerce div.product div.images .flex-control-thumbs li,
.woocommerce div.product div.images .flexy-pills li {
	scroll-snap-align: start;
}

.paw-product-jump-nav a[aria-current="location"] {
	background: rgba(31, 58, 50, 0.1);
	box-shadow: inset 0 0 0 1px rgba(31, 58, 50, 0.14);
	color: var(--paw-forest-deep);
}

/* Dense but readable small-screen commerce. */
@media (max-width: 899px) {
	.single-product .product-entry-wrapper {
		display: flex !important;
		flex-direction: column;
		gap: 0;
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.single-product .product-entry-wrapper > .entry-summary {
		display: block;
		width: 100% !important;
		min-width: 0;
		max-width: 100%;
	}

	.single-product .paw-product-mobile-intro {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		margin-bottom: 0.8rem;
	}

	.single-product .paw-product-mobile-intro > .paw-eyebrow {
		margin: 0 0 0.45rem;
	}

	.single-product .paw-product-mobile-intro > .product_title {
		margin: 0 0 0.5rem;
	}

	.single-product .paw-product-mobile-intro > .price {
		margin: 0;
	}

	.single-product .product-entry-wrapper > .woocommerce-product-gallery {
		width: 100% !important;
		min-width: 0;
		max-width: 100%;
		margin-bottom: 1rem;
	}

	.single-product .woocommerce-product-gallery .flex-viewport {
		min-width: 0;
		max-width: 100%;
	}

	.single-product .woocommerce-product-gallery :where(.flex-control-thumbs, .flexy-pills) {
		width: 100% !important;
		min-width: 0;
		max-width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
	}

	.single-product .product-entry-wrapper > .entry-summary > .paw-buy-panel {
		margin-bottom: 1rem;
	}

	.single-product .product-entry-wrapper > .entry-summary > .ct-product-add-to-cart,
	.single-product .product-entry-wrapper > .entry-summary > form.cart {
		margin-bottom: 1rem;
	}

	.paw-product-jump-nav-shell {
		margin-bottom: 1.5rem;
		box-shadow: 0 7px 20px rgba(20, 42, 36, 0.065), 0 1px 0 rgba(31, 58, 50, 0.1);
	}

	.paw-product-jump-nav[data-paw-enhanced="true"] .paw-product-jump-nav__progress {
		left: -0.4rem;
		z-index: 5;
		margin-left: -0.4rem;
		padding-left: 1.12rem;
		border-radius: var(--paw-pill) 0 0 var(--paw-pill);
		background: var(--paw-cream-light);
		box-shadow: -0.7rem 0 0 0.7rem var(--paw-cream-light), 0.65rem 0 0.8rem -0.7rem rgba(31, 58, 50, 0.34);
	}

	.paw-product-jump-nav[data-paw-enhanced="true"] .paw-product-jump-nav__progress::after {
		position: absolute;
		top: 0;
		right: -1.25rem;
		bottom: 0;
		width: 1.25rem;
		background: linear-gradient(90deg, var(--paw-cream-light) 38%, rgba(255, 253, 248, 0));
		content: "";
		pointer-events: none;
	}
}

@media (max-width: 640px) {
	.paw-home .paw-hero {
		margin-bottom: 0;
		padding: 1.75rem;
	}

	.paw-home .paw-editorial-media--hero {
		display: block;
		min-height: 0;
		margin: 0;
		aspect-ratio: 2 / 1;
		border-radius: var(--paw-radius-md);
	}

	.paw-home .paw-editorial-media--hero figcaption {
		display: none;
	}

	.paw-home .paw-hero-copy h1 {
		font-size: clamp(2.4rem, 10.4vw, 2.75rem);
		line-height: 0.92;
	}

	.paw-home .paw-hero-line {
		white-space: nowrap;
	}

	.paw-home .paw-hero .paw-lead {
		font-size: 1rem;
		line-height: 1.55;
	}

	.paw-home .paw-hero .paw-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.55rem;
		width: 100%;
	}

	.paw-home .paw-hero .paw-actions .paw-button {
		width: 100%;
		min-width: 0;
		padding-inline: 0.55rem;
		font-size: 0.7rem;
	}

	.paw-home .paw-trust-line {
		display: flex;
		gap: 0.35rem 0.75rem;
		font-size: 0.66rem;
	}

	.paw-home .paw-trust-line > li,
	.paw-home .paw-trust-line > li + li {
		gap: 0.35rem;
	}

	.paw-shop-header {
		grid-template-columns: minmax(0, 1fr);
		gap: 0.65rem;
		margin-bottom: 0.75rem;
		padding: 1rem;
	}

	.paw-shop-header h1 {
		max-width: none;
		margin-bottom: 0.35rem;
		font-size: clamp(2.05rem, 8.8vw, 2.35rem);
	}

	.paw-shop-header__copy > p:last-child {
		font-size: 0.88rem;
		line-height: 1.45;
	}

	.paw-shop-shortcuts {
		padding: 0.65rem;
	}

	.paw-shop-shortcuts .paw-eyebrow {
		margin-bottom: 0.5rem;
	}

	.paw-shop-shortcuts__grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.4rem;
		overflow: visible;
		padding-bottom: 0;
	}

	.paw-shop-shortcuts__grid a {
		min-height: var(--paw-target-min);
		padding: 0.45rem 0.55rem;
	}

	.paw-shop-shortcuts__grid a span {
		display: none;
	}

	.paw-shop-shortcuts__fit {
		margin-top: 0.45rem;
		padding: 0.55rem 0.65rem;
	}

	.paw-catalog-toolbar {
		display: grid;
		grid-template-columns: minmax(6rem, 0.7fr) minmax(0, 1.3fr);
		align-items: center;
		gap: 0.55rem;
	}

	.paw-catalog-toolbar .paw-catalog-summary {
		font-size: 0.78rem;
		line-height: 1.35;
	}

	.paw-sort-form {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.paw-sort-form label > span {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		white-space: nowrap;
	}

	.paw-sort-form select {
		width: 100%;
		min-width: 0;
	}

	.paw-product-image {
		aspect-ratio: 4 / 3;
	}

	.paw-page-seed-help .paw-editorial-hero,
	.paw-page-seed-guides .paw-editorial-hero {
		gap: 1rem;
		margin-bottom: 1.75rem;
		padding: 1.25rem;
	}

	.paw-page-seed-help .paw-editorial-hero h1,
	.paw-page-seed-guides .paw-editorial-hero h1 {
		font-size: clamp(2.25rem, 10.5vw, 2.8rem);
	}

	.paw-page-seed-help .paw-editorial-media,
	.paw-page-seed-guides .paw-editorial-media {
		min-height: 8.75rem;
		aspect-ratio: 16 / 7;
	}

	body .paw-editorial-hero > .paw-page-editorial {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.paw-collection-intro.paw-editorial-hero {
		gap: 1.1rem;
		padding: 1.35rem;
	}

	.paw-collection-intro .paw-editorial-media {
		min-height: 12rem;
	}

	.paw-collection-intro .paw-inline-proof {
		display: flex;
		flex-wrap: wrap;
		overflow: visible;
		padding-bottom: 0;
	}

	.paw-collection-intro .paw-inline-proof > li {
		flex: 0 0 auto;
		width: auto;
	}

	.paw-product-breadcrumb__current-separator {
		display: none;
	}

	.paw-fit-controls {
		margin: 1.25rem -1.45rem -1.45rem;
		padding: 0.8rem 1.45rem calc(0.8rem + env(safe-area-inset-bottom));
		border-top: 1px solid rgba(31, 58, 50, 0.16);
		background: rgba(255, 253, 248, 0.97);
	}

	.paw-fit-controls.is-docked {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 4;
		margin: 0;
		padding: 0.8rem 1.45rem calc(0.8rem + env(safe-area-inset-bottom));
		border-top: 1px solid rgba(31, 58, 50, 0.16);
		background: rgba(255, 253, 248, 0.97);
		box-shadow: 0 -10px 24px rgba(31, 58, 50, 0.1);
		backdrop-filter: blur(12px);
	}

	.paw-fit-controls.is-docked .paw-button:not([hidden]) {
		flex: 1 1 0;
	}

	.paw-fit-form.has-docked-controls {
		padding-bottom: calc(1.45rem + var(--paw-fit-controls-height, 4.75rem));
	}

	body.paw-menu-open .paw-fit-controls.is-docked {
		visibility: hidden;
	}

	.paw-bundle-media {
		aspect-ratio: 16 / 8;
	}

	.single-product .entry-summary .product_title,
	.single-product .paw-product-mobile-intro .product_title {
		font-size: clamp(2.25rem, 10.3vw, 3rem);
	}

	.paw-fit-snapshot dl {
		grid-template-columns: minmax(0, 1fr);
	}

	.paw-gallery-controls {
		grid-template-columns: var(--paw-target-min) minmax(7rem, 1fr) var(--paw-target-min);
		width: 100%;
	}

	.paw-gallery-status {
		font-size: 0.72rem;
	}

	.paw-product-jump-nav-shell,
	.paw-product-jump-nav {
		border-radius: var(--paw-pill);
	}
}

@media (min-width: 960px) {
	.paw-fit-form .paw-choice-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	body.paw-variable-product .entry-summary .product_title {
		font-size: clamp(2.65rem, 3.25vw, 3.45rem);
	}

	body.paw-variable-product .paw-buy-panel .paw-fit-snapshot {
		display: none;
	}

	body.paw-variable-product .paw-buy-panel {
		margin-bottom: 0.75rem;
	}
}

@media (min-width: 341px) and (max-width: 640px) {
	.paw-fit-finder .paw-choice-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.paw-fit-finder .paw-choice-grid label {
		min-height: 4rem;
		padding: 0.75rem;
	}

	.paw-fit-finder .paw-choice-grid label > span {
		font-size: 0.8rem;
	}
}

/* Exact-product video is a native gallery slide, not a detached page module. */
.single-product .paw-product-video-slide {
	position: relative;
	background: #10231e;
}

.single-product .paw-product-video-player {
	position: relative;
	display: grid;
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	background: #10231e;
}

.single-product .paw-product-video-player video {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	background: #10231e;
	object-fit: contain;
}

.single-product .paw-product-video-player video:focus-visible {
	outline: 3px solid var(--paw-action);
	outline-offset: -5px;
}

.single-product .paw-product-video-badge,
.single-product .paw-product-video-note {
	position: absolute;
	top: clamp(0.7rem, 2.5vw, 1rem);
	z-index: 3;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--paw-pill);
	background: rgba(16, 35, 30, 0.9);
	box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.2);
	color: var(--paw-white);
	font-size: clamp(0.66rem, 1.6vw, 0.76rem);
	line-height: 1.25;
	backdrop-filter: blur(8px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease;
}

.single-product .paw-product-video-badge {
	left: clamp(0.7rem, 2.5vw, 1rem);
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.52rem 0.72rem;
	font-weight: 790;
}

.single-product .paw-product-video-badge__icon {
	display: grid;
	place-items: center;
	width: 1.45rem;
	height: 1.45rem;
	padding-left: 0.08rem;
	border-radius: 50%;
	background: var(--paw-action);
	font-size: 0.58rem;
}

.single-product .paw-product-video-note {
	right: clamp(0.7rem, 2.5vw, 1rem);
	display: grid;
	gap: 0.05rem;
	max-width: min(14rem, 45%);
	padding: 0.48rem 0.7rem;
	text-align: right;
}

.single-product .paw-product-video-note :where(strong, span) {
	color: inherit;
}

.single-product .paw-product-video-note strong {
	font-weight: 790;
}

.single-product .paw-product-video-note span {
	opacity: 0.76;
}

.single-product .paw-product-video-slide.is-playing :where(.paw-product-video-badge, .paw-product-video-note) {
	opacity: 0;
	transform: translateY(-0.3rem);
}

.single-product .woocommerce-product-gallery.is-video-active .woocommerce-product-gallery__trigger {
	display: none !important;
}

.woocommerce div.product div.images .flex-control-thumbs li,
.woocommerce div.product div.images .flexy-pills li {
	position: relative;
}

.woocommerce div.product div.images .flex-control-thumbs li:last-child::after,
.woocommerce div.product div.images .flexy-pills li:last-child::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	padding-left: 0.1rem;
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	background: rgba(16, 35, 30, 0.88);
	box-shadow: 0 0.2rem 0.7rem rgba(0, 0, 0, 0.22);
	color: var(--paw-white);
	content: "\25B6";
	font-size: 0.62rem;
	line-height: 1;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

@media (max-width: 480px) {
	.single-product .paw-product-video-note {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.paw-announcement,
	.paw-variation-card,
	.paw-problem-grid > article,
	.paw-guide-grid > article,
	.paw-collection-card,
	.paw-page-seed-help .paw-decision-grid > article {
		transition: none !important;
	}
}

/* One spacing owner between the brand hero and the first shopping decision. */
.paw-home .paw-hero {
	margin-bottom: 0;
}

.paw-home .paw-hero + .paw-section {
	padding-top: clamp(3rem, 5vw, 4rem);
}

/* Preserve a readable brand lockup at the supported 320px floor. */
@media (max-width: 359px) {
	.paw-header-tools .paw-header-fit {
		display: none;
	}

	.paw-brand .paw-brand__link--header {
		gap: 0.45rem;
	}

	.paw-brand .paw-brand__link--header .paw-brand__mark {
		width: 1.8rem;
		height: 1.8rem;
		border-radius: 0.56rem;
	}

	.paw-brand .paw-brand__link--header .paw-brand__name {
		font-size: 1.16rem;
	}

	.paw-variation-chooser__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Ordering flow: keep the next decision visible, factual and easy to reach. */
.paw-purchase-support {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem 1.25rem;
	margin-top: 0.8rem;
	padding: 0.8rem 0.9rem;
	border: 1px solid rgba(31, 58, 50, 0.14);
	border-radius: var(--paw-radius-sm);
	background: rgba(255, 253, 248, 0.74);
}

.paw-purchase-support p,
.paw-purchase-support p > span {
	display: block;
	margin: 0;
}

.paw-purchase-support p > strong {
	color: var(--paw-forest-deep);
	font-size: 0.78rem;
}

.paw-purchase-support p > span {
	margin-top: 0.12rem;
	color: var(--paw-muted);
	font-size: 0.72rem;
	line-height: 1.45;
}

.paw-purchase-support > div {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.35rem 0.8rem;
}

.paw-purchase-support a,
.paw-cart-fit-link,
.paw-cart-next-step a {
	display: inline-flex;
	align-items: center;
	min-height: var(--paw-target-min);
	color: var(--paw-action-hover);
	font-size: 0.74rem;
	font-weight: 780;
	text-underline-offset: 0.18em;
}

.paw-cart-fit-link {
	width: fit-content;
	margin-top: 0.2rem;
}

.paw-cart-next-step {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	padding: 0.85rem;
	border: 1px solid rgba(31, 58, 50, 0.15);
	border-radius: var(--paw-radius-sm);
	background: var(--paw-sand-light);
	text-align: left;
}

.paw-cart-next-step p,
.paw-cart-next-step p > span {
	display: block;
	margin: 0;
}

.paw-cart-next-step p > strong {
	color: var(--paw-forest-deep);
	font-size: 0.8rem;
}

.paw-cart-next-step p > span {
	margin-top: 0.15rem;
	color: var(--paw-muted);
	font-size: 0.7rem;
	line-height: 1.4;
}

.woocommerce-cart .quantity .ct-increase[role="button"],
.woocommerce-cart .quantity .ct-decrease[role="button"],
.woocommerce-cart .product-remove a.remove {
	min-width: var(--paw-target-min);
	min-height: var(--paw-target-min);
}

.paw-commerce-steps a,
.woocommerce-cart .product-name > a,
.woocommerce-cart .product-mobile-actions + a,
.woocommerce-cart .shipping-calculator-button,
.woocommerce-cart .cross-sells .woocommerce-loop-product__link {
	display: inline-flex;
	align-items: center;
	min-height: var(--paw-target-min);
}

.paw-commerce-steps a {
	justify-content: center;
	min-width: var(--paw-target-min);
}

.woocommerce-cart .woocommerce-cart-form .product-thumbnail a.ct-media-container,
.woocommerce-cart .cross-sells a.ct-media-container {
	display: block;
	min-width: var(--paw-target-min);
	min-height: var(--paw-target-min);
}

.woocommerce-cart .quantity .ct-increase[role="button"]:focus-visible,
.woocommerce-cart .quantity .ct-decrease[role="button"]:focus-visible,
.woocommerce-cart .product-remove a.remove:focus-visible {
	outline: 3px solid rgba(185, 78, 39, 0.28);
	outline-offset: 2px;
}

.paw-bundle-quantity {
	display: inline-grid;
	place-items: center;
	min-width: var(--paw-target-min);
	min-height: var(--paw-target-min);
	border: 1px solid rgba(31, 58, 50, 0.18);
	border-radius: 0.7rem;
	background: var(--paw-sand-light);
	color: var(--paw-forest);
	font-weight: 780;
}

.paw-checkout-intro {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(31, 58, 50, 0.15);
	border-radius: var(--paw-radius-md);
	background: var(--paw-sand-light);
}

.paw-checkout-intro > div,
.paw-checkout-intro > div > span {
	display: block;
}

.paw-checkout-intro > div {
	flex: 0 0 auto;
}

.paw-checkout-intro > div > strong {
	display: block;
	color: var(--paw-forest-deep);
	font-size: 0.84rem;
}

.paw-checkout-intro > div > span,
.paw-checkout-intro p,
.paw-checkout-region {
	color: var(--paw-muted);
	font-size: 0.76rem;
	line-height: 1.45;
}

.paw-checkout-intro p,
.paw-checkout-region {
	margin: 0;
}

.paw-checkout-region {
	margin: -0.35rem 0 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(31, 58, 50, 0.12);
}

.paw-checkout-region strong {
	color: var(--paw-forest-deep);
}

.paw-checkout-compact-summary__item {
	min-width: 0;
}

.paw-checkout-compact-summary__item > strong,
.paw-checkout-compact-summary__item > small {
	display: block;
}

.paw-checkout-compact-summary__item .variation {
	display: flex;
	flex-wrap: wrap;
	gap: 0.1rem 0.35rem;
	margin: 0.15rem 0;
	color: var(--paw-muted);
	font-size: 0.67rem;
	line-height: 1.35;
}

.paw-checkout-compact-summary__item .variation :where(dt, dd, p) {
	float: none;
	margin: 0;
	padding: 0;
}

.paw-checkout-compact-summary__item .variation dt::after {
	content: ":";
}

.woocommerce-checkout .wc_payment_methods > li:only-child > input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
}

.woocommerce-checkout #place_order {
	width: 100%;
	min-height: 3.25rem;
	font-size: 0.9rem;
}

.woocommerce-checkout :where(#billing_country_field, #shipping_country_field) {
	display: none !important;
}

.woocommerce-cart .paw-page-header,
.woocommerce-checkout .paw-page-header {
	margin-bottom: clamp(0.85rem, 2vw, 1.35rem);
}

.woocommerce-cart .paw-page-header h1,
.woocommerce-checkout .paw-page-header h1 {
	font-size: clamp(2.35rem, 2rem + 1.8vw, 3.45rem);
}

.woocommerce-cart .paw-commerce-steps,
.woocommerce-checkout .paw-commerce-steps {
	margin-bottom: 1rem;
}

.paw-mobile-cart-checkout .paw-button[aria-disabled="true"] {
	pointer-events: none;
	opacity: 0.72;
}

@media (min-width: 900px) {
	body:not(.paw-variable-product) .paw-buy-panel {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
		align-items: stretch;
	}

	body:not(.paw-variable-product) .paw-buy-panel .paw-fit-snapshot dl {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 641px) and (max-width: 899px) {
	html.paw-sticky-cart-visible {
		scroll-padding-bottom: calc(var(--paw-sticky-cart-height, 5rem) + 1rem);
	}

	body.pawcursion-site.paw-sticky-cart-visible {
		padding-bottom: var(--paw-sticky-cart-height, 5rem) !important;
	}

	.paw-sticky-add-to-cart:not([hidden]) {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1100;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		padding: 0.75rem max(1.25rem, env(safe-area-inset-right)) calc(0.75rem + env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
		border-top: 1px solid rgba(31, 58, 50, 0.2);
		background: rgba(255, 253, 248, 0.98);
		box-shadow: 0 -12px 32px rgba(32, 36, 33, 0.15);
		backdrop-filter: blur(14px);
	}

	.paw-sticky-add-to-cart__details,
	.paw-sticky-add-to-cart__details strong,
	.paw-sticky-add-to-cart__details span {
		min-width: 0;
	}

	.paw-sticky-add-to-cart__details strong,
	.paw-sticky-add-to-cart__details span {
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.paw-sticky-add-to-cart__details strong {
		max-width: 60vw;
		color: var(--paw-forest);
		font-size: 0.84rem;
	}

	.paw-sticky-add-to-cart__details span {
		color: var(--paw-muted);
		font-size: 0.74rem;
		font-weight: 700;
	}

	.paw-sticky-add-to-cart .paw-button {
		flex: 0 0 auto;
		min-height: var(--paw-target-min);
		margin: 0;
	}
}

@media (max-width: 899px) {
	.paw-sticky-add-to-cart__context {
		display: flex;
		flex: 1 1 auto;
		align-items: center;
		min-width: 0;
		min-height: var(--paw-target-min);
		border-radius: var(--paw-radius-sm);
		color: inherit;
		text-decoration: none;
	}

	.paw-sticky-add-to-cart__context::after {
		flex: 0 0 auto;
		margin-left: 0.35rem;
		color: var(--paw-action);
		font-size: 0.92rem;
		font-weight: 800;
		content: "↑";
	}

	.paw-sticky-add-to-cart__context:focus-visible {
		outline: 3px solid var(--paw-action);
		outline-offset: 3px;
	}

	.paw-sticky-add-to-cart__thumbnail,
	.paw-sticky-add-to-cart__eyebrow {
		display: none;
	}
}

@media (min-width: 900px) {
	html.paw-sticky-cart-visible {
		scroll-padding-bottom: calc(var(--paw-sticky-cart-height, 5rem) + 2rem);
	}

	body.pawcursion-site.paw-sticky-cart-visible {
		padding-bottom: calc(var(--paw-sticky-cart-height, 5rem) + 2rem) !important;
	}

	.paw-sticky-add-to-cart:not([hidden]) {
		position: fixed;
		right: auto;
		bottom: max(1rem, env(safe-area-inset-bottom));
		left: 50%;
		z-index: 50;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 1rem;
		width: min(47rem, calc(100vw - (var(--paw-gutter) * 2)));
		padding: 0.55rem 0.65rem;
		overflow: hidden;
		border: 1px solid rgba(31, 58, 50, 0.18);
		border-radius: var(--paw-radius-lg);
		background: rgba(255, 253, 248, 0.97);
		box-shadow: 0 12px 30px rgba(20, 42, 36, 0.13), 0 2px 8px rgba(20, 42, 36, 0.08);
		transform: translateX(-50%);
		backdrop-filter: blur(16px);
	}

	.paw-sticky-add-to-cart__context {
		display: grid;
		grid-template-columns: 2.75rem minmax(0, 1fr);
		align-items: center;
		gap: 0.7rem;
		min-width: 0;
		min-height: 2.75rem;
		padding: 0.2rem;
		border-radius: var(--paw-radius-md);
		color: inherit;
		text-decoration: none;
		transition: background-color var(--paw-nav-transition), box-shadow var(--paw-nav-transition);
	}

	.paw-sticky-add-to-cart__context:hover {
		background: rgba(31, 58, 50, 0.055);
	}

	.paw-sticky-add-to-cart__context:focus-visible {
		outline: 3px solid var(--paw-action);
		outline-offset: 2px;
	}

	.paw-sticky-add-to-cart__thumbnail {
		display: block;
		width: 2.75rem;
		height: 2.75rem;
		border: 1px solid rgba(31, 58, 50, 0.14);
		border-radius: 0.72rem;
		background: var(--paw-sand);
		object-fit: cover;
	}

	.paw-sticky-add-to-cart__details {
		min-width: 0;
	}

	.paw-sticky-add-to-cart__details small,
	.paw-sticky-add-to-cart__details strong,
	.paw-sticky-add-to-cart__details span {
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.paw-sticky-add-to-cart__details small {
		margin-bottom: 0.12rem;
		color: var(--paw-muted);
		font-size: 0.66rem;
		font-weight: 720;
		letter-spacing: 0.055em;
		line-height: 1;
		text-transform: uppercase;
	}

	.paw-sticky-add-to-cart__details strong {
		color: var(--paw-forest);
		font-size: 0.88rem;
		line-height: 1.25;
	}

	.paw-sticky-add-to-cart__details span {
		margin-top: 0.12rem;
		color: var(--paw-forest);
		font-size: 0.8rem;
		font-weight: 720;
		line-height: 1.2;
	}

	.paw-sticky-add-to-cart .paw-button {
		min-width: 8.75rem;
		min-height: var(--paw-target-min);
		margin: 0;
		white-space: nowrap;
	}
}

@media (min-width: 1400px) {
	.paw-sticky-add-to-cart:not([hidden]) {
		right: 1rem;
		left: auto;
		grid-template-columns: minmax(0, 1fr);
		gap: 0.55rem;
		width: 21.5rem;
		transform: none;
	}

	.paw-sticky-add-to-cart .paw-button {
		width: 100%;
	}
}

@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
	.paw-sticky-add-to-cart:not([hidden]) {
		animation: paw-purchase-dock-enter 180ms ease-out both;
	}
}

@keyframes paw-purchase-dock-enter {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media (max-width: 640px) {
	.paw-purchase-support,
	.paw-checkout-intro,
	.paw-cart-next-step {
		align-items: flex-start;
		flex-direction: column;
	}

	.paw-purchase-support > div {
		justify-content: flex-start;
	}

	.paw-cart-next-step a {
		display: inline-flex;
		align-items: center;
		min-height: var(--paw-target-min);
	}

	.woocommerce-cart .paw-page-header,
	.woocommerce-checkout .paw-page-header {
		margin-bottom: 0.65rem;
	}

	.woocommerce-cart .paw-page-header h1,
	.woocommerce-checkout .paw-page-header h1 {
		font-size: clamp(2.15rem, 10vw, 2.65rem);
	}

	.woocommerce-cart .paw-commerce-steps,
	.woocommerce-checkout .paw-commerce-steps {
		margin-bottom: 0.8rem;
	}

	.paw-checkout-intro {
		gap: 0.4rem;
		padding: 0.75rem 0.85rem;
	}

	.paw-shop-header__copy > .paw-eyebrow,
	.paw-shop-header__copy > p:last-child,
	.paw-shop-shortcuts > .paw-eyebrow {
		display: none;
	}

	.paw-shop-header {
		padding: 0.85rem;
	}

	.paw-shop-shortcuts__grid {
		display: contents;
	}

	.paw-shop-shortcuts {
		display: flex;
		gap: 0.4rem;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: inline proximity;
	}

	.paw-shop-shortcuts__grid a,
	.paw-shop-shortcuts__fit {
		flex: 0 0 auto;
		margin: 0;
		scroll-snap-align: start;
	}

	.paw-shop-shortcuts__fit > span {
		display: none;
	}

	.paw-shop-main .paw-product-card .paw-product-image {
		aspect-ratio: 5 / 4;
	}
}

@media (max-width: 479px) {
	.woocommerce-cart [class*="ct-woocommerce"] .shop_table [class*="product-thumbnail"] {
		width: 5.5rem;
	}
}

@media (max-width: 379px) {
	.woocommerce-cart [class*="ct-woocommerce"] .shop_table .product-mobile-actions {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) var(--paw-target-min);
		align-items: center;
		gap: 0.45rem 0.65rem;
	}

	.woocommerce-cart .product-mobile-actions > .quantity[data-type="type-2"] {
		grid-column: 1 / 3;
		grid-row: 1;
		justify-self: start;
	}

	.woocommerce-cart .product-mobile-actions > .remove {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
		margin-inline-start: 0;
		padding-inline-start: 0;
	}

	.woocommerce-cart .product-mobile-actions > .ct-product-multiply-symbol {
		grid-column: 1;
		grid-row: 2;
		justify-self: end;
	}

	.woocommerce-cart .product-mobile-actions > .woocommerce-Price-amount {
		grid-column: 2 / 4;
		grid-row: 2;
		justify-self: start;
	}
}

@media (forced-colors: active) {
	.woocommerce div.product form.cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase):focus-visible,
	.woocommerce-cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase):focus-visible,
	.woocommerce div.product form.cart .quantity[data-type="type-2"] > .qty:focus-visible,
	.woocommerce-cart .quantity[data-type="type-2"] > .qty:focus-visible {
		outline: 2px solid Highlight;
		outline-offset: -4px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.woocommerce div.product form.cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase),
	.woocommerce-cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase),
	.woocommerce div.product form.cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase)::before,
	.woocommerce-cart .quantity[data-type="type-2"] > :is(.ct-decrease, .ct-increase)::before,
	.woocommerce div.product form.cart .quantity[data-type="type-2"] > .ct-increase::after,
	.woocommerce-cart .quantity[data-type="type-2"] > .ct-increase::after {
		transition: none;
	}
}

/* Resilient customer-form presentation and feedback. */
.paw-newsletter .paw-newsletter-form__field {
	min-width: 0;
}

.paw-newsletter .paw-newsletter-form__field > label {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 0.78rem;
	font-weight: 720;
	letter-spacing: 0.02em;
}

.paw-newsletter .paw-newsletter-form__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: stretch;
	gap: 0.6rem;
}

.paw-newsletter .paw-newsletter-form__row input[type="email"] {
	min-width: 0;
	min-height: 3.35rem;
	border-color: transparent;
	background: var(--paw-white);
}

.paw-newsletter .paw-checkbox {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 0.65rem;
	min-height: 44px;
	padding-block: 0.2rem;
	font-size: 0.8rem;
	font-weight: 520;
	letter-spacing: normal;
	line-height: 1.45;
}

.paw-newsletter .paw-checkbox input[type="checkbox"] {
	width: 1.15rem;
	height: 1.15rem;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	accent-color: var(--paw-forest);
}

.paw-newsletter .paw-newsletter-form > small {
	margin-top: 0;
	color: rgba(255, 255, 255, 0.86);
	opacity: 1;
}

body .paw-contact-form :is(input[type="text"], input[type="email"], select, textarea) {
	width: 100%;
	min-height: 3.15rem;
	padding: 0.75rem 0.95rem;
	border: 1px solid var(--paw-sand);
	border-radius: 0.75rem;
	background: var(--paw-white);
	color: var(--paw-charcoal);
	box-shadow: inset 0 1px 2px rgba(32, 36, 33, 0.035);
}

body .paw-contact-form :is(input[type="text"], input[type="email"], select, textarea):focus {
	border-color: var(--paw-rust);
	background: var(--paw-cream-light);
	outline: 0;
	box-shadow: 0 0 0 3px rgba(217, 106, 59, 0.18);
}

.paw-newsletter .paw-newsletter-form__row input[type="email"][aria-invalid="true"],
body .paw-contact-form :is(input[type="text"], input[type="email"], select, textarea)[aria-invalid="true"] {
	border-color: var(--paw-danger);
	box-shadow: 0 0 0 3px rgba(164, 55, 44, 0.16);
}

.paw-newsletter .paw-checkbox input[type="checkbox"][aria-invalid="true"] {
	outline: 3px solid var(--paw-danger);
	outline-offset: 3px;
}

.paw-form-validation {
	margin: 0;
	padding: 0.7rem 0.85rem;
	border-left: 4px solid var(--paw-danger);
	border-radius: 0 var(--paw-radius-sm) var(--paw-radius-sm) 0;
	background: #fbe9e6;
	color: #6e211b;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.45;
}

.paw-form-validation[hidden] {
	display: none;
}

.paw-newsletter-form[aria-busy="true"] button[type="submit"],
.paw-contact-form[aria-busy="true"] button[type="submit"],
.paw-bundle-form[aria-busy="true"] button[type="submit"] {
	cursor: progress;
	opacity: 0.78;
}

@media (max-width: 640px) {
	.paw-newsletter .paw-newsletter-form__row {
		grid-template-columns: minmax(0, 1fr);
	}

	.paw-newsletter .paw-newsletter-form__row .paw-button {
		width: 100%;
	}
}

/* Editorial and long-product content use explicit layout variants. */
.paw-fit-callout > .paw-fit-callout__content {
	min-width: 0;
}

.paw-fit-callout--stacked {
	position: relative;
	display: block;
	width: 100%;
	margin-block: clamp(2.25rem, 5vw, 4.75rem);
	padding: clamp(1.5rem, 4vw, 2.75rem);
	overflow: hidden;
	border: var(--paw-card-border);
	border-left: 0.35rem solid var(--paw-action);
	border-radius: var(--paw-radius-xl);
	background: linear-gradient(135deg, var(--paw-sand-light), var(--paw-cream-light));
	color: var(--paw-charcoal);
	box-shadow: var(--paw-shadow-sm);
}

.paw-fit-callout--stacked .paw-fit-callout__content {
	max-width: 55rem;
}

.paw-fit-callout--stacked .paw-fit-callout__content > :first-child,
.paw-guide-panel > :first-child,
.paw-guide-section > :first-child,
.paw-product-copy-block > :first-child {
	margin-top: 0;
}

.paw-fit-callout--stacked .paw-fit-callout__content > :last-child,
.paw-guide-panel > :last-child,
.paw-guide-section > :last-child,
.paw-product-copy-block > :last-child {
	margin-bottom: 0;
}

.paw-fit-callout--stacked .paw-fit-callout__content > .paw-eyebrow {
	margin-bottom: 0.55rem;
}

.paw-fit-callout--stacked .paw-fit-callout__content > h2 {
	max-width: 24ch;
	margin: 0;
	color: var(--paw-forest);
	font-size: clamp(1.85rem, 1.35rem + 2vw, 3rem);
	line-height: 1.06;
	overflow-wrap: anywhere;
}

.paw-fit-callout--stacked .paw-fit-callout__content > :where(p, ul, ol) {
	max-width: 48rem;
	margin-block: 0.9rem 0;
}

.paw-fit-callout--stacked .paw-fit-callout__content > :where(ul, ol) {
	display: grid;
	gap: 0.55rem;
	padding-left: 1.25rem;
}

.paw-fit-callout--stacked .paw-fit-callout__content li {
	padding-left: 0.2rem;
	line-height: 1.6;
}

.paw-fit-callout--stacked .paw-fit-callout__content > .paw-text-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	margin-top: 0.75rem;
}

.paw-fit-callout--stacked .paw-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.paw-editorial-content > .paw-guide-panel {
	min-width: 0;
	margin-block: clamp(2.25rem, 5vw, 4.5rem);
	overflow-wrap: anywhere;
}

.paw-guide-panel > .paw-eyebrow {
	margin-bottom: 0.55rem;
}

.paw-guide-panel > h2 {
	max-width: 28ch;
	margin: 0;
	font-size: clamp(1.75rem, 1.35rem + 1.55vw, 2.65rem);
	line-height: 1.08;
}

.paw-guide-panel > h2 + p {
	max-width: 48rem;
	margin-top: 0.85rem;
}

.paw-guide-panel > :where(ul, ol, dl) {
	margin-top: 1.25rem;
}

.paw-guide-panel--mistakes > ul,
.paw-guide-panel--checklist > ul {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.paw-guide-panel--sources > ul {
	grid-template-columns: minmax(0, 1fr);
}

.paw-guide-panel--sources > ul > li {
	line-height: 1.65;
}

.paw-guide-panel--sources .paw-text-link {
	display: inline;
	overflow-wrap: anywhere;
}

.paw-guide-section {
	min-width: 0;
	margin-block: clamp(2.5rem, 6vw, 5.25rem);
}

.paw-guide-section > .paw-section-heading {
	margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.paw-guide-section > .paw-guide-grid,
.paw-guide-section > .paw-product-grid {
	margin-top: 0;
}

.paw-guide-grid--related > article {
	display: flex;
	flex-direction: column;
}

.paw-guide-grid--related > article > h3 {
	margin-top: 0;
}

.paw-guide-grid--related > article > a {
	margin-top: auto;
}

.paw-product-story .paw-reading-width {
	display: grid;
	gap: clamp(1.15rem, 2.5vw, 1.8rem);
}

.paw-product-copy-block {
	min-width: 0;
	margin: 0;
	padding: clamp(1.35rem, 3vw, 2rem);
	border: var(--paw-card-border);
	border-radius: var(--paw-radius-lg);
	background: color-mix(in srgb, var(--paw-white) 72%, var(--paw-cream-light));
	box-shadow: var(--paw-shadow-sm);
	overflow-wrap: anywhere;
}

.paw-product-story .paw-product-copy-block > h2 {
	margin: 0 0 0.8rem;
	font-size: clamp(1.8rem, 1.4rem + 1.55vw, 2.75rem);
	line-height: 1.08;
}

.paw-product-copy-block > p {
	max-width: 48rem;
}

.paw-product-copy-block > :where(ul, ol) {
	display: grid;
	gap: 0.65rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.paw-product-copy-block > ol {
	counter-reset: paw-product-step;
}

.paw-product-copy-block > :where(ul, ol) > li {
	position: relative;
	min-width: 0;
	margin: 0;
	padding: 0.78rem 0.9rem 0.78rem 2.7rem;
	border: 1px solid color-mix(in srgb, var(--paw-forest) 13%, transparent);
	border-radius: var(--paw-radius-sm);
	background: color-mix(in srgb, var(--paw-sand-light) 58%, transparent);
	font-size: 0.96rem;
	line-height: 1.55;
}

.paw-product-copy-block > ul > li::before,
.paw-product-copy-block > ol > li::before {
	position: absolute;
	top: 0.9rem;
	left: 0.95rem;
	display: grid;
	place-items: center;
	width: 1.15rem;
	height: 1.15rem;
	border-radius: 50%;
	background: var(--paw-forest);
	color: var(--paw-white);
	font-size: 0.62rem;
	font-weight: 820;
	line-height: 1;
}

.paw-product-copy-block > ul > li::before {
	content: "";
	width: 0.45rem;
	height: 0.45rem;
	top: 1.18rem;
	left: 1.3rem;
}

.paw-product-copy-block > ol > li {
	counter-increment: paw-product-step;
}

.paw-product-copy-block > ol > li::before {
	content: counter(paw-product-step);
}

.paw-product-copy-block .paw-product-opening {
	margin: 0;
}

.paw-product-copy-block .paw-product-specs,
.paw-product-copy-block .paw-faq-list {
	margin-top: 1rem;
}

@media (max-width: 640px) {
	.paw-fit-callout--stacked,
	.paw-editorial-content > .paw-guide-panel,
	.paw-product-copy-block {
		padding: 1.2rem;
		border-radius: var(--paw-radius-md);
	}

	.paw-fit-callout--stacked {
		margin-block: 2rem;
	}

	.paw-guide-panel--mistakes > ul,
	.paw-guide-panel--checklist > ul,
	.paw-guide-panel--sources > ul {
		grid-template-columns: minmax(0, 1fr);
	}

	.paw-product-story .paw-reading-width {
		gap: 1rem;
	}

	.paw-product-copy-block > :where(ul, ol) > li {
		padding-right: 0.75rem;
	}
}
