/**
 * Mind35 Delivery - main stylesheet
 *
 * Generated from the inline <style> blocks that used to live in the
 * template files. Page-specific rules are scoped with the body class
 * added by M35_Assets (`m35-tpl-{template-basename}`) so that pages
 * which reused the same class names keep their own values.
 *
 * @package Mind35
 */

/* ==========================================================================
   Shared / global styles (merged from the old mind-style.css)
   ========================================================================== */
:root {
	--m35-green: #0b6b3a;
	--m35-green-dark: #0b6b3a;
	--m35-green-2: #0a6336;
	--m35-lime: #9ad000;
	--m35-cream: #eef6e3;
	--m35-white: #ffffff;
	--m35-text: #111111;
	--m35-muted: #4b5563;
	--m35-radius: 14px;
	--m35-shadow: 0 10px 25px rgba(0,0,0,.12);
	--m35-soft-shadow: 0 10px 30px rgba(17,17,17,.05);
	--m35-border: rgba(17,17,17,.08);
}

body, .woocommerce, .woocommerce-page {
	font-family: 'Inter', sans-serif !important;
}

.m35-category-breadcrumb > nav {
	color: #111 !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	margin: 0 0 1.2em !important;
}

.m35-category-breadcrumb > nav > a {
	color: #111 !important;
	font-size: 16px !important;
	font-weight: 600 !important;
}

.m35-shopall-wrap {
	min-height: 100vh;
	padding-bottom: 80px;
	width: 100%;
	overflow-x: hidden;
	background: #fff;
}

.m35-main-container {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 40px 8%;
	box-sizing: border-box;
}

.home .m35-hero {
	margin-bottom: 0px;
	border-radius: 0;
}

.m35-hero {
	position: relative;
	border-radius: var(--m35-radius);
	overflow: hidden;
	min-height: 350px;
	background-size: cover;
	background-position: center;
	box-shadow: var(--m35-shadow);
	display: flex;
	align-items: center;
	margin-bottom: 44px;
	width: 100%;
}

.m35-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.m35-hero__content {
	position: relative;
	padding: 40px 60px;
	color: #fff;
	max-width: 800px;
}

.m35-hero__kicker {
	color: var(--m35-lime);
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 8px;
	letter-spacing: 0.08em;
	font-family: 'Inter', sans-serif;
}

.m35-hero__title {
	font-family: 'Playfair Display', serif !important;
	font-size: 64px;
	font-weight: 700;
	line-height: 1;
	margin: 0 0 24px;
	text-transform: uppercase;
	color: #fff !important;
	letter-spacing: -0.02em;
}

.m35-hero__btns {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.m35-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 30px 0 30px;
	border-radius: 100px;
	font-weight: 600;
	text-decoration: none;
	font-size: 15px;
	transition: 0.3s;
	font-family: 'Inter', sans-serif !important;
}

.m35-btn--solid {
	background: var(--m35-green-dark);
	color: #fff;
}.m35-btn:hover {
	transform: translateY(-2px);
	opacity: 0.92;
}

.m35-btn--outline {
	border: 2px solid rgba(255,255,255,0.7);
	color: #fff;
}

.m35-archive-head {
	width: 100%;
	max-width: 900px;
	margin: 0 0 30px 0;
	padding: 0px 0 0;
	text-align: left;
}

.m35-archive-title {
	margin: 0 0 10px;
	font-family: "Playfair Display", serif !important;
	font-size: clamp(35px, 5vw, 35px);
	line-height: 1.1;
	font-weight: 600;
	color: var(--m35-text);
	letter-spacing: -0.02em;
}

.m35-archive-subtitle {
	margin: 0;
	max-width: 720px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.8;
	color: var(--m35-muted);
	font-weight: 400;
}

.woocommerce-products-header, .term-description, .archive-description {
	display: none !important;
}

#m35-archive-grid {
	margin-top: 0;
}

.m35-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-top: 0;
	width: 100%;
	row-gap: 30px;
}

.m35-product-item {
	height: 100%;
}

.m35-stockCard {
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--m35-soft-shadow);
	border: 1px solid var(--m35-border);
	padding: 0 15px 0 15px;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.3s, box-shadow 0.3s;
	text-decoration: none;
	box-sizing: border-box;
}

.m35-stockCard:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 34px rgba(17,17,17,.07);
}

.m35-stockImgWrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 220px;
	width: 100%;
	margin-bottom: 2px;
}

.m35-stockImgWrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.m35-stockName {
	font-weight: 600;
	font-size: 17px;
	color: #152015;
	margin-bottom: 12px;
	flex-grow: 1;
	line-height: 1.4;
	font-family: 'Inter', sans-serif;
	text-decoration: none;
	transition: color 0.2s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.m35-stockName:hover {
	color: var(--m35-green);
}

.m35-stockPrice {
	font-weight: 600;
	color: var(--m35-green);
	font-size: 20px;
	margin-bottom: 24px;
	font-family: 'Inter', sans-serif;
}

.m35-stockBtn {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	border-radius: 10px;
	background: var(--m35-green);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	width: 100%;
	font-family: 'Inter', sans-serif;
}

.m35-load-more-wrap {
	margin-top: 54px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.m35-load-more-btn {
	min-width: auto;
	cursor: pointer;
	border: none;
}

.m35-load-more-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none !important;
}

.m35-loader {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--m35-muted);
	display: none;
}

.m35-empty-state {
	text-align: center;
	padding: 60px 0;
}

.m35-empty-state h3 {
	margin: 0 0 10px;
	font-family: 'Playfair Display', serif;
	font-size: 34px;
	line-height: 1.2;
	color: var(--m35-text);
}

.m35-empty-state p {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--m35-muted);
}

.m35-confirm-overlay {
	position: fixed;
	inset: 0;
	background: rgba( 17, 17, 17, 0.75 );
	backdrop-filter: blur( 5px );
	-webkit-backdrop-filter: blur( 5px );
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	padding: 20px;
	opacity: 0;
	animation: m35FadeIn 0.3s ease forwards;
	font-family: 'Inter', system-ui, sans-serif;
}

.m35-confirm-box {
	background: #ffffff;
	border-radius: 16px;
	max-width: 480px;
	width: 100%;
	padding: 40px 32px 32px;
	text-align: center;
	box-shadow: 0 24px 48px rgba( 0, 0, 0, 0.2 );
	transform: translateY( 20px );
	opacity: 0;
	animation: m35SlideUp 0.4s cubic-bezier( 0.16, 1, 0.3, 1 ) 0.1s forwards;
}

@keyframes m35FadeIn {
	to {
		opacity: 1;
	}
}

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

.m35-confirm-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #eef6e3;
	color: #0b6b3a;
	margin-bottom: 24px;
}

.m35-confirm-icon svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.m35-confirm-box h2 {
	margin: 0 0 12px;
	font-size: 26px;
	font-weight: 700;
	color: #111111;
	font-family: 'Playfair Display', serif;
	letter-spacing: -0.01em;
}

.m35-confirm-box p {
	margin: 0 0 16px;
	color: #4b5563;
	font-size: 16px;
	line-height: 1.6;
}

.m35-confirm-box p.m35-accent-text {
	color: #0b6b3a;
	font-weight: 600;
	margin-bottom: 6px;
}

.m35-confirm-box p.m35-warning-text {
	color: #b45309;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 0;
}

.m35-confirm-close {
	margin-top: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 100%;
	border-radius: 12px;
	border: 0;
	background: #0b6b3a;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.1s ease;
}

.m35-confirm-close:hover {
	background: #0a6336;
}

.m35-confirm-close:active {
	transform: scale( 0.98 );
}

h1, h2, h3, h4, h5, h6, .entry-content :where( h1, h2, h3, h4, h5, h6 ) {
	font-size: 24px;
	margin-bottom: 10px;
}

header.entry-header .entry-title {

}

.entry-content {
	word-wrap: break-word;
	margin-top: 110px;
	padding: 0 20px;
}

.ast-plain-container.ast-no-sidebar #primary {
	margin-top: 70px;
}

.m35-product-short-desc ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.m35-product-short-desc p {
	color: #111 !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 16px !important;
	line-height: 1.5 !important;
}

.m35-desc-content p {
	color: #111 !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 16px !important;
	font-weight: 500;
	line-height: 1.5 !important;
}

.m35-desc-content > strong {
	color: #111 !important;
	font-size: 16px !important;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
}

.m35-tab-panel p {
	margin-bottom: 1.15em !important;
}

.m35-product-info p {
	margin-bottom: 0.75em;
}

.woocommerce-variation-description p {
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.5 !important;
}

.woocommerce-variation-availability > p {
	font-size: 16px !important;
	font-weight: 600 !important;
	color: #111111 !important;
}

.m35-breadcrumb .woocommerce-breadcrumb a {
	color: #111 !important;
}

.m35-breadcrumb .woocommerce-breadcrumb {
	color: #111 !important;
}

.m35-product-info .variations_form .variations {
	width: 100% !important;
	border: none !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	margin: 0 !important;
}

.m35-product-info .variations_form .variations tbody, .m35-product-info .variations_form .variations tr {
	display: block !important;
}

.m35-product-info .variations_form .variations tr {
	margin-bottom: 14px !important;
}

.m35-product-info .variations_form .variations tr:last-child {
	margin-bottom: 0 !important;
}

.m35-product-info .variations_form .variations th.label {
	display: block !important;
	padding: 0 0 6px 2px !important;
	border: none !important;
	width: 100% !important;
}

.m35-product-info .variations_form .variations th.label label {
	font-size: 15px !important;
	font-weight: 600 !important;
	color: #111 !important;
}

.m35-product-info .variations_form .variations td.value {
	display: block !important;
	padding: 0 !important;
	border: none !important;
	width: 100% !important;
	position: relative !important;
}

.m35-product-info .variations_form .variations select, .m35-product-info .class-name {
	width: 100% !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	background: #f6faf4 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230b6b3a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center !important;
	border: 2px solid #0b6b3a !important;
	border-radius: 120px !important;
	padding: 13px 44px 13px 16px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #222 !important;
	cursor: pointer !important;
	box-sizing: border-box !important;
	height: auto !important;
	line-height: 1.4 !important;
	font-family: inherit !important;
}

.m35-product-info .variations_form .variations select:focus {
	outline: none !important;
	border-color: #0b6b3a !important;
	background-color: #fff !important;
	box-shadow: 0 0 0 3px rgba( 11, 107, 58, 0.1 ) !important;
}

.m35-product-info .variations_form .reset_variations {
	display: inline-block !important;
	margin-top: 6px !important;
	font-size: 13px !important;
	color: #0b6b3a !important;
	text-decoration: underline !important;
	font-weight: 600 !important;
}

.m35-product-info .woocommerce-variation.single_variation {
	font-size: 20px !important;
	font-weight: 600 !important;
	color: #111111 !important;
}

.m35-product-info .single_variation_wrap {
	margin: 0 !important;
	padding: 0 !important;
}

.m35-product-info .variations_button {
	margin: 0 !important;
	padding: 0 !important;
	gap: 10px !important;
}

.m35-product-info .variations_button .quantity {
	margin: 0 !important;
	flex-shrink: 0 !important;
}

.m35-product-info .variations_button .quantity input {
	width: 60px !important;
	height: 40px !important;
	border-radius: 8px !important;
	border: 2px solid #0b6b3a !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	text-align: center !important;
	background: #f6faf4 !important;
	color: #111 !important;
	padding: 0 !important;
}

.m35-product-info .variations_button .quantity input:focus {
	outline: none !important;
	border-color: #0b6b3a !important;
	background: #fff !important;
}

.m35-product-info .variations_button .single_add_to_cart_button {
	flex: 1 !important;
	height: 50px !important;
	border-radius: 120px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	letter-spacing: 0.3px !important;
}

.m35-product-info .variations_button .single_add_to_cart_button.disabled {
	background: #b0c8b8 !important;
	cursor: not-allowed !important;
	transform: none !important;
	box-shadow: none !important;
}

.m35-stockBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 44px;
	padding: 0 24px;
	border-radius: 100px !important;
	background: #0b6b3a;
	color: #fff;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.02em;
	width: auto;
	align-self: flex-start;
	margin-bottom: 22px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	width: 100%;
}

.m35-stockBtn::after {
	content: '\f061';
	font-size: 12px;
	display: block;
   font-family: 'FontAwesome';
}

.m35-stockBtn::after {
	content: '→';
	font-size: 12px;
}

.m35-tpl-front-page .m35-stockBtn::after {
	margin-top: 4px;
}

.woocommerce-js #reviews .comment-form-comment label, .woocommerce-js #reviews .comment-form-rating label {
	font-size: 15px !important;
}

.woocommerce-js #reviews #review_form #respond p.comment-form-author input, .woocommerce-js #reviews #review_form #respond p.comment-form-email input {
	border-radius: 12px !important;
}

.woocommerce-js #reviews #review_form {
	border: unset !important;
	padding: 0 !important;
}

.wcpr-form-description {
	margin-bottom: 10px !important;
}

.wcpr-gdpr-policy {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	padding: 15px 20px;
	border-radius: 10px;
	margin-bottom: 25px !important;
	border: 1px solid #e0e0e0;
}

.m35-reviews-wrap #review_form label {
	margin-bottom: 0 !important;
	font-weight: 600 !important;
}

.wcpr-filter-container .wcpr-filter-button {
	background-color: var( --ast-global-color-0 ) !important;
	border-radius: 5px;
	color: #fff !important;
}

.wcpr-filter-container .wcpr-filter-button.wcpr-active {
	background-color: var( --ast-global-color-0 );
}

button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .ast-custom-button:hover, .button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, form[class*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover, form[class*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus, body .wp-block-file .wp-block-file__button:hover, body .wp-block-file .wp-block-file__button:focus, .woocommerce-js a.button:hover, .woocommerce button.button:hover, .woocommerce .woocommerce-message a.button:hover, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce input.button.alt:hover, .woocommerce input.button:hover, .woocommerce button.button.alt.disabled:hover, .wc-block-grid__products .wc-block-grid__product .wp-block-button__link:hover, [class*="wc-block"] button:hover, .woocommerce-js .astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart__buttons .button:not( .checkout ):not( .ast-continue-shopping ):hover, .woocommerce-js .astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart__buttons a.checkout:hover, .woocommerce button.button.alt.disabled.wc-variation-selection-needed:hover, [class*="wc-block"] .wc-block-components-button:hover, [class*="wc-block"] .wc-block-components-button:focus {
	color: #ffffff;
	background-color: #9400D3 !important;
}

.add_to_cart_button {
	border-radius: 100px !important;
}

.return-to-shop a {
	border-radius: 100px !important;
}

.woocommerce-notices-wrapper {
	margin: 26px 0 0;
}

.m35-notices-wrap .woocommerce-message {
	padding: 18px 22px 18px 52px !important;
}

.woocommerce-message, .woocommerce-error, .woocommerce-info {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 24px !important;
	border: 1px solid rgba( 17, 17, 17, 0.16 ) !important;
	border-top: 4px solid #0b6b3a !important;
	border-radius: 14px;
	background: #ffffff !important;
	color: #111111 !important;
	box-shadow: 0 10px 30px rgba( 17, 17, 17, 0.06 );
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	list-style: none;
	box-sizing: border-box;
}

.woocommerce-message::before, .woocommerce-error::before, .woocommerce-info::before {
	position: absolute !important;
	left: 20px !important;
	top: 50% !important;
	transform: translateY( -50% );
	margin: 0 !important;
	line-height: 1 !important;
	font-size: 18px !important;
}

.woocommerce-message .button, .woocommerce-error .button, .woocommerce-info .button {
	order: 2;
	margin: 0 0 0 auto !important;
	flex: 0 0 auto;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px !important;
	border-radius: 9px !important;
	background: #0b6b3a !important;
	color: #ffffff !important;
	text-decoration: none !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	box-shadow: none !important;
}

.woocommerce-message a:not( .button ), .woocommerce-error a:not( .button ), .woocommerce-info a:not( .button ) {
	color: inherit;
}

.woocommerce-js .quantity .qty {
	border: 1px solid #111;
	border-radius: 14px;
	background: transparent;
}

.required {
	color: #f44336;
	font-weight: bold;
}

.woocommerce form .form-row input.input-text {
	padding: 15px;
	border: 1px solid #e1e1e1;
	border-radius: 100px !important;
	font-size: 16px;
	transition: 0.3s;
	background: transparent !important;
}

.form-row label .required {
	color: #ef4444;
	text-decoration: none;
	margin-left: 2px;
}

.form-row label .optional {
	color: #9ca3af;
	font-weight: normal;
	font-size: 0.8rem;
}

.form-row .input-text:focus, .form-row select:focus, .form-row textarea:focus {
	outline: none;
	border-color: #10b981;
	box-shadow: 0 0 0 3px rgba( 16, 185, 129, 0.15 );
	background-color: #ffffff;
}

body .woocommerce form.login, body .woocommerce form.checkout_coupon, body .woocommerce form.register {
	border-radius: 25px !important;
	background: #eee;
}

.woocommerce-form__input-checkbox {
	width: 16px !important;
	height: 14px !important;
}

.woocommerce-form-login__rememberme {
	margin: 0 !important;
}

.woocommerce-form__label-for-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.05rem !important;
	font-weight: 600 !important;
	cursor: pointer;
	margin: 10px 0;
	color: #111827 !important;
}

#account_password {
	border-radius: 100px;
}

.woocommerce-billing-fields__field-wrapper label {
	display: block !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	color: #111 !important;
	margin: 0 12px !important;
	transition: color 0.2s ease !important;
	line-height: 1.5 !important;
}

.woocommerce-billing-fields__field-wrapper label .required {
	color: #ef4444 !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	margin-left: 0.125rem !important;
}

.woocommerce-billing-fields__field-wrapper label .optional {
	color: #94a3b8 !important;
	font-weight: 400 !important;
	font-size: 0.75rem !important;
	margin-left: 0.25rem !important;
}

.woocommerce-billing-fields__field-wrapper .woocommerce-input-wrapper {
	display: block !important;
	position: relative !important;
	width: 100% !important;
}

.woocommerce-billing-fields__field-wrapper .input-text {
	border-radius: 100px !important;
	border: 1px solid #e2e8f0 !important;
	background-color: #f8fafc !important;
	padding: 0.75rem 1rem !important;
	font-size: 0.875rem !important;
	color: #111 !important;
	box-sizing: border-box !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	box-shadow: none !important;
	height: 50px !important;
}

.woocommerce-billing-fields__field-wrapper .input-text:hover {
	background-color: #ffffff !important;
}

.woocommerce-billing-fields__field-wrapper .input-text:focus {
	border-color: #0b6b3a !important;
	background-color: #ffffff !important;
	box-shadow: 0 0 0 4px rgba( 11, 107, 58, 0.1 ) !important;
}

.woocommerce-billing-fields__field-wrapper .input-text::placeholder {
	color: #94a3b8 !important;
	opacity: 1 !important;
}

.woocommerce-billing-fields__field-wrapper .input-text:-webkit-autofill, .woocommerce-billing-fields__field-wrapper .input-text:-webkit-autofill:hover, .woocommerce-billing-fields__field-wrapper .input-text:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 50px white inset !important;
	-webkit-text-fill-color: #111 !important;
	transition: background-color 5000s ease-in-out 0s !important;
}

.woocommerce-billing-fields__field-wrapper .woocommerce-invalid .input-text, .woocommerce-billing-fields__field-wrapper .woocommerce-invalid-required-field .input-text {
	border-color: #ef4444 !important;
	background-color: #fef2f2 !important;
	color: #7f1d1d !important;
}

.woocommerce-billing-fields__field-wrapper .woocommerce-invalid .input-text::placeholder {
	color: #fca5a5 !important;
}

.woocommerce-billing-fields__field-wrapper .woocommerce-invalid .input-text:focus {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 4px rgba( 239, 68, 68, 0.2 ) !important;
}

.woocommerce-billing-fields__field-wrapper .woocommerce-invalid label {
	color: #dc2626 !important;
}

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

.is-us-country select {
	border-radius: 100px !important;
	border: 1px solid #e2e8f0 !important;
	background-color: #f8fafc !important;
	padding: 0.75rem 1rem !important;
	font-size: 0.875rem !important;
	color: #111 !important;
	box-sizing: border-box !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	box-shadow: none !important;
	height: 50px !important;
}

.woocommerce-shipping-fields__field-wrapper label {
	display: block !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	color: #111 !important;
	margin: 0 12px !important;
	transition: color 0.2s ease !important;
	line-height: 1.5 !important;
}

.woocommerce-shipping-fields__field-wrapper label .required {
	color: #ef4444 !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	margin-left: 0.125rem !important;
}

.woocommerce-shipping-fields__field-wrapper label .optional {
	color: #94a3b8 !important;
	font-weight: 400 !important;
	font-size: 0.75rem !important;
	margin-left: 0.25rem !important;
}

.woocommerce-shipping-fields__field-wrapper .woocommerce-input-wrapper {
	display: block !important;
	position: relative !important;
	width: 100% !important;
}

.woocommerce-shipping-fields__field-wrapper .input-text {
	border-radius: 100px !important;
	border: 1px solid #e2e8f0 !important;
	background-color: #f8fafc !important;
	padding: 0.75rem 1rem !important;
	font-size: 0.875rem !important;
	color: #111 !important;
	box-sizing: border-box !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	box-shadow: none !important;
	height: 50px !important;
}

.woocommerce-shipping-fields__field-wrapper .input-text:focus {
	border-color: #0b6b3a !important;
	background-color: #ffffff !important;
	box-shadow: 0 0 0 4px rgba( 11, 107, 58, 0.1 ) !important;
}

.woocommerce-shipping-fields__field-wrapper .woocommerce-invalid .input-text, .woocommerce-shipping-fields__field-wrapper .woocommerce-invalid-required-field .input-text {
	border-color: #ef4444 !important;
	background-color: #fef2f2 !important;
	color: #7f1d1d !important;
}

.is-us-country-shippings select {
	border-radius: 100px !important;
	border: 1px solid #e2e8f0 !important;
	background-color: #f8fafc !important;
	padding: 0.75rem 1rem !important;
	font-size: 0.875rem !important;
	color: #111 !important;
	box-sizing: border-box !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	box-shadow: none !important;
	height: 50px !important;
}

.page-id-20 {
	background: #eee !important;
}

#customer_details .form-row {
	margin: 0 0 16px;
}

.is-user-reg .form-row-first, .is-user-reg .form-row-last {
	display: none;
}

.woocommerce-checkout .woocommerce-billing-fields, .woocommerce-checkout .woocommerce-additional-fields, .woocommerce-checkout #order_review {
	background: #fff;
	padding: 20px 20px 40px 20px;
	border-radius: 12px;
}

.woocommerce.woocommerce-checkout form #customer_details.col2-set, .woocommerce-page.woocommerce-checkout form #customer_details.col2-set {
	width: 58%;
	margin-right: 0.347826087%;
}

#customer_details h3:not( .elementor-widget-woocommerce-checkout-page h3 ) {
	font-size: 30px;
	text-transform: capitalize;
}

form #order_review_heading:not( .elementor-widget-woocommerce-checkout-page #order_review_heading ) {
	border-style: none;
	border-color: transparent;
	font-size: 30px;
	text-align: left;
	padding: 40px 0 25px 0;
}

form #order_review:not( .elementor-widget-woocommerce-checkout-page #order_review ) {
	border-style: unset;
}

#place_order {
	min-height: unset !important;
	border-radius: 100px !important;
	background: #0b6b3a !important;
	border: 0 !important;
	font-family: Inter, Arial, sans-serif !important;
	font-size: 15px !important;
	font-weight: 600 !important;
}

.page-id-20 #coupon_code {
	width: 100%;
	height: 44px;
	padding: 0 16px 0 42px !important;
	border-radius: 50px !important;
	border: 1px solid #eaeaea !important;
	background: #fafafa !important;
	font-size: 14px !important;
	font-weight: 500;
	transition: all 0.25s ease;
}

.page-id-20 button[name="apply_coupon"] {
	height: 44px;
	padding: 0 18px;
	border-radius: 50px;
	border: none;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.2px;
	cursor: pointer;
	transition: all 0.25s ease;
	text-transform: capitalize;
}

.page-id-20 .woocommerce-checkout-review-order-table .cart-subtotal {
	background: #9400d3 !important;
}

.page-id-20 .woocommerce-checkout-review-order-table .cart-subtotal th {
	color: #fff !important;
	padding: 0 10px !important;
}

.m35-checkout-notice {
	background: #f7f7f7;
	padding: 15px;
	border-left: 4px solid #000000;
	margin-bottom: 20px;
	font-size: 16px;
}

.m35-checkout-notice a {
	font-weight: bold;
	text-decoration: underline;
}

#billing_wooccm11_button, #billing_wooccm12_button {
	background: transparent;
	border: 1px solid #9400D3;
	color: #000;
	border-radius: 100px;
}

#wooccm_order_attachment_update {
	padding: 15px !important;
}

.wooccm-file-button {
	background-color: #111827;
	color: #ffffff;
	border: none;
	padding: 14px 20px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	text-align: center;
	box-shadow: 0 2px 4px rgba( 0, 0, 0, 0.1 );
}

.shop_table_responsive tr {
	background: #eee;
	border: none !important;
	color: #111 !important;
	font-family: 'Inter', sans-serif;
	font-weight: 400 !important;
}

.shop_table_responsive a {
	color: #111;
}

.woocommerce-js a.remove .ahfb-svg-iconset {
	margin-top: 2px !important;
}

.woocommerce-js a.remove::before {
	border: 1px solid #9400d3;
}

.woocommerce-cart-form__cart-item td.product-remove a.remove {
	width: 30px;
	height: 30px;
}

.page-id-19 .coupon .button {
	border-radius: 50px;
	padding: 10px 18px;
	background: #0b6b3a;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	border: none;
}

.page-id-19 .coupon input.input-text {
	flex: 1;
	border: none;
	outline: none;
	padding: 12px 16px;
	border-radius: 50px;
	font-size: 14px;
	background: transparent;
}

.page-id-19 .coupon input::placeholder {
	color: #aaa;
}

.woocommerce #content table.cart td.actions .button, .woocommerce table.cart td.actions .button, .woocommerce-page #content table.cart td.actions .button, .woocommerce-page table.cart td.actions .button {
	margin-left: 5px;
	border-radius: 50px;
	padding: 10px 18px;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	border: none;
}

.woocommerce #content table.cart img, .woocommerce table.cart img, .woocommerce-page #content table.cart img, .woocommerce-page table.cart img {
	border-radius: 12px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	padding: 10px;
	border-radius: 999px;
}

.cart-subtotal {
	background: #0a5e34 !important;
}

.cart-subtotal th {
	color: #fff !important;
}

.cart-subtotal td {
	color: #fff !important;
}

.m35-id-wrap {
	display: none;
}

.m35-id-verification-wrap {
	background-color: #f8fafc !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 1rem !important;
	padding: 1.5rem !important;
	margin-top: 2rem !important;
	margin-bottom: 2rem !important;
	box-sizing: border-box !important;
}

.m35-id-verification-wrap h3 {
	grid-column: span 2 !important;
	margin: 0 !important;
	font-size: 25px !important;
	font-weight: 700 !important;
	color: #111 !important;
}

.IDVerification h3 {
	font-size: 25px !important;
}

.m35-id-verification-wrap > p:not( .form-row ) {
	grid-column: span 2 !important;
	margin: 0 0 1rem 0 !important;
	font-size: 0.875rem !important;
	color: #64748b !important;
}

.m35-id-verification-wrap label {
	display: block !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	color: #111 !important;
	margin-bottom: 0.5rem !important;
}

.m35-id-verification-wrap label .required {
	color: #ef4444 !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	margin-left: 0.125rem !important;
}

.m35-id-verification-wrap input[type="file"] {
	display: block !important;
	width: 100% !important;
	padding: 0.5rem !important;
	background-color: #ffffff !important;
	border: 2px dashed #cbd5e1 !important;
	border-radius: 0.75rem !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	color: #111 !important;
	font-size: 0.875rem !important;
	box-sizing: border-box !important;
}

.m35-id-verification-wrap input[type="file"]:hover, .m35-id-verification-wrap input[type="file"]:focus {
	border-color: #0b6b3a !important;
	background-color: #f0fdf4 !important;
	outline: none !important;
}

.m35-id-verification-wrap input[type="file"]::file-selector-button {
	background-color: #9400d3 !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 100px !important;
	padding: 0.5rem 1rem !important;
	margin-right: 1rem !important;
	font-weight: 600 !important;
	font-size: 0.875rem !important;
	cursor: pointer !important;
	transition: background-color 0.2s ease !important;
}

.m35-id-verification-wrap input[type="file"]::file-selector-button:hover {
	background-color: #08522c !important;
}

.m35-cart-count {
	right: 0 !important;
	top: -2px !important;
}

.mind35-all-shop-transition .m35-cat-card:hover {
	transform: translateY( -8px );
	box-shadow: 0 20px 50px rgba( 0, 0, 0, 0.12 );
}

.m35-home-products-wrap {
	display: grid;
	gap: 28px;
}

.m35-home-products-card {
	padding: 18px;
	border: 1px solid #dcdcde;
	background: #fff;
	border-radius: 6px;
}

.m35-home-products-card h3 {
	margin: 0 0 10px;
}

.m35-home-products-card p.desc {
	margin: 0 0 14px;
	color: #50575e;
}

.m35-home-products-card .select2-container, .m35-home-products-card .selectWoo-container {
	width: 100% !important;
	max-width: 900px;
}

.m35-home-products-note {
	margin-top: 10px;
	color: #646970;
	font-size: 12px;
}

.blog-page {
	width: 100%;
	padding: 2rem 0rem 2rem;
	box-sizing: border-box;
}

.blog-page__header {
	max-width: 760px;
	margin: 0 auto 1rem;
	text-align: center;
}

.blog-page__title {
	font-size: clamp(2rem, 5vw, 2.80rem);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 0.75rem;
	color: #111;
	font-family: "Playfair Display", Sans-serif !important;
}

.blog-page__subtitle {
	font-size: clamp(1rem, 2.5vw, 1.1rem);
	margin: 0;
	line-height: 1.6;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
	color: #4b5563!important;
	font-weight: 400!important;
}

.blog-page__container {
	max-width: 1240px;
	margin: 0 auto;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	column-gap: 15px !important;
	row-gap: 35px !important;
}

.blog-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
	opacity: 0;
	transform: translateY(16px);
}

.blog-card--visible {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.45s ease, transform 0.45s ease,
              box-shadow 0.25s ease;
}

.blog-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
	transform: translateY(-3px);
}

.blog-card__image-link {
	display: block;
}

.blog-card__image-wrap {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f0f0f0;
}

.blog-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__image {
	transform: scale(1.04);
}

.blog-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.25rem 1.5rem 1.5rem;
	gap: 0.6rem;
}

.blog-card__title {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
}

.blog-card__title-link {
	color: #111;
	text-decoration: none;
	transition: color 0.2s ease;
	font-family: "Inter", Sans-serif !important;
	font-size: 18px!important;
	font-weight: 500 !important;
	font-style: normal;
}

.blog-card__title-link:hover {
	color: #111 !important;
}

.blog-card__excerpt {
	color: #4b5563;
	line-height: 1.6;
	margin: 0;
	flex: 1;
	font-family: "Inter", Sans-serif !important;
	font-size: 15px!important;
	font-weight: 500 !important;
	font-style: normal;
}

.blog-card__read-more {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	margin-top: 0.5rem;
	font-weight: 600;
	color: #0b6b3a;
	text-decoration: none;
	transition: gap 0.2s ease, color 0.2s ease;
	font-family: "Inter", Sans-serif !important;
	font-size: 14px !important;
	font-weight: 500;
	text-transform: capitalize;
}

.blog-card__read-more:hover {
	gap: 0.55rem;
	color: #9400d3;
}

.blog-card--no-image .blog-card__body {
	padding-top: 1.75rem;
}

.blog-page__no-posts {
	text-align: center;
	color: #888;
	font-size: 1rem;
	padding: 3rem 0;
}

/* ==========================================================================
   Global: header bar, brand typography, cart badge  (from header.php)
   ========================================================================== */
:root {
	--m35-green: #0b6b3a;
	--m35-green-dark: #0a5e34;
	--m35-white: #ffffff;
	--m35-radius: 10px;
	--m35-header-font: 'Inter', sans-serif;
	--m35-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	--m35-font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.m35-delivery-login a {
	color: #fff;
	font-family: 'Inter';
	font-weight: 600;
}

.m35-delivery-login a:focus {
	color: #fff;
}

.m35-delivery-login a:hover {
	color: #fff;
}

.m35-topbar {
	background: var(--m35-green);
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

.m35-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 18px;
}

.m35-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 84px;
	gap: 20px;
	transition: min-height 0.3s ease;
}

.m35-brand {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.m35-brand a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.m35-brand img {
	display: block;
	width: auto;
	max-width: 160px !important;
	transition: max-width 0.3s ease;
}

.m35-service-area {
	flex: 1;
	display: flex;
	justify-content: center;
	color: #ffffff;
	font-family: var(--m35-header-font);
	font-weight: 600;
	font-size: 15px;
	white-space: nowrap;
	letter-spacing: 0.3px;
}

.m35-right-group {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
}

.m35-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
}

.m35-phone-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 50px;
	text-decoration: none;
	font-family: var(--m35-header-font);
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.m35-divider {
	width: 1px;
	height: 30px;
	background: rgba(255,255,255,.35);
}

.m35-icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	text-decoration: none;
	color: #fff;
	transition: transform 0.2s ease;
}

.m35-icon-btn:hover {
	transform: scale(1.05);
}

.m35-icon-btn svg {
	width: 24px;
	height: 24px;
	fill: #ffffff;
	display: block;
}

.m35-cart-count {
	position: absolute;
	top: -4px;
	right: -6px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: #ffffff;
	color: var(--m35-green);
	font-family: var(--m35-header-font);
	font-size: 11px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
	border: 2px solid var(--m35-green);
	box-sizing: border-box;
}

.m35-cart-count.is-empty {
	display: none;
}

.m35-menu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 20px;
	border-radius: 8px;
	background: #ffffff;
	color: var(--m35-green);
	font-family: var(--m35-header-font);
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.5px;
	transition: all 0.2s ease;
}

/* White pill with green label. Intentionally NOT the purple-fill treatment:
   inverting it would make the header read as two competing accent buttons. */
.m35-menu-btn:hover,
.m35-menu-btn:focus {
	background: #f1f1f1;
	color: #9400d3 !important;
	transform: translateY(-1px);
}

.m35-topbar.is-scrolled .m35-header {
	min-height: 64px;
}

.m35-topbar.is-scrolled .m35-brand img {
	max-width: 130px !important;
}

html, body, button, input, select, textarea, .button, .btn, nav, .menu, .site-header, .site-footer {
	font-family: var(--m35-font-body) !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--m35-font-head) !important;
	font-weight: 700;
}

/* ==========================================================================
   Global: announcement / sale bar  (from header.php)
   ========================================================================== */
.m35-sale-bar {
	display: block;
	width: 100%;
	background: #0b6b3a;
	color: #ffffff;
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.01em;
	text-align: center;
	padding: 10px 44px 10px 16px;
	position: relative;
	z-index: 99999;
	box-shadow: 0 1px 0 #d1d5db1f;
	max-height: 0;
	padding-top: 0;
	padding-bottom: 0;
	opacity: 0;
	overflow: hidden;
	transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}

.m35-sale-bar.is-visible {
	max-height: 200px;
	padding-top: 10px;
	padding-bottom: 10px;
	opacity: 1;
}

.m35-sale-bar__inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.m35-sale-bar__title {
	font-weight: 500;
	color: #f0f5fa;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 14px;
}

.m35-sale-bar__sep {
	opacity: 0.5;
	margin: 0 0.1rem;
}

.m35-sale-bar__close {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
	border: 0;
	border-radius: 50%;
	color: #ffffff;
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease;
	font-family: inherit;
}

.m35-sale-bar__close:hover {
	background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Global: site footer  (from footer.php)
   ========================================================================== */
.m35-footer {
	background:#111111;
	color:#e5e7eb;
	margin-top:0;
}

.m35-footer-container {
	width:min(1200px, calc(100% - 32px));
	margin:0 auto;
}

.m35-footer-top {
	padding:56px 0 34px;
	border-top:1px solid rgba(255,255,255,0.06);
}

.m35-footer-grid {
	display:grid;
	grid-template-columns:repeat(4, minmax(0,1fr));
	gap:32px;
	align-items:start;
}

.m35-footer-col h4 {
	margin:0 0 16px;
	color:#ffffff;
	font-family: 'Playfair Display', serif;
	font-size:16px;
	line-height:1.3;
	font-weight:700;
	letter-spacing:.02em;
}

.m35-footer-brand-logo {
	display:block;
	max-width:190px;
	margin-bottom:16px;
}

.m35-footer-brand-logo img {
	display:block;
	width:100%;
	height:auto;
}

.m35-footer-brand-text {
	margin:0;
	color:#d1d5db;
	font-family: 'Inter', sans-serif;
	font-size:15px;
	line-height:1.7;
	max-width:280px;
}

.m35-footer-links {
	list-style:none;
	margin:0;
	padding:0;
}

.m35-footer-links li {
	margin:0 0 12px;
}

.m35-footer-links li:last-child {
	margin-bottom:0;
}

.m35-footer-links a, .m35-footer-contact a {
	color:#d1d5db;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	text-decoration:none;
	transition:all .2s ease;
}

.m35-footer-links a:hover, .m35-footer-contact a:hover, .m35-social:hover {
	color:#ffffff;
	opacity:1;
}

.m35-footer-contact {
	display:flex;
	flex-direction:column;
	gap:14px;
}

.m35-footer-contact-item {
	color:#d1d5db;
	font-family: 'Inter', sans-serif;
	font-size:15px;
	line-height:1.7;
}

.m35-footer-contact-label {
	display:block;
	color:#ffffff;
	font-weight:600;
	margin-bottom:2px;
}

.m35-footer-social {
	display:flex;
	align-items:start;
	gap:12px;
	margin-top:4px;
}

.m35-social {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:40px;
	height:40px;
	border-radius:999px;
	background:rgba(255,255,255,0.08);
	color:#d1d5db;
	text-decoration:none;
	transition:all .2s ease;
}

.m35-social i {
	font-size:18px;
	line-height:1;
}

.m35-footer-bottom {
	border-top:1px solid rgba(255,255,255,0.08);
	padding:18px 0;
}

.m35-footer-copy {
	text-align:left !important;
	color:#cbd5e1;
	font-family: 'Inter', sans-serif;
	font-size:14px;
	line-height:1.6;
}

/* ==========================================================================
   Front page  (from front-page.php)
   ========================================================================== */
.m35-tpl-front-page {
	--m35-green: #0b6b3a;
	--m35-green-2: #0a6336;
	--m35-lime: #9ad000;
	--m35-cream: #eef6e3;
	--m35-radius: 14px;
	--m35-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.m35-tpl-front-page {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
}

.m35-tpl-front-page .m35-wrap {
	padding: 0;
}

.m35-tpl-front-page .m35-container h1 {
	text-align: center !important;
}

.m35-tpl-front-page .margin-bottom>p {
	line-height: 38px !important;
	font-size: 16px;
}

.m35-tpl-front-page h1, .m35-tpl-front-page h2, .m35-tpl-front-page h3, .m35-tpl-front-page h4, .m35-tpl-front-page h5, .m35-tpl-front-page h6, .m35-tpl-front-page .m35-heroTitle, .m35-tpl-front-page .m35-icon-title, .m35-tpl-front-page .m35-section h2, .m35-tpl-front-page .m35-section h3 {
	font-family: 'Playfair Display', serif !important;
	font-weight: 600 !important;
}

.m35-tpl-front-page .m35-hero-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 18px;
	width: 100%;
	display: flex;
	justify-content: flex-start;
}

.m35-tpl-front-page .m35-hero {
	width: 100%;
	position: relative;
}

.m35-tpl-front-page .m35-heroCard {
	position: relative;
	width: 100%;
	min-height: 860px;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 170px 0;
}

.m35-tpl-front-page .m35-heroCard .bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.m35-tpl-front-page .m35-heroCard .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.25);
}

.m35-tpl-front-page .m35-heroContent {
	position: relative;
	z-index: 2;
	color: #fff;
	text-align: left;
	width: 100%;
}

.m35-tpl-front-page .m35-heroInner {
	max-width: 760px;
}

.m35-tpl-front-page .m35-heroTitle {
	font-size: 65px;
	line-height: 1.2;
	color: #ffffff;
	margin: 0;
	text-transform: capitalize;
	text-shadow: none;
	letter-spacing: -0.02em;
}

.m35-tpl-front-page .m35-heroSub {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 20px;
	color: rgba(255,255,255,0.85);
	line-height: 1.6;
	margin-top: 48px;
	max-width: 620px;
	letter-spacing: 0;
}

.m35-tpl-front-page .m35-btnRow {
	margin-top: 72px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
}

.m35-tpl-front-page .m35-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	transition: 0.3s ease;
}

.m35-tpl-front-page .m35-btn.primary {
	background: var(--m35-green);
	color: #fff;
	height: 54px;
	padding: 0 38px;
	font-size: 16px;
	border: 1px solid var(--m35-green);
}

.m35-tpl-front-page .m35-btn.ghost {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	height: 50px;
	padding: 0 32px;
	font-size: 15px;
}

.m35-tpl-front-page .m35-btn.ghost:hover {
	background: #fff;
	color: #111;
}

.m35-tpl-front-page .m35-hero-features {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.88);
	margin-top: 32px;
}

.m35-tpl-front-page .m35-icon-nav {
	background: #eee;
	padding: 0px 0;
	border-bottom: 1px solid #f0f0f0;
}

.m35-tpl-front-page .m35-icon-title {
	text-align: center;
	margin: 0 0 30px 0;
	font-size: 28px;
	color: #1a1a1a;
}

.m35-tpl-front-page .m35-icon-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px;
	align-items: flex-start;
}

.m35-tpl-front-page .m35-icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.m35-tpl-front-page .m35-icon-item:hover {
	transform: translateY(-5px);
}

.m35-tpl-front-page .m35-icon-img-box {
	width: 80px;
	height: 80px;
	background: #f9f9f9;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.m35-tpl-front-page .m35-icon-item img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.m35-tpl-front-page .m35-icon-item span {
	color: #1a1a1a;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	text-align: center;
	line-height: 1.2;
}

.m35-tpl-front-page .m35-promo .inner {
	padding: 45px 0;
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	letter-spacing: 2px;
	color: #fff;
	font-size: 32px;
	text-transform: uppercase;
}

.m35-section {
	padding: 70px 0;
	background: var(--m35-cream);
}

.m35-tpl-front-page .m35-section.white {
	background: #fff;
}

.m35-tpl-front-page .m35-section h2, .m35-tpl-front-page .m35-section h3 {
	text-align: center;
	margin: 0 0 20px;
	font-size: 30px;
}

.m35-tpl-front-page .m35-section .text {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
	color: #3b3b3b;
	line-height: 1.7;
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
}

.m35-tpl-front-page .m35-stockCard {
	background: #fff;
	border-radius: 14px;
	box-shadow: var(--m35-shadow);
	padding: 16px;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.3s;
	text-decoration: none;
	color: inherit;
}

.m35-tpl-front-page .m35-stockCard:hover {
	transform: translateY(-5px);
}

.m35-tpl-front-page .m35-stockImgWrap {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 180px;
	margin-bottom: 20px;
}

.m35-tpl-front-page .m35-stockImgWrap img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center;
}

.m35-tpl-front-page .m35-stockName {
	font-weight: 600;
	font-size: 16px;
	color: #152015;
	margin-bottom: 10px;
	flex-grow: 1;
	line-height: 1.5;
	text-align: start;
}

.m35-tpl-front-page .m35-stockPrice {
	font-weight: 600;
	color: var(--m35-green);
	font-size: 20px;
	margin-bottom: 20px;
	text-align: start;
}

.m35-tpl-front-page .m35-stockBtn {
	width: 100%;
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	border-radius: 10px;
	background: var(--m35-green);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: none !important;
}

.m35-tpl-front-page .m35-featured-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 40px;
}

.m35-tpl-front-page .m35-carousel {
	position:relative;
}

.m35-tpl-front-page .m35-carouselViewport {
	overflow: hidden;
	width: 100%;
	touch-action: pan-y;
}

.m35-tpl-front-page .m35-carouselViewport.is-draggable {
	cursor:grab;
}

.m35-tpl-front-page .m35-carouselViewport.is-dragging {
	cursor:grabbing;
}

.m35-tpl-front-page .m35-carouselTrack {
	display: flex;
	will-change: transform;
	transition: transform 0.5s ease;
}

.m35-tpl-front-page .m35-carouselArrows {
	display:none;
	gap:12px;
	justify-content:center;
	margin-top:22px;
}

.m35-tpl-front-page .m35-arrow {
	width:50px;
	height:50px;
	border-radius:50%;
	border:0;
	background:#fff;
	box-shadow:var(--m35-shadow);
	display:inline-flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
	transition: all 0.2s ease;
}

.m35-tpl-front-page .m35-arrow i {
	font-size: 18px;
	color: var(--m35-green);
	line-height: 1;
}

.m35-tpl-front-page .m35-arrow:active {
	transform: scale(0.9);
	background: #f0f0f0;
}

.m35-tpl-front-page .m35-arrow:disabled {
	opacity:.35;
	cursor:not-allowed;
}

.m35-tpl-front-page .m35-carouselDots {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 30px;
}

.m35-tpl-front-page .m35-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ddd;
	border: 0;
	cursor: pointer;
	transition: 0.3s ease;
	padding: 0;
}

.m35-tpl-front-page .m35-dot.is-active {
	background: var(--m35-green);
	transform: scale(1.3);
}

.m35-tpl-front-page .m35-brandSlideGrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	align-items: center;
	justify-items: center;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

.m35-tpl-front-page .m35-stockSlideGrid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 18px;
}

.m35-tpl-front-page .m35-stockFull {
	padding: 80px 0;
	background: var(--m35-cream);
}

.m35-tpl-front-page .m35-cardgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding: 40px 0;
}

.m35-tpl-front-page .m35-card {
	background: var(--m35-green);
	border-radius: 16px;
	overflow: hidden;
	min-height: 240px;
	position: relative;
	box-shadow: var(--m35-shadow);
	text-decoration: none;
	display: block;
}

.m35-tpl-front-page .m35-card .label {
	position: absolute;
	top: 25px;
	left: 25px;
	color: #fff;
	font-weight: 600;
	font-size: 24px;
	z-index: 2;
}

.m35-tpl-front-page .m35-card img {
	position: absolute;
	right: -15px;
	bottom: -15px;
	width: 60%;
	height: auto;
	transition: 0.4s;
}

.m35-tpl-front-page .m35-card:hover img {
	transform: scale(1.1) rotate(-5deg);
}

.m35-tpl-front-page .m35-feature-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	padding-top: 40px;
}

.m35-tpl-front-page .m35-feature-item {
	text-align: center;
}

.m35-tpl-front-page .m35-feature-item img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	margin-bottom: 12px;
}

.m35-tpl-front-page .m35-feature-item span {
	display: block;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
}

/* ==========================================================================
   FAQ page  (from page-faq.php)
   ========================================================================== */
.m35-tpl-page-faq .m35-faq-template {
	padding: 50px 0 25px;
	background: #fff;
}

.m35-tpl-page-faq .m35-faq-container {
	width: min(980px, calc(100% - 32px));
	margin: 0 auto;
}

.m35-tpl-page-faq .m35-faq-head {
	text-align: center;
	margin-bottom: 52px;
}

.m35-tpl-page-faq .m35-faq-title {
	margin: 0 0 14px;
	font-family: "Playfair Display", serif;
	font-size: clamp(35px, 5vw, 35px);
	line-height: 1.12;
	font-weight: 600;
	color: #111111;
	letter-spacing: -0.02em;
}

.m35-tpl-page-faq .m35-faq-subtitle {
	margin: 0 auto;
	max-width: 720px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.8;
	color: #4b5563;
	font-weight: 400;
}

.m35-tpl-page-faq .m35-faq-sections {
	display: grid;
	gap: 34px;
}

.m35-tpl-page-faq .m35-faq-section {
	display: grid;
	gap: 16px;
}

.m35-tpl-page-faq .m35-faq-section-title {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: clamp(26px, 3vw, 32px);
	line-height: 1.2;
	font-weight: 700;
	color: #111111;
	letter-spacing: -0.01em;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(17,17,17,0.08);
}

.m35-tpl-page-faq .m35-faq-list {
	display: grid;
	gap: 14px;
}

.m35-tpl-page-faq .m35-faq-item {
	background: #ffffff;
	border: 1px solid rgba(17,17,17,0.08);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(17,17,17,0.05);
	transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

.m35-tpl-page-faq .m35-faq-item:hover {
	border-color: rgba(17,17,17,0.08);
	box-shadow: 0 8px 28px rgba(17,17,17,0.05);
}

.m35-tpl-page-faq .m35-faq-question:hover, .m35-tpl-page-faq .m35-faq-question:focus, .m35-tpl-page-faq .m35-faq-question:active {
	background: transparent !important;
	color: #111111 !important;
}

.m35-tpl-page-faq .m35-faq-question {
	background: transparent !important;
}

.m35-tpl-page-faq .m35-faq-item.active .m35-faq-question {
	background: transparent !important;
}

.m35-tpl-page-faq .m35-faq-question {
	width: 100%;
	border: 0;
	background: transparent;
	text-align: left;
	padding: 20px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	cursor: pointer;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: #111111;
}

.m35-tpl-page-faq .m35-faq-question-text {
	font-size: 17px;
	line-height: 1.55;
	font-weight: 600;
}

.m35-tpl-page-faq .m35-faq-icon {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f3f4f6;
	color: #111111;
	font-size: 20px;
	line-height: 1;
	transition: transform .2s ease, background .2s ease;
}

.m35-tpl-page-faq .m35-faq-item.active .m35-faq-icon {
	transform: rotate(45deg);
}

.m35-tpl-page-faq .m35-faq-answer {
	display: none;
	padding: 0 22px 22px;
	color: #4b5563;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 15.5px;
	line-height: 1.8;
	font-weight: 400;
}

.m35-tpl-page-faq .m35-faq-item.active .m35-faq-answer {
	display: block;
}

.m35-tpl-page-faq .m35-faq-answer p {
	margin: 0;
}

.m35-tpl-page-loyalty .m35-loyalty-template {
	padding: 50px 0 50px;
	background: #fff;
}

.m35-tpl-page-loyalty .m35-loyalty-container {
	width: min(980px, calc(100% - 32px));
	margin: 0 auto;
}

.m35-tpl-page-loyalty .m35-loyalty-head {
	text-align: center;
	margin-bottom: 48px;
}

.m35-tpl-page-loyalty .m35-loyalty-title {
	margin: 0 0 14px;
	font-family: "Playfair Display", serif;
	font-size: clamp(35px, 5vw, 35px);
	line-height: 1.12;
	font-weight: 600;
	color: #111111;
	letter-spacing: -0.02em;
}

.m35-tpl-page-loyalty .m35-loyalty-intro {
	margin: 0 auto;
	max-width: 720px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.8;
	color: #4b5563;
	font-weight: 400;
}

.m35-tpl-page-loyalty .m35-loyalty-sections {
	display: grid;
	gap: 18px;
}

.m35-tpl-page-loyalty .m35-loyalty-card {
	background: #ffffff;
	border: 1px solid rgba(17,17,17,0.08);
	border-radius: 18px;
	padding: 26px 26px 24px;
	box-shadow: 0 8px 28px rgba(17,17,17,0.05);
}

.m35-tpl-page-loyalty .m35-loyalty-card-title {
	margin: 0 0 8px;
	font-family: "Playfair Display", serif;
	font-size: clamp(25px, 3vw, 25px);
	line-height: 1.2;
	font-weight: 600;
	color: #111111;
	letter-spacing: -0.01em;
}

.m35-tpl-page-loyalty .m35-loyalty-card-text {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #4b5563;
	font-weight: 400;
}

/* ==========================================================================
   Bulk pricing page  (from page-bulk-pricing.php)
   ========================================================================== */
.m35-tpl-page-bulk-pricing .block-q {
	border-color: var(--m35-green) !important;
}

.m35-tpl-page-bulk-pricing .m35-bulk-template {
	padding: 50px 0 50px;
	background: #ffffff;
}

.m35-tpl-page-bulk-pricing .m35-bulk-container {
	width: min(980px, calc(100% - 32px));
	margin: 0 auto;
}

.m35-tpl-page-bulk-pricing .m35-bulk-head {
	text-align: center;
	margin-bottom: 48px;
}

.m35-tpl-page-bulk-pricing .m35-bulk-title {
	margin: 0 0 14px;
	font-family: "Playfair Display", serif;
	font-size: clamp(35px, 5vw, 35px);
	line-height: 1.12;
	font-weight: 600;
	color: #111111;
	letter-spacing: -0.02em;
}

.m35-tpl-page-bulk-pricing .m35-bulk-intro {
	margin: 0 auto;
	max-width: 720px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.8;
	color: #4b5563;
	font-weight: 400;
}

.m35-tpl-page-bulk-pricing .m35-bulk-sections {
	display: grid;
	gap: 18px;
}

.m35-tpl-page-bulk-pricing .m35-bulk-card {
	background: #ffffff;
	border: 1px solid rgba(17,17,17,0.08);
	border-radius: 18px;
	padding: 26px 26px 24px;
	box-shadow: 0 8px 28px rgba(17,17,17,0.05);
}

.m35-tpl-page-bulk-pricing .m35-bulk-card-title {
	margin: 0 0 8px;
	font-family: "Playfair Display", serif;
	font-size: clamp(25px, 3vw, 25px);
	line-height: 1.2;
	font-weight: 700;
	color: #111111;
	letter-spacing: -0.01em;
}

.m35-tpl-page-bulk-pricing .m35-bulk-card-text {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #4b5563;
	font-weight: 400;
}

.m35-tpl-page-bulk-pricing .m35-bulk-card-text + .m35-bulk-card-text {
	margin-top: 14px;
}

.m35-tpl-page-bulk-pricing .m35-bulk-card-text a {
	color: #111111;
	text-decoration: none;
	font-weight: 600;
	transition: color .2s ease;
	word-break: break-word;
}

.m35-tpl-page-bulk-pricing .m35-bulk-card-text a:hover {
	color: #0b6b3a;
}

.m35-tpl-page-bulk-pricing .m35-bulk-closing {
	margin: 28px auto 0;
	max-width: 760px;
	text-align: center;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #4b5563;
	font-weight: 400;
}

/* ==========================================================================
   Contact page  (from page-contact-us.php)
   ========================================================================== */
.m35-tpl-page-contact-us .m35-contact-template {
	padding: 50px 0 50px;
	background: #fff;
}

.m35-tpl-page-contact-us .m35-contact-container {
	width: min(970px, calc(100% - 32px));
	margin: 0 auto;
}

.m35-tpl-page-contact-us .m35-contact-head {
	text-align: center;
	margin-bottom: 44px;
}

.m35-tpl-page-contact-us .m35-contact-title {
	margin: 0 0 14px;
	font-family: "Playfair Display", serif;
	font-size: clamp(35px, 5vw, 35px);
	line-height: 1.12;
	font-weight: 600;
	color: #111111;
	letter-spacing: -0.02em;
}

.m35-tpl-page-contact-us .m35-contact-intro {
	margin: 0 auto;
	max-width: 620px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.8;
	color: #4b5563;
	font-weight: 400;
}

.m35-tpl-page-contact-us .m35-contact-card {
	background: #ffffff;
	border: 1px solid rgba(17,17,17,0.08);
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(17,17,17,0.05);
	padding: 34px;
}

.m35-tpl-page-contact-us .m35-contact-blocks {
	display: grid;
	gap: 24px;
	margin-bottom: 30px;
}

.m35-tpl-page-contact-us .m35-contact-block {
	display: grid;
	gap: 8px;
}

.m35-tpl-page-contact-us .m35-contact-label {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b7280;
}

.m35-tpl-page-contact-us .m35-contact-link {
	display: inline-block;
	text-decoration: none;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 600;
	color: #111111;
	transition: color .2s ease;
	word-break: break-word;
}

.m35-tpl-page-contact-us .m35-contact-form-wrap {
	margin-top: 6px;
}

.m35-tpl-page-contact-us .m35-contact-form-title {
	margin: 0 0 18px;
	font-family: "Playfair Display", serif;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 600;
	color: #111111;
	letter-spacing: -0.01em;
}

.m35-tpl-page-contact-us .m35-contact-form {
	display: grid;
	gap: 18px;
}

.m35-tpl-page-contact-us .m35-form-field {
	display: grid;
	gap: 8px;
}

.m35-tpl-page-contact-us .m35-form-label {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 600;
	color: #111111;
}

.m35-tpl-page-contact-us .m35-form-input, .m35-tpl-page-contact-us .m35-form-textarea {
	width: 100%;
	border: 1px solid rgba(17,17,17,0.12);
	border-radius: 14px;
	background: #ffffff;
	padding: 14px 16px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: #111111;
	box-sizing: border-box;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.m35-tpl-page-contact-us .m35-form-input:focus, .m35-tpl-page-contact-us .m35-form-textarea:focus {
	outline: none;
	border-color: #0b6b3a;
	box-shadow: 0 0 0 3px rgba(11,107,58,0.10);
}

.m35-tpl-page-contact-us .m35-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.m35-tpl-page-contact-us .is-m3-delivery-submit {
	border-radius: 999px !important;
}

.m35-tpl-page-contact-us .m35-form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 28px;
	border: 0;
	border-radius: 10px;
	background: #0b6b3a;
	color: #ffffff;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 15px;
	line-height: 1;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}

.m35-tpl-page-contact-us .m35-form-submit:active {
	transform: translateY(1px);
}

/* ==========================================================================
   Order support page  (from page-order-support.php)
   ========================================================================== */
.m35-tpl-page-order-support .m35-support-template {
	padding: 50px 0 50px;
	background: #fff;
}

.m35-tpl-page-order-support .m35-support-container {
	width: min(980px, calc(100% - 32px));
	margin: 0 auto;
}

.m35-tpl-page-order-support .m35-support-head {
	text-align: center;
	margin-bottom: 48px;
}

.m35-tpl-page-order-support .m35-support-title {
	margin: 0 0 14px;
	font-family: "Playfair Display", serif;
	font-size: clamp(35px, 5vw, 35px);
	line-height: 1.12;
	font-weight: 600;
	color: #111111;
	letter-spacing: -0.02em;
}

.m35-tpl-page-order-support .m35-support-intro {
	margin: 0 auto;
	max-width: 680px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.8;
	color: #4b5563;
	font-weight: 400;
}

.m35-tpl-page-order-support .m35-support-sections {
	display: grid;
	gap: 18px;
}

.m35-tpl-page-order-support .m35-support-card {
	background: #ffffff;
	border: 1px solid rgba(17,17,17,0.08);
	border-radius: 18px;
	padding: 26px 26px 24px;
	box-shadow: 0 8px 28px rgba(17,17,17,0.05);
}

.m35-tpl-page-order-support .m35-support-card-title {
	margin: 0 0 8px;
	font-family: "Playfair Display", serif;
	font-size: clamp(26px, 3vw, 25px);
	line-height: 1.2;
	font-weight: 700;
	color: #111111;
	letter-spacing: -0.01em;
}

.m35-tpl-page-order-support .m35-support-card-text {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #4b5563;
	font-weight: 400;
}

.m35-tpl-page-order-support .m35-support-card-text a {
	color: #111111;
	text-decoration: none;
	font-weight: 600;
	transition: color .2s ease;
	word-break: break-word;
}

.m35-tpl-page-order-support .m35-support-card-text a:hover {
	color: #0b6b3a;
}

.m35-tpl-page-order-support .m35-support-closing {
	margin: 28px auto 0;
	max-width: 760px;
	text-align: center;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #4b5563;
	font-weight: 400;
}

/* ==========================================================================
   Shop All page  (from page-shop-all.php)
   ========================================================================== */
.m35-tpl-page-shop-all {
	--m35-green: #0b6b3a;
	--m35-green-2: #0a6336;
	--m35-text: #111111;
	--m35-muted: #4b5563;
	--m35-border: rgba(17,17,17,0.08);
	--m35-border-strong: rgba(17,17,17,0.12);
	--m35-shadow: 0 10px 30px rgba(17,17,17,0.05);
	--m35-shadow-hover: 0 16px 40px rgba(17,17,17,0.08);
	--m35-radius: 18px;
	--m35-badge-size: 132px;
	--m35-badge-bg: #f8faf8;
	--m35-badge-border: rgba(11,107,58,0.08);
	--m35-icon-area: 76px;
}

.m35-tpl-page-shop-all .m35-shopall-page {
	padding: 64px 0 96px;
	background: #ffffff;
}

.m35-tpl-page-shop-all .m35-shopall-container {
	width: min(1240px, calc(100% - 32px));
	margin: 0 auto;
}

.m35-tpl-page-shop-all .m35-shopall-head {
	text-align: center;
	margin-bottom: 42px;
}

.m35-tpl-page-shop-all .m35-shopall-title {
	margin: 0 0 14px;
	font-family: "Playfair Display", serif;
	font-size: clamp(38px, 5vw, 54px);
	line-height: 1.12;
	font-weight: 700;
	color: var(--m35-text);
	letter-spacing: -0.02em;
}

.m35-tpl-page-shop-all .m35-shopall-intro {
	margin: 0 auto;
	max-width: 760px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.8;
	color: var(--m35-muted);
	font-weight: 400;
}

.m35-tpl-page-shop-all .m35-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.m35-tpl-page-shop-all .m35-category-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 272px;
	padding: 30px 22px 26px;
	background: #ffffff;
	border: 1px solid var(--m35-border);
	border-radius: var(--m35-radius);
	box-shadow: var(--m35-shadow);
	text-decoration: none;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.m35-tpl-page-shop-all .m35-category-tile:hover {
	transform: translateY(-4px);
	box-shadow: var(--m35-shadow-hover);
	border-color: var(--m35-border-strong);
}

.m35-tpl-page-shop-all .m35-category-icon-wrap {
	width: var(--m35-badge-size);
	height: var(--m35-badge-size);
	min-width: var(--m35-badge-size);
	border-radius: 999px;
	background: var(--m35-badge-bg);
	border: 1px solid var(--m35-badge-border);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	padding: 0;
}

.m35-tpl-page-shop-all .m35-category-icon-inner {
	width: var(--m35-icon-area);
	height: var(--m35-icon-area);
	display: flex;
	align-items: center;
	justify-content: center;
}

.m35-tpl-page-shop-all .m35-category-icon {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	transform:
      translate(var(--icon-offset-x, 0px), var(--icon-offset-y, 0px))
      scale(var(--icon-scale, 1));
	transform-origin: center center;
}

.m35-tpl-page-shop-all .m35-category-name {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 19px;
	line-height: 1.4;
	font-weight: 600;
	color: var(--m35-text);
	letter-spacing: 0;
	max-width: 190px;
}

/* ==========================================================================
   My Account page  (from page-my-account.php)
   ========================================================================== */
.m35-tpl-page-my-account {
	--m35-green: #0b6b3a;
	--m35-green-2: #0a6336;
	--m35-lime: #9ad000;
	--m35-cream: #eef6e3;
	--m35-white: #ffffff;
	--m35-radius: 14px;
	--m35-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.m35-tpl-page-my-account .m35-account-wrap {
	background: var(--m35-cream);
	min-height: 100vh;
	padding-bottom: 80px;
	width: 100%;
}

.m35-tpl-page-my-account .m35-main-container {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 40px 5%;
	box-sizing: border-box;
}

.m35-tpl-page-my-account .m35-hero {
	position: relative;
	border-radius: var(--m35-radius);
	overflow: hidden;
	min-height: 250px;
	background-size: cover;
	background-position: center;
	box-shadow: var(--m35-shadow);
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.m35-tpl-page-my-account .m35-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.m35-tpl-page-my-account .m35-hero__kicker {
	color: var(--m35-lime);
	font-weight: 900;
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 8px;
	letter-spacing: 1px;
}

.m35-tpl-page-my-account .m35-hero__title {
	font-size: 48px;
	font-weight: 900;
	line-height: 1;
	margin: 0;
	text-transform: uppercase;
	color: #fff !important;
}

.m35-tpl-page-my-account .m35-auth-box {
	background: #fff;
	padding: 40px;
	border-radius: var(--m35-radius);
	box-shadow: var(--m35-shadow);
	max-width: 1200px;
	margin: 0 auto;
}

.m35-tpl-page-my-account .woocommerce-privacy-policy-text p {
	font-size: 14px;
	line-height: 1.5;
	margin-top: 10px;
}

.m35-tpl-page-my-account .u-columns.col2-set {
	display: flex;
	gap: 60px;
	width: 100%;
}

.m35-tpl-page-my-account .u-column1, .m35-tpl-page-my-account .u-column2 {
	width: 50%;
	flex: 1;
}

.page-id-21 #page{
    background: var(--m35-cream);
}

.m35-tpl-page-my-account .woocommerce h2 {
	font-size: 22px;
	font-weight: 600;
	color: var(--m35-green);
	margin-bottom: 25px;
	text-transform: uppercase;
}

.m35-tpl-page-my-account .woocommerce form .form-row {
	margin-bottom: 10px;
}

.m35-tpl-page-my-account .woocommerce form .form-row label {
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
	color: #333;
}

.m35-tpl-page-my-account .woocommerce form .form-row input.input-text {
	width: 100%;
	padding: 20px;
	border: 2px solid #e1e1e1;
	border-radius: 100px;
	background: #f9f9f9;
	font-size: 16px;
	transition: 0.3s;
	box-sizing: border-box;
}

.m35-tpl-page-my-account .woocommerce form .form-row input.input-text:focus {
	border-color: var(--m35-green);
	background: #fff;
	outline: none;
}

.m35-tpl-page-my-account .woocommerce button.button {
	background: var(--m35-green) !important;
	color: #fff !important;
	font-weight: 900 !important;
	padding: 15px 30px !important;
	border-radius: 100px !important;
	border: none !important;
	font-size: 16px !important;
	cursor: pointer;
	transition: 0.3s;
	width: 100%;
	margin-top: 10px;
}

.m35-tpl-page-my-account .woocommerce button.button:hover {
	transform: translateY(-2px);
}

.m35-tpl-page-my-account .woocommerce-form-login__rememberme {
	margin: 10px 0 20px 0;
	display: block;
}

.m35-tpl-page-my-account .woocommerce-LostPassword {
	margin-top: 15px;
	display: block;
	font-size: 14px;
}

.m35-tpl-page-my-account .woocommerce-LostPassword a {
	color: var(--m35-green);
	font-weight: 700;
	text-decoration: none;
}

.m35-tpl-page-my-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
	border-right: 1px solid #eee;
}

.m35-tpl-page-my-account .woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 15px 0;
	color: #333;
	font-weight: 700;
	text-decoration: none;
	transition: 0.2s;
}

.m35-tpl-page-my-account .woocommerce-MyAccount-navigation li.is-active a {
	color: var(--m35-green);
}

/* ==========================================================================
   Delivery areas page (block 1)  (from page-delivery-areas.php)
   ========================================================================== */
.m35-tpl-page-delivery-areas .m35-delivery-card-01 {
	background: #ffffff;
	border: 1px solid rgba(17, 17, 17, 0.04);
	border-left: 5px solid #0b6b3a;
	border-radius: 16px;
	padding: 40px 40px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.m35-tpl-page-delivery-areas .m35-delivery-card-01:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
}

.m35-tpl-page-delivery-areas .m35-delivery-head-mc {
	background: #ffffff;
	border: 1px solid rgba(17,17,17,0.05);
	border-left: 5px solid #15803d;
	border-radius: 16px;
	padding: 40px 44px;
	margin: 0 auto;
	box-shadow: 0 8px 24px rgba(17,17,17,0.06);
	text-align: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 40px;
}

.m35-tpl-page-delivery-areas .m35-delivery-head-mc:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(17,17,17,0.09);
}

.m35-tpl-page-delivery-areas .m35-delivery-title-mx {
	margin: 0 0 16px;
	font-family: "Playfair Display", serif;
	font-size: clamp(22px, 3.5vw, 28px);
	line-height: 1.3;
	font-weight: 700;
	color: #111827;
	letter-spacing: -0.01em;
}

.m35-tpl-page-delivery-areas .m35-delivery-intro-mb {
	margin: 0 0 16px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
	font-size: 18px;
	line-height: 1.5;
	color: #111827;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.m35-tpl-page-delivery-areas .m35-delivery-intro-mb2 {
	margin: 0 0 32px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
	font-size: 17px;
	line-height: 1.75;
	color: #4b5563;
	font-weight: 400;
}

.m35-tpl-page-delivery-areas .m35-actions-btn-c {
	display: flex;
	justify-content: flex-start;
}

.m35-tpl-page-delivery-areas .m35-icon-btn-mg-1 {
	display: inline-block;
	background-color: #0b6b3a !important;
	color: #ffffff;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 36px;
	border-radius: 800px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 10px rgba(28, 25, 23, 0.1);
}.m35-tpl-page-delivery-areas .m35-icon-btn-mg-1:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(21, 128, 61, 0.2);
}

.m35-tpl-page-delivery-areas .page-id-2286 .site-content {
	background: #eee;
}

.page-id-2286 #page {
  background: #eee;
}

.m35-tpl-page-delivery-areas .m35-delivery-template {
	padding: 50px 0 50px;
	background: #eee;
}

.m35-tpl-page-delivery-areas .m35-delivery-container {
	width: min(970px, calc(100% - 40px));
	margin: 0 auto;
}

.m35-tpl-page-delivery-areas .m35-delivery-head {
	text-align: center;
	margin-bottom: 56px;
}

.m35-tpl-page-delivery-areas .m35-delivery-title {
	margin: 0 0 16px;
	font-family: "Playfair Display", serif !important;
	font-size: clamp(25px, 5vw, 40px);
	line-height: 1.12;
	font-weight: 600;
	color: #111827;
	letter-spacing: -0.02em;
	position: relative;
	display: inline-block;
}

.m35-tpl-page-delivery-areas .m35-delivery-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background: #0b6b3a;
	border-radius: 2px;
}

.m35-tpl-page-delivery-areas .m35-delivery-intro {
	margin: 8px auto 0;
	max-width: 680px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
	font-size: 17px;
	line-height: 1.7;
	color: #4b5563;
	font-weight: 400;
}

.m35-tpl-page-delivery-areas .m35-delivery-list {
	display: grid;
	gap: 20px;
	counter-reset: delivery-counter;
	grid-template-columns: repeat(3, 1fr);
}

.m35-tpl-page-delivery-areas .m35-delivery-card {
	background: #ffffff;
	border: 1px solid rgba(17, 17, 17, 0.04);
	border-top: 4px solid #0b6b3a;
	border-radius: 16px;
	padding: 40px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	counter-increment: delivery-counter;
}

.m35-tpl-page-delivery-areas .m35-delivery-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(17,17,17,0.08);
}

.m35-tpl-page-delivery-areas .m35-delivery-card::before {
	content: counter(delivery-counter, decimal-leading-zero);
	position: absolute;
	top: 0px;
	left: 32px;
	transform: translateY(0);
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
	font-size: clamp(80px, 15vw, 120px);
	line-height: 1;
	font-weight: 800;
	color: rgba(17, 17, 17, 0.04);
	pointer-events: none;
	z-index: 1;
	transition: color 0.4s ease;
}

.m35-tpl-page-delivery-areas .m35-delivery-card:hover::before {
	color: rgba(17, 17, 17, 0.04);
}

.m35-tpl-page-delivery-areas .m35-delivery-card-content {
	position: relative;
	z-index: 2;
}

.m35-tpl-page-delivery-areas .m35-delivery-card-title {
	margin: 0 0 4px;
	font-family: "Playfair Display", serif;
	font-size: clamp(24px, 3vw, 28px);
	line-height: 1.3;
	font-weight: 700;
	color: #111827;
	letter-spacing: -0.01em;
}

.m35-tpl-page-delivery-areas .m35-delivery-card-text {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
	font-size: 17px;
	line-height: 1.7;
	color: #4b5563;
	font-weight: 400;
	margin-bottom: 6px;
}

.m35-tpl-page-delivery-areas .m35-delivery-closing {
	margin: 20px 0px 20px 0px;
	align-content: flex-start;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
	font-size: 17px;
	line-height: 1.8;
	color: #4b5563;
	font-weight: 400;
}

.m35-tpl-page-delivery-areas .m35-contact-link {
	color: #0b6b3a;
	text-decoration: none !important;
	font-weight: 500;
	transition: color 0.2s ease, border-color 0.2s ease;
}.m35-tpl-page-delivery-areas .m35-contact-link:hover {
	border-bottom-color: #92400e;
}

.m35-tpl-page-delivery-areas .m35-how-it-works {
	padding: 60px 0px 60px;
	background-color: transparent;
	position: relative;
	overflow: hidden;
}

.m35-tpl-page-delivery-areas .m35-how-it-works::before {
	content: '';
	position: absolute;
	top: -150px;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 500px;
	background: radial-gradient(ellipse, rgba(11, 107, 58, 0.04) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.m35-tpl-page-delivery-areas .m35-section-header-h1 {
	text-align: center;
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
}

.m35-tpl-page-delivery-areas .m35-section-header-h1 h1 {
	margin: 0 0 16px;
	font-family: "Playfair Display", serif !important;
	font-size: clamp(25px, 5vw, 40px);
	line-height: 1.12;
	font-weight: 600;
	color: #111827;
	letter-spacing: -0.02em;
	position: relative;
	display: inline-block;
}

.m35-tpl-page-delivery-areas .m35-section-header-h1 h1::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #0b6b3a;
	border-radius: 2px;
}

.m35-tpl-page-delivery-areas .m35-delivery-list-work {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.m35-tpl-page-delivery-areas .m35-delivery-card-content {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-left: 4px solid #0b6b3a;
	border-radius: 20px;
	padding: 48px 36px 44px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	transition:
        transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.4s ease;
}

.m35-tpl-page-delivery-areas .m35-delivery-card-content::before {
	transition: opacity 0.5s ease;
}

.m35-tpl-page-delivery-areas .m35-delivery-card-content:hover::before {
	opacity: 1;
}

.m35-tpl-page-delivery-areas .m35-delivery-card-content::after {
	transition: opacity 0.6s ease;
	pointer-events: none;
	z-index: -1;
}

.m35-tpl-page-delivery-areas .m35-delivery-card-content:hover::after {
	opacity: 1;
}

.m35-tpl-page-delivery-areas .m35-delivery-card-content:hover {
	transform: translateY(-8px);
	box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.06),
        0 8px 20px rgba(0, 0, 0, 0.04);
}

.m35-tpl-page-delivery-areas .m35-card-content-text-mc {
	text-align: left;
	position: relative;
	z-index: 2;
}

.m35-tpl-page-delivery-areas .m35-card-content-text-mc h3 {
	margin: 0 0 4px;
	font-family: "Playfair Display", serif;
	font-size: clamp(24px, 3vw, 28px);
	line-height: 1.3;
	font-weight: 700;
	color: #111827;
	letter-spacing: -0.01em;
}

.m35-tpl-page-delivery-areas .m35-card-content-text-mc p {
	font-family: Inter, system-ui, -apple-system, sans-serif;
	font-size: 15px;
	line-height: 1.75;
	color: #666666;
	margin: 0;
	transition: color 0.4s ease;
}

.m35-tpl-page-delivery-areas .m35-delivery-card-content:hover .m35-card-content-text-mc p {
	color: #444444;
}

.m35-tpl-page-delivery-areas .m35-actions-btn-order {
	margin-top: 30px !important;
	position: relative;
	z-index: 1;
}

.m35-tpl-page-delivery-areas .m35-icon-btn-mg-1 {
	display: inline-block;
	background-color: #0b6b3a !important;
	color: #ffffff;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 36px;
	border-radius: 800px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 10px rgba(28, 25, 23, 0.1);
}

/* ==========================================================================
   Delivery areas page (block 2)  (from page-delivery-areas.php)
   ========================================================================== */
.m35-tpl-page-delivery-areas .helper-link {
	font-weight: 600;
}

.m35-tpl-page-delivery-areas .m35-delivery-info-section {
	padding: 50px 24px;
	background-color: #ffffff;
	position: relative;
	z-index: 1;
	border-radius: 16px;
}

.m35-tpl-page-delivery-areas .m35-info-header {
	text-align: center;
	margin-bottom: 30px;
}

.m35-tpl-page-delivery-areas .m35-info-header h2 {
	font-family: Inter, system-ui, -apple-system, sans-serif;
	font-size: clamp(32px, 5vw, 46px);
	font-weight: 900;
	color: #111111;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin: 0;
}

.m35-tpl-page-delivery-areas .m35-info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1120px;
	margin: 0 auto;
}

.m35-tpl-page-delivery-areas .m35-info-item {
	background-color: #f9fafb;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 16px;
	padding: 32px 28px;
	text-align: center;
	transition: 
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), 
        box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        background-color 0.3s ease;
}

.m35-tpl-page-delivery-areas .m35-info-item:hover {
	transform: translateY(-4px);
	background-color: #ffffff;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.m35-tpl-page-delivery-areas .m35-info-label {
	display: block;
	font-family: Inter, system-ui, -apple-system, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #0b6b3a;
	margin-bottom: 10px;
}

.m35-tpl-page-delivery-areas .m35-info-value {
	display: block;
	font-family: Inter, system-ui, -apple-system, sans-serif !important;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.5;
	color: #4b5563;
}

.m35-tpl-page-delivery-areas .m35-faq-section {
	padding: 25px 0px;
	background-color: transparent;
}

.m35-tpl-page-delivery-areas .m35-faq-header {
	text-align: center;
	margin-bottom: 48px;
}

.m35-tpl-page-delivery-areas .m35-faq-header h2 {
	font-size: 36px;
	font-weight: 800;
	color: #111111;
	margin: 0;
}

.m35-tpl-page-delivery-areas .m35-faq-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.m35-tpl-page-delivery-areas .m35-faq-item {
	border-bottom: 1px solid #e5e7eb;
}

.m35-tpl-page-delivery-areas .m35-faq-item:last-child {
	border-bottom: none;
}

.m35-tpl-page-delivery-areas .m35-faq-question {
	padding: 22px 0;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 16px;
}

.m35-tpl-page-delivery-areas .m35-faq-question::-webkit-details-marker {
	display: none;
}

.m35-tpl-page-delivery-areas .m35-faq-icon-box {
	width: 40px;
	height: 40px;
	background-color: #f3f4f6;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.m35-tpl-page-delivery-areas .m35-faq-icon-box svg {
	width: 20px;
	height: 20px;
	color: #555;
}

.m35-tpl-page-delivery-areas .m35-faq-text {
	flex: 1;
	font-size: 17px;
	font-weight: 600;
	color: #4b5563;
	line-height: 1.4;
	font-family: 'Inter';
}

.m35-tpl-page-delivery-areas .m35-faq-plus {
	width: 28px;
	height: 28px;
	border: 1.5px solid #d1d5db;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 300;
	color: #999;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.m35-tpl-page-delivery-areas .m35-faq-question:hover .m35-faq-text {
	color: #0b6b3a;
}

.m35-tpl-page-delivery-areas .m35-faq-question:hover .m35-faq-icon-box {
	background-color: rgba(11,107,58,0.08);
}

.m35-tpl-page-delivery-areas .m35-faq-question:hover .m35-faq-icon-box svg {
	color: #0b6b3a;
}

.m35-tpl-page-delivery-areas .m35-faq-question:hover .m35-faq-plus {
	border-color: #0b6b3a;
	color: #0b6b3a;
}

.m35-tpl-page-delivery-areas .m35-faq-item[open] .m35-faq-text {
	color: #0b6b3a;
}

.m35-tpl-page-delivery-areas .m35-faq-item[open] .m35-faq-icon-box {
	background-color: rgba(11,107,58,0.1);
}

.m35-tpl-page-delivery-areas .m35-faq-item[open] .m35-faq-icon-box svg {
	color: #0b6b3a;
}

.m35-tpl-page-delivery-areas .m35-faq-item[open] .m35-faq-plus {
	transform: rotate(45deg);
	background-color: #0b6b3a;
	border-color: #0b6b3a;
	color: #fff;
}

.m35-tpl-page-delivery-areas .m35-faq-answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.3s ease 0.05s;
}

.m35-tpl-page-delivery-areas .m35-faq-item[open] .m35-faq-answer {
	max-height: 200px;
	opacity: 1;
}

.m35-tpl-page-delivery-areas .m35-faq-answer p {
	font-size: 16px;
	line-height: 1.7;
	color: #4b5563;
	margin: 0 0 24px 56px;
	font-family: 'Inter';
}

.m35-tpl-page-delivery-areas .m35-closing-cta {
	padding: 50px 0px;
	background-color: #ffffff;
	border-radius: 16px;
}

.m35-tpl-page-delivery-areas .m35-cta-inner {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.m35-tpl-page-delivery-areas .m35-cta-inner h2 {
	font-family: Inter, system-ui, -apple-system, sans-serif;
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 800;
	color: #111111;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 16px 0;
}

.m35-tpl-page-delivery-areas .m35-cta-inner p {
	font-family: Inter, system-ui, -apple-system, sans-serif !important;
	font-size: 17px;
	line-height: 1.7;
	color: #4b5563;
	margin: 0;
}

.m35-tpl-page-delivery-areas .m35-cta-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 32px;
	flex-wrap: wrap;
}

.m35-tpl-page-delivery-areas .m35-btn-primary-cta {
	display: inline-block;
	background-color: #0b6b3a;
	color: #ffffff;
	font-family: Inter, system-ui, -apple-system, sans-serif !important;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	padding: 15px 32px;
	border-radius: 50px;
	transition: 
        background-color 0.3s ease, 
        transform 0.2s ease, 
        box-shadow 0.3s ease;
	box-shadow: 0 4px 14px rgba(11, 107, 58, 0.2);
}.m35-tpl-page-delivery-areas .m35-btn-primary-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(11, 107, 58, 0.3);
}

.m35-tpl-page-delivery-areas .m35-btn-secondary-cta {
	display: inline-block;
	background-color: transparent;
	color: #0b6b3a;
	font-family: Inter, system-ui, -apple-system, sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	padding: 14px 30px;
	border-radius: 50px;
	border: 1.5px solid rgba(11, 107, 58, 0.3);
	transition: 
        background-color 0.3s ease, 
        color 0.3s ease, 
        border-color 0.3s ease,
        transform 0.2s ease;
}

/* ==========================================================================
   Blog listing template  (from page-template-blog.php)
   ========================================================================== */
.m35-tpl-page-template-blog .blog-card--visible {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15) !important;
}

.m35-tpl-page-template-blog .blog-page {
	padding: 2rem 0rem 2rem;
}

.m35-tpl-page-template-blog .blog-page__header {
	margin: 0 auto 1rem;
}

.m35-tpl-page-template-blog .blog-loadmore-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.5rem 0 1rem;
}

.m35-tpl-page-template-blog .blog-load-more-btn {
	color: #fff;
	cursor: pointer;
	padding: 0.75rem 2.5rem;
	font-size: 15px;
	font-weight: 500;
	border: 1px solid #0b6b3a;
	border-radius: 900px;
	background: #0b6b3a;
	transition: opacity 0.2s, background 0.2s, color 0.2s;
	font-family: "Inter", Sans-serif !important;
}.m35-tpl-page-template-blog .blog-load-more-btn:hover {
	opacity: 0.85;
}

.m35-tpl-page-template-blog .blog-load-more-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.m35-tpl-page-template-blog .blog-card {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.m35-tpl-page-template-blog .blog-card--visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   Product archive / shop  (from woocommerce/archive-product.php)
   ========================================================================== */
.m35-tpl-archive-product .m35-main-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 40px 30px;
	box-sizing: border-box;
}

.m35-tpl-archive-product .m35-archive-head {
	width: 100%;
	max-width: 1240px;
	margin: 0 0 30px 0;
	padding: 0px 0 0;
	text-align: left;
}

.m35-tpl-archive-product .m35-stockPrice {
	font-weight: 600;
	color: var(--m35-green);
	font-size: 17px;
	margin-bottom: 24px;
	font-family: 'Inter', sans-serif;
}

/* ==========================================================================
   Single product  (from woocommerce/single-product.php)
   ========================================================================== */
.m35-tpl-single-product .m35-main-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 40px 30px;
	box-sizing: border-box;
}

.m35-tpl-single-product .m35-product-customer-reviews {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 8px 0 15px;
}

.m35-tpl-single-product .m35-product-customer-reviews .star-rating {
	font-size: 15px;
	color: #f5a623;
}

.m35-tpl-single-product .m35-product-customer-reviews .m35-review-link {
	font-size: 15px;
	color: var(--m35-green);
	text-decoration: none;
	font-weight: 700;
}

.m35-tpl-single-product .m35-product-customer-reviews .m35-review-link:hover {
	color: #000;
	text-decoration: none;
}

.m35-tpl-single-product #review_form_wrapper, .m35-tpl-single-product #respond.comment-respond {
	background: #fff !important;
	border-radius: 20px !important;
	padding: 40px !important;
	box-shadow: 0 10px 30px rgba(0,0,0,.08) !important;
	border: 1px solid #e8ece8 !important;
	max-width: 100% !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

.m35-tpl-single-product #respond .comment-reply-title {
	font-size: 24px !important;
	font-weight: 600 !important;
	color: #111 !important;
	margin: 0 0 30px 0 !important;
	padding: 0 !important;
	border: none !important;
	line-height: 1.2 !important;
	font-family: 'Playfair Display' !important;
}

.m35-tpl-single-product #respond .comment-reply-title small, .m35-tpl-single-product #respond .comment-reply-title small a {
	font-size: 13px !important;
	color: #0b6b3a !important;
}

.m35-tpl-single-product #respond .comment-form-rating > label, .m35-tpl-single-product #respond .comment-form-comment > label {
	display: block !important;
}

.m35-tpl-single-product .wcpr-comment-form-title {
	margin-bottom: 20px !important;
}

.m35-tpl-single-product .wcpr-comment-form-title input[type="text"] {
	width: 100% !important;
	border: 2px solid #e8ece8 !important;
	border-radius: 12px !important;
	padding: 16px 20px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	background: #fafcf9 !important;
	color: #333 !important;
	transition: all 0.3s ease !important;
	font-family: inherit !important;
	box-sizing: border-box !important;
	height: auto !important;
	line-height: 1.4 !important;
}

.m35-tpl-single-product .wcpr-comment-form-title input[type="text"]:focus {
	outline: none !important;
	border-color: #0b6b3a !important;
	background: #fff !important;
	box-shadow: 0 0 0 4px rgba(11,107,58,0.08) !important;
}

.m35-tpl-single-product .wcpr-comment-form-title input[type="text"]::placeholder {
	color: #aaa !important;
	font-weight: 400 !important;
}

.m35-tpl-single-product .comment-form-rating {
	background: #fff;
	padding: 15px 0 15px 10px !important;
	border-radius: 12px;
	margin-bottom: 25px;
	border: 2px solid #f0f0f0;
	text-align: center;
	align-items: baseline;
}

.m35-tpl-single-product .woocommerce-js #reviews #review_form #respond p {
	margin: unset;
}

.m35-tpl-single-product #respond .comment-form-rating {
	margin: 0 0 25px 0 !important;
}

.m35-tpl-single-product #respond .comment-form-rating .stars {
	display: flex !important;
	flex-direction: row !important;
	gap: 5px !important;
	margin: 0 !important;
	padding: 0 !important;
}

.m35-tpl-single-product #respond .comment-form-rating .stars span {
	display: flex !important;
	gap: 5px !important;
}

.m35-tpl-single-product #respond .comment-form-rating .stars a {
	display: inline-block !important;
	position: relative !important;
	width: 1.2em !important;
	height: 1.2em !important;
	font-size: 34px !important;
	line-height: 1 !important;
	text-indent: -9999px !important;
	overflow: visible !important;
	padding: 0 !important;
	margin: 0 !important;
	text-decoration: none !important;
	background: none !important;
}

.m35-tpl-single-product #respond .comment-form-rating .stars a::before {
	content: "\e021" !important;
	font-family: 'star', 'WooCommerce' !important;
	text-indent: 0 !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	display: block !important;
	width: 1.2em !important;
	height: 1.2em !important;
	line-height: 1 !important;
	font-size: inherit !important;
	color: #e0e0e0 !important;
	transition: color 0.2s ease, transform 0.2s ease !important;
	pointer-events: none !important;
}

.m35-tpl-single-product #respond .comment-form-rating .stars a:hover::before, .m35-tpl-single-product #respond .comment-form-rating .stars a.active::before {
	color: #FFB800 !important;
	transform: scale(1.15) !important;
	text-shadow: 0 2px 10px rgba(255,184,0,0.4) !important;
}

.m35-tpl-single-product #commentform p.comment-form-comment {
	margin: 0 0 25px 0 !important;
	padding: 0 !important;
	position: relative !important;
}

.m35-tpl-single-product #comment {
	width: 100% !important;
	border: 2px solid #e8ece8 !important;
	border-radius: 12px !important;
	padding: 16px 20px !important;
	font-size: 15px !important;
	line-height: 1.6 !important;
	background: #fafcf9 !important;
	color: #333 !important;
	resize: vertical !important;
	min-height: 130px !important;
	max-height: 300px !important;
	font-family: inherit !important;
	box-sizing: border-box !important;
	transition: all 0.3s ease !important;
	display: block !important;
	margin-bottom: 15px;
}

.m35-tpl-single-product #comment:focus {
	outline: none !important;
	border-color: #0b6b3a !important;
	background: #fff !important;
	box-shadow: 0 0 0 4px rgba(11,107,58,0.08) !important;
}

.m35-tpl-single-product #comment::placeholder {
	color: #aaa !important;
}

.m35-tpl-single-product #comment + div, .m35-tpl-single-product .comment-form-comment > div:not(#comment), .m35-tpl-single-product .wcpr-comment-form-comment-wrapper .mce-container, .m35-tpl-single-product .wcpr-comment-form-comment-wrapper .quicktags-toolbar, .m35-tpl-single-product .wcpr-comment-form-comment-wrapper .wp-editor-container {
	display: none !important;
}

.m35-tpl-single-product .wcpr-comment-form-images {
	background: #f7faf5 !important;
	border: 2px dashed #c5d9c5 !important;
	border-radius: 14px !important;
	padding: 25px !important;
	margin: 0 0 25px 0 !important;
	text-align: center !important;
	transition: all 0.3s ease !important;
}

.m35-tpl-single-product .wcpr-comment-form-images:hover {
	border-color: #0b6b3a !important;
	background: #eef6e3 !important;
}

.m35-tpl-single-product .wcpr-comment-form-images > label {
	display: block !important;
	font-size: 13px !important;
	color: #888 !important;
	font-weight: 700 !important;
	margin: 0 0 15px 0 !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

.m35-tpl-single-product .wcpr-input-file-container {
	margin: 0 !important;
	padding: 0 !important;
}

.m35-tpl-single-product .wcpr_image_upload_button.button {
	background: #fff !important;
	color: #0b6b3a !important;
	border: 2px solid #0b6b3a !important;
	border-radius: 100px !important;
	padding: 12px 28px !important;
	font-weight: 800 !important;
	font-size: 13px !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	box-shadow: none !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	font-family: inherit !important;
	height: auto !important;
	line-height: 1.2 !important;
}

.m35-tpl-single-product .wcpr_image_upload_button.button:hover {
	background: #0b6b3a !important;
	color: #fff !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 4px 12px rgba(11,107,58,0.2) !important;
	border: 2px solid #9400D3 !important;
}

.m35-tpl-single-product .wcpr-selected-image-container {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 12px !important;
	margin-top: 20px !important;
	justify-content: center !important;
}

.m35-tpl-single-product .wcpr-selected-image-container > div {
	position: relative !important;
	width: 90px !important;
	height: 90px !important;
	border-radius: 10px !important;
	overflow: hidden !important;
	border: 2px solid #e8ece8 !important;
	background: #fff !important;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

.m35-tpl-single-product .wcpr-selected-image-container img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 8px !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.m35-tpl-single-product .wcpr-selected-image-container input[type="text"], .m35-tpl-single-product .wcpr-image-caption-input {
	width: 90px !important;
	margin-top: 6px !important;
	padding: 6px 8px !important;
	font-size: 11px !important;
	border: 1px solid #e0e0e0 !important;
	border-radius: 6px !important;
	text-align: center !important;
	background: #fff !important;
	font-family: inherit !important;
	box-sizing: border-box !important;
}

.m35-tpl-single-product .wcpr-selected-image-container input[type="text"]:focus, .m35-tpl-single-product .wcpr-image-caption-input:focus {
	outline: none !important;
	border-color: #0b6b3a !important;
}

.m35-tpl-single-product .wcpr-selected-image-container .wcpr-remove-image {
	position: absolute !important;
	top: 4px !important;
	right: 4px !important;
	width: 22px !important;
	height: 22px !important;
	background: #ff4d4d !important;
	color: #fff !important;
	border: none !important;
	border-radius: 50% !important;
	font-size: 14px !important;
	line-height: 22px !important;
	text-align: center !important;
	cursor: pointer !important;
	z-index: 10 !important;
	padding: 0 !important;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
}

.m35-tpl-single-product .form-submit {
	margin: 0 !important;
	padding: 0 !important;
}

.m35-tpl-single-product .form-submit input[type="submit"], .m35-tpl-single-product .form-submit button[type="submit"] {
	background: #0b6b3a !important;
	color: #fff !important;
	border: none !important;
	padding: 16px 45px !important;
	border-radius: 100px !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	text-transform: uppercase !important;
	letter-spacing: 0.8px !important;
	box-shadow: 0 6px 20px rgba(11,107,58,0.25) !important;
	height: auto !important;
	line-height: 1.2 !important;
}

.m35-tpl-single-product .form-submit input[type="submit"]:hover, .m35-tpl-single-product .form-submit button[type="submit"]:hover {
	background: #095e32 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 10px 25px rgba(11,107,58,0.35) !important;
}

.m35-tpl-single-product .wcpr-comment-form-error-wraps, .m35-tpl-single-product .wcpr-comment-form-notify-wraps {
	display: none !important;
}

.m35-tpl-single-product .wcpr-comment-form-error-wraps:not(.wcpr-hidden), .m35-tpl-single-product .wcpr-comment-form-notify-wraps:not(.wcpr-hidden) {
	display: block !important;
	background: #eef6e3 !important;
	color: #0b6b3a !important;
	border-radius: 10px !important;
	padding: 14px 18px !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	margin-bottom: 20px !important;
	border: 1px solid #c5d9c5 !important;
}

.m35-tpl-single-product {
	--m35-green:  #0b6b3a;
	--m35-green-2:#0a6336;
	--m35-lime:   #9ad000;
	--m35-cream:  #eef6e3;
	--m35-white:  #ffffff;
	--m35-radius: 14px;
	--m35-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.m35-tpl-single-product .m35-single-wrap {
	min-height: 100vh;
	padding-bottom: 80px;
	width: 100%;
	overflow-x: hidden;
}

.m35-tpl-single-product .m35-notices-wrap {
	margin-bottom: 20px;
	width: 100%;
}

.m35-tpl-single-product .woocommerce-message, .m35-tpl-single-product .woocommerce-info, .m35-tpl-single-product .woocommerce-error {
	background: #fff !important;
	border-top: 4px solid var(--m35-green) !important;
	color: #1a1a1a !important;
	padding: 20px 40px!important;
	border-radius: 10px !important;
	box-shadow: var(--m35-shadow) !important;
	margin-bottom: 20px !important;
	list-style: none !important;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
}

.m35-tpl-single-product .woocommerce-message .button {
	background: var(--m35-green) !important;
	color: #fff !important;
	border-radius: 600px !important;
	padding: 8px 15px !important;
	text-transform: uppercase;
	font-size: 12px;
}

.m35-tpl-single-product .m35-product-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	background: #fff;
	border-radius: 20px;
	padding: 15px;
	align-items: start;
	max-width: 1600px;
	margin: 0 auto;
}

.m35-tpl-single-product .m35-product-gallery .woocommerce-product-gallery, .m35-tpl-single-product .m35-product-gallery .woocommerce-product-gallery--with-images, .m35-tpl-single-product .m35-product-gallery .woocommerce-product-gallery--without-images {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.m35-tpl-single-product .m35-product-gallery .woocommerce-product-gallery__image {

}

.m35-tpl-single-product .m35-breadcrumb {
	margin-bottom: 20px;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}

.m35-tpl-single-product .m35-breadcrumb .woocommerce-breadcrumb {
	font-size: 14px;
	font-weight: 600;
	color: #888;
	font-family: 'Inter', sans-serif;
}

.m35-tpl-single-product .m35-breadcrumb .woocommerce-breadcrumb a {
	color: var(--m35-green);
	text-decoration: none;
}

.m35-tpl-single-product .m35-breadcrumb .woocommerce-breadcrumb a:hover {
	text-decoration: underline;
}

.m35-tpl-single-product .m35-breadcrumb .woocommerce-breadcrumb span {
	color: #bbb;
	margin: 0 5px;
}

.m35-tpl-single-product .m35-product-gallery .woocommerce-product-gallery__image img {
	width: auto !important;
	height: auto !important;
	object-fit: cover !important;
	display: block !important;
	border-radius: 16px !important;
	padding: 16px !important;
	box-sizing: border-box !important;
	object-position: center;
}

.m35-tpl-single-product .m35-product-gallery .woocommerce-product-gallery__trigger {
	justify-content: right;
	display: flex;
	z-index: 999999;
}

.m35-tpl-single-product .m35-product-gallery .woocommerce-product-gallery__trigger span {
	border: 2px solid #0b6b3a;
	width: 40px;
	height: 40px;
	border-radius: 999px;
}

.m35-tpl-single-product .m35-product-gallery .woocommerce-product-gallery__trigger img {
	margin: 10px 10px 10px 10px !important;
	background: transparent;
}

.m35-tpl-single-product .m35-product-gallery .woocommerce-product-gallery__image a {
	pointer-events: none !important;
	cursor: default !important;
}

.m35-tpl-single-product .m35-product-gallery .flex-control-nav.flex-control-thumbs {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	flex-direction: row;
	justify-content: center;
}

.m35-tpl-single-product .m35-product-gallery .flex-control-nav.flex-control-thumbs li {
	margin: 0 !important;
	padding: 0 !important;
	width: calc(33% - 20px) !important;
}

.m35-tpl-single-product .m35-product-gallery .flex-control-nav.flex-control-thumbs li img {
	width: 100% !important;
	aspect-ratio: 4 / 3;
	object-fit: cover !important;
	display: block !important;
	border-radius: 10px !important;
	border: 2px solid #dde8dd !important;
	background: transparent !important;
	padding: 6px !important;
	box-sizing: border-box !important;
	cursor: pointer !important;
	opacity: 0.6 !important;
}

.m35-tpl-single-product .m35-product-gallery .flex-control-nav.flex-control-thumbs li img:hover, .m35-tpl-single-product .m35-product-gallery .flex-control-nav.flex-control-thumbs li img.flex-active {
	border-color: #0b6b3a !important;
	opacity: 1 !important;
}

.m35-tpl-single-product .m35-product-kicker {
	color: var(--m35-green);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.m35-tpl-single-product .m35-product-title {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 10px;
	color: #152015;
}

.m35-tpl-single-product .m35-product-price {
	font-size: 22px;
	font-weight: 600;
	color: #111;
	margin-block: 5px;
}

.m35-tpl-single-product .m35-product-info .cart, .m35-tpl-single-product .m35-product-info .variations_button {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	margin: 5px 0 !important;
	flex-wrap: wrap;
}

.m35-tpl-single-product .single_variation_wrap {
	width: 100%;
}

.m35-tpl-single-product .m35-product-info .quantity {
	margin: 0 !important;
}

.m35-tpl-single-product .m35-product-info .quantity input {
	height: 40px;
	border-radius: 10px !important;
	border: 2px solid #f0f0f0;
	font-weight: 900;
	width: 55px !important;
	text-align: center;
	background: #f9f9f9;
}

.m35-tpl-single-product .m35-product-info .single_add_to_cart_button {
	background: var(--m35-green) !important;
	color: #fff !important;
	height: 50px;
	padding: 0 35px !important;
	border-radius: 100px !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	border: 0 !important;
	transition: 0.3s !important;
	flex-grow: 1;
	max-width: 250px;
}

.m35-tpl-single-product .m35-product-info .single_add_to_cart_button:hover {
	background: #9400D3 !important;
	transform: translateY(-2px);
}


.m35-tpl-single-product .m35-product-desc {
	color: #444;
	line-height: 1.7;
	font-size: 16px;
	margin-top: 30px;
	padding-top: 25px;
	border-top: 1px solid #eee;
}

.m35-tpl-single-product .m35-related {
	margin-top: 80px;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}

.m35-tpl-single-product .m35-related-title {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 30px;
	text-align: start;
}

.m35-tpl-single-product .m35-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.m35-tpl-single-product .m35-stockCard {
	background: #fff;
	border-radius: 14px;
	box-shadow: var(--m35-shadow);
	padding: 25px;
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	transition: 0.3s;
}

.m35-tpl-single-product .m35-stockCard:hover {
	transform: translateY(-5px);
}

.m35-tpl-single-product .m35-stockImgWrap {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 180px;
	margin-bottom: 20px;
}

.m35-tpl-single-product .m35-stockImgWrap img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position:center;
}

.m35-tpl-single-product .m35-stockName {
	font-weight: 600;
	font-size: 16px;
	flex-grow: 1;
	margin-bottom: 10px;
	line-height: 1.5;
}

.m35-tpl-single-product .m35-stockName:hover {
	color:#0b6b3a !important;
}

.m35-tpl-single-product .m35-stockPrice {
	font-weight: 600;
	color: var(--m35-green);
	font-size: 20px;
	margin-bottom: 20px;
}

.m35-tpl-single-product .m35-stockBtn {
	height: 44px;
	border-radius: 10px;
	background: var(--m35-green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 14px;
	width: 100%;
}

.m35-tpl-single-product .m35-reviews-wrap {
	margin-top: 80px;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	background: #fff;
	border-radius: 20px;
	padding: 50px 60px;
	box-shadow: var(--m35-shadow);
}

.m35-tpl-single-product .m35-reviews-wrap #reviews h2, .m35-tpl-single-product .m35-reviews-wrap #reviews #reply-title {
	font-size: 26px;
	font-weight: 900;
	color: #152015;
	margin-bottom: 30px;
}

.m35-tpl-single-product .m35-reviews-wrap .comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.m35-tpl-single-product .m35-reviews-wrap .comment-list .review {
	border-bottom: 1px solid #f0f0f0;
	padding: 25px 0;
}

.m35-tpl-single-product .m35-reviews-wrap .comment-list .review:last-child {
	border-bottom: none;
}

.m35-tpl-single-product .m35-reviews-wrap .comment-author .fn {
	font-weight: 900;
	font-size: 15px;
	color: #152015;
}

.m35-tpl-single-product .m35-reviews-wrap .star-rating {
	color: var(--m35-lime);
	font-size: 16px;
	margin: 6px 0;
}

.m35-tpl-single-product .m35-reviews-wrap .star-rating span::before {
	color: var(--m35-green);
}

.m35-tpl-single-product .m35-reviews-wrap .description p {
	color: #555;
	line-height: 1.7;
	font-size: 15px;
	margin: 8px 0 0;
}

.m35-tpl-single-product .m35-reviews-wrap #review_form .comment-form-rating {
	margin-bottom: 15px;
}

.m35-tpl-single-product .m35-reviews-wrap #review_form label {
	font-weight: 600 !important;
	font-size: 14px !important;
	color: #333;
	display: block;
}

.m35-tpl-single-product .m35-reviews-wrap #review_form input[type="text"], .m35-tpl-single-product .m35-reviews-wrap #review_form input[type="email"], .m35-tpl-single-product .m35-reviews-wrap #review_form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #f0f0f0;
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	background: #f9f9f9;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.m35-tpl-single-product .m35-reviews-wrap #review_form input[type="text"]:focus, .m35-tpl-single-product .m35-reviews-wrap #review_form input[type="email"]:focus, .m35-tpl-single-product .m35-reviews-wrap #review_form textarea:focus {
	border-color: var(--m35-green);
	outline: none;
	background: #fff;
}

.m35-tpl-single-product .m35-reviews-wrap #review_form textarea {
	height: 130px;
	resize: vertical;
}

.m35-tpl-single-product .m35-reviews-wrap #review_form .form-submit input[type="submit"] {
	background: var(--m35-green);
	color: #fff;
	border: 0;
	padding: 12px 35px;
	border-radius: 100px;
	font-weight: 900;
	font-size: 15px;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
}

.m35-tpl-single-product .m35-reviews-wrap #review_form .form-submit input[type="submit"]:hover {
	background: var(--m35-green-2);
	transform: translateY(-2px);
}

.m35-tpl-single-product .m35-reviews-wrap .stars a {
	color: var(--m35-green);
	font-size: 22px;
	margin-right: 4px;
}

.m35-tpl-single-product .m35-reviews-wrap .stars a:hover, .m35-tpl-single-product .m35-reviews-wrap .stars a.active {
	color: var(--m35-lime);
}

.m35-tpl-single-product .m35-tabs-section {
	margin-top: 60px;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}

.m35-tpl-single-product .m35-tab-nav {
	display: flex;
	gap: 0;
	border-bottom: 1px solid #ddd;
	flex-wrap: wrap;
}

.m35-tpl-single-product .m35-tab-btn {
	display: inline-block;
	background: none;
	border: none;
	border-top: 3px solid transparent;
	margin-bottom: -1px;
	padding: .4em 1.2em;
	font-size: 16px;
	font-weight: 500;
	color: #111 !important;
	cursor: pointer;
	transition: color 0.2s, border-color 0.2s;
	font-family: inter;
	outline: none;
	text-decoration: none;
}

.m35-tpl-single-product .m35-tab-btn:hover {
	color: #111;
}

.m35-tpl-single-product .m35-tab-btn.m35-tab-active {
	color: #111;
	border-top-color: var(--m35-green);
}

.m35-tpl-single-product .m35-tab-panels {
	background: transparent;
}

.m35-tpl-single-product .m35-tab-panel {
	display: none;
	padding: 40px 0;
	animation: m35FadeIn 0.2s ease;
}

.m35-tpl-single-product .m35-tab-panel.m35-panel-active {
	display: block;
}

@keyframes m35FadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.m35-tpl-single-product .m35-tab-panel-desc .m35-desc-content {
	color: #111;
	line-height: 1.8;
	font-size: 16px;
}

.m35-tpl-single-product .m35-tab-panel-reviews #reviews h2, .m35-tpl-single-product .m35-tab-panel-reviews #reviews #reply-title {
	font-size: 24px;
	font-weight: 700;
	color: #152015;
	margin-bottom: 25px;
}

.m35-tpl-single-product .m35-tab-panel-reviews .comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.m35-tpl-single-product .m35-tab-panel-reviews .comment-list .review {
	border-bottom: 1px solid #f0f0f0;
	padding: 20px 0;
}

.m35-tpl-single-product .m35-tab-panel-reviews .comment-list .review:last-child {
	border-bottom: none;
}

.m35-tpl-single-product .m35-tab-panel-reviews .comment-author .fn {
	font-weight: 700;
	font-size: 15px;
	color: #152015;
}

.m35-tpl-single-product .m35-tab-panel-reviews .star-rating {
	font-size: 15px;
	margin: 5px 0;
}

.m35-tpl-single-product .m35-tab-panel-reviews .description p {
	color: #555;
	line-height: 1.7;
	font-size: 15px;
}

.m35-tpl-single-product .m35-tab-panel-reviews .stars a {
	color: var(--m35-green);
	font-size: 20px;
	margin-right: 3px;
}

.m35-tpl-single-product .m35-tab-panel-reviews .stars a:hover, .m35-tpl-single-product .m35-tab-panel-reviews .stars a.active {
	color: var(--m35-lime);
}

/* ==========================================================================
   Utility classes replacing static inline style attributes
   ========================================================================== */
.is-hidden {
	display: none !important;
}

.m35-section--flush-top {
	padding-top: 0;
}

.m35-text--gap-lg {
	margin-bottom: 35px;
}

.m35-keep-exploring {
	margin-bottom: 0 !important;
}

.m35-mt-30 {
	margin-top: 30px;
}

/* ==========================================================================
   Internal link blocks: disambiguated rules
   The support-page and blog-post variants previously carried two conflicting
   inline <style> definitions of these same class names.
   ========================================================================== */
.m35d-support-links span.m35d-post-related-title {
	margin-right: 4px;
}

.m35d-support-links .m35d-post-related-links a {
	text-decoration: none;
}

/* Subscribe note migrated out of WPCode. */
.m35-subscribe-note {
	margin: 0 0 1.2em;
}

/* Contact form status messages. */
.m35-form-notice {
	margin: 0 0 18px;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 15px;
	line-height: 1.5;
}

.m35-form-notice.is-success {
	background: #eef6e3;
	color: #0b6b3a;
}

.m35-form-notice.is-error {
	background: #fdecec;
	color: #9b1c1c;
}

/* ==========================================================================
   Page container normalisation
   --------------------------------------------------------------------------
   Container widths had drifted apart across templates: shop, product and blog
   sat at 1240px while FAQ, loyalty, bulk pricing, order support, contact and
   delivery areas sat at 970-980px, and the injected "Keep Exploring" block at
   980px. That is why the support pages read as narrow next to the shop pages.

   Everything except the front page now resolves to one token. Change
   --m35-container once and every page follows.
   ========================================================================== */
:root {
	--m35-container: min(1140px, calc(100% - 32px));
}

body:not(.m35-tpl-front-page) .m35-container,
body:not(.m35-tpl-front-page) .m35-main-container,
body:not(.m35-tpl-front-page) .blog-page__container,
body:not(.m35-tpl-front-page) .m35-faq-container,
body:not(.m35-tpl-front-page) .m35-loyalty-container,
body:not(.m35-tpl-front-page) .m35-bulk-container,
body:not(.m35-tpl-front-page) .m35-contact-container,
body:not(.m35-tpl-front-page) .m35-support-container,
body:not(.m35-tpl-front-page) .m35-shopall-container,
body:not(.m35-tpl-front-page) .m35-delivery-container {
	width: var(--m35-container);
	max-width: var(--m35-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
}

/* The support-page "Keep Exploring" block is injected by JS below the main
   content, so on templates without .m35-main-container it lands directly in
   #content and inherits no width. Give it the same container. */
.m35d-support-links {
	width: 100%;
}

.m35d-support-links-inner {
	width: var(--m35-container);
	max-width: var(--m35-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
}

/* Category-page related links sit inside the product grid wrapper, which is
   already contained; keep them flush with it. */
.m35d-cat-related {
	width: 100%;
}

/* ==========================================================================
   Footer
   --------------------------------------------------------------------------
   Four equal columns on desktop: brand, Menu, Support, Contact. The Contact
   column was wrapping to a second row. These selectors carry the footer
   element as well as the grid class so they outrank a bare .m35-footer-grid
   rule from the parent theme or a page builder.
   ========================================================================== */
.m35-footer .m35-footer-container {
	width: var(--m35-container);
	max-width: var(--m35-container);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.m35-footer .m35-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-flow: row;
	gap: 32px;
	align-items: start;
}

.m35-footer .m35-footer-col {
	grid-row: 1;
	min-width: 0;
}

/* ==========================================================================
   Product category content blocks (migrated from WPCode)
   Injected below the product grid on mapped categories only.
   Width comes from the parent container, so the block lines up with the grid
   instead of carrying its own 1240px cap.
   ========================================================================== */
.m35d-cat-seo {
	width: 1240px;
	margin: 36px auto 6px;
	box-sizing: border-box;
	text-align: left;
}

.m35d-cat-seo h2 {
	margin: 0 0 12px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(19px, 2.4vw, 25px);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -.01em;
	color: #111;
}

.m35d-cat-seo p {
	margin: 0 0 12px;
	font-size: 15px;
	line-height: 1.75;
	color: #111;
	font-weight: 500;
}

.m35d-cat-seo a {
	font-weight: 600;
	text-decoration: none;
	text-underline-offset: 2px;
}

.m35d-cat-links {
	margin: 6px 0 0 !important;
	font-size: 15px;
	color: #4b5563;
}

.m35d-cat-dot {
	color: #9ca3af;
}

/* ==========================================================================
   WPCode Headers & Footers - migrated base rules
   --------------------------------------------------------------------------
   Moved out of the WPCode plugin so the theme owns it. This layer is last on
   purpose: it used to print from wp_head/wp_footer and override everything
   before it, and it leans heavily on !important. Keeping it last preserves
   that. Nothing was removed; only rules already identical in the theme were
   left out, because re-declaring them has no effect.
   ========================================================================== */

.m35-contact-link {
	font-weight: 600 !important;
	color: #9400D3 !important;
}.m35-contact-link:hover {
	font-weight: 600 !important;
}

.site-content a:not(.m35-stockBtn):not(.checkout-button):not(.m35-btn):not(.button):not(.blog-card__title-link):not(.m35-icon-btn-mg-1):not(.m35-btn-primary-cta):not(.m35-btn-secondary-cta):not(.m35gr-btn):not(.wcpr-filter-button):not(.mind35dup-zip-checker__cta):hover {
	font-weight: 600 !important;
	color: #9400D3 !important;
}

.site-content a:not(.m35-stockBtn):not(.checkout-button):not(.m35-btn):not(.button):not(.blog-card__title-link):not(.m35-icon-btn-mg-1):not(.m35-btn-primary-cta):not(.m35-btn-secondary-cta):not(.m35gr-btn):not(.wcpr-filter-button):not(.mind35dup-zip-checker__cta) {
	font-weight: 600 !important;
	color: #0b5f3a !important;
}

.m35-footer-top, .m35-footer-bottom {
	background:#0b5f3a !important;
}

.m35d-cat-related {
	margin: 15px 0 0px;
	font-size: 15px;
}

.m35-footer-links {
	gap: 0px !important;
}

.m35d-cat-related a {
	font-size:15px !important;
}

.m35-shopall-wrap, .m35-single-wrap {
	padding-bottom: 1px !important;
}

.has-faqs-block .e-n-accordion-item-title {
	padding: 0 0 10px 0;
}

.is-close {
	display:none;
}

.m35-x3-note a, .m35d-x3-note a {
	font-weight: 500;
}

.ast-separate-container #primary, .ast-separate-container.ast-left-sidebar #primary, .ast-separate-container.ast-right-sidebar #primary {
	margin: 4em 0;
	padding: 0;
	width: min(1200px, calc(100% - 32px));
	margin: 0 auto;
}

.m35d-support-line {
	margin-top: 28px;
	font-size: 16px;
	font-weight: 500;
	color: #4b5563;
}

.m35d-support-line a {
	font-weight: 600;
}

.m35d-shop-all {
	font-weight: 500;
	color: #4b5563;
	margin-top: 25px;
}

.m35d-shop-items {
	font-weight: 500;
	color: #4b5563;
	margin-top: 10px;
}

.m35d-shop-all a {
	display: inline;
}

.m35d-areas-note, .m35d-zip-note {
	margin-top: 10px;
	font-weight: 500;
	color: #4b5563;
	width: 1240px;
}

.m35d-areas-note a, .m35d-zip-note a {
	display: inline;
}

.show-password-input:hover {
	background:unset !important;
}

.woocommerce .woocommerce-billing-fields, .woocommerce .woocommerce-shipping-fields, .woocommerce-page .woocommerce-billing-fields, .woocommerce-page .woocommerce-shipping-fields {
	background: transparent;
	margin-top: 0px !important;
	border-radius: 12px;
	padding: 8px 20px 8px 20px !important;
}

.woocommerce-MyAccount-navigation li a {
	padding: 15px 15px !important;
}

#billing_first_name_field {
	width:100%;
}

.woocommerce-billing-fields__field-wrapper {
	display:flex;
	flex-direction:column;
}

#billing_first_name_field {
	order:-3;
}

#billing_email_field {
	order:-2;
}

#billing_phone_field {
	order:-1;
}

.woocommerce form .form-row select, .woocommerce-page form .form-row select {
	padding: 0.8em 0.8em  !important;
	height: 48px !important;
	border-radius: 100px !important;
	font-size: 15px !important;
	color: #94a3b8 !important;
}

.select2-selection--single {
	padding: 0.8em 0.8em  !important;
	height: 48px !important;
	border-radius: 100px !important;
	font-size: 15px !important;
	color: #94a3b8 !important;
}

.m35-footer-social {
	justify-content: flex-start !important;
}

.mind35dup-zip-checker__result>p {
	margin-bottom: 0.75em!important;
}

.m35zip-archive .mind35dup-zip-checker__cta {
	margin-top: 0 !important;
}

.m35-zip-container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 40px 20px 30px 20px;
	box-sizing: border-box;
}

.m35zip-archive .mind35dup-zip-toggle-wrap.woocommerce-info {
	margin: 0 !important;
}

.m35zip-checkout .mind35dup-zip-toggle-wrap.woocommerce-info {
	margin: 0 !important;
}

.m35zip-checkout .mind35dup-zip-checker__result.is-error {
	padding: 0.6rem 1rem !important;
}

.m35zip-checkout .mind35dup-zip-checker__input {
	border-radius: 100px !important;
}

.m35zip-archive .mind35dup-zip-checker__input {
	border-radius: 100px !important;
}

.m35zip-home {
	padding: 18px 16px 18px 16px;
	border-radius: 14px;
}

body .m35zip-home {
	max-width: 480px !important;
}

body .m35zip-home .mind35dup-zip-checker {
	max-width: 480px !important;
}

.m35zip-home .mind35dup-zip-checker__lede {
	color: #fff !important;
}

 /* no declarations in source */
.m35-heroCard {}

.margin-bottom {
	margin-bottom:30px;
}

.woocommerce-cart .entry-content {
	margin-top: 0px;
	padding: 0px 0px;
}


.woocommerce-checkout .entry-content {
	margin-top: 0px;
	padding: 0px 0px;
}


.home .m35-hero {
	margin-bottom: 0px !important;
	border-radius: 0 !important;
}

.m35-container>h1 {
	font-size:30px !important;
	font-family: 'Playfair Display', serif !important;
	font-weight: 600 !important;
}

.m35-product-short-desc p {
	color:#111 !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 16px !important;
	line-height:1.5 !important;
}

.m35-desc-content p {
	color:#111 !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 16px !important;
	font-weight: 500;
	line-height:1.5 !important;
}

.m35-desc-content>strong {
	color: #111 !important;
	font-size: 16px !important;
	font-weight: 700;
	font-family: "Inter", Sans-serif;
}

.wcpr-form-description {
	margin-bottom:10px !important;
}

.m35-reviews-wrap #review_form label {
	margin-bottom: 0px !important;
	font-weight: 600 !important;
}

.wcpr-filter-container .wcpr-filter-button {
	background-color: var(--ast-global-color-0) !important;
	border-radius: 5px;
	color:#fff !important;
}

.woocommerce-variation-availability>p {
	font-size: 16px !important;
	font-weight: 600 !important;
	color: #111111 !important;
}

.m35-product-info .variations_form .variations {
	width: 100% !important;
	border: none !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	margin: 0 0 0px 0 !important;
}

.m35-product-info .variations_form .variations select {
	width: 100% !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	background: #f6faf4 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230b6b3a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center !important;
	border: 2px solid #0b6b3a!important;
	border-radius: 120px !important;
	padding: 13px 44px 13px 16px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #222 !important;
	cursor: pointer !important;
	box-sizing: border-box !important;
	height: auto !important;
	line-height: 1.4 !important;
	font-family: inherit !important;
}

.m35-product-info .variations_form .variations select:focus {
	outline: none !important;
	border-color: #0b6b3a !important;
	background-color: #fff !important;
	box-shadow: 0 0 0 3px rgba(11,107,58,0.1) !important;
}

.m35-product-info p {
	margin-bottom:0.75em;
}

h1, h2, h3, h4, h5, h6, .entry-content :where(h1,h2,h3,h4,h5,h6) {
	font-size: 24px;
	margin-bottom: 10px;
}

.woocommerce-js .quantity .qty {
	border: 1px solid #111;
	border-radius: 14px;
}

.wcpr-filter-container .wcpr-filter-button.wcpr-active {
	background-color: var(--ast-global-color-0);
}

.wcpr-filter-container .wcpr-filter-button {
	background-color: var(--ast-global-color-0);
}

.return-to-shop a {
	border-radius:100px !important;
}

.woocommerce-form-login__rememberme {
	margin: 0px 0 0px 0 !important;
}

.is-user-reg .form-row-first {
	display:none;
}

.is-user-reg .form-row-last {
	display:none;
}

.woocommerce-billing-fields__field-wrapper label {
	display: block !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	color: #111 !important;
	margin-bottom: 0.375rem !important;
	transition: color 0.2s ease !important;
	line-height: 1.5 !important;
	margin:0 12px;
}

.woocommerce-billing-fields__field-wrapper .input-text {
	border-radius: 100px !important;
	border: 1px solid #e2e8f0 !important;
	background-color: #f8fafc !important;
	padding: 0.75rem 1rem !important;
	font-size: 0.875rem !important;
	color: #111 !important;
	box-sizing: border-box !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	box-shadow: none !important;
	height:50px !important;
}

.is-us-country select {
	border-radius: 100px !important;
	border: 1px solid #e2e8f0 !important;
	background-color: #f8fafc !important;
	padding: 0.75rem 1rem !important;
	font-size: 0.875rem !important;
	color: #111 !important;
	box-sizing: border-box !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	box-shadow: none !important;
	height:50px !important;
}

#billing_wooccm11_button, #billing_wooccm12_button {
	background: transparent;
	border: 1px solid #9400D3;
	color: #000;
	border-radius:100px;
}

#account_password {
	border-radius:100px;
}

.woocommerce-billing-fields__field-wrapper .input-text:focus {
	border-color: #0b6b3a !important;
	background-color: #ffffff !important;
	box-shadow: 0 0 0 4px rgba(11, 107, 58, 0.1) !important;
}

.woocommerce-billing-fields__field-wrapper .woocommerce-invalid .input-text:focus {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2) !important;
}

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

.woocommerce-shipping-fields__field-wrapper label {
	display: block !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	color: #111 !important;
	margin-bottom: 0.375rem !important;
	transition: color 0.2s ease !important;
	line-height: 1.5 !important;
	margin:0 12px;
}

.woocommerce-shipping-fields__field-wrapper .input-text {
	border-radius: 100px !important;
	border: 1px solid #e2e8f0 !important;
	background-color: #f8fafc !important;
	padding: 0.75rem 1rem !important;
	font-size: 0.875rem !important;
	color: #111 !important;
	box-sizing: border-box !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	box-shadow: none !important;
	height:50px !important;
}

.form-row .input-text:focus, .form-row select:focus, .form-row textarea:focus {
	outline: none;
	border-color: #10b981;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
	background-color: #ffffff;
}

.wooccm-file-button {
	background-color: #111827;
	color: #ffffff;
	border: none;
	padding: 14px 20px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.woocommerce-form__input-checkbox {
	width: 20px;
	height: 20px;
	cursor: pointer;
	accent-color: #10b981;
}

.m35-id-wrap {
	background-color: #f8fafc;
	padding: 24px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	margin-top: 20px;
}

.m35-id-wrap input[type="file"] {
	width: 100%;
	padding: 10px;
	background: #ffffff;
	border: 1px dashed #cbd5e1;
	border-radius: 6px;
	cursor: pointer;
	margin-top: 8px;
}

.woocommerce.woocommerce-checkout form #customer_details.col2-set, .woocommerce-page.woocommerce-checkout form #customer_details.col2-set {
	width: 58%;
	margin-right: .347826087%;
}

.m35-cart-count {
	right: 0px !important;
	top: -2px !important;
}

.m35-stockBtn {
	border-radius:100px !important;
}

.entry-content {
	word-wrap: break-word;
	margin-top: 110px;
	padding: 0px 20px;
}

.woocommerce-message, .woocommerce-error, .woocommerce-info {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 24px !important;
	border: 1px solid rgba(17,17,17,0.16) !important;
	border-top: 4px solid #0b6b3a !important;
	border-radius: 14px;
	background: #ffffff !important;
	color: #111111 !important;
	box-shadow: 0 10px 30px rgba(17,17,17,0.06);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	list-style: none;
	box-sizing: border-box;
}

.woocommerce-message::before, .woocommerce-error::before, .woocommerce-info::before {
	position: absolute !important;
	left: 20px !important;
	top: 50% !important;
	transform: translateY(-50%);
	margin: 0 !important;
	line-height: 1 !important;
	font-size: 18px !important;
}

.woocommerce-message a:not(.button), .woocommerce-error a:not(.button), .woocommerce-info a:not(.button) {
	color: inherit;
}

.mind35-all-shop-transition .m35-cat-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.shop_table_responsive tr {
	background: #eee;
	border: none !important;
	color: #111 !important;
	font-family: 'Inter';
	font-weight: 400 !important;
}

.woocommerce-js a.remove:before {
	border: 1px solid #9400d3;
}

.page-id-19 .coupon .button {
	border-radius: 50px;
	padding: 10px 18px;
	background: #0b6b3a;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	border: none;
}

.woocommerce-js .quantity .qty {
	border: 1px solid #111;
	background: transparent;
	border-radius: 4px;
}

.cart-subtotal th {
	color: #fff!important;
}

.cart-subtotal td {
	color: #fff!important;
}

#customer_details h3:not(.elementor-widget-woocommerce-checkout-page h3) {
	font-size: 30px;
	text-transform: capitalize;
}

.page-id-20 {
	background:#eee !important;
}

.woocommerce-checkout .woocommerce-billing-fields, .woocommerce-checkout .woocommerce-additional-fields, .woocommerce-checkout #order_review {
	background: #fff;
	padding: 20px 20px 40px 20px;
	border-radius:12px;
}

.woocommerce-shipping-fields__field-wrapper .input-text:focus {
	border-color: #0b6b3a !important;
	background-color: #ffffff !important;
	box-shadow: 0 0 0 4px rgba(11, 107, 58, 0.1) !important;
}

form #order_review_heading:not(.elementor-widget-woocommerce-checkout-page #order_review_heading) {
	border-style: none;
	border-color: transparent;
	font-size: 30px;
	text-align: left;
	padding: 40px 0 25px 0;
}

form #order_review:not(.elementor-widget-woocommerce-checkout-page #order_review) {
	border-style: unset;
}

.m35-id-verification-wrap > p:not(.form-row) {
	grid-column: span 2 !important;
	margin: 0 0 1rem 0 !important;
	font-size: 0.875rem !important;
	color: #64748b !important;
}

/* ==========================================================================
   Interactive states - single source of truth
   --------------------------------------------------------------------------
   Every button hover used to be declared separately, and several were declared
   two or three times across the old inline blocks and the WPCode layer. There
   were 34 rules saying some version of "purple background, white text". They
   are now one selector list per state.

   To change the hover colour site-wide, edit --m35-accent below. Nothing else.

   Buttons that intentionally differ are NOT in this list and keep their own
   rules: .m35-menu-btn (white button, purple text on hover) and
   .m35-tpl-front-page .m35-btn.ghost (white fill, dark text on hover).
   ========================================================================== */
:root {
	--m35-accent: #9400D3;
	--m35-on-accent: #ffffff;
}

/* ---- Buttons: hover ---------------------------------------------------- */
.m35-btn:hover,
.m35-btn.primary:hover,
.m35-stockBtn:hover,
.m35-form-submit:hover,
.m35-phone-cta:hover,
.m35-load-more-btn:hover,
.m35-tpl-page-template-blog .blog-load-more-btn:hover,
.m35-tpl-page-delivery-areas .m35-icon-btn-mg-1:hover,
.m35-tpl-page-delivery-areas .m35-btn-primary-cta:hover,
.m35-tpl-page-delivery-areas .m35-btn-secondary-cta:hover,
.m35-tpl-page-contact-us .m35-form-submit:hover,
#place_order:hover,
#billing_wooccm11_button:hover,
#billing_wooccm12_button:hover,
.add_to_cart_button:hover,
.return-to-shop a:hover,
.page-id-19 .coupon .button:hover,
.page-id-20 button[name="apply_coupon"]:hover,
.woocommerce-form-login__submit:hover,
.wcpr-filter-container .wcpr-filter-button:hover,
.woocommerce-message .button:hover,
.woocommerce-error .button:hover,
.woocommerce-info .button:hover {
	background: var(--m35-accent) !important;
	background-color: var(--m35-accent) !important;
	border-color: var(--m35-accent) !important;
	color: var(--m35-on-accent) !important;
}

/* ---- Buttons: focus ---------------------------------------------------- *
 * The old sheet had `.m35-stockBtn::focus`, a pseudo-ELEMENT colon pair on a
 * pseudo-class. That selector is invalid and never matched anything, so the
 * button lost its white label on keyboard focus. Corrected here, and paired
 * with :focus-visible so a visible ring only appears for keyboard users.
 * ------------------------------------------------------------------------ */
.m35-btn:focus,
.m35-btn.primary:focus,
.m35-stockBtn:focus,
.m35-form-submit:focus,
.m35-phone-cta:focus,
.m35-load-more-btn:focus,
.m35-tpl-page-template-blog .blog-load-more-btn:focus,
.m35-tpl-page-delivery-areas .m35-icon-btn-mg-1:focus,
.m35-tpl-page-delivery-areas .m35-btn-primary-cta:focus,
.m35-tpl-page-delivery-areas .m35-btn-secondary-cta:focus,
.m35-tpl-page-contact-us .m35-form-submit:focus,
#place_order:focus,
#billing_wooccm11_button:focus,
#billing_wooccm12_button:focus,
.add_to_cart_button:focus,
.return-to-shop a:focus,
.page-id-19 .coupon .button:focus,
.page-id-20 button[name="apply_coupon"]:focus,
.woocommerce-form-login__submit:focus,
.wcpr-filter-container .wcpr-filter-button:focus,
.woocommerce-message .button:focus,
.woocommerce-error .button:focus,
.woocommerce-info .button:focus {
	color: var(--m35-on-accent) !important;
}

.m35-btn:focus-visible,
.m35-btn.primary:focus-visible,
.m35-stockBtn:focus-visible,
.m35-form-submit:focus-visible,
.m35-phone-cta:focus-visible,
.m35-load-more-btn:focus-visible,
.m35-tpl-page-template-blog .blog-load-more-btn:focus-visible,
.m35-tpl-page-delivery-areas .m35-icon-btn-mg-1:focus-visible,
.m35-tpl-page-delivery-areas .m35-btn-primary-cta:focus-visible,
.m35-tpl-page-delivery-areas .m35-btn-secondary-cta:focus-visible,
.m35-tpl-page-contact-us .m35-form-submit:focus-visible,
#place_order:focus-visible,
.add_to_cart_button:focus-visible,
.page-id-19 .coupon .button:focus-visible,
.woocommerce-form-login__submit:focus-visible {
	background: var(--m35-accent) !important;
	background-color: var(--m35-accent) !important;
	color: var(--m35-on-accent) !important;
	outline: 2px solid var(--m35-accent);
	outline-offset: 3px;
}

/* ---- Text links: hover ------------------------------------------------- */
.has-hover-link a:hover,
.helper-link:hover,
.m35-contact-link:hover,
.m35-checkout-notice a:hover,
.custom-checkout-notice a:hover,
.m35-x3-note a:hover,
.m35d-x3-note a:hover,
.m35d-support-line a:hover,
.m35d-shop-items a:hover,
.m35d-shop-all a:hover,
.m35d-areas-note a:hover,
.m35d-zip-note a:hover,
.m35d-cat-seo a:hover,
.m35d-cat-related a:hover,
.m35-tpl-page-loyalty .site-content a:hover {
	color: var(--m35-accent) !important;
}

/* ==========================================================================
   Recovered from the original functions.php inline <style> blocks - base rules
   --------------------------------------------------------------------------
   The minimum-order popup, the post/support related-links block and the
   category related-links line all carried their CSS inline inside
   functions.php. The first extraction pass only walked template files, so
   these were lost and the popup rendered unstyled. Restored verbatim.
   ========================================================================== */

#mind35-minimum-popup-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.55);
	z-index: 999999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

#mind35-minimum-popup-overlay.is-visible {
	display: flex;
}

#mind35-minimum-popup {
	position: relative;
	background: #ffffff;
	max-width: 460px;
	width: 100%;
	border-radius: 22px;
	padding: 38px 30px 30px;
	text-align: center;
	box-shadow: 0 20px 70px rgba(0,0,0,0.18);
	animation: mind35PopupFade .22s ease;
}

@keyframes mind35PopupFade {
	from {
		opacity: 0;
		transform: translateY(10px) scale(.98);
	}

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

#mind35-popup-close {
	position: absolute;
	top: 0px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: none;
	background: none !important;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	color: #111;
	transition: all .18s ease;
	box-shadow: none !important;
}

#mind35-popup-close:hover {
	color: #9400D3;
}

#mind35-minimum-popup h3 {
	margin: 0 0 14px;
	font-size: 26px;
	line-height: 1.2;
	color: #111111;
}

#mind35-minimum-popup p {
	margin: 0 0 26px;
	font-size: 16px;
	line-height: 1.5;
	color: #111;
}

.mind35-popup-buttons {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.mind35-popup-buttons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 24px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	transition: all .2s ease;
	border: 1px solid #ddd;
}

.mind35-popup-continue {
	background: #0b6b3a;
	color: #ffffff;
}

.mind35-popup-continue:hover {
	background: #9400D3;
	color: #ffffff;
}

.mind35-popup-cart {
	background: #f3f3f3;
	color: #111111;
}

.mind35-popup-cart:hover {
	background: #e5e5e5;
	color: #111111;
}

.m35d-support-links {
	margin:34px 0 30px;
	padding-top:18px;
	border-top:1px solid rgba(17,17,17,.08);
}

.m35d-support-links-inner {
	margin:0 auto;
	padding:0 30px;
	box-sizing:border-box;
	width: min(980px, calc(100% - 32px));
}

.m35d-post-related-title {
	font-weight:600;
	color:#111;
	font-size:15px;
	margin-right:4px;
}

.m35d-post-related-links {
	margin:0;
	font-size:15px;
	line-height:1.8;
	color:#4b5563;
}

.m35d-post-related-links a {
	font-weight:600;
	text-decoration:none;
	text-underline-offset:2px;
}

.m35d-post-related-links a:hover {
	color: #9400D3;
}

.m35d-rel-dot {
	color:#9ca3af;
}

.m35d-post-related {
	margin: 15px 0 15px 0px;
	padding-top:12px;
	border-top:1px solid rgba(17,17,17,.08);
}

.m35d-post-related-title {
	margin:0 0 4px !important;
	font-weight:600;
	color:#111;
	font-size:15px;
}

.m35d-post-related-links {
	margin:0;
	font-size:15px;
	line-height:1.8;
	color:#4b5563;
}

.m35d-post-related-links a {
	font-weight:600;
	text-decoration:none !important;
	text-underline-offset:2px;
}

.m35d-post-related-links a:hover {
	color:#9400D3;
}

.m35d-rel-dot {
	color:#9ca3af;
}

.m35d-cat-related {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	gap:6px 10px;
	margin:25px 0 0px;
	font-size:14px;
	line-height:1.6;
	color:#4b5563;
}

.m35d-cat-related a {
	font-weight:600;
	text-decoration:none;
	text-underline-offset:2px;
	white-space:nowrap;
	font-size:15px;
}

.m35d-cat-related a:hover {
	color: #9400D3;
}

.m35d-rel-dot {
	color:#9ca3af;
}

/* ==========================================================================
   Minimum-order popup - authoritative styling
   --------------------------------------------------------------------------
   Appended last and written with !important so the modal renders identically
   regardless of what Astra, WPCode Headers & Footers or a page builder emits.
   The earlier popup rules recovered from functions.php are left in place; this
   block sits on top of them and nothing has been deleted.
   ========================================================================== */
#mind35-minimum-popup-overlay {
	display: none !important;
	position: fixed !important;
	inset: 0 !important;
	z-index: 999999 !important;
	background: rgba(17, 17, 17, 0.55) !important;
	padding: 20px !important;
	box-sizing: border-box !important;
	align-items: center !important;
	justify-content: center !important;
}

#mind35-minimum-popup-overlay.is-visible {
	display: flex !important;
}

#mind35-minimum-popup {
	position: relative !important;
	width: min(460px, calc(100% - 32px)) !important;
	max-width: 460px !important;
	margin: 0 auto !important;
	padding: 36px 32px 32px !important;
	box-sizing: border-box !important;
	background: #ffffff !important;
	border: 0 !important;
	border-radius: 16px !important;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25) !important;
	text-align: center !important;
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

#mind35-popup-close {
	position: absolute !important;
	top: 12px !important;
	right: 16px !important;
	width: 30px !important;
	height: 30px !important;
	padding: 0 !important;
	margin: 0 !important;
	background: none !important;
	border: 0 !important;
	border-radius: 50% !important;
	box-shadow: none !important;
	color: #6b7280 !important;
	font-size: 22px !important;
	line-height: 1 !important;
	cursor: pointer !important;
}

#mind35-popup-close:hover,
#mind35-popup-close:focus {
	background: none !important;
	color: #111111 !important;
}

#mind35-minimum-popup h3 {
	margin: 0 0 14px !important;
	padding: 0 !important;
	font-family: "Playfair Display", Georgia, serif !important;
	font-size: 28px !important;
	line-height: 1.25 !important;
	font-weight: 700 !important;
	color: #111111 !important;
	letter-spacing: -0.01em !important;
	text-align: center !important;
}

#mind35-minimum-popup p {
	margin: 0 0 26px !important;
	padding: 0 !important;
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
	font-size: 16px !important;
	line-height: 1.6 !important;
	font-weight: 400 !important;
	color: #4b5563 !important;
	text-align: center !important;
}

.mind35-popup-buttons {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 14px !important;
	margin: 0 !important;
	padding: 0 !important;
}

.mind35-popup-buttons a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 50px !important;
	padding: 0 30px !important;
	border-radius: 999px !important;
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

.mind35-popup-continue {
	background: #0b6b3a !important;
	border: 1px solid #0b6b3a !important;
	color: #ffffff !important;
}

.mind35-popup-cart {
	background: #ffffff !important;
	border: 1px solid #d9dee3 !important;
	color: #111111 !important;
}

/* Hover follows the shared accent, like every other button. */
.mind35-popup-continue:hover,
.mind35-popup-continue:focus,
.mind35-popup-cart:hover,
.mind35-popup-cart:focus {
	background: var(--m35-accent, #9400D3) !important;
	border-color: var(--m35-accent, #9400D3) !important;
	color: var(--m35-on-accent, #ffffff) !important;
}

/* ==========================================================================
   Footer - four columns, authoritative
   --------------------------------------------------------------------------
   footer.php outputs exactly four .m35-footer-col children. This selector
   walks the full ancestor chain and uses !important so an outside 3-column
   rule cannot win. grid-row pins all four to the first row.
   ========================================================================== */
body .m35-footer .m35-footer-top .m35-footer-container .m35-footer-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	grid-template-rows: auto !important;
	grid-auto-flow: row !important;
	gap: 32px !important;
	align-items: start !important;
}

body .m35-footer .m35-footer-top .m35-footer-container .m35-footer-grid > .m35-footer-col {
	grid-row: 1 !important;
	min-width: 0 !important;
	width: auto !important;
	float: none !important;
}


.page-id-838 #page {
	background: #eee;
}