/**
 * WordPress-specific additions.
 *
 * The compiled design lives in main.css and is untouched. This file only adds
 * what WordPress needs and the static mockups never had: accessibility
 * helpers, core alignment/caption classes, comments, and the form states used
 * by the AJAX submission flow.
 */

/* ------------------------------------------------------ accessibility */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
	clip: auto !important;
	clip-path: none;
	color: #11202A;
	display: block;
	font-size: 1rem;
	font-weight: 700;
	height: auto;
	left: 16px;
	line-height: normal;
	padding: 14px 22px;
	text-decoration: none;
	top: 16px;
	width: auto;
	z-index: 100000;
}

.skip-link:focus {
	outline: 3px solid #4DAE63;
}

/* Visible focus for keyboard users, without touching mouse interaction. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid #4DAE63;
	outline-offset: 2px;
}

/* Admin bar must not hide the sticky header. */
body.admin-bar .site-header {
	scroll-margin-top: 32px;
}

/* Core sizes the admin bar's site icon, but that rule can be lost to CSS
   optimisation, leaving the favicon at full size across the header. Only
   logged-in users ever see this element. */
#wpadminbar img.site-icon {
	width: 20px !important;
	height: 20px !important;
}

/* ----------------------------------------------------------- forms */

/* Honeypot: removed from the visual and accessibility trees, but still a
   real, fillable input as far as an automated script is concerned. */
.wps-hp {
	position: absolute !important;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.wps-field-error {
	color: #d63638;
	display: none;
	font-size: .8125rem;
	line-height: 1.4;
	margin-top: .35rem;
}

.wps-field-error:not(:empty) {
	display: block;
}

.form-control.is-invalid,
.form-select.is-invalid {
	border-color: #d63638;
	box-shadow: 0 0 0 .18rem rgba(214, 54, 56, .15);
}

.wps-form-feedback {
	border-radius: 10px;
	font-size: .95rem;
	line-height: 1.5;
	margin-top: .25rem;
	padding: .9rem 1.1rem;
}

.wps-form-feedback[hidden] {
	display: none;
}

.wps-form-feedback--success {
	background: #EAF7EE;
	border: 1px solid #4DAE63;
	color: #1F6B34;
}

.wps-form-feedback--error {
	background: #FDEAEA;
	border: 1px solid #d63638;
	color: #8A1F21;
}

.form-text {
	color: #6b7280;
	display: block;
	font-size: .8125rem;
	margin-top: .35rem;
}

button[type="submit"][disabled] {
	cursor: progress;
	opacity: .7;
}

/* --------------------------------------------------- core alignments */

.alignleft {
	float: left;
	margin: .3rem 1.5rem 1rem 0;
}

.alignright {
	float: right;
	margin: .3rem 0 1rem 1.5rem;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignwide {
	margin-left: -60px;
	margin-right: -60px;
	max-width: calc(100% + 120px);
}

.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
}

@media (max-width: 991.98px) {
	.alignwide,
	.alignfull {
		margin-left: 0;
		margin-right: 0;
		max-width: 100%;
	}
}

.wp-caption {
	max-width: 100%;
}

.wp-caption img {
	height: auto;
	max-width: 100%;
}

.wp-caption-text,
.wp-element-caption figcaption {
	color: #6b7280;
	font-size: .875rem;
	margin-top: .5rem;
	text-align: center;
}

.sticky .post-card {
	outline: 2px solid #4DAE63;
}

.gallery {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.gallery-item img {
	height: auto;
	max-width: 100%;
}

/* Long words and code blocks must not break the layout. */
.post-body img,
.legal-prose img,
.content-block img,
.tab-pane img {
	height: auto;
	max-width: 100%;
}

.post-body pre,
.legal-prose pre {
	overflow-x: auto;
	padding: 1rem;
	background: #f6f7f8;
	border-radius: 8px;
}

.post-body table,
.legal-prose table,
.tab-pane table {
	max-width: 100%;
}

.wps-table-scroll {
	overflow-x: auto;
}

/* -------------------------------------------------------- comments */

.wps-comments {
	margin-top: 3rem;
}

.wps-comments__title {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.wps-comments .comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wps-comments .comment-list ol.children {
	list-style: none;
	margin: 1rem 0 0;
	padding-left: 1.5rem;
}

.wps-comments .comment-body {
	border-bottom: 1px solid #e9ecef;
	padding: 1.25rem 0;
}

.wps-comments .comment-author img {
	border-radius: 50%;
	margin-right: .6rem;
	vertical-align: middle;
}

.wps-comments .comment-metadata {
	color: #6b7280;
	font-size: .85rem;
}

/* ------------------------------------------------------ pagination */

.pagination-wps .dots {
	padding: 0 .35rem;
}

/* --------------------------------------------------- WooCommerce bits */

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

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 1rem 1.15rem;
	border-radius: 14px;
	border: 1px solid transparent;
	box-shadow: 0 10px 30px rgba(33, 37, 41, 0.08);
	font-size: 0.95rem;
	line-height: 1.45;
	color: #212529;
}

.woocommerce-message {
	background: #f3faf5;
	border-color: rgba(77, 174, 99, 0.35);
}

.woocommerce-info {
	background: #fff8e7;
	border-color: rgba(243, 156, 18, 0.4);
}

.woocommerce-error {
	background: #fdeaea;
	border-color: rgba(214, 54, 56, 0.35);
}

.wps-notice__icon {
	flex: 0 0 auto;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	background: #4DAE63;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
	position: relative;
}

.woocommerce-info .wps-notice__icon {
	background: #F39C12;
}

.woocommerce-error .wps-notice__icon {
	background: #d63638;
}

.woocommerce-message .wps-notice__icon::before,
.woocommerce-info .wps-notice__icon::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 0.55rem;
	height: 0.95rem;
	border: solid #fff;
	border-width: 0 2.5px 2.5px 0;
	transform: rotate(45deg) translate(-1px, -1px);
}

.woocommerce-error .wps-notice__icon::before,
.woocommerce-error .wps-notice__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.05rem;
	height: 2.5px;
	background: #fff;
	border-radius: 2px;
}

.woocommerce-error .wps-notice__icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.woocommerce-error .wps-notice__icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.wps-notice__content {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
	flex: 1 1 auto;
	padding-right: 0.25rem;
}

.wps-notice__title {
	display: block;
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #1b1b1b;
}

.wps-notice__text {
	display: block;
	color: #424242;
}

.wps-notice__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.45rem;
}

.wps-notice__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.25rem;
	padding: 0.4rem 0.95rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none !important;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.wps-notice__btn--primary {
	background: #4DAE63;
	border-color: #4DAE63;
	color: #fff !important;
}

.wps-notice__btn--primary:hover,
.wps-notice__btn--primary:focus-visible {
	background: #3f9753;
	border-color: #3f9753;
	color: #fff !important;
}

.wps-notice__btn--ghost {
	background: #fff;
	border-color: rgba(66, 66, 66, 0.22);
	color: #424242 !important;
}

.wps-notice__btn--ghost:hover,
.wps-notice__btn--ghost:focus-visible {
	border-color: #4DAE63;
	color: #2f7a42 !important;
}

/* Floating toast stack (promoted from page notices via theme.js). */
.wps-toast-stack {
	position: fixed;
	z-index: 1080;
	top: calc(1rem + var(--wp-admin--admin-bar--position-offset, 0px));
	right: 1rem;
	left: auto;
	width: min(26rem, calc(100vw - 2rem));
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	pointer-events: none;
}

.wps-toast-stack .woocommerce-message,
.wps-toast-stack .woocommerce-info,
.wps-toast-stack .woocommerce-error,
.wps-toast {
	pointer-events: auto;
	margin: 0;
	opacity: 0;
	transform: translateY(-0.75rem) scale(0.98);
	transition: opacity 0.28s ease, transform 0.28s ease;
	box-shadow: 0 18px 40px rgba(33, 37, 41, 0.16);
}

.wps-toast-stack .woocommerce-message.is-visible,
.wps-toast-stack .woocommerce-info.is-visible,
.wps-toast-stack .woocommerce-error.is-visible,
.wps-toast.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.wps-toast-stack .woocommerce-message.is-hiding,
.wps-toast-stack .woocommerce-info.is-hiding,
.wps-toast-stack .woocommerce-error.is-hiding,
.wps-toast.is-hiding {
	opacity: 0;
	transform: translateY(-0.5rem) scale(0.98);
}

.wps-toast__close {
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
	margin: -0.15rem -0.35rem 0 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #6c757d;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
}

.wps-toast__close:hover,
.wps-toast__close:focus-visible {
	background: rgba(0, 0, 0, 0.06);
	color: #212529;
}

@media (max-width: 575.98px) {
	.wps-toast-stack {
		top: auto;
		bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
		right: 0.75rem;
		left: 0.75rem;
		width: auto;
	}

	.wps-toast-stack .woocommerce-message,
	.wps-toast-stack .woocommerce-info,
	.wps-toast-stack .woocommerce-error {
		transform: translateY(0.75rem) scale(0.98);
	}

	.wps-toast-stack .woocommerce-message.is-visible,
	.wps-toast-stack .woocommerce-info.is-visible,
	.wps-toast-stack .woocommerce-error.is-visible {
		transform: translateY(0) scale(1);
	}
}

.wps-shop-wrapper {
	padding: 3rem 0 4rem;
}

/* Product gallery thumbs are buttons; keep them looking like the design. */
.product-gallery__thumb {
	background: none;
	border: 0;
	padding: 0;
}

/* ---------------------------------------------------------- 404 page */

.wps-404 {
	padding: 5rem 0;
	text-align: center;
}

.wps-404__code {
	color: #4DAE63;
	font-size: clamp(4rem, 12vw, 8rem);
	font-weight: 800;
	line-height: 1;
}

.wps-404 .search-form {
	display: flex;
	gap: .5rem;
	justify-content: center;
	margin: 1.5rem auto 0;
	max-width: 480px;
}

/* ------------------------------------------- mega menu product cards */

/* Modern hero + trust stroke icons */
.hero__eyebrow svg {
	width: 1.15em;
	height: 1.15em;
	flex-shrink: 0;
}

.hero__cta .btn svg {
	width: 1.15em;
	height: 1.15em;
	flex-shrink: 0;
	margin-right: .15rem;
	vertical-align: -0.15em;
}

.trust__badge svg {
	width: 1.25em;
	height: 1.25em;
	flex-shrink: 0;
	display: block;
}

/* Mega panel under parent — 4 columns, fixed width (not full nav width). */
.primary-nav .has-mega {
	position: static;
}

.primary-nav .mega {
	left: 50%;
	right: auto;
	width: 920px;
	max-width: min(920px, calc(100% - 2rem));
	top: calc(100% - .85rem);
	padding: 1.1rem 1rem 1.2rem;
	border-radius: 0 0 .85rem .85rem;
	box-shadow: 0 18px 40px rgba(17, 32, 42, .14);
	transform: translateX(-50%) translateY(6px);
	pointer-events: none;
	transition: opacity .15s ease, transform .15s ease, visibility .15s linear;
	transition-delay: .16s;
}

.primary-nav .mega::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -1.1rem;
	height: 1.1rem;
}

.primary-nav .mega > .container {
	width: auto;
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.primary-nav .mega__grid {
	grid-template-columns: repeat(4, 1fr);
	gap: .25rem .5rem;
}

/* Title-only mega links — default style. */
.mega__item--title {
	align-items: flex-start;
	text-align: left;
	padding: .4rem .5rem;
	font-size: .82rem;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	white-space: nowrap;
}

.mega__item--title:hover {
	transform: none;
}

@media (max-width: 991.98px) {
	.primary-nav .mega {
		width: auto;
		max-width: none;
		padding: .35rem 0 .75rem .75rem;
		border-radius: 0;
		box-shadow: none;
	}

	.primary-nav .mega__grid {
		grid-template-columns: 1fr;
	}

	.mega__item--title {
		white-space: normal;
	}
}

/* The "detailed" mega-menu style adds price and Add to cart, matching the
   live site. It reuses .mega__item's flex column, moving the hover state onto
   the inner link because the card is no longer a single anchor. */

.mega__item--detailed {
	position: relative;
	justify-content: flex-start;
}

.mega__item--detailed:hover {
	background: #fff8e7;
	transform: translateY(-2px);
}

.mega__link {
	color: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
}

.mega__item--detailed:hover .mega__link {
	color: #4dae63;
}

.mega__sale {
	position: absolute;
	top: .2rem;
	left: .2rem;
	background: #4dae63;
	border-radius: 999px;
	color: #fff;
	font-size: .62rem;
	font-weight: 700;
	letter-spacing: .02em;
	line-height: 1;
	padding: .25rem .45rem;
	text-transform: uppercase;
}

.mega__price {
	display: block;
	font-size: .8rem;
	font-weight: 700;
	margin-top: .35rem;
	color: #11202a;
}

.mega__price del {
	color: #8a939b;
	font-weight: 500;
	margin-right: .25rem;
}

.mega__price ins {
	color: #4dae63;
	text-decoration: none;
}

.mega__cart {
	background: #4dae63;
	border-radius: .45rem;
	color: #fff;
	display: inline-block;
	font-size: .72rem;
	font-weight: 700;
	line-height: 1;
	margin-top: .45rem;
	padding: .42rem .7rem;
	text-decoration: none;
	transition: background .15s ease;
}

.mega__cart:hover,
.mega__cart:focus {
	background: #3d8f50;
	color: #fff;
}

/* WooCommerce hides its own "amount" wrapper text from screen readers here. */
.mega__price .screen-reader-text {
	position: absolute !important;
}

/* --------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

/* Quantity input beside the product's Add to cart button. */
.price-row .wps-cart-form {
	align-items: center;
	display: inline-flex;
	gap: .5rem;
}

.price-row .quantity input.qty {
	border: 1px solid #e6e9ec;
	border-radius: .5rem;
	height: 42px;
	padding: .35rem .4rem;
	text-align: center;
	width: 68px;
}

/* ----------------------------------------------- header live search */

/* Sits between the logo and the contact details; .header-top__inner is a
   space-between flex row, so this just needs to be allowed to grow. */
.header-search {
	flex: 1 1 320px;
	max-width: 460px;
	position: relative;
}

.header-search .widget-search {
	margin: 0;
}

.header-search__panel {
	background: #fff;
	border: 1px solid #e6e9ec;
	border-radius: .75rem;
	box-shadow: 0 18px 38px rgba(17, 32, 42, .16);
	left: 0;
	max-height: 420px;
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: calc(100% + .45rem);
	z-index: 1050;
}

.header-search__panel[hidden] {
	display: none;
}

.header-search__item {
	align-items: center;
	border-bottom: 1px solid #f1f3f5;
	color: #11202a;
	display: flex;
	gap: .7rem;
	padding: .6rem .8rem;
	text-decoration: none;
}

.header-search__item:last-of-type {
	border-bottom: 0;
}

.header-search__item:hover,
.header-search__item.is-active {
	background: #fff8e7;
	color: #4dae63;
}

.header-search__item img {
	border: 1px solid #e6e9ec;
	border-radius: 50%;
	flex: 0 0 auto;
	height: 40px;
	object-fit: cover;
	width: 40px;
}

.header-search__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.header-search__title {
	font-size: .9rem;
	font-weight: 600;
	line-height: 1.25;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.header-search__meta {
	color: #6b7280;
	font-size: .78rem;
	margin-top: .1rem;
}

.header-search__empty {
	color: #6b7280;
	font-size: .9rem;
	margin: 0;
	padding: .9rem 1rem;
}

.header-search__all {
	background: #f8f9fa;
	color: #4dae63;
	display: block;
	font-size: .85rem;
	font-weight: 700;
	padding: .65rem .8rem;
	text-align: center;
	text-decoration: none;
}

.header-search__all:hover {
	background: #fff8e7;
}

/* Inside the mobile off-canvas the panel flows inline rather than overlaying. */
.offcanvas .header-search__panel {
	box-shadow: none;
	position: static;
	margin-top: .5rem;
	max-height: 300px;
}

@media (max-width: 1199.98px) {
	.header-search {
		flex-basis: 240px;
	}
}

/* ------------------------------------------------------ scroll panes */

/* Used by the product Details tab and the home page's long-form copy. The text
   stays in the markup — only its visible height is capped — so search engines
   still see all of it. The pane is focusable so it can be scrolled by keyboard. */
.wps-scrollpane {
	max-height: var(--wps-pane-height, 600px);
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding-right: .9rem;
	scroll-behavior: smooth;
	scrollbar-color: #4dae63 #eef1f3;
	scrollbar-width: thin;
}

.wps-scrollpane:focus-visible {
	outline: 3px solid #4dae63;
	outline-offset: 4px;
}

.wps-scrollpane::-webkit-scrollbar {
	width: 8px;
}

.wps-scrollpane::-webkit-scrollbar-track {
	background: #eef1f3;
	border-radius: 999px;
}

.wps-scrollpane::-webkit-scrollbar-thumb {
	background: #4dae63;
	border-radius: 999px;
}

.wps-scrollpane::-webkit-scrollbar-thumb:hover {
	background: #3d8f50;
}

.product-tabs #tab-details.wps-scrollpane {
	max-height: var(--wps-pane-height, 670px);
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-gutter: stable;
}

/* A soft cue that there is more to read, drawn over the bottom edge of the
   pane. theme.js adds .wps-show-fade only while the pane actually overflows,
   and removes it once the visitor reaches the end. */
[data-wps-scroll-wrap] {
	position: relative;
}

[data-wps-scroll-wrap]::after {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
	bottom: 0;
	content: "";
	height: 46px;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	transition: opacity .2s ease;
}

[data-wps-scroll-wrap].wps-show-fade::after {
	opacity: 1;
}

/* Inside the product tab card the fade must sit within the rounded border. */
.product-tabs .tab-content::after {
	border-radius: 0 0 1rem 1rem;
	bottom: 1px;
	left: 1px;
	right: 1px;
	height: 42px;
}

/* The home copy block sits on the cream section background, so its fade has to
   match that rather than white. */
.content-block [data-wps-scroll-wrap]::after {
	background: linear-gradient(to bottom, rgba(255, 248, 231, 0), #fff8e7);
}

/* Phones/tablets: show full Details content (no nested scroll cage). The
   custom --wps-pane-height inline var only applies from lg up. */
@media (max-width: 991.98px) {
	.wps-scrollpane,
	.product-tabs #tab-details.wps-scrollpane {
		max-height: none;
		overflow: visible;
		padding-right: 0;
	}

	.product-tabs [data-wps-scroll-wrap]::after,
	.product-tabs .tab-content::after {
		display: none;
	}
}

/* WooCommerce's <del>/<ins> inside the design's price spans — the spans already
   carry the strikethrough and underline, so reset the elements' own defaults. */
.price-row .price-old del,
.price-row .price-new ins {
	background: none;
	color: inherit;
	font: inherit;
	text-decoration: inherit;
}

/* ------------------------------------------------------ product reviews */

/* Star rating built from radio inputs: keyboard operable, works without JS,
   and posts the plain `rating` value WooCommerce validates. Rendered 5→1 so
   `input:checked ~ label` can colour every star up to the chosen one;
   row-reverse puts them back in visual order. */
.review-rating {
	border: 0;
	margin: 0 0 1rem;
	padding: 0;
}

.review-rating legend {
	float: none;
	font-size: inherit;
	margin-bottom: .3rem;
	padding: 0;
	width: auto;
}

.review-rating__stars {
	display: inline-flex;
	flex-direction: row-reverse;
	gap: 4px;
	justify-content: flex-end;
}

.review-rating__stars input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.review-rating__stars label {
	color: #dfe3e6;
	cursor: pointer;
	line-height: 1;
	margin: 0;
	transition: color .12s ease;
}

.review-rating__stars label svg {
	height: 1.4rem;
	width: 1.4rem;
}

.review-rating__stars input:checked ~ label,
.review-rating__stars label:hover,
.review-rating__stars label:hover ~ label {
	color: #f39c12;
}

.review-rating__stars input:focus-visible + label {
	outline: 2px solid #4dae63;
	outline-offset: 2px;
}

/* Existing reviews list. */
.wps-reviews {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
}

.wps-reviews .comment_container {
	align-items: flex-start;
	border-bottom: 1px solid #e9ecef;
	display: flex;
	gap: .9rem;
    padding: 1.1rem 0;
}

.wps-reviews img.avatar {
	border-radius: 50%;
	flex: 0 0 auto;
	height: 48px;
	width: 48px;
}

.wps-reviews .comment-text {
	flex: 1 1 auto;
	min-width: 0;
}

.wps-reviews .woocommerce-review__author {
	color: #11202a;
	font-weight: 700;
}

.wps-reviews .woocommerce-review__published-date {
	color: #8a8f93;
	font-size: .85rem;
}

.wps-reviews .star-rating {
	color: #f39c12;
	margin-bottom: .35rem;
}

.wps-reviews .description p:last-child {
	margin-bottom: 0;
}

.woocommerce-verification-required {
	background: #FFF8E7;
	border: 1px solid #F39C12;
	border-radius: 10px;
	margin: 0;
	padding: 1rem 1.25rem;
}

#tab-reviews .woocommerce-Reviews {
	display: grid;
	gap: 1.35rem;
}

#tab-reviews .woocommerce-Reviews > .h4,
#tab-reviews #comments > .h4,
#tab-reviews #comments h2 {
	color: #11202a;
	font-size: 1.2rem;
	font-weight: 800;
	margin: 0;
}

#tab-reviews .reviews-empty {
	background: #f7f9f8;
	border: 1px dashed #d7ddd8;
	border-radius: .85rem;
	color: #6c7a86;
	margin: 0;
	padding: 1rem 1.1rem;
}

.wps-review-card {
	background: #f7f9f8;
	border: 1px solid #e6e9ec;
	border-radius: 1rem;
	padding: 1.15rem 1.1rem 1.25rem;
}

@media (min-width: 768px) {
	.wps-review-card {
		padding: 1.4rem 1.45rem 1.5rem;
	}
}

.wps-review-form__title,
#tab-reviews .comment-reply-title,
#tab-reviews #reply-title {
	color: #11202a;
	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.35;
	margin: 0 0 .45rem;
}

.review-form .comment-reply-title small {
	font-size: .8rem;
	font-weight: 400;
	margin-left: .5rem;
}

#tab-reviews .review-form__note {
	color: #6c7a86;
	font-size: .9rem;
	margin: 0 0 1.05rem;
}

#tab-reviews .wps-review-form__form {
	margin: 0;
}

#tab-reviews .wps-review-form__row {
	display: grid;
	gap: .85rem;
	margin: 0 0 1rem;
}

@media (min-width: 768px) {
	#tab-reviews .wps-review-form__row {
		grid-template-columns: 1fr 1fr;
	}
}

#tab-reviews .wps-review-field {
	margin: 0 0 1rem;
}

#tab-reviews .form-label,
#tab-reviews .wps-review-field label,
#tab-reviews .review-rating legend {
	color: #11202a;
	display: block;
	float: none;
	font-family: "Quicksand", "Outfit", sans-serif;
	font-size: .84rem;
	font-weight: 700;
	margin: 0 0 .4rem;
	padding: 0;
	width: auto;
}

#tab-reviews .form-control,
#tab-reviews input[type="text"],
#tab-reviews input[type="email"],
#tab-reviews textarea {
	background: #fff;
	border: 1px solid #dce2e6;
	border-radius: .7rem;
	box-shadow: none;
	color: #11202a;
	display: block;
	font-size: 1rem;
	max-width: 100%;
	padding: .7rem .9rem;
	width: 100%;
}

#tab-reviews .form-control:focus,
#tab-reviews input[type="text"]:focus,
#tab-reviews input[type="email"]:focus,
#tab-reviews textarea:focus {
	border-color: #4DAE63;
	box-shadow: 0 0 0 .2rem rgba(77, 174, 99, .16);
	outline: none;
}

#tab-reviews textarea {
	min-height: 140px;
	resize: vertical;
}

#tab-reviews .review-rating {
	background: #fff;
	border: 1px solid #e6e9ec;
	border-radius: .75rem;
	margin: 0 0 1rem;
	padding: .85rem 1rem;
}

#tab-reviews .review-rating__stars {
	display: inline-flex;
	flex-direction: row-reverse;
	gap: 6px;
	justify-content: flex-end;
}

#tab-reviews .review-rating__stars input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

#tab-reviews .review-rating__stars label {
	color: #c5ccd1;
	cursor: pointer;
	line-height: 1;
	margin: 0;
	transition: color .12s ease, transform .12s ease;
}

#tab-reviews .review-rating__stars label svg {
	display: block;
	height: 1.7rem;
	width: 1.7rem;
}

#tab-reviews .review-rating__stars input:checked ~ label,
#tab-reviews .review-rating__stars label:hover,
#tab-reviews .review-rating__stars label:hover ~ label {
	color: #F39C12;
}

#tab-reviews .review-rating__stars label:hover {
	transform: translateY(-1px);
}

#tab-reviews .wps-review-form__cookies {
	align-items: flex-start;
	display: flex;
	gap: .55rem;
	margin: 0 0 1.1rem;
}

#tab-reviews .wps-review-form__cookies .form-check-input {
	flex: 0 0 auto;
	margin-top: .2rem;
}

#tab-reviews .wps-review-form__cookies .form-check-label {
	color: #6c7a86;
	font-size: .9rem;
	line-height: 1.45;
}

#tab-reviews .form-submit {
	margin: 0;
}

#tab-reviews .wps-review-form__submit,
#tab-reviews .form-submit .btn-brand,
#tab-reviews .form-submit input[type="submit"] {
	appearance: none;
	background: #4DAE63;
	border: 1px solid #4DAE63;
	border-radius: .7rem;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 700;
	justify-content: center;
	min-height: 2.75rem;
	padding: .75rem 1.35rem;
	width: 100%;
}

@media (min-width: 768px) {
	#tab-reviews .wps-review-form__submit,
	#tab-reviews .form-submit .btn-brand,
	#tab-reviews .form-submit input[type="submit"] {
		width: auto;
	}
}

#tab-reviews .wps-review-form__submit:hover,
#tab-reviews .form-submit .btn-brand:hover,
#tab-reviews .form-submit input[type="submit"]:hover {
	background: #3f9753;
	border-color: #3f9753;
	color: #fff;
}

#tab-reviews .wps-reviews {
	display: grid;
	gap: .85rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

#tab-reviews .wps-reviews > li {
	background: #fff;
	border: 1px solid #e6e9ec;
	border-radius: .85rem;
	margin: 0;
	padding: 1rem 1.05rem;
}

#tab-reviews .wps-reviews .comment_container {
	align-items: flex-start;
	border: 0;
	display: flex;
	gap: .9rem;
	padding: 0;
}

#tab-reviews .wps-reviews img.avatar {
	border-radius: 50%;
	flex: 0 0 auto;
	height: 48px;
	width: 48px;
}

#tab-reviews .wps-reviews .star-rating {
	color: #F39C12;
	margin: .2rem 0 .4rem;
}

/* ------------------------------------- standard / custom size selection */

/*
 * The product page's two routes to an order sit behind a segmented toggle:
 * "Standard size" is a real add-to-cart form for a size we already print,
 * "Custom size" is the quote form. Products with no standard sizes never
 * render this wrapper at all — they show the quote form on its own.
 */

.product-buy__excerpt {
	color: #3d4a55;
	font-size: 1rem;
	line-height: 1.55;
	margin: 0 0 1rem;
}

.product-buy__excerpt p {
	margin: 0 0 .55rem;
}

.product-buy__excerpt p:last-child {
	margin-bottom: 0;
}

.product-buy__tabs {
	background: #fff;
	border: 1px solid #e6e9ec;
	border-radius: .75rem;
	display: flex;
	gap: .25rem;
	list-style: none;
	margin: 0 0 .75rem;
	padding: .3rem;
}

.product-buy__tabs .nav-item {
	flex: 1 1 0;
}

.product-buy__tabs .nav-link {
	background: transparent;
	border: 0;
	border-radius: .55rem;
	color: #11202A;
	font-size: .95rem;
	font-weight: 600;
	padding: .6rem .75rem;
	transition: background-color .15s ease, color .15s ease;
	width: 100%;
}

.product-buy__tabs .nav-link:hover {
	background: #FFF8E7;
}

.product-buy__tabs .nav-link.active {
	background: #F39C12;
	color: #fff;
}

.product-buy__tabs .nav-link:focus-visible {
	outline: 2px solid #11202A;
	outline-offset: 2px;
}

/* The custom pane already carries the quote form's own white card, so only
   the standard pane needs one building. */
.product-buy__form {
	background: #fff;
	border: 1px solid #e6e9ec;
	border-radius: 1rem;
	box-shadow: 0 18px 40px rgba(17, 32, 42, .06);
	padding: 1.5rem;
}

/* Size and quantity share a row: on their own they left the panel looking
   half-empty beside the gallery. */
.product-buy__row {
	display: grid;
	gap: .75rem 1rem;
	grid-template-columns: 1fr;
	margin-bottom: .9rem;
}

@media (min-width: 576px) {
	.product-buy__row {
		grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	}
}

.product-buy__field {
	margin-bottom: 0;
}

.product-buy__form .form-label {
	color: #11202A;
	display: block;
	font-size: .85rem;
	font-weight: 600;
	margin-bottom: .3rem;
}

.product-buy__form .form-select {
	border-color: #e6e9ec;
	border-radius: .5rem;
	font-size: .92rem;
	padding: .55rem .75rem;
}

/* WooCommerce prints its own quantity wrapper; match the select beside it. */
.product-buy__form .quantity {
	display: block;
}

.product-buy__form .quantity .qty {
	border: 1px solid #e6e9ec;
	border-radius: .5rem;
	font-size: .92rem;
	padding: .55rem .75rem;
	width: 100%;
}

.product-buy__summary {
	background: #FFF8E7;
	border-radius: .6rem;
	display: grid;
	gap: .35rem .75rem;
	grid-template-columns: auto 1fr;
	margin: 0 0 1rem;
	padding: .8rem 1rem;
}

.product-buy__summary dt {
	color: #11202A;
	font-size: .9rem;
	font-weight: 600;
	margin: 0;
}

.product-buy__summary dd {
	margin: 0;
	text-align: right;
}

.product-buy__unit .price-old {
	color: #9a8f76;
	font-weight: 600;
	margin-right: .35rem;
	text-decoration: line-through;
}

.product-buy__unit .price-new {
	color: #F39C12;
	font-weight: 800;
}

.product-buy__total {
	color: #11202A;
	font-size: 1.15rem;
	font-weight: 800;
}

.product-buy__submit {
	background: #F39C12;
	border: 0;
	border-radius: .4rem;
	color: #fff;
	font-weight: 700;
	padding: .7rem 1.6rem;
	width: 100%;
}

.product-buy__submit:hover,
.product-buy__submit:focus {
	background: #d9890c;
	color: #fff;
}

.product-buy__note {
	color: #6b7784;
	font-size: .82rem;
	margin: .85rem 0 0;
	text-align: center;
}

/* The chosen size, shown under the product name in the cart and at checkout. */
.woocommerce-cart .variation,
.woocommerce-checkout .variation {
	font-size: .85rem;
	margin: .35rem 0 0;
}

@media (max-width: 575.98px) {
	.product-buy__tabs .nav-link {
		font-size: .88rem;
		padding: .55rem .4rem;
	}

	.product-buy__form {
		padding: 1.25rem;
	}
}

/*
 * The gallery was capped at 540px inside a half-width column, which left a
 * band of dead space down the middle of the hero. Let it fill the column
 * instead — the hero row's own gutter is the only gap that should be there.
 */
.product-hero .product-gallery {
	margin-top: 0;
	/* Was 540px inside a half-width column, which left a band of dead space
	   down the middle of the hero. Nearly fills the column now, without the
	   main image growing tall enough to dwarf the panel opposite. */
	max-width: 600px;
	width: 100%;
}

@media (min-width: 992px) {
	.product-hero .product-buy {
		padding-left: .5rem;
	}
}

/*
 * Hero layout. Stacked, the source order is the layout: title, gallery, buy
 * panel. From lg up a grid lifts the title into the right-hand column so it
 * sits directly above the Standard/Custom tabs, with the gallery spanning both
 * rows on the left.
 */
.product-hero__layout {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: minmax(0, 1fr);
}

.product-hero__head h1 {
	margin-bottom: 0;
}

@media (min-width: 992px) {
	.product-hero__layout {
		align-items: start;
		column-gap: 1.5rem;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-rows: auto 1fr;
		row-gap: 1rem;
	}

	.product-hero__head {
		grid-column: 2;
		grid-row: 1;
	}

	.product-hero__media {
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.product-hero__buy {
		grid-column: 2;
		grid-row: 2;
	}
}

/* --------------------------------- compact custom-size quote form */

/*
 * The quote form sits behind a tab opposite a short buy panel, so its default
 * spacing made switching to it jump the page. Tightened here only — the same
 * form on the home, contact and blog pages keeps its roomier layout.
 */

.product-buy__panes .quote-form__title {
	font-size: .98rem;
	padding: .7rem 1rem;
}

.product-buy__panes .quote-form__body {
	padding: 1.15rem 1.25rem 1.3rem;
}

.product-buy__panes .quote-form .row {
	--bs-gutter-x: .75rem;
	--bs-gutter-y: .55rem;
}

/*
 * Labels stay on screen for every field.
 *
 * They used to be visually hidden wherever the input carried a placeholder,
 * because the placeholder repeated the label word for word ("Full Name" /
 * "Full Name"). The per-product-type quote forms broke that assumption: their
 * placeholders are examples, not echoes — "Custom Size" is prompted with
 * "e.g. 10 oz wide rim", "Quantity" with "Minimum 100" — so hiding the label
 * threw away the only thing naming the field, and left paired columns
 * misaligned wherever one had a label and the other did not.
 */
.product-buy__panes .quote-form .form-label {
	display: block;
}

.product-buy__panes .quote-form .form-control,
.product-buy__panes .quote-form .form-select {
	padding: .45rem .7rem;
}

.product-buy__panes .quote-form textarea.form-control {
	min-height: 62px;
}

/* Match the Buy now button opposite, so the two tabs end the same way. */
.product-buy__panes .quote-form .btn-brand {
	font-size: 1rem;
	padding: .65rem 1rem;
	width: 100%;
}


/* Plus-style header overrides */
.site-header,
.primary-nav,
.primary-nav__pill {
	overflow: visible;
}

.primary-nav {
	position: relative;
	background: transparent;
}

.primary-nav .has-mega {
	position: static;
}

.primary-nav .mega {
	left: 50%;
	right: auto;
	width: 920px;
	max-width: min(920px, calc(100% - 2rem));
	top: calc(100% - .85rem);
	padding: 1.1rem 1rem 1.2rem;
	border-radius: 0 0 .85rem .85rem;
	box-shadow: 0 18px 40px rgba(17, 32, 42, .14);
	transform: translateX(-50%) translateY(6px);
	pointer-events: none;
	transition: opacity .15s ease, transform .15s ease, visibility .15s linear;
	transition-delay: .16s;
}

.primary-nav .mega::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -1.1rem;
	height: 1.1rem;
}

.primary-nav .has-mega:hover > .mega,
.primary-nav .has-mega:focus-within > .mega {
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
	transition-delay: 0s;
}

.primary-nav .mega > .container {
	width: auto;
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.primary-nav .mega__grid {
	grid-template-columns: repeat(4, 1fr);
	gap: .25rem .5rem;
}

.header-top__inner {
	gap: 1.75rem;
}

.header-search {
	max-width: 560px;
}

.header-search--pill {
	max-width: 580px;
}

@media (max-width: 991.98px) {
	.primary-nav .mega {
		display: none !important;
	}

	.mega__item--title {
		white-space: normal;
	}
}


/* Plus-style hero */
.hero h1::after { display: none !important; }
.hero__title { margin-bottom: 1.25rem; }


/* Offcanvas mobile fixes */
.wps-offcanvas .wps-offcanvas__brand img,
.wps-offcanvas .wps-offcanvas__logo {
	height: 36px !important;
	width: auto !important;
	max-width: 100% !important;
	object-fit: contain !important;
}
.wps-offcanvas .header-quote__arrow {
	width: 1.05rem !important;
	height: 1.05rem !important;
	max-width: 1.05rem;
	max-height: 1.05rem;
}
.wps-offcanvas .navbar-nav {
	align-items: stretch !important;
	text-align: left;
}


/* Paragraph + container tokens */
body, p {
	color: #6c7a86;
	font-weight: 400;
}
.section-head p,
.hero__desc {
	color: #6c7a86;
	font-weight: 400;
}

/* Homepage: every <p> is exactly 16px — never larger or smaller. */
body.home main p {
	font-size: 1rem !important;
}

/* Product page: no <p> or <span> smaller than 16px. Larger inherited sizes stay. */
body.single-product p,
body.single-product span:not(.screen-reader-text):not(.visually-hidden) {
	font-size: max(16px, 1em) !important;
}
@media (min-width: 1200px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1320px;
	}
}
.hero-feature__icon {
	color: #429256;
}
.hero-feature__icon svg {
	width: 1.55rem;
	height: 1.55rem;
	opacity: 1;
}

/* --------------------------------- Contact page */

.page-hero__lead {
	color: #6c7a86;
	font-size: 1rem;
	font-weight: 400;
	max-width: 44rem;
	margin: 1.1rem auto 0;
	line-height: 1.65;
}

.contact-main {
	padding: 3.25rem 0 4.25rem;
	background: #fff;
}

@media (max-width: 767.98px) {
	.contact-main {
		padding: 2.25rem 0 3rem;
	}
}

.contact-main .section-head {
	margin-bottom: 2.25rem;
}

@media (max-width: 767.98px) {
	.contact-main .section-head {
		margin-bottom: 1.5rem;
	}
}

.contact-main .section-head p {
	font-size: 1rem;
	max-width: 40rem;
}

.contact-card {
	background: #fff;
	border: 1px solid #e6e9ec;
	border-radius: 1rem;
	padding: 1.45rem 1.1rem 1.35rem;
	height: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 12px 28px rgba(17, 32, 42, .05);
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.contact-card:hover {
	border-color: rgba(77, 174, 99, .35);
	box-shadow: 0 16px 34px rgba(17, 32, 42, .08);
	transform: translateY(-2px);
}

.contact-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #fff8e7;
	border: 1px solid rgba(243, 156, 18, .22);
	color: #4dae63;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 1rem;
	flex: 0 0 auto;
}

.contact-card__icon svg {
	width: 1.25rem;
	height: 1.25rem;
	display: block;
}

.contact-card .h5,
.contact-card h2,
.contact-card h3 {
	font-family: "Quicksand", "Outfit", sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: #11202a;
	margin: 0 0 .55rem;
	line-height: 1.3;
}

.contact-card a,
.contact-card p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.55;
	color: #6c7a86;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.contact-card a {
	color: #429256;
	font-weight: 600;
	text-decoration: none;
}

.contact-card a:hover {
	color: #4dae63;
}

.contact-main #message {
	align-items: stretch;
}

.contact-main .quote-form.quote-form--titled {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.contact-main .quote-form.quote-form--titled .quote-form__body {
	flex: 1 1 auto;
}

.contact-main .quote-form .btn-brand {
	width: 100%;
}

.contact-map {
	height: 100%;
	min-height: 420px;
	border-radius: 1rem;
	overflow: hidden;
	background: #f7f9f8;
	border: 1px solid #e6e9ec;
	box-shadow: 0 14px 34px rgba(17, 32, 42, .06);
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 420px;
	border: 0;
}

@media (max-width: 991.98px) {
	.contact-map,
	.contact-map iframe {
		min-height: 320px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.contact-card,
	.contact-card:hover {
		transition: none;
		transform: none;
	}
}

/* --------------------------------- Single blog post */

.post-head {
	background: #fff8e7;
	padding: 2.5rem 0 2.75rem;
}

@media (max-width: 767.98px) {
	.post-head {
		padding: 1.75rem 0 2rem;
	}
}

.post-head .breadcrumb-wps {
	margin-bottom: 1.25rem;
	justify-content: flex-start;
	text-align: left;
}

.post-head__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: center;
}

@media (min-width: 992px) {
	.post-head__layout--media {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
		gap: 2.5rem 3rem;
	}
}

.post-head__content {
	min-width: 0;
}

.post-cat {
	display: inline-flex;
	align-items: center;
	font-family: "Montserrat", sans-serif;
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #fff;
	background: #4dae63;
	border-radius: 50rem;
	padding: .35rem .9rem;
	margin: 0 0 .9rem;
}

.post-title {
	font-family: "Quicksand", "Outfit", sans-serif;
	font-size: clamp(1.75rem, 3.2vw, 2.55rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.02em;
	color: #11202a;
	margin: 0 0 1.15rem;
	max-width: 36rem;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .55rem .85rem;
	color: #6c7a86;
	font-size: .92rem;
	margin: 0;
}

.post-meta .dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #d5dade;
	display: inline-block;
}

.post-meta svg {
	width: .95rem;
	height: .95rem;
	margin-right: .35rem;
	vertical-align: -0.15em;
	color: #4dae63;
}

.post-author {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	font-weight: 600;
	color: #11202a;
}

.post-author .avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(77, 174, 99, .14);
	color: #429256;
	font-size: .72rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	letter-spacing: .02em;
}

.post-featured {
	margin: 0;
	border-radius: 1.15rem;
	overflow: hidden;
	background: #f7f9f8;
	border: 1px solid #e6e9ec;
	box-shadow: 0 18px 40px rgba(17, 32, 42, .08);
}

.post-featured img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 260px;
	max-height: 380px;
	object-fit: cover;
}

.post-featured figcaption {
	padding: .7rem 1rem .85rem;
	font-size: .88rem;
	color: #6c7a86;
	background: #fff;
}

@media (max-width: 991.98px) {
	.post-featured {
		order: -1;
		border-radius: 1rem;
	}

	.post-featured img {
		min-height: 200px;
		max-height: 280px;
	}
}

.post-section {
	padding: 2.75rem 0 4rem;
	background: #fff;
}

@media (max-width: 767.98px) {
	.post-section {
		padding: 2rem 0 3rem;
	}
}

.post-body {
	color: #6c7a86;
	font-size: 1rem;
	line-height: 1.75;
}

.post-body > *:first-child {
	margin-top: 0;
}

.post-body p {
	margin: 0 0 1.15rem;
	font-size: 1rem;
	line-height: 1.75;
	color: #6c7a86;
}

.post-body h2,
.post-body h3,
.post-body h4 {
	color: #11202a;
	font-weight: 800;
	line-height: 1.3;
	margin: 2rem 0 .85rem;
}

.post-body h2 {
	font-size: clamp(1.35rem, 2.2vw, 1.65rem);
}

.post-body h3 {
	font-size: 1.2rem;
}

.post-body h4 {
	font-size: 1.05rem;
}

.post-body ul,
.post-body ol {
	margin: 0 0 1.25rem;
	padding-left: 1.25rem;
}

.post-body li {
	margin-bottom: .45rem;
}

.post-body a {
	color: #429256;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: .15em;
}

.post-body a:hover {
	color: #4dae63;
}

.post-body blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 4px solid #4dae63;
	background: rgba(77, 174, 99, .06);
	border-radius: 0 .75rem .75rem 0;
	color: #11202a;
	font-weight: 500;
}

.post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin: 1.75rem 0 0;
	padding-top: 1.5rem;
	border-top: 1px solid #e6e9ec;
}

.post-tags a {
	font-size: .82rem;
	font-weight: 600;
	color: #6c7a86;
	background: #f7f9f8;
	border: 1px solid #e6e9ec;
	border-radius: 50rem;
	padding: .35rem .85rem;
	text-decoration: none;
}

.post-tags a:hover {
	background: #4dae63;
	border-color: #4dae63;
	color: #fff;
}

.single .related .section-head {
	margin-bottom: 2rem;
}

.wps-comments .comment-reply-title {
	font-size: 1.35rem;
	font-weight: 800;
	color: #11202a;
	margin: 0 0 1rem;
}

.wps-comments .comment-notes,
.wps-comments .logged-in-as,
.wps-comments .no-comments {
	font-size: .92rem;
	color: #6c7a86;
	margin-bottom: 1rem;
}

.wps-comments .comment-form label {
	display: block;
	font-family: "Quicksand", "Outfit", sans-serif;
	font-size: .84rem;
	font-weight: 700;
	color: #11202a;
	margin-bottom: .35rem;
}

.wps-comments .comment-form .form-control,
.wps-comments .comment-form input[type="text"],
.wps-comments .comment-form input[type="email"],
.wps-comments .comment-form input[type="url"],
.wps-comments .comment-form textarea {
	display: block;
	width: 100%;
	border-radius: .65rem;
	border: 1px solid #e0e4e8;
	font-size: 1rem;
	padding: .65rem .85rem;
	background: #fff;
	color: #11202a;
	transition: border-color .18s ease, box-shadow .18s ease;
}

.wps-comments .comment-form .form-control:focus,
.wps-comments .comment-form input[type="text"]:focus,
.wps-comments .comment-form input[type="email"]:focus,
.wps-comments .comment-form input[type="url"]:focus,
.wps-comments .comment-form textarea:focus {
	outline: none;
	border-color: #4dae63;
	box-shadow: 0 0 0 .2rem rgba(77, 174, 99, .14);
}

.wps-comments .comment-form textarea {
	min-height: 140px;
	resize: vertical;
}

.wps-comments .comment-form .comment-form-author,
.wps-comments .comment-form .comment-form-email,
.wps-comments .comment-form .comment-form-url,
.wps-comments .comment-form .comment-form-comment {
	margin-bottom: 1rem;
}

.wps-comments .comment-form .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: .55rem;
	margin-bottom: 1.15rem;
}

.wps-comments .comment-form .comment-form-cookies-consent label {
	margin: 0;
	font-family: inherit;
	font-size: .9rem;
	font-weight: 400;
	color: #6c7a86;
	line-height: 1.45;
}

.wps-comments .comment-form .form-submit {
	margin: 0;
}

.wps-comments .comment-form .btn-brand {
	border: 0;
	min-height: 48px;
	padding: .75rem 1.4rem;
}

/* Keep sidebar quote readable on narrow columns */
.blog-sidebar .quote-form.quote-form--titled {
	margin-top: .25rem;
}

.blog-sidebar .quote-form .btn-brand {
	width: 100%;
}

/* --------------------------------- Product customization tables */

.customization-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.customization-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem 2rem;
		align-items: start;
	}
}

.customization-grid__col {
	min-width: 0;
}

.customization-grid .spec-heading {
	margin: 0 0 .85rem;
	font-size: clamp(1.05rem, 2.4vw, 1.2rem);
	font-weight: 800;
	color: #11202a;
}

.customization-grid .spec-table {
	width: 100%;
	margin: 0;
}

.customization-grid .spec-table th,
.customization-grid .spec-table td {
	font-size: .95rem;
}

@media (max-width: 767.98px) {
	.customization-grid .spec-table th,
	.customization-grid .spec-table td {
		font-size: .92rem;
	}
}

/* Product "Why Choose" cards without icons */
.why-choose-card--no-icons .trust-badge {
	display: block;
	text-align: left;
	gap: 0;
}

.why-choose-card--no-icons .trust-badge__icon {
	display: none !important;
}

.why-choose-card--no-icons .trust-badge__body {
	width: 100%;
}

.why-choose-card--no-icons .trust-badge__title,
.why-choose-card--no-icons .trust-badge h6,
.why-choose-card--no-icons .trust-badge .h6 {
	margin-top: 0;
}

/* --------------------------------- About page */

.about-hero {
	position: relative;
	padding: 2.75rem 0 3rem;
	background: #fff8e7;
	overflow: hidden;
}

@media (max-width: 767.98px) {
	.about-hero {
		padding: 2rem 0 2.25rem;
	}
}

.about-hero .breadcrumb-wps {
	margin-bottom: 1rem;
	justify-content: flex-start;
	text-align: left;
}

.about-hero__title {
	font-family: "Quicksand", "Outfit", sans-serif;
	font-size: clamp(2rem, 3.4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.02em;
	color: #11202a;
	margin: 0 0 1rem;
}

.about-hero__title::after {
	content: "";
	display: block;
	width: 84px;
	height: 4px;
	border-radius: 4px;
	background: #4dae63;
	margin: 1rem 0 0;
}

.about-hero__lead {
	color: #6c7a86;
	font-size: 1rem;
	line-height: 1.65;
	max-width: 34rem;
	margin: 0 0 1.5rem;
}

.about-hero__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .85rem 1rem;
}

.about-hero__media {
	position: relative;
	border-radius: 1.15rem;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e6e9ec;
	box-shadow: 0 18px 40px rgba(17, 32, 42, .08);
}

.about-hero__media img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: cover;
}

@media (max-width: 767.98px) {
	.about-hero__media {
		border-radius: 1rem;
	}

	.about-hero__media img {
		max-height: 280px;
	}
}

/* wps-cache-bust:1.0.3 2026-08-17T05:52:06Z */

/* wps-cache-bust:1.0.4 */

/* wps-cache-bust:1.1.1 */

/* Compact category-page quote form */
.cat-hero__form {
	border-radius: 1rem;
	padding: 1.05rem 1rem 1rem;
}

.cat-hero__form .quote-form .row {
	--bs-gutter-x: .7rem;
	--bs-gutter-y: .6rem;
}

.cat-hero__form .quote-form .form-label {
	font-size: .8rem;
	margin-bottom: .22rem;
}

.cat-hero__form .quote-form .form-control,
.cat-hero__form .quote-form .form-select {
	font-size: .9rem;
	padding: .5rem .7rem;
}

.cat-hero__form .quote-form textarea.form-control {
	min-height: 72px;
}

.cat-hero__form .quote-form .btn-brand {
	margin-top: .15rem;
	padding: .65rem 1.1rem;
	font-size: .95rem;
}

@media (max-width: 991.98px) {
	.cat-hero__form {
		padding: .9rem .8rem .85rem;
		border-radius: .9rem;
	}
}

/* Sale badge on main image only + mobile product tweaks */
.product-gallery__main {
	position: relative;
}

.product-gallery__main .sale-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #8a7d12;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	pointer-events: none;
}

@media (max-width: 991.98px) {
	.product-hero {
		padding: 1.5rem 0 2rem;
	}

	.product-hero .product-gallery {
		max-width: none;
		margin-top: 0;
	}
}

@media (max-width: 575.98px) {
	.product-gallery__main .sale-badge {
		width: 48px;
		height: 48px;
		font-size: 16px;
		top: 6px;
		left: 6px;
	}

	.product-buy__tabs .nav-link {
		font-size: .78rem;
		padding: .5rem .35rem;
		white-space: normal;
		line-height: 1.15;
	}
}

/* Legal pages: no decorative lines under title or section headings */
.legal-hero h1::after {
	display: none;
}

.legal-prose h2 {
	border-bottom: none;
	padding-bottom: 0;
}
