/*
Theme Name: Pure Herbs Modern
Theme URI: https://pureherbs.lk/
Author: Pure Herbs
Description: Lightweight WooCommerce theme for Pure Herbs with premium product-first layouts and smooth GSAP scroll motion.
Version: 1.0.0
Requires at least: 6.6
Tested up to: 6.9
Requires PHP: 8.1
Text Domain: pureherbs-modern
*/

:root {
	--ph-white: #ffffff;
	--ph-mint: #a8e6cf;
	--ph-mint-soft: #e9fff5;
	--ph-ink: #17231d;
	--ph-muted: #5d6f65;
	--ph-line: #dceee5;
	--ph-sage: #3e6f5b;
	--ph-clay: #c87556;
	--ph-gold: #d5a84d;
	--ph-shadow: 0 22px 70px rgba(23, 35, 29, .11);
	--ph-radius: 8px;
	--ph-radius-sm: 6px;
	--ph-wrap: min(1180px, calc(100% - 32px));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	background: var(--ph-white);
	color: var(--ph-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

body.ph-lock {
	overflow: hidden;
}

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

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

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

button {
	cursor: pointer;
}

::selection {
	background: var(--ph-mint);
	color: var(--ph-ink);
}

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

.ph-loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background: var(--ph-white);
	transition: opacity .45s ease, visibility .45s ease;
	animation: ph-loader-failsafe .45s ease 1.4s forwards;
}

.ph-loader__mark {
	position: relative;
	width: 64px;
	height: 96px;
	border: 2px solid var(--ph-sage);
	border-radius: 32px 32px 12px 12px;
	overflow: hidden;
}

.ph-loader__mark::before {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 0;
	background: linear-gradient(180deg, var(--ph-mint), #78c7a8);
	animation: ph-load-fill 1.15s ease-in-out infinite alternate;
}

.ph-loader__mark::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 18px;
	width: 22px;
	height: 22px;
	border: solid var(--ph-sage);
	border-width: 0 2px 2px 0;
	border-radius: 0 0 18px 0;
	transform: translateX(-40%) rotate(35deg);
}

.is-loaded .ph-loader {
	animation: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

@keyframes ph-load-fill {
	to {
		height: 100%;
	}
}

@keyframes ph-loader-failsafe {
	to {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
}

.ph-scroll-bottle {
	position: fixed;
	right: 22px;
	top: 50%;
	z-index: 40;
	width: 18px;
	height: 128px;
	border: 1px solid rgba(62, 111, 91, .36);
	border-radius: 999px;
	overflow: hidden;
	background: rgba(255, 255, 255, .74);
	backdrop-filter: blur(14px);
	transform: translateY(-50%);
	pointer-events: none;
}

.ph-scroll-bottle__fill {
	position: absolute;
	inset: auto 3px 3px;
	height: calc(100% - 6px);
	border-radius: 999px;
	background: linear-gradient(180deg, var(--ph-mint), #4fa77e);
	transform: scaleY(0);
	transform-origin: bottom center;
}

.ph-site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	background: rgba(255, 255, 255, .94);
	border-bottom: 1px solid rgba(220, 238, 229, .86);
	backdrop-filter: blur(18px);
	box-shadow: 0 10px 30px rgba(23, 35, 29, .04);
}

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

.ph-header-inner {
	display: grid;
	grid-template-columns: minmax(140px, auto) minmax(320px, 620px) auto;
	gap: 24px;
	align-items: center;
	width: var(--ph-wrap);
	min-height: 84px;
	margin: 0 auto;
}

.ph-brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.ph-brand-logo {
	max-width: 140px;
	width: auto;
	height: 56px;
	display: block;
	object-fit: contain;
}

/* Fix header size on WooCommerce pages (Cart, Checkout, Account) */
.woocommerce-cart .ph-site-header,
.woocommerce-checkout .ph-site-header,
.woocommerce-account .ph-site-header {
	background: rgba(255, 255, 255, .98);
}

.woocommerce-cart .ph-header-inner,
.woocommerce-checkout .ph-header-inner,
.woocommerce-account .ph-header-inner {
	min-height: 84px !important;
	padding: 0 !important;
}

.woocommerce-cart .ph-brand-logo,
.woocommerce-checkout .ph-brand-logo,
.woocommerce-account .ph-brand-logo {
	max-width: 140px !important;
	height: 56px !important;
}

.ph-header-actions {
	display: inline-flex;
	gap: 24px;
	align-items: center;
	justify-content: end;
}

.ph-primary-nav {
	display: block;
}

.ph-action-group {
	display: flex;
	gap: 12px;
	align-items: center;
}

.ph-menu {
	display: flex;
	gap: 22px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ph-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--ph-muted);
	font-size: 0.9rem;
	font-weight: 700;
	transition: color 0.2s ease;
}

.ph-menu a:hover {
	color: var(--ph-sage);
}

.ph-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8px;
	height: 2px;
	background: var(--ph-sage);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .22s ease;
}

.ph-menu a:hover::after,
.ph-menu .current-menu-item>a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.ph-header-search {
	min-width: 0;
}

.ph-search-form {
	display: grid;
	grid-template-columns: minmax(150px, 220px) minmax(220px, 1fr) auto;
	gap: 8px;
	align-items: center;
	max-width: 680px;
	margin: 0;
}

.ph-search-category {
	position: relative;
	min-width: 0;
}

.ph-category-select,
.ph-search-input {
	width: 100%;
	min-height: 46px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius-sm);
	background: rgba(255, 255, 255, .92);
	color: var(--ph-ink);
	padding: 9px 12px;
	box-shadow: none;
}

.ph-category-select {
	appearance: none;
	padding-right: 34px;
}

.ph-select-arrow {
	position: absolute;
	top: 50%;
	right: 12px;
	color: var(--ph-muted);
	pointer-events: none;
	transform: translateY(-50%);
}

.ph-search-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid var(--ph-sage);
	border-radius: var(--ph-radius-sm);
	background: var(--ph-sage);
	color: var(--ph-white);
	font-weight: 800;
	white-space: nowrap;
}

.ph-search-btn:hover {
	background: #294d3f;
}

.ph-icon-btn,
.ph-menu-toggle {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	background: var(--ph-white);
	color: var(--ph-ink);
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.ph-icon-btn:hover,
.ph-menu-toggle:hover {
	border-color: var(--ph-mint);
	background: var(--ph-mint-soft);
	transform: translateY(-1px);
}

.ph-cart-link,
.ph-cart-toggle {
	position: relative;
}

.ph-cart-count {
	position: absolute;
	top: -7px;
	right: -7px;
	display: grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--ph-clay);
	color: var(--ph-white);
	font-size: .74rem;
	font-weight: 800;
}

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

.ph-hero {
	position: relative;
	overflow: clip;
	min-height: 0;
	padding: 44px 0 24px;
	background:
		linear-gradient(120deg, rgba(168, 230, 207, .32), rgba(255, 255, 255, .7) 42%, rgba(213, 168, 77, .12)),
		var(--ph-white);
}

.ph-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 130px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--ph-white));
	pointer-events: none;
}

.ph-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 580px);
	gap: 24px;
	align-items: center;
	width: var(--ph-wrap);
	margin: 0 auto;
}

.ph-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	color: var(--ph-sage);
	font-size: .82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.ph-kicker::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ph-mint);
	box-shadow: 0 0 0 5px rgba(168, 230, 207, .24);
}

.ph-hero h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(1.8rem, 3.2vw, 2.6rem);
	line-height: .98;
	letter-spacing: 0;
}

.ph-hero__copy {
	max-width: 640px;
	margin: 10px 0 0;
	color: var(--ph-muted);
	font-size: 1rem;
	line-height: 1.62;
}

.ph-hero__heading {
	display: grid;
	gap: 12px;
}

.ph-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--ph-sage);
	font-size: .82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.ph-hero__kicker::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ph-mint);
	box-shadow: 0 0 0 5px rgba(168, 230, 207, .24);
}

.ph-hero__title {
	margin: 0;
}

.ph-hero .ph-hero__title--authorized {
	max-width: 650px;
	font-size: clamp(1.6rem, 2.1vw, 2.1rem);
	line-height: 1.08;
}

.ph-hero__subtitle {
	max-width: 680px;
	margin: 0;
	color: #62a500;
	font-size: clamp(.9rem, 1vw, 1rem);
	font-weight: 750;
	line-height: 1.32;
}

.ph-hero__divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
}

.ph-hero__divider-line {
	flex: 1;
	height: 1px;
	background: var(--ph-line);
}

.ph-hero__divider-leaf {
	color: var(--ph-sage);
}

.ph-hero__leaves {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.ph-leaf {
	position: absolute;
	width: clamp(88px, 13vw, 180px);
	opacity: .24;
	filter: drop-shadow(0 14px 22px rgba(23, 35, 29, .08));
}

.ph-leaf--1 {
	top: 10%;
	left: -4%;
	transform: rotate(-14deg);
}

.ph-leaf--2 {
	top: 42%;
	left: -6%;
	transform: rotate(8deg);
}

.ph-leaf--3 {
	top: 14%;
	right: 3%;
	transform: rotate(22deg);
}

.ph-leaf--4 {
	bottom: 12%;
	right: -3%;
	transform: rotate(-6deg);
}

.ph-leaf--5 {
	bottom: 28%;
	left: 6%;
	transform: rotate(12deg);
}

/* ── Hero Visual (product group image) ── */
.ph-hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 480px;
	perspective: 1400px;
}

/* Ambient glow layers */
.ph-hero-glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.ph-hero-glow--1 {
	width: 110%;
	height: 110%;
	background: radial-gradient(ellipse at 55% 50%, rgba(98, 165, 0, .18) 0%, rgba(168, 230, 207, .22) 40%, transparent 70%);
	filter: blur(32px);
	animation: ph-glow-pulse 5s ease-in-out infinite;
}

.ph-hero-glow--2 {
	width: 70%;
	height: 70%;
	background: radial-gradient(ellipse at center, rgba(255, 255, 255, .55) 0%, transparent 70%);
	filter: blur(20px);
}

@keyframes ph-glow-pulse {
	0%, 100% { opacity: .8; transform: scale(1); }
	50%       { opacity: 1; transform: scale(1.06); }
}

/* Main 3D frame */
.ph-hero-frame {
	position: relative;
	z-index: 2;
	width: min(100%, 680px);
	transform-style: preserve-3d;
	transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
	filter: drop-shadow(0 42px 76px rgba(7, 22, 13, .34));
	will-change: transform;
	cursor: pointer;
}

.ph-hero-frame::before {
	content: "";
	position: absolute;
	inset: 8% 9% -5%;
	z-index: -1;
	border-radius: 50%;
	background:
		radial-gradient(circle at 52% 42%, rgba(255, 255, 255, .62) 0 24%, transparent 55%),
		radial-gradient(circle at 40% 72%, rgba(127, 174, 72, .28), transparent 60%),
		radial-gradient(circle at 74% 56%, rgba(239, 78, 146, .22), transparent 54%);
	filter: blur(18px);
	transform: translateZ(-55px) rotate(-2deg);
	opacity: .95;
	pointer-events: none;
}

.ph-hero-product-img {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	object-position: center;
	animation: ph-product-float 5.6s ease-in-out infinite;
	filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .18));
	transform-origin: center;
	will-change: transform;
}

@keyframes ph-product-float {
	0%, 100% { transform: translate3d(0, 0, 26px) rotateZ(-.5deg); }
	50%       { transform: translate3d(0, -14px, 38px) rotateZ(.65deg); }
}

/* Floating trust badges */
.ph-hero-badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 7px;
	background: rgba(255, 255, 255, .96);
	border: 1.5px solid rgba(168, 230, 207, .9);
	border-radius: 32px;
	padding: 8px 16px 8px 10px;
	font-size: .75rem;
	font-weight: 700;
	color: #1a2a1d;
	white-space: nowrap;
	box-shadow: 0 8px 28px rgba(10, 40, 20, .14);
	pointer-events: none;
	z-index: 4;
}

.ph-hero-badge svg { flex-shrink: 0; }

.ph-hero-badge--top {
	top: 14%;
	left: -2%;
	animation: ph-badge-bob 3.8s ease-in-out infinite;
}

.ph-hero-badge--bottom {
	bottom: 18%;
	right: 2%;
	animation: ph-badge-bob 3.2s ease-in-out infinite 1s;
}

@keyframes ph-badge-bob {
	0%, 100% { transform: translateY(0) rotate(-1deg); }
	50%       { transform: translateY(-8px) rotate(1deg); }
}

/* Orbiting dots */
.ph-hero-orbit {
	position: absolute;
	inset: -5%;
	z-index: 1;
	pointer-events: none;
}

.ph-hero-orbit__dot {
	position: absolute;
	border-radius: 50%;
	background: rgba(98, 165, 0, .55);
}

.ph-hero-orbit__dot--1 {
	width: 10px; height: 10px;
	top: 8%; right: 12%;
	animation: ph-orbit-drift 6s ease-in-out infinite;
	box-shadow: 0 0 0 4px rgba(98,165,0,.15);
}

.ph-hero-orbit__dot--2 {
	width: 7px; height: 7px;
	bottom: 22%; left: 4%;
	background: rgba(168, 230, 207, .9);
	animation: ph-orbit-drift 7s ease-in-out infinite 1.5s;
}

.ph-hero-orbit__dot--3 {
	width: 5px; height: 5px;
	top: 55%; right: 3%;
	background: rgba(62, 111, 91, .7);
	animation: ph-orbit-drift 5s ease-in-out infinite 0.8s;
}

@keyframes ph-orbit-drift {
	0%, 100% { transform: translateY(0) translateX(0); opacity: .7; }
	33%       { transform: translateY(-12px) translateX(6px); opacity: 1; }
	66%       { transform: translateY(6px) translateX(-8px); opacity: .6; }
}

.ph-hero__benefits {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 36px;
}

.ph-benefit {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 16px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	background: rgba(255, 255, 255, .88);
	box-shadow: 0 12px 30px rgba(23, 35, 29, .08);
}

.ph-benefit__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--ph-mint-soft);
	color: var(--ph-sage);
}

.ph-benefit__body h3 {
	margin: 0 0 4px;
	font-size: 1rem;
}

.ph-benefit__body p {
	margin: 0;
	color: var(--ph-muted);
	font-size: .9rem;
}

.ph-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: center;
	width: var(--ph-wrap);
	margin: 24px auto 0;
	padding-bottom: 12px;
}

.ph-hero__trust-item {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	padding: 10px 16px;
	border: 1px solid var(--ph-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, .86);
	font-size: .9rem;
	color: var(--ph-ink);
}

.ph-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 34px;
}

.ph-button,
.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #payment #place_order {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border: 1px solid var(--ph-sage);
	border-radius: var(--ph-radius);
	background: var(--ph-sage);
	color: var(--ph-white);
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.ph-button:hover,
.button:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #payment #place_order:hover {
	background: #294d3f;
	color: var(--ph-white);
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(62, 111, 91, .2);
}

.ph-button--ghost {
	background: rgba(255, 255, 255, .64);
	color: var(--ph-ink);
	border-color: var(--ph-line);
}

.ph-button--ghost:hover {
	background: var(--ph-mint-soft);
	color: var(--ph-ink);
	box-shadow: none;
}

.ph-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: grid;
	grid-template-columns: 1fr minmax(320px, 440px);
	visibility: hidden;
	pointer-events: none;
}

.ph-cart-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}

.ph-cart-drawer__overlay {
	grid-column: 1 / -1;
	grid-row: 1;
	border: 0;
	background: rgba(23, 35, 29, .38);
	opacity: 0;
	transition: opacity .24s ease;
}

.ph-cart-drawer.is-open .ph-cart-drawer__overlay {
	opacity: 1;
}

.ph-cart-drawer__panel {
	grid-column: 2;
	grid-row: 1;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	width: min(100vw, 440px);
	height: 100dvh;
	margin-left: auto;
	border-left: 1px solid var(--ph-line);
	background: var(--ph-white);
	box-shadow: -24px 0 60px rgba(23, 35, 29, .16);
	transform: translateX(100%);
	transition: transform .26s ease;
}

.ph-cart-drawer.is-open .ph-cart-drawer__panel {
	transform: translateX(0);
}

.ph-cart-drawer__header,
.ph-cart-drawer__footer {
	padding: 14px 16px;
	background: rgba(255, 255, 255, .94);
}

.ph-cart-drawer__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	border-bottom: 1px solid var(--ph-line);
}

.ph-cart-drawer__eyebrow {
	margin: 0 0 3px;
	color: var(--ph-muted);
	font-size: .72rem;
	font-weight: 700;
}

.ph-cart-drawer__header h2 {
	margin: 0;
	font-size: .95rem;
	line-height: 1.15;
}

.ph-cart-drawer__close {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius-sm);
	background: var(--ph-white);
	color: var(--ph-ink);
}

.ph-cart-drawer__body {
	min-height: 0;
	overflow-y: auto;
	padding: 14px 16px;
}

.ph-cart-drawer__notice {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-bottom: 12px;
	padding: 8px 12px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	background: var(--ph-mint-soft);
	font-size: .72rem;
	font-weight: 700;
}

.ph-cart-drawer__notice span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--ph-mint);
	box-shadow: 0 0 0 5px rgba(168, 230, 207, .28);
}

.ph-cart-drawer__list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ph-cart-item,
.ph-cart-suggestion {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
}

.ph-cart-item {
	padding: 10px 0;
	border-bottom: 1px solid var(--ph-line);
}

.ph-cart-item__thumb,
.ph-cart-suggestion__image {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius-sm);
	background: linear-gradient(180deg, #f7fff9, #fff);
	overflow: hidden;
}

.ph-cart-item__thumb img,
.ph-cart-suggestion__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
}

.ph-cart-item__info,
.ph-cart-suggestion__body {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.ph-cart-item__title,
.ph-cart-suggestion__body a {
	font-size: .78rem;
	font-weight: 700;
	line-height: 1.3;
}

.ph-cart-item__meta,
.ph-cart-suggestion__body span {
	color: var(--ph-muted);
	font-size: .72rem;
}

.ph-cart-item__tail {
	display: grid;
	gap: 8px;
	justify-items: end;
	text-align: right;
}

.ph-cart-item__remove {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--ph-mint-soft);
	color: var(--ph-ink);
	font-size: 1.2rem;
	line-height: 1;
}

.ph-cart-drawer__empty-state {
	display: grid;
	justify-items: center;
	gap: 8px;
	padding: 28px 10px;
	text-align: center;
	font-size: .82rem;
}

.ph-cart-drawer__empty-state h3,
.ph-cart-drawer__empty-state p {
	margin: 0;
}

.ph-cart-drawer__empty-state p {
	color: var(--ph-muted);
}

.ph-cart-suggestions {
	margin-top: 16px;
}

.ph-cart-suggestions__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
	font-size: .78rem;
	font-weight: 800;
}

.ph-cart-suggestions__head a {
	color: var(--ph-sage);
	font-size: .72rem;
}

.ph-cart-suggestions__grid {
	display: grid;
	gap: 8px;
}

.ph-cart-suggestion {
	grid-template-columns: 52px minmax(0, 1fr) auto;
	padding: 8px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	background: #fff;
}

.ph-cart-suggestion__action {
	min-height: 32px;
	padding-inline: 10px;
	font-size: .72rem;
}

.ph-cart-drawer__footer {
	border-top: 1px solid var(--ph-line);
}

.ph-cart-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
	font-size: .82rem;
	font-weight: 800;
}

.ph-cart-drawer__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.ph-product-stage {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
}

.ph-product-stage::before {
	content: "";
	position: absolute;
	width: min(390px, 84%);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle at 38% 32%, rgba(255, 255, 255, .94), rgba(168, 230, 207, .5) 58%, rgba(62, 111, 91, .16));
	box-shadow: var(--ph-shadow);
}

.ph-product-stage img {
	position: relative;
	z-index: 1;
	max-height: 500px;
	object-fit: contain;
	filter: drop-shadow(0 24px 34px rgba(23, 35, 29, .18));
}

.ph-depth-card {
	position: absolute;
	z-index: 2;
	display: grid;
	gap: 4px;
	min-width: 174px;
	padding: 14px 16px;
	border: 1px solid rgba(220, 238, 229, .88);
	border-radius: var(--ph-radius);
	background: rgba(255, 255, 255, .84);
	box-shadow: 0 18px 44px rgba(23, 35, 29, .09);
	backdrop-filter: blur(14px);
}

.ph-depth-card strong {
	font-size: .96rem;
}

.ph-depth-card span {
	color: var(--ph-muted);
	font-size: .82rem;
}

.ph-depth-card--top {
	top: 54px;
	right: 6px;
}

.ph-depth-card--bottom {
	bottom: 46px;
	left: 0;
}

.ph-scroll-showcase {
	padding: 90px 0;
	background: linear-gradient(180deg, #fff, #f7fff9 52%, #fff);
	overflow: hidden;
}

.ph-trust-band {
	position: relative;
	padding: 84px 0 54px;
	background: linear-gradient(135deg, #f7fff9 0%, #f1f6f1 45%, #eef3ef 100%);
	overflow: hidden;
}

.ph-trust-band::before,
.ph-trust-band::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(168, 230, 207, .28), transparent 62%);
	filter: blur(4px);
	opacity: .7;
	pointer-events: none;
}

.ph-trust-band::before {
	width: 360px;
	height: 360px;
	left: -140px;
	top: -120px;
}

.ph-trust-band::after {
	width: 420px;
	height: 420px;
	right: -180px;
	bottom: -180px;
}

.ph-trust-band__inner {
	position: relative;
	z-index: 1;
	perspective: 1400px;
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
	gap: 46px;
	align-items: center;
	width: var(--ph-wrap);
	margin: 0 auto;
}

.ph-trust-band__copy {
	position: relative;
	padding: 26px 28px;
	border-radius: calc(var(--ph-radius) + 4px);
	background: rgba(255, 255, 255, .88);
	border: 1px solid rgba(220, 238, 229, .88);
	box-shadow: 0 20px 60px rgba(23, 35, 29, .08);
	backdrop-filter: blur(10px);
	transform-style: preserve-3d;
	will-change: transform;
}

.ph-trust-band__copy::after {
	content: "";
	position: absolute;
	inset: -35% -25% auto;
	height: 220px;
	background: radial-gradient(circle, rgba(168, 230, 207, .22), transparent 70%);
	opacity: .6;
	pointer-events: none;
}

.ph-trust-band__copy h2 {
	max-width: 620px;
	margin: 0;
	color: #1d2a23;
	font-size: clamp(1.5rem, 2.2vw, 2rem);
	font-weight: 850;
	line-height: 1.12;
	letter-spacing: 0;
}

.ph-trust-band__copy p {
	max-width: 560px;
	margin: 18px 0 0;
	color: #5f6b64;
}

.ph-trust-stats {
	perspective: 1200px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	padding: 12px 4px;
}

.ph-trust-stat {
	position: relative;
	display: grid;
	gap: 5px;
	justify-items: center;
	min-height: 180px;
	padding: 44px 26px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: calc(var(--ph-radius) + 2px);
	background: rgba(255, 255, 255, 0.35);
	text-align: center;
	place-content: center;
	box-shadow:
		0 26px 60px rgba(23, 35, 29, .14),
		inset 0 1px 0 rgba(255, 255, 255, .7);
	overflow: hidden;
	transform-style: preserve-3d;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
	will-change: transform;
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
}

.ph-trust-stat::before {
	content: "";
	position: absolute;
	inset: auto 18px 14px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--ph-mint), #66a800, var(--ph-gold));
	transform: scaleX(.42);
	transform-origin: center;
	transition: transform .24s ease;
}

.ph-trust-stat::after {
	content: "";
	position: absolute;
	inset: -40% -40% auto;
	height: 180px;
	background: radial-gradient(circle, rgba(168, 230, 207, .25), transparent 70%);
	opacity: 0;
	transition: opacity .35s ease;
}

.ph-trust-stat:hover::before {
	transform: scaleX(1);
}

.ph-trust-stat:hover {
	transform: translateY(-6px);
	border-color: rgba(168, 230, 207, .85);
	box-shadow: 0 24px 60px rgba(23, 35, 29, .14);
}

.ph-trust-stat:hover::after {
	opacity: 1;
}

.ph-trust-stat strong {
	color: #4b8f2a;
	font-size: clamp(1.3rem, 2vw, 2rem);
	transform: translateZ(18px);
}

.ph-trust-stat span {
	color: #4b8f2a;
	font-size: clamp(.88rem, 1vw, 1.02rem);
	font-weight: 700;
	line-height: 1.35;
	transform: translateZ(10px);
	max-width: 160px;
	word-break: break-word;
}

.ph-scroll-showcase__inner {
	display: grid;
	grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
	gap: 42px;
	align-items: center;
	width: var(--ph-wrap);
	margin: 0 auto;
}

.ph-scroll-showcase__copy {
	position: relative;
	z-index: 2;
	max-width: 520px;
}

.ph-scroll-showcase__copy h2 {
	margin: 0 0 16px;
	font-size: clamp(1.4rem, 1.9vw, 1.8rem);
	line-height: 1.08;
}

.ph-scroll-showcase__copy p:not(.ph-kicker) {
	margin: 0;
	color: var(--ph-muted);
}

.ph-scroll-showcase__stage {
	position: relative;
	min-height: 660px;
}

.ph-showcase-meter {
	position: absolute;
	top: 34px;
	bottom: 34px;
	left: 8px;
	z-index: 3;
	width: 16px;
	border: 1px solid rgba(62, 111, 91, .24);
	border-radius: 999px;
	background: rgba(255, 255, 255, .72);
	overflow: hidden;
}

.ph-showcase-meter__fill {
	position: absolute;
	inset: auto 3px 3px;
	height: calc(100% - 6px);
	border-radius: 999px;
	background: linear-gradient(180deg, var(--ph-mint), #4fa77e);
	transform: scaleY(0);
	transform-origin: bottom center;
}

.ph-showcase-track {
	position: absolute;
	inset: 24px 18px 24px 36px;
	border: 1px solid rgba(220, 238, 229, .84);
	border-radius: 30px;
	background:
		radial-gradient(circle at 18% 20%, rgba(168, 230, 207, .28), transparent 30%),
		linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(233, 255, 245, .62));
	box-shadow: var(--ph-shadow);
	opacity: .72;
}

.ph-showcase-track span {
	position: absolute;
	border-radius: 999px;
	background: rgba(62, 111, 91, .12);
}

.ph-showcase-track span:nth-child(1) {
	inset: 18% 14% auto 22%;
	height: 12px;
}

.ph-showcase-track span:nth-child(2) {
	inset: 46% 24% auto 12%;
	height: 12px;
}

.ph-showcase-track span:nth-child(3) {
	inset: auto 16% 18% 28%;
	height: 12px;
}

.ph-showcase-stack {
	position: relative;
	z-index: 2;
	height: 660px;
	perspective: 1400px;
	perspective-origin: 50% 42%;
}

.ph-showcase-card {
	position: absolute;
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	width: min(570px, calc(100% - 52px));
	min-height: 168px;
	padding: 16px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 18px 38px rgba(23, 35, 29, .11);
	transform-style: preserve-3d;
	transform-origin: center center;
	will-change: transform;
}

.ph-showcase-card::after {
	content: "";
	position: absolute;
	left: 10%;
	right: 10%;
	bottom: -18px;
	z-index: -1;
	height: 34px;
	border-radius: 50%;
	background: rgba(23, 35, 29, .14);
	filter: blur(18px);
	transform: translateZ(-34px);
	pointer-events: none;
}

.ph-showcase-card--1 {
	top: 24px;
	left: 54px;
	z-index: 3;
}

.ph-showcase-card--2 {
	top: 236px;
	right: 0;
	z-index: 2;
}

.ph-showcase-card--3 {
	top: 448px;
	left: 24px;
	z-index: 1;
}

.ph-showcase-card__image {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border-radius: var(--ph-radius-sm);
	background: linear-gradient(180deg, #f7fff9, #fff);
	overflow: hidden;
	min-height: 136px;
	transform: translateZ(24px);
	transform-style: preserve-3d;
}

.ph-showcase-card__image img {
	width: 100%;
	height: 100%;
	max-height: 136px;
	object-fit: contain;
	padding: 10px;
	filter: drop-shadow(0 12px 14px rgba(23, 35, 29, .12));
	will-change: transform;
}

.ph-showcase-card__body {
	display: grid;
	gap: 8px;
	min-width: 0;
	transform: translateZ(18px);
}

.ph-showcase-card__body span {
	color: var(--ph-muted);
	font-size: .84rem;
	font-weight: 800;
	text-transform: uppercase;
}

.ph-showcase-card__body h3 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.28;
}

.ph-showcase-card .ph-price {
	font-size: .95rem;
}

.ph-authorized-now {
	padding: 88px 0 46px;
	background: #f4f4f4;
}

.ph-authorized-now__inner {
	display: grid;
	justify-content: center;
	width: var(--ph-wrap);
	margin: 0 auto;
}

.ph-authorized-now__copy {
	max-width: 720px;
}

.ph-authorized-now h2 {
	margin: 0;
	color: #282828;
	font-size: clamp(1.6rem, 2.4vw, 2.2rem);
	font-weight: 850;
	line-height: 1.14;
	letter-spacing: 0;
}

.ph-now-logo {
	display: inline-flex;
	align-items: baseline;
	gap: 0;
	margin-inline: 2px 8px;
	color: #2b00a8;
	font-size: .82em;
	font-weight: 950;
	line-height: .9;
	text-transform: uppercase;
}

.ph-now-logo span:nth-child(2) {
	position: relative;
	color: #2310a2;
}

.ph-now-logo span:nth-child(2)::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: .42em;
	height: .42em;
	border-radius: 50%;
	background: radial-gradient(circle, #ffe879 0 28%, #f1cd1f 29% 58%, #6aa51a 59% 100%);
	transform: translate(-50%, -50%);
}

.ph-authorized-now h3 {
	margin: 18px 0 0;
	color: #62a500;
	font-size: clamp(1rem, 1.2vw, 1.15rem);
	font-weight: 750;
	line-height: 1.32;
}

.ph-authorized-now p {
	max-width: 670px;
	margin: 22px 0 0;
	color: #777;
	font-size: 1.05rem;
	line-height: 1.72;
}

.ph-authorized-now__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 138px;
	min-height: 42px;
	margin-top: 20px;
	padding: 0 24px;
	border-radius: 6px;
	background: linear-gradient(135deg, #66a800, #a7dc45);
	color: #fff;
	font-weight: 750;
	text-transform: uppercase;
	box-shadow: 0 10px 24px rgba(102, 168, 0, .18);
}

.ph-service-strip {
	padding: 22px 0 74px;
	background: #f4f4f4;
}

.ph-service-strip__inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;
	gap: 20px;
	width: min(1370px, calc(100% - 32px));
	margin: 0 auto;
	padding: 16px 40px;
	background: #e9ffe8;
	color: #63a500;
}

.ph-service-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	min-width: 0;
	text-transform: uppercase;
}

.ph-service-item__icon {
	display: inline-grid;
	place-items: center;
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	color: #63a500;
}

.ph-service-item__icon svg {
	width: 100%;
	height: 100%;
}

.ph-service-item strong {
	color: #63a500;
	font-size: 1rem;
	font-weight: 750;
	letter-spacing: 0;
	white-space: nowrap;
}

.ph-hero .ph-service-strip--hero {
	position: relative;
	z-index: 2;
	width: min(1370px, calc(100% - 32px));
	margin: 12px auto 0;
	padding: 0;
	background: transparent;
}

.ph-hero .ph-service-strip--hero .ph-service-strip__inner {
	width: 100%;
	box-shadow: 0 14px 34px rgba(23, 35, 29, .06);
	padding-block: 8px;
}

.ph-section {
	padding: 86px 0;
}

.ph-section--soft {
	background: linear-gradient(180deg, var(--ph-mint-soft), #fff);
}

.ph-section__head {
	display: flex;
	gap: 22px;
	align-items: end;
	justify-content: space-between;
	width: var(--ph-wrap);
	margin: 0 auto 30px;
}

.ph-section__head h2,
.woocommerce-products-header__title,
.entry-title {
	margin: 0;
	font-size: clamp(1.4rem, 1.9vw, 1.8rem);
	line-height: 1.08;
	letter-spacing: 0;
}

.ph-section__head p {
	max-width: 520px;
	margin: 0;
	color: var(--ph-muted);
}

.ph-section__head.ph-section__head--center {
	display: grid;
	justify-items: center;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	animation: ph-scroll-title 0.8s ease-out;
}

.ph-section__head.ph-section__head--center p {
	margin-inline: auto;
}

@keyframes ph-scroll-title {
	from {
		opacity: 0;
		transform: translateY(20px) rotateX(10deg);
	}
	to {
		opacity: 1;
		transform: translateY(0) rotateX(0deg);
	}
}

.ph-section__cta {
	display: flex;
	justify-content: center;
	width: var(--ph-wrap);
	margin: 28px auto 0;
}

.ph-product-grid,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	width: var(--ph-wrap);
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

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

.ph-product-card,
.woocommerce ul.products li.product {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 100%;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	background: var(--ph-white);
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(23, 35, 29, .05);
	transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.ph-product-card:hover,
.woocommerce ul.products li.product:hover {
	border-color: rgba(62, 111, 91, .34);
	box-shadow: 0 20px 48px rgba(23, 35, 29, .1);
	transform: translateY(-4px);
}

.ph-product-card__img-wrap {
	position: relative;
	display: block;
}

.ph-product-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	padding: 4px 11px;
	border-radius: 999px;
	background: #3a8f25;
	color: #fff;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .02em;
}

.ph-product-card__image,
.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: linear-gradient(180deg, #f7fff9, #fff);
}

.woocommerce ul.products li.product a img {
	margin: 0;
	padding: 18px;
}

.ph-product-card__body,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price {
	padding-inline: 16px;
}

.ph-product-card__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 10px 12px 12px;
	flex: 1;
}

.ph-product-card__body h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	margin: 0;
	color: var(--ph-ink);
	font-size: .86rem;
	line-height: 1.35;
	font-weight: 600;
}

.ph-product-card__cats {
	margin: 0;
	color: var(--ph-muted);
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	line-height: 1.3;
}

.ph-product-card__promo {
	margin: 2px 0 0;
	color: #c97a1a;
	font-size: .72rem;
	font-weight: 700;
}

.ph-product-card__sku {
	margin: 4px 0 0;
	color: var(--ph-muted);
	font-size: .68rem;
}

.ph-product-card__sku strong {
	font-weight: 700;
}

.ph-product-card__actions {
	margin-top: auto;
	padding-top: 6px;
}

.ph-card-add {
	width: 100%;
}

.ph-price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--ph-sage);
	font-size: .82rem;
	font-weight: 800;
}

.ph-product-grid--featured .ph-product-card {
	background:
		linear-gradient(180deg, rgba(233, 255, 245, .52), rgba(255, 255, 255, .96) 42%),
		var(--ph-white);
}

.woocommerce ul.products li.product .price {
	display: block;
	margin: 8px 0 14px;
}

.woocommerce ul.products li.product [class*="direct-payment"],
.woocommerce ul.products li.product [class*="direct_payment"],
.woocommerce ul.products li.product [class*="directpayment"],
.woocommerce ul.products li.product .woocommerce-product-details__short-description,
.woocommerce ul.products li.product .product-meta,
.woocommerce ul.products li.product .product_meta {
	display: block;
	padding-inline: 16px;
	color: var(--ph-muted);
	font-size: .85rem;
	line-height: 1.4;
	margin: 4px 0 0;
}

.woocommerce ul.products li.product .button {
	margin: auto 16px 16px;
	width: calc(100% - 32px);
}

.ph-category-showcase {
	padding: 84px 0 92px;
	background: #f4f4f4;
	overflow: hidden;
}

.ph-category-showcase__head {
	width: var(--ph-wrap);
	margin: 0 auto 28px;
	text-align: center;
}

.ph-category-showcase__head h2 {
	margin: 0;
	color: #282828;
	font-size: clamp(1.4rem, 1.9vw, 1.8rem);
	line-height: 1.08;
}

.ph-category-showcase__grid {
	display: grid;
	grid-template-areas:
		"now mason gold"
		"now neocell gold";
	grid-template-columns: minmax(300px, 1.08fr) minmax(300px, 1fr) minmax(300px, .94fr);
	grid-template-rows: 270px 220px;
	gap: 18px;
	width: min(1200px, calc(100% - 32px));
	margin: 0 auto;
	align-items: stretch;
	perspective: 1400px;
	transform-style: preserve-3d;
}

.ph-category-feature {
	position: relative;
	display: block;
	min-width: 0;
	padding: 28px 30px;
	border-radius: 18px;
	overflow: hidden;
	color: #fff;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
	isolation: isolate;
	transform-style: preserve-3d;
	will-change: transform;
	transition: transform .2s ease, box-shadow .2s ease;
}

.ph-category-feature::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(120deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0) 34%),
		radial-gradient(circle at 82% 22%, rgba(255, 255, 255, .22), transparent 32%);
	pointer-events: none;
}

.ph-category-feature::after {
	content: "";
	position: absolute;
	left: 10%;
	right: 10%;
	bottom: 12px;
	z-index: 0;
	height: 28px;
	border-radius: 50%;
	background: rgba(23, 35, 29, .16);
	filter: blur(18px);
	transform: translateZ(-24px);
	pointer-events: none;
}

.ph-category-feature:hover {
	transform: translateY(-3px) rotateX(1deg) rotateY(-1deg);
	box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
}

.ph-category-feature--now {
	grid-area: now;
	background: linear-gradient(180deg, #ea875e 0%, #f5c7b1 54%, #fff 100%);
}

.ph-category-feature--mason {
	grid-area: mason;
	background: linear-gradient(135deg, #d3c490, #efe7c4);
}

.ph-category-feature--neocell {
	grid-area: neocell;
	background: linear-gradient(135deg, #b147a8, #e5bfdc);
}

.ph-category-feature--gold {
	grid-area: gold;
	background: linear-gradient(180deg, #ab8612 0%, #dbc987 58%, #fff 100%);
}

.ph-category-feature--mason .ph-category-feature__label {
	margin: 0 auto;
	text-align: center;
	max-width: 100%;
}

.ph-category-feature--mason .ph-category-feature__button {
	margin-left: auto;
	text-align: center;
}

.ph-category-feature__label {
	position: relative;
	z-index: 3;
	display: block;
	max-width: 280px;
	font-size: clamp(1.15rem, 1.6vw, 1.5rem);
	font-weight: 850;
	line-height: 1.04;
	letter-spacing: 0;
}

.ph-category-feature__button {
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 130px;
	min-height: 40px;
	margin-top: 26px;
	padding: 0 20px;
	border-radius: 6px;
	background: rgba(255, 255, 255, .95);
	color: #a07418;
	font-size: .9rem;
	font-weight: 700;
	text-transform: uppercase;
}

.ph-category-feature--now .ph-category-feature__button {
	color: #db744b;
}

.ph-category-feature--neocell .ph-category-feature__button {
	color: #a82395;
}

.ph-category-feature__products {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	transform-style: preserve-3d;
}

.ph-category-art,
.ph-category-product {
	position: absolute;
	z-index: 2;
	display: block;
	max-width: none;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .16));
	will-change: transform;
}

.ph-category-feature--now .ph-category-art {
	left: -4%;
	bottom: -7%;
	width: 108%;
}

.ph-category-feature--mason .ph-category-art {
	left: 50%;
	transform: translateX(-50%);
	bottom: -4%;
	width: 80%;
}

.ph-category-feature--neocell .ph-category-art {
	right: 8%;
	bottom: 16px;
	width: 54%;
}

.ph-category-feature--gold .ph-category-art {
	right: -8%;
	bottom: 0;
	width: 86%;
}

.ph-category-showcase__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 210px;
	min-height: 46px;
	margin: 20px auto 0;
	padding: 0 28px;
	border-radius: 7px;
	background: linear-gradient(135deg, #66a800, #a7dc45);
	color: #fff;
	font-size: .96rem;
	font-weight: 750;
	text-transform: uppercase;
	box-shadow: 0 10px 24px rgba(102, 168, 0, .18);
}

.ph-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	width: var(--ph-wrap);
	margin: 0 auto;
}

.ph-brand-showcase,
.ph-testimonials {
	padding: 86px 0;
	background: #f4f4f4;
	overflow: hidden;
}

.ph-brand-showcase {
	background:
		radial-gradient(circle at 12% 12%, rgba(168, 230, 207, .26), transparent 30%),
		linear-gradient(180deg, #f4f4f4, #fff);
}

.ph-brand-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	width: var(--ph-wrap);
	margin: 0 auto;
	perspective: 1200px;
	animation: ph-scroll-brands-in 0.9s ease-out 0.2s both;
}

@keyframes ph-scroll-brands-in {
	from {
		opacity: 0;
		transform: translateY(40px) rotateX(20deg);
	}
	to {
		opacity: 1;
		transform: translateY(0) rotateX(0deg);
	}
}

.ph-brand-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex: 0 0 calc(14.28% - 14px); /* 7 per row on wide screens */
	min-width: 140px;
	max-width: 180px;
	min-height: 140px;
	padding: 20px 16px;
	border: 1px solid rgba(220, 238, 229, .92);
	border-radius: var(--ph-radius);
	background: rgba(255, 255, 255, .9);
	text-align: center;
	box-shadow: 0 8px 24px rgba(23, 35, 29, .06);
	transform-style: preserve-3d;
	overflow: hidden;
	text-decoration: none;
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
	animation: ph-scroll-tile 0.7s ease-out both;
}

.ph-brand-tile:nth-child(1) { animation-delay: 0.1s; }
.ph-brand-tile:nth-child(2) { animation-delay: 0.15s; }
.ph-brand-tile:nth-child(3) { animation-delay: 0.2s; }
.ph-brand-tile:nth-child(4) { animation-delay: 0.25s; }
.ph-brand-tile:nth-child(5) { animation-delay: 0.3s; }
.ph-brand-tile:nth-child(6) { animation-delay: 0.35s; }
.ph-brand-tile:nth-child(7) { animation-delay: 0.4s; }

@keyframes ph-scroll-tile {
	from {
		opacity: 0;
		transform: translateY(50px) rotateX(25deg) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) rotateX(0deg) scale(1);
	}
}

.ph-brand-tile--logo strong {
	font-size: .8rem;
	color: #555;
	font-weight: 600;
}

.ph-brand-tile__img {
	width: 100%;
	max-height: 64px;
	object-fit: contain;
	display: block;
	filter: grayscale(20%);
	transition: filter .25s ease, transform .25s ease;
}

.ph-brand-tile:hover .ph-brand-tile__img {
	filter: grayscale(0%);
	transform: scale(1.06);
}

.ph-brand-tile::after {
	content: "";
	position: absolute;
	left: -28%;
	right: -28%;
	bottom: -64px;
	height: 108px;
	border-radius: 50%;
	background: rgba(168, 230, 207, .28);
	transform: translateZ(-24px);
}

.ph-brand-tile:hover {
	border-color: rgba(62, 111, 91, .34);
	box-shadow: 0 22px 46px rgba(23, 35, 29, .12);
	transform: translateY(-5px) rotateX(2deg);
}

.ph-brand-tile__mark {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: linear-gradient(135deg, #e9fff5, #fff);
	color: #62a500;
	font-size: 1.2rem;
	font-weight: 900;
	box-shadow: inset 0 0 0 1px rgba(98, 165, 0, .12);
}

.ph-brand-tile strong,
.ph-brand-tile small {
	position: relative;
	z-index: 1;
}

.ph-brand-tile strong {
	color: #282828;
	font-size: .95rem;
	line-height: 1.2;
}

.ph-brand-tile small {
	color: var(--ph-muted);
	font-size: .84rem;
	font-weight: 700;
	text-transform: uppercase;
}

.ph-testimonials {
	background: linear-gradient(180deg, #fff, #f4f4f4);
}

.ph-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	width: var(--ph-wrap);
	margin: 0 auto;
}

.ph-testimonial-card {
	position: relative;
	display: grid;
	align-content: start;
	gap: 10px;
	min-height: 340px;
	padding: 58px 24px 26px;
	border: 1px solid rgba(220, 238, 229, .88);
	border-radius: var(--ph-radius);
	background: rgba(255, 255, 255, .94);
	text-align: center;
	box-shadow: 0 16px 38px rgba(23, 35, 29, .06);
	overflow: hidden;
}

.ph-testimonial-card::before {
	content: "";
	position: absolute;
	top: -58px;
	right: -46px;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	background: rgba(233, 255, 245, .96);
}

.ph-testimonial-card__quote {
	position: absolute;
	top: 10px;
	right: 22px;
	z-index: 1;
	color: #62a500;
	font-family: Georgia, serif;
	font-size: 3rem;
	line-height: 1;
}

.ph-testimonial-card h3 {
	margin: 0;
	color: #111;
	font-size: 1.05rem;
	line-height: 1.25;
}

.ph-testimonial-card p {
	margin: 0;
	color: #737b75;
	font-size: .96rem;
	line-height: 1.62;
}

.ph-testimonial-card__role {
	color: #909892;
	font-weight: 700;
}

.ph-testimonial-card__stars {
	color: #f5b62f;
	font-size: .95rem;
	letter-spacing: 2px;
}

.ph-category-tile {
	position: relative;
	min-height: 168px;
	padding: 22px;
	border: 1px solid rgba(220, 238, 229, .9);
	border-radius: var(--ph-radius);
	background: linear-gradient(145deg, #fff, var(--ph-mint-soft));
	overflow: hidden;
	transition: transform .24s ease, border-color .24s ease;
}

.ph-category-tile::after {
	content: "";
	position: absolute;
	right: 18px;
	bottom: 18px;
	width: 42px;
	height: 42px;
	border: solid rgba(62, 111, 91, .22);
	border-width: 0 2px 2px 0;
	border-radius: 0 0 34px 0;
	transform: rotate(32deg);
}

.ph-category-tile:hover {
	border-color: rgba(62, 111, 91, .34);
	transform: translateY(-3px);
}

.ph-category-tile strong {
	display: block;
	max-width: 170px;
	font-size: 1rem;
	line-height: 1.25;
}

.ph-category-tile span {
	display: block;
	margin-top: 8px;
	color: var(--ph-muted);
	font-size: .9rem;
}

.ph-checkout-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: var(--ph-wrap);
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.ph-checkout-steps li {
	position: relative;
	padding: 26px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	background: var(--ph-white);
	box-shadow: 0 14px 36px rgba(23, 35, 29, .05);
}

.ph-checkout-steps b {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--ph-mint);
	color: var(--ph-ink);
}

.ph-checkout-steps h3 {
	margin: 0 0 8px;
	font-size: 1rem;
}

.ph-checkout-steps p {
	margin: 0;
	color: var(--ph-muted);
}

.ph-page,
.woocommerce-page .site-main,
.woocommerce .site-main {
	width: var(--ph-wrap);
	margin: 0 auto;
	padding: 58px 0 88px;
}

.ph-page>.entry-content {
	max-width: 920px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin-bottom: 22px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .quantity .qty,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.wp-block-search__input {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius-sm);
	background: #fff;
	color: var(--ph-ink);
	padding: 10px 13px;
	box-shadow: none;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce .quantity .qty:focus,
.woocommerce-cart table.cart td.actions .coupon .input-text:focus,
.wp-block-search__input:focus {
	outline: 2px solid rgba(168, 230, 207, .65);
	border-color: var(--ph-sage);
}

.woocommerce div.product {
	display: grid;
	grid-template-areas: "images summary";
	grid-template-columns: 1fr minmax(320px, 460px);
	gap: 64px;
	margin-top: 40px;
	align-items: start;
}

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

/* WooCommerce Flexslider gallery — main image */
.woocommerce-product-gallery {
	position: relative !important;
}

.woocommerce-product-gallery .flex-viewport {
	border: 1px solid var(--ph-line) !important;
	border-radius: var(--ph-radius) !important;
	background: linear-gradient(180deg, #f7fff9, #fff) !important;
	overflow: hidden !important;
	margin-bottom: 8px !important;
}

.woocommerce-product-gallery .flex-viewport img {
	width: 100% !important;
	height: auto !important;
	display: block !important;
	padding: 12px !important;
	object-fit: contain !important;
}

/* Thumbnail strip */
.woocommerce-product-gallery .flex-control-thumbs {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 6px !important;
	padding: 0 !important;
	margin: 0 !important;
	list-style: none !important;
}

.woocommerce-product-gallery .flex-control-thumbs li {
	flex: 0 0 calc(25% - 5px) !important;
	margin: 0 !important;
}

.woocommerce-product-gallery .flex-control-thumbs img {
	width: 100% !important;
	height: auto !important;
	border: 2px solid var(--ph-line) !important;
	border-radius: 6px !important;
	cursor: pointer !important;
	opacity: .7 !important;
	transition: opacity .15s ease, border-color .15s ease !important;
	object-fit: contain !important;
	background: #fafcfb !important;
}

.woocommerce-product-gallery .flex-control-thumbs img:hover,
.woocommerce-product-gallery .flex-control-thumbs img.flex-active {
	opacity: 1 !important;
	border-color: var(--ph-sage) !important;
}

/* Fallback: when JS hasn't initialized — stack gracefully */
.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) {
	display: none;
}

.woocommerce-product-gallery.flex-initialized .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) {
	display: block;
}

/* Hide stray full-size images that aren't inside flex-viewport */
.woocommerce div.product div.images img {
	height: auto;
}

.woocommerce div.product div.summary {
	grid-area: summary;
	display: flex;
	flex-direction: column;
	margin: 0;
}

.woocommerce div.product .product_title {
	margin: 0 0 16px;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	line-height: 1.1;
	font-weight: 900;
	letter-spacing: -0.02em;
	color: var(--ph-ink);
}

.woocommerce div.product .woocommerce-product-details__short-description {
	margin-bottom: 24px;
	color: var(--ph-muted);
	font-size: 1.1rem;
	line-height: 1.6;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--ph-sage);
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 24px;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
	text-decoration: none;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	font-size: 1.2rem;
	opacity: 0.5;
	margin-right: 8px;
}

.woocommerce div.product .stock {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}

.woocommerce div.product .stock.in-stock {
	color: #4fa77e;
}

.woocommerce div.product form.cart {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-top: 10px;
	padding: 30px 0;
	border-top: 1px solid var(--ph-line);
	border-bottom: 1px solid var(--ph-line);
}

.woocommerce div.product .quantity .qty {
	width: 70px;
	height: 54px;
	text-align: center;
	font-weight: 700;
	background: var(--ph-mint-soft);
	border-color: transparent;
}

.woocommerce div.product form.cart .button {
	height: 54px;
	flex: 1;
	font-size: 1rem;
	font-weight: 800;
	border-radius: var(--ph-radius-sm);
	background: var(--ph-sage);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.woocommerce div.product form.cart .button:hover {
	background: var(--ph-ink);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(19, 36, 28, 0.15);
}

/* Trust Badges */
.ph-trust-badges {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-top: 30px;
}

.ph-trust-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 15px;
	background: #fbfdfc;
	border-radius: 12px;
	border: 1px solid var(--ph-line);
}

.ph-trust-badge svg {
	color: var(--ph-sage);
}

.ph-trust-badge span {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--ph-muted);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/* Tabs & Data */
.woocommerce-tabs {
	margin-top: 80px;
}

.woocommerce-tabs ul.tabs {
	display: flex;
	gap: 40px;
	padding: 0;
	margin: 0 0 30px;
	list-style: none;
	border-bottom: 1px solid var(--ph-line);
}

.woocommerce-tabs ul.tabs li {
	position: relative;
	padding: 15px 0;
}

.woocommerce-tabs ul.tabs li a {
	font-weight: 800;
	color: var(--ph-muted);
	text-decoration: none;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.woocommerce-tabs ul.tabs li.active a {
	color: var(--ph-sage);
}

.woocommerce-tabs ul.tabs li.active::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--ph-sage);
	border-radius: 3px 3px 0 0;
}

.woocommerce-Tabs-panel {
	color: var(--ph-muted);
	line-height: 1.7;
	font-size: 1.05rem;
}

/* cart_totals & checkout button — full rules are in the Cart Redesign section below */

/* Cart Suggestions */
.ph-cart-suggestions {
	margin-top: 80px;
	padding-top: 48px;
	border-top: 1px solid var(--ph-line);
	width: 100%;
}

.ph-cart-suggestions .ph-section__head {
	margin-bottom: 32px;
}

.ph-cart-suggestions h2 {
	margin-bottom: 32px;
}

/* Override the 5-column default — cart suggestions need fewer, larger cards */
.ph-cart-suggestions .ph-product-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 16px !important;
	width: 100% !important;
}

/* Compact card adjustments so cards look good at cart page width */
.ph-cart-suggestions .ph-product-card__body {
	padding: 10px 12px 12px;
}

.ph-cart-suggestions .ph-product-card__name {
	font-size: .78rem;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.ph-cart-suggestions .ph-product-card__promo {
	display: none;
}

.ph-cart-suggestions .ph-card-add,
.ph-cart-suggestions .button {
	font-size: .72rem !important;
	padding-inline: 10px !important;
	white-space: nowrap;
}

.related.products {
	margin-top: 56px;
	padding-top: 40px;
	border-top: 1px solid var(--ph-line);
}

.related.products>h2 {
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
	font-weight: 800;
	margin-bottom: 20px;
	text-align: center;
	color: var(--ph-ink);
}

.related.products ul.products {
	display: grid !important;
	/* Use auto-fit so the grid adapts to the number of related items
	   and centers the final row instead of leaving empty cells */
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
	gap: 14px !important;
	width: 100% !important;
	justify-content: center;
}

/* Prevent button wrapping in narrow 5-column related cards */
.related.products .ph-card-add,
.related.products .button {
	font-size: .7rem !important;
	white-space: nowrap;
	padding-inline: 8px;
}

.related.products .ph-product-card__body {
	padding: 8px 10px 10px;
}

.related.products .ph-product-card__promo {
	display: none;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce table.shop_table {
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	background: var(--ph-white);
	box-shadow: 0 12px 36px rgba(23, 35, 29, .05);
}

.woocommerce #payment {
	background: #fff;
}

.woocommerce #payment ul.payment_methods {
	border-bottom-color: var(--ph-line);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	border-top-color: var(--ph-sage);
	border-radius: var(--ph-radius);
	background: var(--ph-mint-soft);
}

.ph-site-footer {
	padding: 60px 0 0;
	background: #f8f9f8;
	color: #444;
	border-top: 1px solid #e4ebe5;
}

.ph-footer-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
	gap: 32px;
	width: var(--ph-wrap);
	margin: 0 auto;
	padding-bottom: 48px;
}

.ph-footer-logo-link { display: inline-block; margin-bottom: 14px; }

.ph-footer-logo {
	max-width: 150px;
	height: auto;
	display: block;
}

.ph-footer-tagline {
	font-size: .88rem;
	color: #666;
	line-height: 1.7;
	margin: 0;
	max-width: 240px;
}

.ph-footer-col h3,
.ph-footer-social-heading {
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: #3a7c52;
	margin: 0 0 16px;
}

.ph-footer-col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ph-footer-col ul li {
	margin-bottom: 10px;
}

.ph-footer-col ul li a,
.ph-footer-contact-list a {
	font-size: .87rem;
	color: #555;
	text-decoration: none;
	transition: color .2s;
}

.ph-footer-col ul li a:hover,
.ph-footer-contact-list a:hover { color: #3a7c52; }

.ph-footer-contact-list {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.ph-footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: .87rem;
	color: #555;
}

.ph-footer-contact-list svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: #3a7c52;
}

.ph-footer-social-heading { margin-top: 4px; }

.ph-footer-social {
	display: flex;
	gap: 10px;
}

.ph-footer-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1.5px solid #d8e2da;
	color: #555;
	text-decoration: none;
	transition: background .2s, border-color .2s, color .2s;
}

.ph-footer-social__link:hover {
	background: #3a7c52;
	border-color: #3a7c52;
	color: #fff;
}

.ph-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	width: var(--ph-wrap);
	margin: 0 auto;
	padding: 18px 0;
	border-top: 1px solid #e0e8e2;
	color: #888;
	font-size: .82rem;
}

.ph-footer-bottom__links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.ph-footer-bottom__links a {
	color: #888;
	text-decoration: none;
	transition: color .2s;
}

.ph-footer-bottom__links a:hover { color: #3a7c52; }

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

	.ph-header-inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
		gap: 12px;
		padding-block: 10px;
	}

	.ph-header-search {
		grid-column: 1 / -1;
		width: 100%;
	}

	.ph-search-form {
		grid-template-columns: minmax(0, 1fr) auto;
		max-width: none;
	}

	.ph-search-category {
		grid-column: 1 / -1;
	}

	.ph-menu-toggle {
		display: inline-grid;
	}

	.ph-primary-nav {
		position: fixed;
		inset: 138px 0 auto;
		display: none;
		justify-self: stretch;
		padding: 18px;
		background: rgba(255, 255, 255, .96);
		border-bottom: 1px solid var(--ph-line);
		backdrop-filter: blur(18px);
	}

	.admin-bar .ph-primary-nav {
		inset-block-start: 184px;
	}

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

	.ph-menu {
		display: grid;
		gap: 6px;
		width: var(--ph-wrap);
		margin: 0 auto;
	}

	.ph-menu a {
		min-height: 46px;
	}

	.ph-hero {
		min-height: auto;
		padding-top: 34px;
	}

	.ph-hero__inner,
	.woocommerce div.product {
		grid-template-columns: 1fr;
	}

	.ph-hero__visual {
		min-height: 0;
		order: -1;
		padding: 16px 0 0;
	}

	.ph-hero-frame {
		transform: perspective(1400px) rotateY(-3deg) rotateX(1.5deg);
		width: min(100%, 560px);
		margin: 0 auto;
		filter: drop-shadow(0 26px 44px rgba(10, 40, 20, .26));
		cursor: default;
	}

	.ph-hero-product-img {
		animation-duration: 6.2s;
	}

	.ph-hero-badge--top {
		top: 6%;
		left: 4%;
		font-size: .68rem;
		padding: 6px 12px 6px 8px;
	}

	.ph-hero-badge--bottom {
		bottom: 8%;
		right: 4%;
		font-size: .68rem;
		padding: 6px 12px 6px 8px;
	}

	.ph-hero-glow--1 { filter: blur(24px); }
	.ph-hero-orbit { display: none; }

	.ph-hero__benefits {
		grid-template-columns: 1fr;
	}

	.ph-hero__trust {
		justify-content: flex-start;
	}

	.ph-hero__stats {
		max-width: none;
	}

	.ph-scroll-showcase {
		padding: 76px 0;
	}

	.ph-trust-band__inner {
		grid-template-columns: 1fr;
	}

	.ph-trust-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ph-authorized-now {
		padding: 72px 0 38px;
	}

	.ph-service-strip {
		padding-bottom: 58px;
	}

	.ph-service-strip__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px 28px;
		padding: 18px 26px;
	}

	.ph-service-item {
		justify-content: flex-start;
	}

	.ph-scroll-showcase__inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.ph-scroll-showcase__copy,
	.ph-scroll-showcase__stage {
		position: relative;
		top: auto;
	}

	.ph-scroll-showcase__copy {
		padding: 0;
	}

	.ph-scroll-showcase__stage {
		min-height: 640px;
	}

	.ph-showcase-stack {
		height: 640px;
	}

	.ph-showcase-card {
		grid-template-columns: 138px minmax(0, 1fr);
		width: min(560px, calc(100% - 42px));
		min-height: 158px;
	}

	.ph-showcase-card--1 {
		top: 18px;
		left: 42px;
	}

	.ph-showcase-card--2 {
		top: 228px;
		right: 0;
	}

	.ph-showcase-card--3 {
		top: 438px;
		left: 28px;
	}

	.ph-showcase-card__image {
		min-height: 126px;
	}

	.ph-showcase-card__image img {
		max-height: 126px;
	}

	.ph-category-showcase {
		padding: 74px 0 84px;
	}

	.ph-category-showcase__grid {
		grid-template-areas:
			"now gold"
			"mason gold"
			"neocell neocell";
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: 330px 210px 240px;
	}

	.ph-category-feature {
		padding: 24px;
	}

	.ph-category-feature--now .ph-category-product:nth-child(1) {
		width: 42%;
		bottom: 64px;
	}

	.ph-category-feature--now .ph-category-product:nth-child(2) {
		width: 58%;
	}

	.ph-category-feature--gold .ph-category-product:nth-child(1) {
		width: 72%;
	}

	.ph-category-feature--gold .ph-category-product:nth-child(2) {
		top: 118px;
		width: 58%;
	}

	.ph-category-feature--now .ph-category-art {
		left: -6%;
		bottom: -8%;
		width: 108%;
	}

	.ph-category-feature--mason .ph-category-art {
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		bottom: -4%;
		width: 78%;
	}

	.ph-category-feature--neocell .ph-category-art {
		right: 6%;
		bottom: 12px;
		width: 52%;
	}

	.ph-category-feature--gold .ph-category-art {
		right: -8%;
		left: auto;
		bottom: 0;
		width: 84%;
	}

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

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

	.ph-brand-tile {
		min-width: 120px;
		max-width: 160px;
		flex: 0 0 calc(25% - 12px);
	}

	.ph-checkout-steps {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	:root {
		--ph-wrap: min(100% - 22px, 1180px);
	}

	body {
		font-size: 13px;
	}

	.ph-header-inner {
		min-height: 66px;
	}

	.ph-brand {
		font-size: 1rem;
	}

	.ph-brand__leaf {
		width: 30px;
		height: 30px;
	}

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

	.ph-search-btn {
		width: 100%;
	}

	.ph-primary-nav {
		inset-block-start: 202px;
	}

	.admin-bar .ph-primary-nav {
		inset-block-start: 248px;
	}

	.ph-hero h1 {
		font-size: 1.9rem;
	}

	.ph-hero__content,
	.ph-hero__copy {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		overflow-wrap: anywhere;
	}

	.ph-hero__visual {
		min-height: 0;
		padding: 8px 0 0;
	}

	.ph-hero-frame {
		transform: none;
		width: min(100%, 390px);
		margin: 0 auto;
		filter: drop-shadow(0 16px 26px rgba(10, 40, 20, .22));
	}

	.ph-hero-frame::before {
		inset: 11% 8% -2%;
		filter: blur(12px);
	}

	.ph-hero-product-img {
		filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .16));
		animation-duration: 5s;
	}

	.ph-hero-badge {
		font-size: .62rem;
		padding: 5px 10px 5px 7px;
		gap: 5px;
	}

	.ph-hero-badge svg { width: 12px; height: 12px; }

	.ph-hero-badge--top {
		top: 5%;
		left: 2%;
	}

	.ph-hero-badge--bottom {
		bottom: 5%;
		right: 2%;
	}

	.ph-hero-bottle__badge {
		font-size: .62rem;
		padding: 4px 8px 4px 6px;
		right: -6px;
	}

	.ph-hero__stats {
		gap: 8px;
	}

	.ph-hero__stats span {
		padding: 10px 8px;
		font-size: .76rem;
	}

	.ph-hero__stats strong {
		font-size: .94rem;
	}

	.ph-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.ph-product-stage img {
		max-height: 260px;
	}

	.ph-depth-card {
		display: none;
	}

	.ph-scroll-showcase__stage {
		min-height: 560px;
	}

	.ph-trust-band {
		padding: 58px 0 34px;
	}

	.ph-trust-band__inner {
		gap: 28px;
	}

	.ph-trust-band__copy {
		padding: 20px 20px;
	}

	.ph-trust-stats {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.ph-trust-stat {
		min-height: 118px;
	}

	.ph-authorized-now {
		padding: 58px 0 30px;
	}

	.ph-authorized-now__copy {
		max-width: none;
	}

	.ph-authorized-now h2 {
		font-size: 1.6rem;
	}

	.ph-hero .ph-hero__title--authorized {
		font-size: 1.4rem;
	}

	.ph-hero__subtitle {
		font-size: 1rem;
	}

	.ph-hero .ph-service-strip--hero {
		margin-top: 16px;
	}

	.ph-authorized-now p {
		font-size: 1rem;
	}

	.ph-service-strip {
		padding: 16px 0 46px;
	}

	.ph-service-strip__inner {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 16px 18px;
	}

	.ph-service-item {
		gap: 16px;
	}

	.ph-service-item__icon {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
	}

	.ph-service-item strong {
		font-size: .92rem;
	}

	.ph-showcase-stack {
		height: 560px;
	}

	.ph-showcase-card {
		grid-template-columns: 100px minmax(0, 1fr);
		gap: 12px;
		width: calc(100% - 24px);
		min-height: 150px;
		padding: 12px;
	}

	.ph-showcase-card--1 {
		top: 12px;
		left: 24px;
	}

	.ph-showcase-card--2 {
		top: 202px;
		right: 0;
	}

	.ph-showcase-card--3 {
		top: 392px;
		left: 24px;
	}

	.ph-showcase-card__image {
		min-height: 100px;
	}

	.ph-showcase-card__image img {
		max-height: 100px;
	}

	.ph-showcase-card__body h3 {
		font-size: .92rem;
	}

	.ph-showcase-meter {
		top: 24px;
		bottom: 24px;
		left: 0;
		width: 14px;
	}

	.ph-showcase-track {
		inset: 18px 6px 18px 24px;
		border-radius: 22px;
	}

	.ph-category-showcase {
		padding: 58px 0 66px;
	}

	.ph-category-showcase__head {
		text-align: left;
	}

	.ph-category-showcase__grid {
		grid-template-areas:
			"now"
			"mason"
			"neocell"
			"gold";
		grid-template-columns: 1fr;
		grid-template-rows: 410px 232px 232px 410px;
		gap: 14px;
		width: var(--ph-wrap);
	}

	.ph-category-feature {
		padding: 22px;
	}

	.ph-category-feature__label {
		max-width: 260px;
		font-size: 1.56rem;
	}

	.ph-category-feature__button {
		min-width: 116px;
		margin-top: 18px;
	}

	.ph-category-feature--mason .ph-category-feature__label {
		margin-left: 0;
		text-align: left;
	}

	.ph-category-feature--mason .ph-category-feature__button {
		margin-left: 0;
	}

	.ph-category-feature--now .ph-category-product:nth-child(1) {
		left: 5%;
		bottom: 88px;
		width: 45%;
	}

	.ph-category-feature--now .ph-category-product:nth-child(2) {
		right: -5%;
		bottom: -24px;
		width: 64%;
	}

	.ph-category-feature--mason .ph-category-product:nth-child(1) {
		left: 34%;
		bottom: 20px;
		width: 26%;
	}

	.ph-category-feature--mason .ph-category-product:nth-child(2) {
		left: 47%;
		bottom: 8px;
		width: 31%;
	}

	.ph-category-feature--mason .ph-category-product:nth-child(3) {
		left: 70%;
		bottom: 22px;
		width: 24%;
	}

	.ph-category-feature--neocell .ph-category-product:nth-child(1) {
		right: 38%;
		width: 20%;
	}

	.ph-category-feature--neocell .ph-category-product:nth-child(2) {
		right: 18%;
		width: 26%;
	}

	.ph-category-feature--neocell .ph-category-product:nth-child(3) {
		right: 3%;
		width: 20%;
	}

	.ph-category-feature--gold .ph-category-product:nth-child(1) {
		left: 2%;
		bottom: -36px;
		width: 68%;
	}

	.ph-category-feature--gold .ph-category-product:nth-child(2) {
		right: -8%;
		top: 132px;
		width: 58%;
	}

	.ph-category-feature--now .ph-category-art {
		left: -6%;
		bottom: -7%;
		width: 108%;
	}

	.ph-category-feature--mason .ph-category-art {
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		bottom: -4%;
		width: 78%;
	}

	.ph-category-feature--neocell .ph-category-art {
		right: 4%;
		bottom: 8px;
		width: 56%;
	}

	.ph-category-feature--gold .ph-category-art {
		right: -8%;
		left: auto;
		bottom: 0;
		width: 82%;
	}

	.ph-header-inner {
		grid-template-columns: auto 1fr auto;
		min-height: 72px;
		gap: 16px;
	}

	.ph-brand span {
		display: none;
	}

	.ph-header-search {
		max-width: none;
	}

	.ph-search-category {
		display: none;
	}

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

	.ph-primary-nav {
		display: none;
		/* Mobile menu handles this */
	}

	.ph-menu-toggle {
		display: inline-grid;
	}
}

@media (max-width: 640px) {
	.ph-header-inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
		padding-top: 10px;
		padding-bottom: 10px;
		min-height: auto;
	}

	.ph-header-search {
		grid-column: 1 / -1;
		order: 3;
		margin-top: 8px;
	}

	.ph-brand__leaf {
		width: 32px;
		height: 32px;
	}

	.ph-search-btn {
		min-width: 44px;
		padding: 0;
	}
}

@media (max-width: 980px) {
	.ph-cart-drawer__panel {
		width: 100vw;
		border-left: 0;
	}

	.ph-cart-item {
		grid-template-columns: 62px minmax(0, 1fr);
	}

	.ph-cart-item__tail {
		grid-column: 2;
		grid-template-columns: 1fr auto;
		justify-items: start;
		text-align: left;
	}

	.ph-cart-suggestion {
		grid-template-columns: 52px minmax(0, 1fr);
	}

	.ph-cart-suggestion__action {
		grid-column: 1 / -1;
		width: 100%;
	}

	.ph-cart-drawer__actions {
		grid-template-columns: 1fr;
	}

	.ph-section {
		padding: 58px 0;
	}

	.ph-section__head {
		display: grid;
		gap: 12px;
	}

	.ph-section__head.ph-section__head--center {
		justify-items: center;
		text-align: center;
	}

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

	.ph-brand-showcase,
	.ph-testimonials {
		padding: 58px 0;
	}

	.ph-testimonial-grid {
		grid-template-columns: 1fr;
	}

	.ph-brand-tile {
		flex: 0 0 calc(33.33% - 12px);
		min-width: 100px;
		min-height: 120px;
	}

	.ph-testimonial-card {
		min-height: auto;
	}

	.ph-scroll-bottle {
		right: 10px;
		width: 14px;
		height: 92px;
	}

	.ph-page,
	.woocommerce-page .site-main,
	.woocommerce .site-main {
		padding-top: 34px;
	}
}

@media (max-width: 640px) {

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

/* ─── Shop Layout ─── */
#ph-shop-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 32px;
	width: var(--ph-wrap);
	margin: 0 auto;
	padding: 0 0 80px;
	align-items: start;
}

.ph-shop-main {
	min-width: 0;
}

/* ─── Sidebar ─── */
.ph-shop-sidebar {
	position: sticky;
	top: 100px;
	align-self: start;
	padding: 22px 18px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	background: var(--ph-white);
	box-shadow: 0 10px 28px rgba(23, 35, 29, .05);
}

.ph-sidebar-close {
	display: none;
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--ph-line);
	border-radius: 50%;
	background: var(--ph-white);
	color: var(--ph-ink);
	cursor: pointer;
	padding: 0;
}

.ph-sidebar-section {
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--ph-line);
}

.ph-sidebar-section:last-of-type {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.ph-sidebar-section h3 {
	margin: 0 0 12px;
	font-size: .82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--ph-ink);
}

.ph-sidebar-search {
	display: flex;
	gap: 6px;
}

.ph-sidebar-search input {
	flex: 1;
	min-height: 40px;
	padding: 8px 12px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius-sm);
	background: #fff;
	color: var(--ph-ink);
	font-size: .85rem;
}

.ph-sidebar-search input:focus {
	outline: 2px solid rgba(168, 230, 207, .65);
	border-color: var(--ph-sage);
}

.ph-sidebar-search button {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	display: inline-grid;
	place-items: center;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius-sm);
	background: var(--ph-mint-soft);
	color: var(--ph-sage);
	cursor: pointer;
	padding: 0;
	transition: background .2s ease, border-color .2s ease;
}

.ph-sidebar-search button:hover {
	background: var(--ph-sage);
	border-color: var(--ph-sage);
	color: #fff;
}

.ph-sidebar-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ph-sidebar-list li {
	margin: 4px 0;
}

.ph-sidebar-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 10px;
	border-radius: var(--ph-radius-sm);
	color: var(--ph-muted);
	font-size: .85rem;
	font-weight: 500;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.ph-sidebar-list a:hover,
.ph-sidebar-list a.is-active {
	background: rgba(168, 230, 207, .18);
	color: var(--ph-sage);
	font-weight: 700;
}

.ph-sidebar-count {
	display: inline-block;
	min-width: 22px;
	padding: 2px 7px;
	border-radius: 999px;
	background: var(--ph-mint-soft);
	color: var(--ph-sage);
	font-size: .72rem;
	font-weight: 800;
	text-align: center;
	line-height: 1;
}

.ph-sidebar-reset {
	display: block;
	width: 100%;
	padding: 10px;
	border: 1px dashed var(--ph-sage);
	border-radius: var(--ph-radius-sm);
	background: transparent;
	color: var(--ph-sage);
	font-size: .82rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transition: background .2s ease;
}

.ph-sidebar-reset:hover {
	background: rgba(168, 230, 207, .14);
}

/* ─── Shop Notices ─── */
.ph-shop-notices {
	margin-bottom: 14px;
}

.ph-shop-notices .woocommerce-notices-wrapper {
	margin-bottom: 0;
}

/* ─── Shop Toolbar ─── */
.ph-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 22px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--ph-line);
	flex-wrap: wrap;
}

.ph-filter-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius-sm);
	background: var(--ph-white);
	color: var(--ph-ink);
	font-size: .85rem;
	font-weight: 600;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease;
}

.ph-filter-toggle:hover {
	border-color: var(--ph-sage);
	background: rgba(168, 230, 207, .1);
}

.ph-shop-toolbar .woocommerce-result-count {
	margin: 0;
	font-size: .85rem;
	color: var(--ph-muted);
}

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

.ph-shop-toolbar .woocommerce-ordering select {
	min-height: 40px;
	padding: 8px 32px 8px 12px;
	font-size: .85rem;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%233e6f5b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	appearance: none;
}

/* ─── Loading ─── */
.ph-shop-loading {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 60px 0;
	color: var(--ph-muted);
	font-size: .9rem;
}

.ph-shop-loading.is-visible {
	display: flex;
}

.ph-loading-spinner {
	position: relative;
	width: 48px;
	height: 48px;
}

.ph-loading-spinner div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 3px solid transparent;
	border-top-color: var(--ph-sage);
	border-radius: 50%;
	animation: ph-spin 1.2s cubic-bezier(.5, 0, .5, 1) infinite;
}

.ph-loading-spinner div:nth-child(1) {
	animation-delay: -.45s;
}

.ph-loading-spinner div:nth-child(2) {
	animation-delay: -.3s;
}

.ph-loading-spinner div:nth-child(3) {
	animation-delay: -.15s;
}

@keyframes ph-spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* ─── Smooth Product Stagger ─── */
.ph-shop-products .ph-product-grid li.product,
.ph-shop-products .ph-product-grid .ph-product-card {
	opacity: 0;
	transform: translateY(18px);
	animation: ph-fade-up .55s ease forwards;
}

.ph-shop-products .ph-product-grid li.product:nth-child(1) {
	animation-delay: .04s;
}

.ph-shop-products .ph-product-grid li.product:nth-child(2) {
	animation-delay: .08s;
}

.ph-shop-products .ph-product-grid li.product:nth-child(3) {
	animation-delay: .12s;
}

.ph-shop-products .ph-product-grid li.product:nth-child(4) {
	animation-delay: .16s;
}

.ph-shop-products .ph-product-grid li.product:nth-child(5) {
	animation-delay: .20s;
}

.ph-shop-products .ph-product-grid li.product:nth-child(6) {
	animation-delay: .24s;
}

.ph-shop-products .ph-product-grid li.product:nth-child(7) {
	animation-delay: .28s;
}

.ph-shop-products .ph-product-grid li.product:nth-child(8) {
	animation-delay: .32s;
}

.ph-shop-products .ph-product-grid li.product:nth-child(9) {
	animation-delay: .36s;
}

.ph-shop-products .ph-product-grid li.product:nth-child(10) {
	animation-delay: .40s;
}

.ph-shop-products .ph-product-grid li.product:nth-child(11) {
	animation-delay: .44s;
}

.ph-shop-products .ph-product-grid li.product:nth-child(12) {
	animation-delay: .48s;
}

@keyframes ph-fade-up {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ─── Pagination ─── */
.ph-pagination {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}

.ph-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ph-pagination li {
	display: inline-flex;
}

.ph-pagination a,
.ph-pagination span.ph-page-number.current {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 42px;
	min-height: 42px;
	justify-content: center;
	padding: 6px 14px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius-sm);
	background: var(--ph-white);
	color: var(--ph-ink);
	font-size: .85rem;
	font-weight: 600;
	text-decoration: none;
	transition: all .25s cubic-bezier(.4, 0, .2, 1);
}

.ph-pagination a:hover {
	border-color: var(--ph-sage);
	background: rgba(168, 230, 207, .12);
	color: var(--ph-sage);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(168, 230, 207, .15);
}

.ph-pagination span.ph-page-number.current {
	border-color: var(--ph-sage);
	background: var(--ph-sage);
	color: #fff;
	font-weight: 800;
	box-shadow: 0 4px 12px rgba(62, 111, 91, .2);
}

.ph-pagination a.ph-page-number.prev svg,
.ph-pagination a.ph-page-number.next svg {
	flex-shrink: 0;
	transition: transform .2s ease;
}

.ph-pagination a.ph-page-number.prev:hover svg {
	transform: translateX(-2px);
}

.ph-pagination a.ph-page-number.next:hover svg {
	transform: translateX(2px);
}

.ph-pagination .dots {
	padding: 6px 4px;
	color: var(--ph-muted);
	font-weight: 700;
}

/* Pagination Mobile Optimization */
@media (max-width: 640px) {
	.ph-pagination {
		margin-top: 32px;
	}

	.ph-pagination ul {
		gap: 6px;
	}

	.ph-pagination a span {
		display: none; /* Hide Prev/Next text */
	}

	.ph-pagination a,
	.ph-pagination span.ph-page-number.current {
		min-width: 38px;
		min-height: 38px;
		padding: 0;
		font-size: .8rem;
	}

	.ph-pagination a.ph-page-number.prev,
	.ph-pagination a.ph-page-number.next {
		background: var(--ph-white);
	}
}

/* ─── Shop Grid Columns ─── */
#ph-shop-products .ph-product-grid,
#ph-shop-products .woocommerce ul.products {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	width: 100% !important;
	margin: 0 !important;
}

@media (max-width: 1200px) {

	#ph-shop-products .ph-product-grid,
	#ph-shop-products .woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

/* ─── Shop Responsive ─── */
@media (max-width: 980px) {
	#ph-shop-layout {
		grid-template-columns: 1fr;
		padding-top: 28px;
	}

	.ph-shop-sidebar {
		position: fixed;
		inset: 0 auto 0 0;
		z-index: 1100 !important;
		width: 300px;
		max-width: 85vw;
		border-radius: 0;
		border: 0;
		border-right: 1px solid var(--ph-line);
		transform: translateX(-110%);
		transition: transform .35s cubic-bezier(.4, 0, .2, 1);
		overflow-y: auto;
		height: 100vh;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-y;
		overscroll-behavior: contain;
		box-shadow: 10px 0 40px rgba(23, 35, 29, .1);
	}

	.ph-shop-sidebar.is-open {
		transform: translateX(0);
	}

	.ph-sidebar-close {
		display: inline-grid;
	}

	.ph-filter-toggle {
		display: inline-flex;
	}

	.ph-shop-overlay {
		position: fixed;
		inset: 0;
		z-index: 1050 !important;
		background: rgba(23, 35, 29, .35);
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s ease, visibility .3s ease;
	}

	.ph-shop-overlay.is-visible {
		opacity: 1;
		visibility: visible;
	}

	.ph-shop-toolbar .woocommerce-ordering {
		display: none;
	}

	#ph-shop-products .ph-product-grid,
	#ph-shop-products .woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 640px) {
	#ph-shop-layout {
		padding-top: 18px;
		padding-bottom: 48px;
	}

	.ph-shop-toolbar {
		gap: 10px;
	}

	.ph-shop-toolbar .woocommerce-result-count {
		width: 100%;
		order: 2;
		text-align: center;
	}

	#ph-shop-products .ph-product-grid,
	#ph-shop-products .woocommerce ul.products {
		grid-template-columns: 1fr !important;
	}
}

/* ─── No products ─── */
.ph-no-products {
	text-align: center;
	padding: 60px 20px;
}

.ph-no-products h3 {
	margin: 0 0 8px;
	font-size: 1.2rem;
}

.ph-no-products p {
	margin: 0 0 20px;
	color: var(--ph-muted);
	font-size: .9rem;
}

.ph-no-products a {
	display: inline-block;
	padding: 10px 24px;
	border-radius: var(--ph-radius-sm);
	background: var(--ph-sage);
	color: #fff;
	font-size: .9rem;
	font-weight: 700;
	text-decoration: none;
	transition: background .2s ease, transform .2s ease;
}

.ph-no-products a:hover {
	background: var(--ph-forest);
	transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {

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

/* ═══════════════════════════════════════════
   SINGLE PRODUCT — polished tabs + animations
   ═══════════════════════════════════════════ */

/* Entry animation initial states (GSAP sets these via JS; CSS provides fallback) */
.woocommerce div.product div.images,
.woocommerce div.product div.summary,
.woocommerce-tabs,
.related.products {
	opacity: 1;
}

/* Tabs — full redesign */
.woocommerce-tabs.wc-tabs-wrapper {
	margin-top: 56px;
	border-top: 1px solid var(--ph-line);
	padding-top: 0;
}

.woocommerce-tabs ul.wc-tabs,
.woocommerce-tabs ul.tabs {
	display: flex;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
	border-bottom: 2px solid var(--ph-line);
	background: transparent;
}

.woocommerce-tabs ul.wc-tabs::before,
.woocommerce-tabs ul.wc-tabs::after,
.woocommerce-tabs ul.tabs::before,
.woocommerce-tabs ul.tabs::after {
	display: none;
}

.woocommerce-tabs ul.wc-tabs li,
.woocommerce-tabs ul.tabs li {
	position: relative;
	margin: 0;
	border: none !important;
	background: transparent !important;
	border-radius: 0 !important;
}

.woocommerce-tabs ul.wc-tabs li a,
.woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 14px 22px;
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--ph-muted);
	border: none;
	background: transparent;
	transition: color .2s ease;
}

.woocommerce-tabs ul.wc-tabs li.active a,
.woocommerce-tabs ul.tabs li.active a {
	color: var(--ph-sage);
}

.woocommerce-tabs ul.wc-tabs li.active::after,
.woocommerce-tabs ul.tabs li.active::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--ph-sage);
	border-radius: 2px 2px 0 0;
}

.woocommerce-tabs .panel {
	padding: 28px 0;
	border: none;
	background: transparent;
}

.woocommerce-tabs .panel h2:first-child {
	display: none;
	/* hide duplicate "Description" heading inside tab */
}

.woocommerce-tabs .panel p,
.woocommerce-tabs .panel li {
	color: var(--ph-muted);
	font-size: .86rem;
	line-height: 1.7;
}

.woocommerce-tabs .panel h3,
.woocommerce-tabs .panel h4 {
	font-size: .9rem;
	font-weight: 700;
	color: var(--ph-ink);
	margin: 18px 0 6px;
}

.woocommerce-tabs .panel ul {
	padding-left: 18px;
}

.woocommerce-tabs .panel ul li::marker {
	color: var(--ph-sage);
}

/* Reviews tab */
#reviews #comments ol.commentlist li {
	padding: 16px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	margin-bottom: 12px;
}

#reviews #review_form_wrapper h3,
#reviews #comments h2 {
	font-size: .95rem;
	font-weight: 700;
	margin-bottom: 14px;
}

/* Single product title size fix (was too large with 14px base) */
.woocommerce div.product .product_title {
	font-size: clamp(1.3rem, 2.2vw, 1.8rem);
	margin-bottom: 10px;
}

/* Single product price fix */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 1.4rem;
	margin-bottom: 16px;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	font-size: .95rem;
}

/* Responsive: related 5-col → 3-col → 2-col */
@media (max-width: 900px) {
	.related.products ul.products {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 600px) {
	.related.products ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.woocommerce-tabs ul.wc-tabs li a,
	.woocommerce-tabs ul.tabs li a {
		padding: 12px 14px;
		font-size: .74rem;
	}
}


/* ═══════════════════════════════════════════════
   CART PAGE — Elementor Cart + Theme Override
   ═══════════════════════════════════════════════ */

/* ── Page wrapper ── */
.woocommerce-cart .ph-page { padding-top: 36px; }

.woocommerce-cart h1.entry-title {
	font-size: clamp(1.3rem, 2vw, 1.7rem);
	font-weight: 800;
	margin-bottom: 22px;
}

/* ── Elementor cart container: cart items LEFT, totals RIGHT ── */
.e-cart__container {
	display: flex !important;
	gap: 24px !important;
	align-items: flex-start !important;
	flex-wrap: nowrap !important;
}

.e-cart__column-start {
	flex: 1 1 0 !important;
	min-width: 0 !important;
	width: auto !important;
	float: none !important;
}

.e-cart__column-end {
	flex: 0 0 360px !important;
	width: 360px !important;
	min-width: 0 !important;
	float: none !important;
}

/* Cart totals box in right column */
.e-cart__column-inner.e-sticky-right-column {
	position: sticky !important;
	top: 100px !important;
}

.e-cart-totals.e-cart-section,
.woocommerce-cart .cart-collaterals .cart_totals {
	float: none !important;
	width: 100% !important;
	padding: 20px !important;
	border: 1px solid var(--ph-line) !important;
	border-radius: var(--ph-radius) !important;
	background: var(--ph-white) !important;
	box-shadow: 0 10px 36px rgba(23, 35, 29, .08) !important;
}

/* Totals heading */
.woocommerce-cart .cart_totals h2 {
	font-size: .72rem !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: .06em !important;
	color: var(--ph-muted) !important;
	margin: 0 0 14px !important;
	padding-bottom: 12px !important;
	border-bottom: 1px solid var(--ph-line) !important;
}

/* Totals table */
.woocommerce-cart .cart_totals table.shop_table {
	width: 100% !important;
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	border-collapse: collapse !important;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
	padding: 9px 0 !important;
	font-size: .8rem !important;
	border: none !important;
	border-bottom: 1px solid var(--ph-line) !important;
	vertical-align: top !important;
}

.woocommerce-cart .cart_totals table.shop_table th {
	font-weight: 700 !important;
	color: var(--ph-muted) !important;
	width: 42% !important;
	white-space: nowrap !important;
}

.woocommerce-cart .cart_totals table.shop_table td {
	font-weight: 600 !important;
	color: var(--ph-ink) !important;
	text-align: right !important;
}

.woocommerce-cart .cart_totals .shipping td {
	font-size: .75rem !important;
	color: var(--ph-muted) !important;
	text-align: right !important;
}

.woocommerce-cart .cart_totals .shipping td p {
	margin: 0 !important;
	font-size: .72rem !important;
	line-height: 1.4 !important;
}

.woocommerce-cart .cart_totals .shipping td a {
	display: inline-block !important;
	margin-top: 4px !important;
	font-size: .72rem !important;
	color: var(--ph-sage) !important;
	text-decoration: underline !important;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
	padding-top: 14px !important;
	border-bottom: none !important;
	font-size: .92rem !important;
	font-weight: 800 !important;
}

.woocommerce-cart .cart_totals .order-total td {
	color: var(--ph-sage) !important;
	font-size: 1.1rem !important;
}

/* Proceed to checkout button */
.wc-proceed-to-checkout { margin-top: 14px !important; }

.wc-proceed-to-checkout .checkout-button {
	display: block !important;
	width: 100% !important;
	text-align: center !important;
	background: var(--ph-sage) !important;
	color: #fff !important;
	font-weight: 700 !important;
	font-size: .85rem !important;
	letter-spacing: .05em !important;
	text-transform: uppercase !important;
	padding: 14px 20px !important;
	border-radius: var(--ph-radius) !important;
	border: none !important;
}

.wc-proceed-to-checkout .checkout-button:hover {
	background: #2f5945 !important;
	color: #fff !important;
}

/* ── Cart table ── */
.woocommerce-cart table.cart {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 0;
}

.woocommerce-cart table.cart thead th {
	font-size: .7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--ph-muted);
	padding: 0 12px 14px;
	border-bottom: 2px solid var(--ph-line);
}

.woocommerce-cart table.cart td {
	padding: 14px 12px;
	vertical-align: middle;
	border-bottom: 1px solid var(--ph-line);
	font-size: .86rem;
}

.woocommerce-cart table.cart .product-thumbnail img {
	width: 64px;
	height: 64px;
	object-fit: contain;
	border-radius: 6px;
	background: var(--ph-mint-soft);
}

.woocommerce-cart table.cart .product-name a {
	font-weight: 600;
	color: var(--ph-sage);
	font-size: .88rem;
}

.woocommerce-cart table.cart .product-remove a {
	color: #aaa !important;
	font-size: 1.2rem;
	line-height: 1;
}

.woocommerce-cart table.cart .product-remove a:hover { color: #e05252 !important; }

.woocommerce-cart table.cart td.actions {
	padding-top: 16px;
	border-bottom: none;
}

.woocommerce-cart table.cart td.actions .coupon {
	display: flex;
	gap: 8px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon input[type="text"] {
	height: 42px !important;
	min-height: 42px !important;
	width: auto !important;
	max-width: 200px;
}

.woocommerce-cart table.cart td.actions .coupon .button,
.woocommerce-cart table.cart td.actions .button {
	height: 42px;
	padding: 0 16px;
	font-size: .78rem;
	font-weight: 700;
	background: transparent;
	border: 1.5px solid var(--ph-line);
	color: var(--ph-ink);
	border-radius: var(--ph-radius-sm);
	cursor: pointer;
}

.woocommerce-cart table.cart td.actions .button:hover {
	border-color: var(--ph-sage);
	color: var(--ph-sage);
}

/* ── Cart page YOU MIGHT ALSO LIKE (moved full-width by JS) ── */
.woocommerce-cart .ph-cart-suggestions {
	margin-top: 60px;
	padding-top: 56px;
	border-top: 1px solid var(--ph-line);
	width: 100% !important;
	float: none !important;
	clear: both !important;
}

.woocommerce-cart .ph-cart-suggestions h2 {
	margin-bottom: 32px;
}

.woocommerce-cart .ph-product-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 16px !important;
}

/* ── Legacy cart-collaterals (no cross-sells) ── */
.woocommerce-cart .cart-collaterals {
	display: block !important;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	overflow: visible !important;
}

.woocommerce-cart .cart-collaterals::before,
.woocommerce-cart .cart-collaterals::after { display: none !important; }

/* ── Update cart button ── */
.woocommerce-cart table.cart td.actions button[name="update_cart"] {
	background: transparent;
	color: var(--ph-muted);
	border: 1.5px solid var(--ph-line);
	border-radius: var(--ph-radius-sm);
	padding: 10px 18px;
	font-size: .78rem;
	font-weight: 700;
	cursor: pointer;
	transition: all .18s ease;
}

.woocommerce-cart table.cart td.actions button[name="update_cart"]:hover {
	border-color: var(--ph-sage);
	color: var(--ph-sage);
}

/* ── Responsive ── */
@media (max-width: 860px) {
	.e-cart__container {
		flex-direction: column !important;
	}

	.e-cart__column-start,
	.e-cart__column-end {
		flex: 1 1 100% !important;
		width: 100% !important;
	}

	.e-cart__column-end { flex: 0 0 auto !important; }

	.e-cart__column-inner.e-sticky-right-column { position: static !important; }

	.woocommerce-cart .ph-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 540px) {
	.woocommerce-cart table.cart thead { display: none; }

	.woocommerce-cart table.cart td {
		display: block;
		padding: 8px 12px;
		border-bottom: none;
	}

	.woocommerce-cart table.cart tr { border-bottom: 1px solid var(--ph-line); }

	.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 input[type="text"] {
		max-width: 100% !important;
		width: 100% !important;
		min-width: 0 !important;
		height: 48px;
	}
}


/* ═══════════════════════════════════════════════
   SINGLE PRODUCT — Full Redesign
   ═══════════════════════════════════════════════ */

/* Two-column layout */
.woocommerce div.product {
	display: grid !important;
	grid-template-areas: "images summary" "tabs tabs" "related related" !important;
	grid-template-columns: 1fr minmax(320px, 480px) !important;
	gap: 48px 56px !important;
	align-items: start !important;
	margin-top: 32px !important;
}

.woocommerce div.product div.images {
	grid-area: images;
}

.woocommerce div.product div.summary {
	grid-area: summary;
}

.woocommerce div.product .woocommerce-tabs {
	grid-area: tabs;
	margin-top: 0;
}

.woocommerce div.product .related {
	grid-area: related;
}

/* Product image — clean card */
.woocommerce div.product div.images img {
	border: 1px solid var(--ph-line);
	border-radius: 16px;
	background: linear-gradient(180deg, #f7fff9, #fff);
	box-shadow: 0 8px 32px rgba(23, 35, 29, .06);
	padding: 16px;
}

/* Product title */
.woocommerce div.product .product_title {
	font-size: clamp(1.1rem, 2vw, 1.5rem) !important;
	font-weight: 800 !important;
	line-height: 1.22 !important;
	color: var(--ph-ink) !important;
	margin: 0 0 10px !important;
}

/* SKU / meta */
.woocommerce div.product .product_meta {
	font-size: .74rem;
	color: var(--ph-muted);
	margin-bottom: 10px;
}

/* Koko + Mintpay installment info in product cards */
.ph-product-card .product-price-installments-not-in-variation,
.ph-price .product-price-installments-not-in-variation {
	display: flex !important;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
	font-size: 11.5px !important;
	color: var(--ph-muted) !important;
	line-height: 1.5 !important;
	margin-top: 4px;
	padding: 0;
}

.ph-product-card .product-price-installments-not-in-variation b,
.ph-price .product-price-installments-not-in-variation b {
	font-weight: 600;
	color: var(--ph-ink);
}

/* Hide the stray <br> between installment divs inside price wrapper in cards */
.ph-price br {
	display: none;
}

/* Payment split row: Mintpay + Koko side by side on single product */
.ph-payment-split {
	display: flex;
	gap: 0;
	margin-block: 12px;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	overflow: hidden;
}

.ph-payment-pill {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	background: #fafcfb;
	color: var(--ph-muted);
}

.ph-payment-pill + .ph-payment-pill {
	border-left: 1px solid var(--ph-line);
}

.ph-payment-pill .product-price-installments-not-in-variation {
	font-size: 12px !important;
	color: var(--ph-muted) !important;
	line-height: 1.5 !important;
	text-align: center;
	display: flex !important;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
	justify-content: center;
}

.ph-payment-pill .product-price-installments-not-in-variation b {
	font-weight: 600;
	color: var(--ph-ink);
}

@media (max-width: 480px) {
	.ph-payment-split {
		flex-direction: column;
	}

	.ph-payment-pill + .ph-payment-pill {
		border-left: none;
		border-top: 1px solid var(--ph-line);
	}
}

/* Direct payment promo banner */
.ph-direct-payment-promo {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: #fff8e6;
	border: 1px solid #f5c842;
	border-radius: 8px;
	font-size: .78rem;
	font-weight: 700;
	color: #b07800;
	margin-bottom: 12px;
}

.ph-direct-payment-promo svg {
	fill: #f5c842;
	flex-shrink: 0;
}

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 1.4rem !important;
	font-weight: 800 !important;
	color: var(--ph-sage) !important;
	margin-bottom: 6px !important;
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	flex-wrap: wrap !important;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	font-size: .9rem !important;
	opacity: .55 !important;
	font-weight: 600 !important;
}

/* Stock badge */
.woocommerce div.product .stock {
	display: inline-flex !important;
	align-items: center !important;
	gap: 5px !important;
	padding: 4px 12px !important;
	background: #e8f5e9 !important;
	color: #2e7d32 !important;
	border: 1px solid #c8e6c9 !important;
	border-radius: 999px !important;
	font-size: .72rem !important;
	font-weight: 700 !important;
	text-transform: none !important;
	margin-bottom: 14px !important;
}

.woocommerce div.product .stock.out-of-stock {
	background: #fce4e4 !important;
	color: #b71c1c !important;
	border-color: #f5c6c6 !important;
}

/* Quantity + Add to Cart + Buy Now row */
.woocommerce div.product form.cart {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	align-items: center !important;
	padding: 20px 0 !important;
	border-top: 1px solid var(--ph-line) !important;
	border-bottom: 1px solid var(--ph-line) !important;
	margin-top: 14px !important;
}

/* Quantity wrapper */
.woocommerce div.product form.cart .quantity {
	display: flex !important;
	align-items: center !important;
	border: 1.5px solid var(--ph-line) !important;
	border-radius: 10px !important;
	overflow: hidden !important;
	flex-shrink: 0 !important;
	height: 48px !important;
	background: #fff !important;
}

/* +/- buttons injected by JS */
.ph-qty-btn {
	width: 40px !important;
	height: 48px !important;
	border: none !important;
	background: transparent !important;
	font-size: 1.2rem !important;
	font-weight: 400 !important;
	color: var(--ph-ink) !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background .15s ease !important;
	flex-shrink: 0 !important;
	line-height: 1 !important;
}

.ph-qty-btn:hover {
	background: var(--ph-mint-soft) !important;
}

.woocommerce div.product form.cart .qty {
	width: 46px !important;
	height: 48px !important;
	border: none !important;
	border-left: 1.5px solid var(--ph-line) !important;
	border-right: 1.5px solid var(--ph-line) !important;
	border-radius: 0 !important;
	text-align: center !important;
	font-weight: 700 !important;
	font-size: .9rem !important;
	background: #fff !important;
	-moz-appearance: textfield !important;
	padding: 0 !important;
}

.woocommerce div.product form.cart .qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

/* Add to Cart button */
.woocommerce div.product form.cart .single_add_to_cart_button {
	flex: 1 !important;
	min-width: 160px !important;
	height: 48px !important;
	font-size: .84rem !important;
	font-weight: 800 !important;
	border-radius: 10px !important;
	background: linear-gradient(135deg, var(--ph-sage), #4fa77e) !important;
	color: #fff !important;
	border: none !important;
	box-shadow: 0 6px 18px rgba(62, 111, 91, .22) !important;
	transition: transform .2s ease, box-shadow .2s ease !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 10px 26px rgba(62, 111, 91, .3) !important;
}

/* Buy Now button */
.ph-buy-now-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	height: 48px !important;
	padding: 0 24px !important;
	min-width: 120px !important;
	border-radius: 10px !important;
	background: #1a1a1a !important;
	color: #fff !important;
	font-size: .84rem !important;
	font-weight: 800 !important;
	border: none !important;
	cursor: pointer !important;
	text-decoration: none !important;
	transition: background .2s ease, transform .2s ease !important;
}

.ph-buy-now-btn:hover {
	background: #333 !important;
	transform: translateY(-2px) !important;
	color: #fff !important;
}

/* Delivery info */
.ph-delivery-info {
	margin-top: 16px;
	border: 1px solid var(--ph-line);
	border-radius: 12px;
	overflow: hidden;
}

.ph-delivery-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	font-size: .78rem;
}

.ph-delivery-row+.ph-delivery-row {
	border-top: 1px solid var(--ph-line);
}

.ph-delivery-row svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--ph-sage);
}

.ph-delivery-row div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ph-delivery-row strong {
	font-size: .78rem;
	font-weight: 700;
	color: var(--ph-ink);
}

.ph-delivery-row span {
	font-size: .72rem;
	color: var(--ph-muted);
}

/* Trust badges (compact) */
.ph-trust-badges {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 12px;
}

.ph-trust-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 12px 8px;
	background: var(--ph-mint-soft);
	border-radius: 10px;
	border: 1px solid rgba(168, 230, 207, .4);
}

.ph-trust-badge svg {
	color: var(--ph-sage);
}

.ph-trust-badge span {
	font-size: .66rem;
	font-weight: 700;
	color: var(--ph-muted);
	text-transform: uppercase;
	letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════
   CHECKOUT — Progress bar + Elementor-aware layout
   ═══════════════════════════════════════════════ */

/* ── Progress bar ── */
.ph-checkout-progress {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding: 16px 32px;
	background: linear-gradient(135deg, #2c5f47 0%, #1e4433 100%);
	border-radius: var(--ph-radius);
	margin-bottom: 32px;
}

.ph-progress-step {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	opacity: .45;
}

.ph-progress-step.is-active {
	opacity: 1;
}

.ph-progress-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(255,255,255,.2);
	color: rgba(255,255,255,.6);
	font-size: .7rem;
	font-weight: 800;
	flex-shrink: 0;
}

.ph-progress-step.is-active .ph-progress-num {
	background: #fff;
	color: #2c5f47;
}

.ph-progress-step.is-done .ph-progress-num {
	background: rgba(255,255,255,.5);
	color: #fff;
}

.ph-progress-label {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: rgba(255,255,255,.5);
}

.ph-progress-step.is-active .ph-progress-label {
	color: #fff;
}

.ph-progress-line {
	flex: 1 1 40px;
	max-width: 80px;
	height: 2px;
	background: rgba(255,255,255,.15);
	margin: 0 10px;
}

.ph-progress-line.is-active {
	background: rgba(255,255,255,.4);
}

/* ── Elementor checkout: column proportions ── */
.e-checkout-layout-two-column .e-checkout__container {
	display: flex !important;
	gap: 28px !important;
	align-items: flex-start !important;
}

.e-checkout-layout-two-column .e-checkout__column-start {
	flex: 1 1 0 !important;
	min-width: 0 !important;
}

.e-checkout-layout-two-column .e-checkout__column-end {
	flex: 0 0 400px !important;
	width: 400px !important;
	min-width: 0 !important;
}

.e-checkout__column-inner.e-sticky-right-column {
	position: sticky !important;
	top: 100px !important;
}

/* ── Billing / shipping card ── */
.woocommerce-checkout #customer_details {
	background: #fff !important;
	border: 1px solid var(--ph-line) !important;
	border-radius: var(--ph-radius) !important;
	box-shadow: 0 4px 20px rgba(23,35,29,.05) !important;
	padding: 24px !important;
	margin-bottom: 16px !important;
}

.woocommerce-checkout h3 {
	margin-top: 0 !important;
	font-size: .72rem !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: .08em !important;
	color: var(--ph-sage) !important;
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	margin-bottom: 20px !important;
	padding-bottom: 14px !important;
	border-bottom: 2px solid var(--ph-line) !important;
}

.woocommerce-checkout h3::before {
	content: "" !important;
	width: 8px !important;
	height: 8px !important;
	border-radius: 50% !important;
	background: var(--ph-sage) !important;
	box-shadow: 0 0 0 3px rgba(62,111,91,.15) !important;
	flex-shrink: 0 !important;
	display: inline-block !important;
}

/* Form field 2-col grid */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 0 16px !important;
}

.woocommerce-checkout .form-row-wide,
.woocommerce-checkout .address-field.form-row-wide {
	grid-column: 1 / -1 !important;
}

/* Form labels */
.woocommerce-checkout .form-row label {
	font-size: .76rem !important;
	font-weight: 600 !important;
	color: var(--ph-muted) !important;
	margin-bottom: 5px !important;
	display: block !important;
}

/* Form inputs */
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
	width: 100% !important;
	min-height: 44px !important;
	border: 1.5px solid var(--ph-line) !important;
	border-radius: 6px !important;
	background: #fff !important;
	color: var(--ph-ink) !important;
	padding: 10px 13px !important;
	font-size: .86rem !important;
	transition: border-color .15s ease !important;
	box-shadow: none !important;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
	border-color: var(--ph-sage) !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(62,111,91,.12) !important;
}

/* Ship to different address */
.woocommerce-checkout #ship-to-different-address {
	padding: 16px 20px !important;
	border: 1px solid var(--ph-line) !important;
	border-radius: var(--ph-radius) !important;
	background: #fff !important;
	margin-bottom: 16px !important;
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
}

.woocommerce-checkout #ship-to-different-address h3 {
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	font-size: .82rem !important;
}

.woocommerce-checkout #ship-to-different-address h3::before { display: none !important; }

/* ── Right column: YOUR ORDER card ── */
.e-checkout__order_review {
	background: #fff !important;
	border: 1px solid var(--ph-line) !important;
	border-radius: var(--ph-radius) !important;
	box-shadow: 0 6px 24px rgba(23,35,29,.07) !important;
	overflow: hidden !important;
	margin-bottom: 0 !important;
}

#order_review_heading {
	font-size: .7rem !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: .08em !important;
	color: var(--ph-sage) !important;
	margin: 0 !important;
	padding: 14px 18px !important;
	background: var(--ph-mint-soft) !important;
	border-bottom: 1px solid var(--ph-line) !important;
	display: flex !important;
	align-items: center !important;
	gap: 7px !important;
}

#order_review_heading::before {
	content: "" !important;
	display: inline-block !important;
	width: 7px !important;
	height: 7px !important;
	border-radius: 50% !important;
	background: var(--ph-sage) !important;
	box-shadow: 0 0 0 3px rgba(62,111,91,.15) !important;
}

.woocommerce-checkout #order_review {
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;
	padding: 0 !important;
	position: static !important;
}

/* Order table — scrollable product list (>3 items) */
.woocommerce-checkout-review-order-table {
	display: table !important;
	width: 100% !important;
	border-collapse: collapse !important;
}

.woocommerce-checkout-review-order-table thead { display: none !important; }

/* Tfoot visible by default (fallback); JS adds .ph-tfoot-hidden once relocate card is built */
.woocommerce-checkout-review-order-table tfoot {
	display: table-footer-group;
	background: #f8faf8;
}
.woocommerce-checkout-review-order-table tfoot.ph-tfoot-hidden {
	display: none !important;
}

/* Relocated totals card — sits right above the Place Order button */
.ph-checkout-totals {
	background: #fff !important;
	border: 1px solid var(--ph-line) !important;
	border-radius: var(--ph-radius) !important;
	box-shadow: 0 4px 16px rgba(23,35,29,.06) !important;
	margin: 16px 18px 14px !important;
	overflow: hidden !important;
}
.ph-checkout-totals__table {
	width: 100% !important;
	border-collapse: collapse !important;
}
.ph-checkout-totals__table tr {
	border-bottom: 1px solid var(--ph-line) !important;
}
.ph-checkout-totals__table tr:last-child { border-bottom: none !important; }
.ph-checkout-totals__table th,
.ph-checkout-totals__table td {
	padding: 11px 16px !important;
	font-size: .85rem !important;
	vertical-align: middle !important;
}
.ph-checkout-totals__table th {
	font-weight: 600 !important;
	color: var(--ph-muted) !important;
	text-align: left !important;
}
.ph-checkout-totals__table td {
	font-weight: 700 !important;
	color: var(--ph-ink) !important;
	text-align: right !important;
}
.ph-checkout-totals__table .order-total th,
.ph-checkout-totals__table .order-total td {
	font-size: 1.05rem !important;
	font-weight: 800 !important;
	background: #f8faf8 !important;
	padding: 14px 16px !important;
}
.ph-checkout-totals__table .order-total td {
	color: var(--ph-sage) !important;
}
.ph-checkout-totals__table .order-total th {
	color: var(--ph-ink) !important;
}
.ph-checkout-totals__table .shipping ul#shipping_method {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
.ph-checkout-totals__table .shipping ul#shipping_method li {
	margin-bottom: 4px !important;
	font-size: .82rem !important;
}
.ph-checkout-totals__table .woocommerce-shipping-destination {
	display: block !important;
	font-size: .72rem !important;
	color: var(--ph-muted) !important;
	font-weight: 400 !important;
	margin-top: 4px !important;
}
@media (max-width: 640px) {
	.ph-checkout-totals { margin: 14px 12px 12px !important; }
	.ph-checkout-totals__table th,
	.ph-checkout-totals__table td { padding: 10px 12px !important; font-size: .82rem !important; }
}
.woocommerce-checkout-review-order-table tfoot tr {
	display: table-row !important;
	width: 100% !important;
}
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
	padding: 10px 18px !important;
	font-size: .82rem !important;
	border-bottom: 1px solid var(--ph-line) !important;
	background: #f8faf8 !important;
}
.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
.woocommerce-checkout-review-order-table tfoot tr.shipping th,
.woocommerce-checkout-review-order-table tfoot tr.fee th {
	font-weight: 600 !important;
	color: var(--ph-muted) !important;
	text-align: left !important;
}
.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td,
.woocommerce-checkout-review-order-table tfoot tr.shipping td,
.woocommerce-checkout-review-order-table tfoot tr.fee td {
	font-weight: 700 !important;
	color: var(--ph-ink) !important;
	text-align: right !important;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
	font-size: 1rem !important;
	font-weight: 800 !important;
	background: #fff !important;
	border-top: 2px solid var(--ph-sage) !important;
	border-bottom: none !important;
	padding: 14px 18px !important;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
	color: var(--ph-sage) !important;
	text-align: right !important;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total th {
	color: var(--ph-ink) !important;
	text-align: left !important;
}
/* Shipping methods inline list */
.woocommerce-checkout-review-order-table tfoot tr.shipping ul#shipping_method {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
.woocommerce-checkout-review-order-table tfoot tr.shipping ul#shipping_method li {
	margin-bottom: 4px !important;
	font-size: .8rem !important;
}
.woocommerce-checkout-review-order-table tfoot tr.shipping .woocommerce-shipping-destination {
	display: block !important;
	font-size: .72rem !important;
	color: var(--ph-muted) !important;
	font-weight: 400 !important;
	margin-top: 4px !important;
}

/* Make tbody a scrollable block: ~3 items visible, scroll for more */
.woocommerce-checkout-review-order-table tbody {
	display: block !important;
	max-height: 228px !important; /* 3 × 76px per row */
	overflow-y: auto !important;
	overflow-x: hidden !important;
	width: 100% !important;
	/* Custom scrollbar — subtle */
	scrollbar-width: thin !important;
	scrollbar-color: var(--ph-line) transparent !important;
}

.woocommerce-checkout-review-order-table tbody::-webkit-scrollbar {
	width: 4px !important;
}

.woocommerce-checkout-review-order-table tbody::-webkit-scrollbar-track {
	background: transparent !important;
}

.woocommerce-checkout-review-order-table tbody::-webkit-scrollbar-thumb {
	background: var(--ph-line) !important;
	border-radius: 4px !important;
}

/* Keep rows as table rows so columns still align */
.woocommerce-checkout-review-order-table tbody tr {
	display: table !important;
	width: 100% !important;
	table-layout: fixed !important;
}

.woocommerce-checkout-review-order-table .cart_item td {
	padding: 12px 18px !important;
	border-bottom: 1px solid var(--ph-line) !important;
	vertical-align: middle !important;
	font-size: .82rem !important;
}

/* Scroll hint gradient when overflowing */
.woocommerce-checkout-review-order {
	position: relative !important;
}

.woocommerce-checkout-review-order::after {
	content: "" !important;
	display: block !important;
	position: absolute !important;
	bottom: 0 !important;
	left: 0 !important;
	right: 0 !important;
	height: 36px !important;
	background: linear-gradient(to top, rgba(255,255,255,.95), transparent) !important;
	pointer-events: none !important;
	border-radius: 0 0 6px 6px !important;
	opacity: 0 !important;
	transition: opacity .2s !important;
}

.woocommerce-checkout-review-order.has-scroll::after {
	opacity: 1 !important;
}

/* Product thumbnail + name */
.ph-checkout-item {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
}

/* Remove × button inside checkout item row */
.ph-checkout-item__remove {
	flex-shrink: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 20px !important;
	height: 20px !important;
	border: none !important;
	background: #f1f1f1 !important;
	border-radius: 50% !important;
	color: #999 !important;
	font-size: 14px !important;
	line-height: 1 !important;
	cursor: pointer !important;
	padding: 0 !important;
	transition: background .15s, color .15s !important;
}
.ph-checkout-item__remove:hover {
	background: #ffe0e0 !important;
	color: #c0392b !important;
}
.ph-checkout-item__remove:disabled {
	opacity: .5 !important;
	cursor: wait !important;
}

.ph-checkout-item-image {
	width: 52px !important;
	height: 52px !important;
	object-fit: contain !important;
	border: 1px solid var(--ph-line) !important;
	border-radius: 8px !important;
	background: var(--ph-mint-soft) !important;
	padding: 4px !important;
	flex-shrink: 0 !important;
}

.ph-checkout-item-name {
	font-weight: 700 !important;
	color: var(--ph-ink) !important;
	font-size: .82rem !important;
	line-height: 1.35 !important;
}

/* Order totals rows */
.woocommerce-checkout-review-order-table .cart-subtotal th,
.woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce-checkout-review-order-table .shipping th,
.woocommerce-checkout-review-order-table .shipping td {
	padding: 9px 18px !important;
	font-size: .78rem !important;
	color: var(--ph-muted) !important;
	border-bottom: 1px solid var(--ph-line) !important;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
	padding: 12px 18px !important;
	font-size: .9rem !important;
	font-weight: 800 !important;
	color: var(--ph-ink) !important;
	border-bottom: none !important;
}

.woocommerce-checkout-review-order-table .order-total td {
	color: var(--ph-sage) !important;
}

/* Coupon section */
.e-woocommerce-coupon-nudge {
	padding: 12px 18px !important;
	border-top: 1px solid var(--ph-line) !important;
	font-size: .78rem !important;
	color: var(--ph-sage) !important;
	background: #fff !important;
}

/* ── Payment card ── */
.e-checkout__order_review-2 {
	background: #fff !important;
	border: 1px solid var(--ph-line) !important;
	border-radius: var(--ph-radius) !important;
	box-shadow: 0 6px 24px rgba(23,35,29,.07) !important;
	overflow: hidden !important;
	margin-top: 16px !important;
}

.woocommerce-checkout-payment,
.woocommerce #payment {
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
}

.woocommerce #payment::before {
	content: "Payment Information";
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: .7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--ph-sage);
	padding: 14px 18px;
	border-bottom: 1px solid var(--ph-line);
	background: var(--ph-mint-soft);
}

.woocommerce #payment::before::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ph-sage);
}

.woocommerce #payment ul.payment_methods {
	padding: 8px 12px !important;
	margin: 0 !important;
	border: none !important;
	background: transparent !important;
	list-style: none !important;
}

.woocommerce #payment ul.payment_methods li {
	padding: 10px 6px !important;
	border-bottom: 1px solid var(--ph-line) !important;
	font-size: .8rem !important;
}

.woocommerce #payment ul.payment_methods li:last-child { border-bottom: none !important; }

.woocommerce #payment ul.payment_methods li label {
	font-weight: 600 !important;
	cursor: pointer !important;
	color: var(--ph-ink) !important;
}

.woocommerce #payment .payment_box {
	background: var(--ph-mint-soft) !important;
	border: 1px solid var(--ph-line) !important;
	border-radius: 6px !important;
	padding: 10px 14px !important;
	font-size: .74rem !important;
	color: var(--ph-muted) !important;
	margin-top: 8px !important;
}

/* Privacy text */
.woocommerce-checkout .woocommerce-privacy-policy-text {
	font-size: .72rem !important;
	color: var(--ph-muted) !important;
	padding: 12px 18px !important;
	border-top: 1px solid var(--ph-line) !important;
}

/* ── PLACE ORDER button ── */
.woocommerce #payment #place_order {
	display: block !important;
	width: calc(100% - 36px) !important;
	margin: 16px 18px !important;
	padding: 15px !important;
	background: var(--ph-sage) !important;
	color: #fff !important;
	font-weight: 800 !important;
	font-size: .85rem !important;
	letter-spacing: .08em !important;
	text-transform: uppercase !important;
	border: none !important;
	border-radius: var(--ph-radius) !important;
	cursor: pointer !important;
	transition: background .18s ease, transform .12s ease !important;
}

.woocommerce #payment #place_order:hover {
	background: #2c5f47 !important;
	transform: translateY(-1px) !important;
}

/* ── Responsive ── */
@media (max-width: 860px) {
	.e-checkout-layout-two-column .e-checkout__container {
		flex-direction: column !important;
	}

	.e-checkout-layout-two-column .e-checkout__column-start,
	.e-checkout-layout-two-column .e-checkout__column-end {
		flex: 1 1 100% !important;
		width: 100% !important;
	}

	.e-checkout__column-inner.e-sticky-right-column { position: static !important; }

	.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
	.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
		grid-template-columns: 1fr !important;
	}
}


/* ============================================================
   Policy Pages
   ============================================================ */

.ph-policy-hero {
	background: linear-gradient(135deg, #f3faf6 0%, #e8f5ee 100%);
	padding: 64px 24px 48px;
	text-align: center;
	border-bottom: 1px solid #d8ece0;
}

.ph-policy-hero__inner {
	max-width: 680px;
	margin: 0 auto;
}

.ph-policy-hero__badge {
	display: inline-block;
	background: #3a7c52;
	color: #fff;
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.ph-policy-hero__title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 12px;
	line-height: 1.2;
}

.ph-policy-hero__meta {
	font-size: .84rem;
	color: #888;
	margin: 0;
}

/* Policy layout: sidebar + content */
.ph-policy-wrap {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 48px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 52px 24px 96px;
	align-items: start;
}

/* Sidebar */
.ph-policy-sidebar {
	position: sticky;
	top: 100px;
	background: #f8faf8;
	border: 1px solid #e4ebe5;
	border-radius: 14px;
	padding: 20px;
}

.ph-policy-sidebar__heading {
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #3a7c52;
	margin: 0 0 14px;
}

.ph-policy-sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ph-policy-sidebar ul li { margin-bottom: 4px; }

.ph-policy-sidebar__link {
	display: block;
	font-size: .87rem;
	color: #555;
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 8px;
	transition: background .2s, color .2s;
	line-height: 1.4;
}

.ph-policy-sidebar__link:hover { background: #edf6f1; color: #3a7c52; }
.ph-policy-sidebar__link.is-active {
	background: #3a7c52;
	color: #fff;
	font-weight: 600;
}

/* Policy content */
.ph-policy-content {}

.ph-policy-body h2 {
	font-size: 1.65rem;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 20px;
	padding-bottom: 14px;
	border-bottom: 2px solid #e8f5ee;
}

.ph-policy-body h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 2em 0 .7em;
}

.ph-policy-body p {
	font-size: 1rem;
	color: #444;
	line-height: 1.8;
	margin: 0 0 1.2em;
}

.ph-policy-body ul,
.ph-policy-body ol {
	padding-left: 1.5em;
	margin-bottom: 1.2em;
}

.ph-policy-body li {
	font-size: 1rem;
	color: #444;
	line-height: 1.8;
	margin-bottom: .5em;
}

.ph-policy-body a { color: #3a7c52; }
.ph-policy-body a:hover { text-decoration: underline; }

.ph-policy-body strong { color: #1a1a1a; }

/* Responsive footer */
@media (max-width: 1024px) {
	.ph-footer-inner {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 28px;
	}

	.ph-footer-brand {
		grid-column: 1 / -1;
		display: flex;
		align-items: center;
		gap: 24px;
	}

	.ph-footer-tagline { max-width: 400px; }
}

@media (max-width: 640px) {
	.ph-footer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.ph-footer-brand {
		grid-column: 1 / -1;
		flex-direction: column;
		align-items: flex-start;
	}

	.ph-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.ph-policy-wrap {
		grid-template-columns: 1fr;
		padding: 32px 16px 64px;
	}

	.ph-policy-sidebar {
		position: static;
	}
}

/* ═══════════════════════════════════════════════
   HEADER NAV — Shop icon + My Account icon
   ═══════════════════════════════════════════════ */

/* Prevent nav items from wrapping — compact long labels */
.ph-menu li > a {
	white-space: nowrap !important;
}

/* Shorten "Our Contacts" + "Delivery & Return" via CSS */
.ph-menu .menu-item-9725 > a::before { content: "Contacts"; }
.ph-menu .menu-item-9725 > a > * { display: none; }
.ph-menu .menu-item-9725 > a { font-size: 0 !important; }
.ph-menu .menu-item-9725 > a::before { font-size: .88rem; font-weight: 700; color: var(--ph-muted); }
.ph-menu .menu-item-9725 > a:hover::before { color: var(--ph-sage); }

.ph-menu .menu-item-9726 > a { font-size: 0 !important; }
.ph-menu .menu-item-9726 > a::before { content: "Returns"; font-size: .88rem; font-weight: 700; color: var(--ph-muted); }
.ph-menu .menu-item-9726 > a:hover::before { color: var(--ph-sage); }

/* Keep underline animation working on these items */
.ph-menu .menu-item-9725 > a::after,
.ph-menu .menu-item-9726 > a::after {
	font-size: 0 !important;
}

/* Shop link: icon + text */
.ph-menu .ph-menu-item--shop > a {
	display: inline-flex !important;
	align-items: center !important;
	gap: 5px !important;
}

.ph-menu .ph-menu-item--shop > a span { font-size: .88rem !important; }

/* My Account circle button */
.ph-menu .ph-menu-item--account > a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 36px !important;
	height: 36px !important;
	border-radius: 50% !important;
	background: var(--ph-mint-soft) !important;
	color: var(--ph-sage) !important;
	transition: background .18s ease, color .18s ease !important;
	min-height: unset !important;
}

.ph-menu .ph-menu-item--account > a::after { display: none !important; }

.ph-menu .ph-menu-item--account > a:hover,
.ph-menu .ph-menu-item--account.is-logged-in > a {
	background: var(--ph-sage) !important;
	color: #fff !important;
}


/* ═══════════════════════════════════════════════
   MY ACCOUNT — Elementor tabs-horizontal layout
   ═══════════════════════════════════════════════ */

.woocommerce-account .ph-page { padding-top: 40px !important; }

/* ── Elementor My Account widget outer wrapper ── */
.e-my-account-tabs-horizontal .woocommerce {
	display: block !important;
	max-width: 900px !important;
	margin: 0 auto !important;
}

/* ── Top tab bar (e-wc-account-tabs-nav) ── */
.e-wc-account-tabs-nav {
	margin-bottom: 24px !important;
	background: #fff !important;
	border: 1px solid var(--ph-line) !important;
	border-radius: var(--ph-radius) !important;
	overflow: hidden !important;
}

.e-wc-account-tabs-nav .woocommerce-MyAccount-navigation ul {
	display: flex !important;
	flex-wrap: nowrap !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.e-wc-account-tabs-nav .woocommerce-MyAccount-navigation-link {
	flex: 1 !important;
}

.e-wc-account-tabs-nav .woocommerce-MyAccount-navigation-link a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 14px 12px !important;
	font-size: .78rem !important;
	font-weight: 600 !important;
	color: var(--ph-muted) !important;
	border-right: 1px solid var(--ph-line) !important;
	border-bottom: 3px solid transparent !important;
	transition: all .15s ease !important;
	white-space: nowrap !important;
	text-align: center !important;
}

.e-wc-account-tabs-nav .woocommerce-MyAccount-navigation-link:last-child a {
	border-right: none !important;
}

.e-wc-account-tabs-nav .woocommerce-MyAccount-navigation-link a:hover {
	color: var(--ph-sage) !important;
	background: var(--ph-mint-soft) !important;
}

.e-wc-account-tabs-nav .woocommerce-MyAccount-navigation-link.is-active a {
	color: var(--ph-sage) !important;
	background: var(--ph-mint-soft) !important;
	border-bottom-color: var(--ph-sage) !important;
	font-weight: 700 !important;
}

.e-wc-account-tabs-nav .woocommerce-MyAccount-navigation-link--customer-logout a {
	color: #c0392b !important;
}

.e-wc-account-tabs-nav .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
	background: #fdf0ee !important;
	color: #c0392b !important;
	border-bottom-color: #c0392b !important;
}

/* ── Hide the DUPLICATE sidebar nav (Elementor renders nav twice) ── */
.e-my-account-tabs-horizontal .woocommerce > nav.woocommerce-MyAccount-navigation {
	display: none !important;
}

/* ── Content area — full width below tabs ── */
.woocommerce-MyAccount-content {
	background: #fff !important;
	border: 1px solid var(--ph-line) !important;
	border-radius: var(--ph-radius) !important;
	padding: 28px !important;
	box-shadow: 0 4px 16px rgba(23,35,29,.04) !important;
	width: 100% !important;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
	font-size: .78rem !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: .08em !important;
	color: var(--ph-sage) !important;
	margin-bottom: 16px !important;
	padding-bottom: 12px !important;
	border-bottom: 2px solid var(--ph-line) !important;
}

/* ── Dashboard welcome text ── */
.woocommerce-MyAccount-content p { font-size: .88rem !important; line-height: 1.7 !important; }
.woocommerce-MyAccount-content a { color: var(--ph-sage) !important; font-weight: 600 !important; }

/* ── Orders table ── */
.woocommerce-orders-table {
	width: 100% !important;
	border-collapse: collapse !important;
	font-size: .84rem !important;
}

.woocommerce-orders-table thead th {
	text-align: left !important;
	font-size: .7rem !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: .06em !important;
	color: var(--ph-muted) !important;
	padding: 10px 14px !important;
	border-bottom: 2px solid var(--ph-line) !important;
	background: var(--ph-mint-soft) !important;
}

.woocommerce-orders-table tbody td {
	padding: 13px 14px !important;
	border-bottom: 1px solid var(--ph-line) !important;
	vertical-align: middle !important;
}

.woocommerce-orders-table tbody tr:hover td { background: #fafcfb !important; }

.woocommerce-orders-table td a { color: var(--ph-sage) !important; font-weight: 600 !important; }

.woocommerce-orders-table .button {
	background: var(--ph-sage) !important;
	color: #fff !important;
	padding: 7px 14px !important;
	border-radius: 4px !important;
	font-size: .72rem !important;
	font-weight: 700 !important;
	border: none !important;
	display: inline-block !important;
}

/* Order status badge */
mark.order-status {
	background: var(--ph-mint-soft) !important;
	color: var(--ph-sage) !important;
	padding: 3px 10px !important;
	border-radius: 20px !important;
	font-size: .7rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: .04em !important;
}

/* ── Addresses page ── */
.woocommerce-Addresses {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 20px !important;
}

.woocommerce-Address {
	background: var(--ph-mint-soft) !important;
	border: 1px solid var(--ph-line) !important;
	border-radius: var(--ph-radius) !important;
	padding: 20px !important;
}

.woocommerce-Address-title {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	margin-bottom: 12px !important;
	padding-bottom: 10px !important;
	border-bottom: 1px solid var(--ph-line) !important;
}

.woocommerce-Address-title h3 {
	font-size: .72rem !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: .06em !important;
	color: var(--ph-sage) !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.woocommerce-Address address {
	font-style: normal !important;
	font-size: .84rem !important;
	line-height: 1.7 !important;
	color: var(--ph-muted) !important;
}

/* ── Account Details form ── */
.woocommerce-MyAccount-content .woocommerce-form {
	max-width: 560px !important;
}

.woocommerce-MyAccount-content fieldset {
	border: 1px solid var(--ph-line) !important;
	border-radius: var(--ph-radius) !important;
	padding: 20px !important;
	margin-bottom: 20px !important;
}

.woocommerce-MyAccount-content fieldset legend {
	font-size: .72rem !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: .06em !important;
	color: var(--ph-sage) !important;
	padding: 0 8px !important;
}

.woocommerce-MyAccount-content .form-row {
	margin-bottom: 14px !important;
}

.woocommerce-MyAccount-content .form-row label {
	font-size: .76rem !important;
	font-weight: 600 !important;
	color: var(--ph-muted) !important;
	margin-bottom: 5px !important;
	display: block !important;
}

.woocommerce-MyAccount-content .form-row input {
	width: 100% !important;
	min-height: 44px !important;
	border: 1.5px solid var(--ph-line) !important;
	border-radius: 6px !important;
	padding: 10px 13px !important;
	font-size: .86rem !important;
}

.woocommerce-MyAccount-content .form-row input:focus {
	border-color: var(--ph-sage) !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(62,111,91,.12) !important;
}

/* Name fields row */
.woocommerce-MyAccount-content .woocommerce-account-fields {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 16px !important;
}

/* Save changes button */
.woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-MyAccount-content button[type="submit"],
.woocommerce-MyAccount-content .button {
	background: var(--ph-sage) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--ph-radius) !important;
	padding: 12px 28px !important;
	font-weight: 700 !important;
	font-size: .85rem !important;
	cursor: pointer !important;
	transition: background .18s ease !important;
	display: inline-block !important;
}

.woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce-MyAccount-content button[type="submit"]:hover {
	background: #2c5f47 !important;
}

/* WooCommerce notices */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
	border-top: 3px solid var(--ph-sage) !important;
	background: var(--ph-mint-soft) !important;
	border-radius: var(--ph-radius) !important;
	padding: 14px 18px !important;
	margin-bottom: 20px !important;
	font-size: .84rem !important;
}

.woocommerce-error { border-top-color: #c0392b !important; background: #fdf0ee !important; }

/* ── LOGIN / REGISTER (not logged in) ── */
/* ── MY ACCOUNT: Login + Register page ── */

/* Force article to stack vertically — header above, content below */
body.woocommerce-account .ph-page,
body.woocommerce-account .ph-page article,
body.woocommerce-account .ph-page .entry-header,
body.woocommerce-account .ph-page .entry-content {
	display: block !important;
	float: none !important;
	width: 100% !important;
	clear: both !important;
}

body.woocommerce-account .ph-page .entry-header {
	margin-bottom: 32px !important;
}

/* Woocommerce wrapper: centered block, full width inside ph-page wrap */
body.woocommerce-account:not(.logged-in) .ph-page .woocommerce {
	display: block !important;
	width: 100% !important;
	max-width: 920px !important;
	margin: 0 auto !important;
	padding: 0 !important;
	float: none !important;
}

/* Two-column grid on the col2-set container — high specificity */
body.woocommerce-account #customer_login,
body.woocommerce-account .woocommerce .col2-set,
body.woocommerce-account .woocommerce .u-columns {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	grid-template-rows: auto !important;
	gap: 28px !important;
	align-items: start !important;
	width: 100% !important;
	float: none !important;
}

/* Remove WC float layout — explicit grid placement */
body.woocommerce-account .woocommerce .col2-set .u-column1,
body.woocommerce-account .woocommerce .col2-set .col-1,
body.woocommerce-account #customer_login .u-column1,
body.woocommerce-account #customer_login .col-1 {
	float: none !important;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	grid-column: 1 !important;
	grid-row: 1 !important;
}
body.woocommerce-account .woocommerce .col2-set .u-column2,
body.woocommerce-account .woocommerce .col2-set .col-2,
body.woocommerce-account #customer_login .u-column2,
body.woocommerce-account #customer_login .col-2 {
	float: none !important;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	grid-column: 2 !important;
	grid-row: 1 !important;
}

/* Column section headings (siblings of the forms) */
.woocommerce-account .u-column1 > h2,
.woocommerce-account .u-column2 > h2 {
	font-size: .72rem !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: .09em !important;
	color: var(--ph-sage) !important;
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	margin-bottom: 14px !important;
	padding-bottom: 12px !important;
	border-bottom: 2px solid var(--ph-line) !important;
}

.woocommerce-account .u-column1 > h2::before,
.woocommerce-account .u-column2 > h2::before {
	content: "" !important;
	width: 8px !important;
	height: 8px !important;
	border-radius: 50% !important;
	background: var(--ph-sage) !important;
	flex-shrink: 0 !important;
}

/* Form cards */
.woocommerce-form-login,
.woocommerce-form-register {
	background: #fff !important;
	border: 1px solid var(--ph-line) !important;
	border-radius: var(--ph-radius) !important;
	box-shadow: 0 6px 24px rgba(23,35,29,.06) !important;
	padding: 24px !important;
}

/* Form labels */
.woocommerce-form-login label,
.woocommerce-form-register label {
	font-size: .78rem !important;
	font-weight: 600 !important;
	color: var(--ph-ink) !important;
	display: block !important;
	margin-bottom: 5px !important;
}

/* Form inputs */
.woocommerce-form-login .woocommerce-Input,
.woocommerce-form-register .woocommerce-Input,
.woocommerce-account .woocommerce-Input--text {
	width: 100% !important;
	border: 1.5px solid var(--ph-line) !important;
	border-radius: var(--ph-radius-sm) !important;
	padding: 10px 12px !important;
	font-size: .85rem !important;
	color: var(--ph-ink) !important;
	background: #fff !important;
	transition: border-color .18s ease !important;
	box-sizing: border-box !important;
}

.woocommerce-form-login .woocommerce-Input:focus,
.woocommerce-form-register .woocommerce-Input:focus {
	border-color: var(--ph-sage) !important;
	outline: none !important;
}

/* Row spacing */
.woocommerce-form-login .form-row,
.woocommerce-form-register .form-row {
	margin-bottom: 14px !important;
}

/* Submit buttons */
.woocommerce-form-login__submit,
.woocommerce-form-register__submit {
	background: var(--ph-sage) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--ph-radius) !important;
	padding: 12px 28px !important;
	font-weight: 700 !important;
	font-size: .85rem !important;
	cursor: pointer !important;
	width: 100% !important;
	transition: background .18s ease !important;
}

.woocommerce-form-login__submit:hover,
.woocommerce-form-register__submit:hover { background: #2c5f47 !important; }

/* Remember me row */
.woocommerce-form-login__rememberme {
	display: flex !important;
	align-items: center !important;
	gap: 6px !important;
	font-size: .78rem !important;
	color: var(--ph-muted) !important;
	margin-bottom: 14px !important;
}

/* Lost password */
.woocommerce-LostPassword a {
	font-size: .78rem !important;
	color: var(--ph-sage) !important;
}

/* Mobile: stack columns */
@media (max-width: 640px) {
	body.woocommerce-account #customer_login,
	body.woocommerce-account .woocommerce .col2-set,
	body.woocommerce-account .woocommerce .u-columns {
		grid-template-columns: 1fr !important;
	}
	body.woocommerce-account .woocommerce .col2-set .u-column1,
	body.woocommerce-account #customer_login .u-column1 {
		grid-column: 1 !important;
		grid-row: 1 !important;
	}
	body.woocommerce-account .woocommerce .col2-set .u-column2,
	body.woocommerce-account #customer_login .u-column2 {
		grid-column: 1 !important;
		grid-row: 2 !important;
	}
}

/* ── MOBILE BOTTOM NAV BAR ── */
.ph-mobile-bottom-nav { display: none; }

/* Backdrop — below drawer */
.ph-more-drawer-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.35);
	z-index: 10010;
}

/* Drawer — above backdrop, above nav */
.ph-more-drawer {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	z-index: 10020;
	background: #fff;
	border-radius: 20px 20px 0 0;
	padding: 16px 0 max(24px, env(safe-area-inset-bottom));
	box-shadow: 0 -8px 40px rgba(23,35,29,.14);
	transition: bottom .3s cubic-bezier(.4,0,.2,1);
}

.ph-more-drawer.is-open { bottom: 0; }

.ph-more-drawer__handle {
	width: 36px;
	height: 4px;
	background: var(--ph-line);
	border-radius: 2px;
	margin: 0 auto 16px;
}

.ph-more-drawer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px;
	padding: 0 8px;
}

.ph-more-drawer__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 14px 8px;
	color: var(--ph-muted);
	font-size: .65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	text-decoration: none;
	border-radius: 12px;
	transition: background .15s ease, color .15s ease;
	background: none;
	border: none;
	cursor: pointer;
	width: 100%;
}

.ph-more-drawer__item svg { width: 24px; height: 24px; }

.ph-more-drawer__item:hover { background: var(--ph-mint-soft); color: var(--ph-sage); }

@media (max-width: 860px) {
	/* Push WhatsApp button above bottom nav */
	[class*="qlwapp"] {
		bottom: calc(80px + env(safe-area-inset-bottom)) !important;
	}

	/* Add padding to page so content not hidden behind bottom nav */
	body { padding-bottom: calc(72px + env(safe-area-inset-bottom)) !important; }

	/* Nav bar — z-index below drawer + backdrop */
	.ph-mobile-bottom-nav {
		display: flex !important;
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		z-index: 9996 !important;
		background: #fff !important;
		border-top: 1px solid var(--ph-line) !important;
		box-shadow: 0 -2px 16px rgba(23,35,29,.07) !important;
		padding: 0 8px max(8px, env(safe-area-inset-bottom)) !important;
		align-items: flex-end !important;
		justify-content: space-around !important;
		gap: 0 !important;
		overflow: visible !important;
		height: 60px !important;
	}

	.ph-mobile-bottom-nav__item {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: flex-end !important;
		gap: 3px !important;
		padding: 6px 8px 8px !important;
		color: #888 !important;
		font-size: .56rem !important;
		font-weight: 700 !important;
		text-transform: uppercase !important;
		letter-spacing: .05em !important;
		text-decoration: none !important;
		position: relative !important;
		flex: 1 !important;
		background: none !important;
		border: none !important;
		cursor: pointer !important;
		transition: color .15s ease !important;
		min-height: 52px !important;
	}

	.ph-mobile-bottom-nav__item svg {
		width: 20px !important;
		height: 20px !important;
		transition: transform .15s ease !important;
	}

	.ph-mobile-bottom-nav__item.is-active,
	.ph-mobile-bottom-nav__item:hover {
		color: var(--ph-sage) !important;
	}

	/* ── Elevated centre Cart button ── */
	.ph-mobile-bottom-nav__item--cart {
		position: relative !important;
		top: -16px !important;
		flex: 0 0 60px !important;
		width: 60px !important;
		height: 60px !important;
		min-height: auto !important;
		padding: 0 !important;
		background: var(--ph-sage) !important;
		border-radius: 50% !important;
		border: 3px solid #fff !important;
		box-shadow: 0 4px 18px rgba(55,123,77,.45) !important;
		color: #fff !important;
		justify-content: center !important;
		gap: 2px !important;
		font-size: .5rem !important;
	}

	.ph-mobile-bottom-nav__item--cart svg {
		width: 24px !important;
		height: 24px !important;
	}

	.ph-mobile-bottom-nav__item--cart.is-active,
	.ph-mobile-bottom-nav__item--cart:hover {
		color: #fff !important;
		background: #2c5f47 !important;
	}

	/* Cart badge on elevated button */
	.ph-mobile-bottom-nav__item--cart .ph-mobile-bottom-nav__badge {
		top: 3px !important;
		right: 3px !important;
	}

	/* Cart badge default position */
	.ph-mobile-bottom-nav__badge {
		position: absolute !important;
		top: 6px !important;
		right: calc(50% - 16px) !important;
		background: #e84545 !important;
		color: #fff !important;
		font-size: .48rem !important;
		font-weight: 800 !important;
		min-width: 15px !important;
		height: 15px !important;
		border-radius: 8px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		padding: 0 3px !important;
		border: 1.5px solid #fff !important;
	}

	/* Backdrop visible when more drawer open */
	.ph-more-drawer-backdrop.is-open { display: block; }

	/* My Account tabs → scrollable on mobile */
	.e-wc-account-tabs-nav .woocommerce-MyAccount-navigation ul {
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: none !important;
	}

	.e-wc-account-tabs-nav .woocommerce-MyAccount-navigation ul::-webkit-scrollbar { display: none !important; }

	.e-wc-account-tabs-nav .woocommerce-MyAccount-navigation-link {
		flex: 0 0 auto !important;
	}

	.woocommerce-account:not(.logged-in) .woocommerce {
		grid-template-columns: 1fr !important;
	}

	.woocommerce-Addresses { grid-template-columns: 1fr !important; }

	.woocommerce-MyAccount-content .woocommerce-account-fields {
		grid-template-columns: 1fr !important;
	}
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE + DELIVERY PAGE
   ═══════════════════════════════════════════════ */

.ph-page-content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 8px 0 48px;
}

/* ── Contacts: 4-icon grid ── */
.ph-contacts-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 48px;
}

.ph-contact-card {
	background: #fff;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	padding: 24px 18px;
	text-align: center;
	transition: box-shadow .18s ease, transform .18s ease;
}

.ph-contact-card:hover {
	box-shadow: 0 8px 28px rgba(23,35,29,.08);
	transform: translateY(-2px);
}

.ph-contact-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--ph-mint-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
	color: var(--ph-sage);
}

.ph-contact-card h3 {
	font-size: .78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--ph-sage);
	margin: 0 0 8px;
}

.ph-contact-card p {
	font-size: .86rem;
	color: var(--ph-muted);
	line-height: 1.6;
	margin: 0;
}

.ph-contact-card a {
	color: var(--ph-sage);
	font-weight: 600;
	text-decoration: none;
}

.ph-contact-card a:hover { text-decoration: underline; }

/* ── Contacts: info + form row ── */
.ph-contacts-bottom {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 32px;
	align-items: start;
}

.ph-contacts-info h2 {
	font-size: clamp(1.3rem, 2vw, 1.7rem);
	font-weight: 800;
	color: var(--ph-ink);
	margin-bottom: 12px;
}

.ph-contacts-info p {
	font-size: .9rem;
	color: var(--ph-muted);
	line-height: 1.7;
	margin-bottom: 20px;
}

.ph-contact-social {
	display: flex;
	gap: 12px;
}

.ph-contact-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--ph-mint-soft);
	color: var(--ph-sage);
	transition: background .18s ease, color .18s ease;
}

.ph-contact-social a:hover { background: var(--ph-sage); color: #fff; }

.ph-contacts-form { background: #fff; border: 1px solid var(--ph-line); border-radius: var(--ph-radius); padding: 28px; box-shadow: 0 4px 20px rgba(23,35,29,.05); }

/* Contact Form 7 inside contacts page */
.ph-contacts-form .wpcf7-form label { font-size: .76rem; font-weight: 600; color: var(--ph-muted); display: block; margin-bottom: 5px; }
.ph-contacts-form .wpcf7-form input[type="text"],
.ph-contacts-form .wpcf7-form input[type="email"],
.ph-contacts-form .wpcf7-form input[type="tel"],
.ph-contacts-form .wpcf7-form textarea { width: 100%; border: 1.5px solid var(--ph-line); border-radius: 6px; padding: 10px 13px; font-size: .86rem; margin-bottom: 14px; transition: border-color .15s; }
.ph-contacts-form .wpcf7-form input:focus,
.ph-contacts-form .wpcf7-form textarea:focus { border-color: var(--ph-sage); outline: none; box-shadow: 0 0 0 3px rgba(62,111,91,.1); }
.ph-contacts-form .wpcf7-form textarea { min-height: 120px; resize: vertical; }
.ph-contacts-form .wpcf7-submit { background: var(--ph-sage); color: #fff; border: none; border-radius: var(--ph-radius); padding: 12px 28px; font-weight: 700; font-size: .85rem; cursor: pointer; transition: background .18s ease; }
.ph-contacts-form .wpcf7-submit:hover { background: #2c5f47; }

/* ── Delivery page: 4-card grid ── */
.ph-delivery-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 48px;
}

.ph-delivery-card {
	background: var(--ph-mint-soft);
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	padding: 24px 18px;
	text-align: center;
}

.ph-delivery-card__icon {
	color: var(--ph-sage);
	margin-bottom: 14px;
}

.ph-delivery-card h3 {
	font-size: .82rem;
	font-weight: 800;
	color: var(--ph-ink);
	margin: 0 0 8px;
}

.ph-delivery-card p {
	font-size: .82rem;
	color: var(--ph-muted);
	line-height: 1.6;
	margin: 0;
}

/* ── Policy sections: 2-col ── */
.ph-policy-sections {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 32px;
}

.ph-policy-section {
	background: #fff;
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	padding: 24px;
}

.ph-policy-section h2 {
	font-size: .82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--ph-sage);
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--ph-line);
	display: flex;
	align-items: center;
	gap: 8px;
}

.ph-policy-section h2::before {
	content: "";
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--ph-sage);
	display: inline-block;
	flex-shrink: 0;
}

.ph-policy-section ul {
	list-style: none;
	margin: 0; padding: 0;
}

.ph-policy-section ul li {
	font-size: .85rem;
	color: var(--ph-muted);
	line-height: 1.6;
	padding: 8px 0;
	border-bottom: 1px solid var(--ph-line);
}

.ph-policy-section ul li:last-child { border-bottom: none; }
.ph-policy-section ul li strong { color: var(--ph-ink); }
.ph-policy-section ul li a { color: var(--ph-sage); font-weight: 600; }

/* CTA strip */
.ph-delivery-contact {
	background: var(--ph-mint-soft);
	border: 1px solid var(--ph-line);
	border-radius: var(--ph-radius);
	padding: 20px 24px;
	text-align: center;
}

.ph-delivery-contact p {
	margin: 0;
	font-size: .9rem;
	color: var(--ph-muted);
}

.ph-delivery-contact a { color: var(--ph-sage); font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 860px) {
	.ph-contacts-grid, .ph-delivery-cards { grid-template-columns: repeat(2, 1fr); }
	.ph-contacts-bottom { grid-template-columns: 1fr; }
	.ph-policy-sections { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.ph-contacts-grid { grid-template-columns: repeat(2, 1fr); }
	.ph-delivery-cards { grid-template-columns: repeat(2, 1fr); }
}
