/**
 * GRAM Peptides site-wide visual system
 *
 * Presentation-only rules for the existing WordPress, Woodmart, Elementor,
 * WooCommerce, Gravity Forms, Contact Form 7, and User Registration markup.
 * Dynamic content, queries, forms, and commerce behavior remain untouched.
 */

body:not(.home) {
	--gram-primary: #00204d;
	--gram-navy: #1b3665;
	--gram-teal: #038181;
	--gram-ink: #1b1c1c;
	--gram-muted: #5f6670;
	--gram-line: rgba(0, 32, 77, 0.11);
	--gram-surface: #fcf9f8;
	--gram-surface-low: #f5f7f8;
	--gram-white: #fff;
	--gram-danger: #d83a3a;
	--gram-serif: "Playfair Display", Georgia, serif;
	--gram-sans: "Outfit", "Hanken Grotesk", Arial, sans-serif;
	background: var(--gram-surface);
	color: var(--gram-ink);
	font-family: var(--gram-sans);
}

/* ================================================================
   July 2026 QA fixes: account, forms, profile, search and products
   ================================================================ */

/* Keep password visibility controls clear and consistent everywhere. */
.woocommerce .password-input {
	position: relative;
}

.woocommerce .gram-password-wrap {
	position: relative;
	display: block;
}

.woocommerce :is(.password-input, .gram-password-wrap) > input {
	padding-right: 50px !important;
}

.woocommerce .show-password-input {
	position: absolute;
	top: 0;
	right: 0;
	display: flex !important;
	width: 48px;
	height: 100%;
	align-items: center;
	justify-content: center;
	color: #08275b;
	cursor: pointer;
	opacity: .72;
	z-index: 4;
}

.woocommerce .show-password-input::before {
	display: block !important;
	width: 21px;
	height: 21px;
	background: currentColor;
	content: "" !important;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='2.7'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='2.7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.woocommerce .show-password-input::after { display: none !important; }

.woocommerce .show-password-input:is(:hover, :focus, :focus-visible, :active) {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: #08275b !important;
	opacity: 1 !important;
}

.woocommerce .show-password-input.display-password::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 3 18 18'/%3E%3Cpath d='M10.6 6.1A11 11 0 0 1 12 6c6.5 0 10 6 10 6a18 18 0 0 1-2.2 2.8M6.2 6.2C3.5 8 2 12 2 12s3.5 6 10 6c1.5 0 2.8-.3 4-.8M9.9 9.9a3 3 0 0 0 4.2 4.2'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 3 18 18'/%3E%3Cpath d='M10.6 6.1A11 11 0 0 1 12 6c6.5 0 10 6 10 6a18 18 0 0 1-2.2 2.8M6.2 6.2C3.5 8 2 12 2 12s3.5 6 10 6c1.5 0 2.8-.3 4-.8M9.9 9.9a3 3 0 0 0 4.2 4.2'/%3E%3C/svg%3E");
}

/* My Account navigation: remove theme pills/overlaps and keep one clean state. */
body:not(.home) .woocommerce-MyAccount-navigation ul,
body:not(.home) .woocommerce-MyAccount-navigation .wd-nav {
	display: block;
	padding: 8px 0;
	background: #fff !important;
}

body:not(.home) .woocommerce-MyAccount-navigation li,
body:not(.home) .woocommerce-MyAccount-navigation li:is(:hover, .is-active) {
	margin: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

body:not(.home) .woocommerce-MyAccount-navigation li a,
body:not(.home) .woocommerce-MyAccount-navigation li:is(:hover, .is-active) a {
	position: relative;
	padding: 14px 18px !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

body:not(.home) .woocommerce-MyAccount-navigation li.is-active a {
	padding-left: 24px !important;
	color: #128a8c !important;
	font-weight: 700;
	box-shadow: inset 3px 0 0 #128a8c !important;
}

/* Dynamic extended member profile. */
.gram-profile-details {
	padding: clamp(24px, 4vw, 42px);
	background: #fff;
	border: 1px solid rgba(0, 32, 77, .11);
}

.gram-profile-details__header {
	display: flex;
	margin-bottom: 30px;
	padding-bottom: 24px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid rgba(0, 32, 77, .10);
}

.gram-profile-details__eyebrow {
	color: #128a8c;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.gram-profile-details h2 {
	margin: 7px 0 0;
	color: #08275b;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 500;
}

.gram-profile-details__edit {
	min-height: 46px !important;
	padding: 13px 22px !important;
	background: #08275b !important;
	border: 1px solid #08275b !important;
	border-radius: 0 !important;
	color: #fff !important;
}

.gram-profile-details__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.gram-profile-details__item {
	display: flex;
	min-height: 76px;
	padding: 16px 18px;
	flex-direction: column;
	justify-content: center;
	background: #f7f9fa;
	border-left: 2px solid #128a8c;
}

.gram-profile-details__item span {
	margin-bottom: 5px;
	color: #657184;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.gram-profile-details__item strong {
	color: #08275b;
	font-size: 15px;
	font-weight: 600;
	overflow-wrap: anywhere;
}

body.woocommerce-account #extedform .form-row {
	position: relative;
	display: flex;
	margin-bottom: 18px;
	flex-wrap: wrap;
	align-items: center;
}

body.woocommerce-account #extedform .form-row > label {
	display: inline-flex;
	width: 100%;
	margin-bottom: 6px;
	align-items: baseline;
	gap: 4px;
}

body.woocommerce-account #extedform .form-row > label .required,
body.woocommerce-account #extedform .form-row > .required {
	position: static !important;
	display: inline-block;
	margin: 0;
	vertical-align: baseline;
}

body.woocommerce-account #extedform .form-row > input[type="checkbox"] {
	width: 18px !important;
	height: 18px !important;
	margin: 0 9px 0 0 !important;
	flex: 0 0 18px;
	accent-color: #128a8c;
}

/* Elementor's paragraph formatting splits the profile checkbox, its label,
 * and the required marker into separate paragraphs. Rejoin them visually
 * without changing the dynamic field or its submitted value. */
body.woocommerce-account #extedform > #aregistration_field_15 {
	display: none !important;
	margin: 0 !important;
}

body.woocommerce-account #extedform > p:has(> input.input-checkbox[type="checkbox"]) {
	display: inline-flex !important;
	width: auto !important;
	margin: 0 9px 18px 0 !important;
	align-items: center;
	vertical-align: middle;
	white-space: normal;
}

body.woocommerce-account #extedform > p:has(> input.input-checkbox[type="checkbox"]) > input.input-checkbox {
	display: block !important;
	width: 18px !important;
	height: 18px !important;
	margin: 0 !important;
	flex: 0 0 18px;
	accent-color: #128a8c;
}

body.woocommerce-account #extedform > p:has(> input.input-checkbox[type="checkbox"]) + p {
	display: inline-flex !important;
	width: auto !important;
	margin: 0 0 18px !important;
	align-items: center;
	gap: 4px;
	vertical-align: middle;
	white-space: normal;
}

body.woocommerce-account #extedform > p:has(> input.input-checkbox[type="checkbox"]) + p > :is(b, .required) {
	position: static !important;
	display: inline !important;
	width: auto !important;
	margin: 0 !important;
}

body.woocommerce-account #extedform > p:has(> input.input-checkbox[type="checkbox"]) + p > br {
	display: none !important;
}

body.woocommerce-account #extedform .gram-profile-save-status {
	width: 100%;
	margin: 0 0 16px;
	padding: 12px 15px;
	border-left: 3px solid #128a8c;
	background: #f3f8f8;
	color: #08275b;
	font-size: 14px;
	font-weight: 600;
}

body.woocommerce-account #extedform .gram-profile-save-status:empty {
	display: none;
}

body.woocommerce-account #extedform .gram-profile-save-status.is-error {
	border-color: #c62828;
	background: #fff5f5;
	color: #9f1d1d;
}

body.woocommerce-account #extedform :is(input, select, textarea).gram-field-error {
	border-color: #c62828 !important;
	box-shadow: 0 0 0 2px rgba(198, 40, 40, .08) !important;
}

/* Newsletter form breathes inside its footer column at every breakpoint. */
.elementor-209 .elementor-element.elementor-element-7400d24 {
	min-width: 0;
}

.elementor-209 .elementor-element.elementor-element-d230b9a,
.elementor-209 .elementor-element.elementor-element-d230b9a .elementor-widget-container,
.elementor-209 .elementor-element.elementor-element-d230b9a form {
	width: 100%;
	max-width: 100%;
}

.elementor-209 .elementor-element.elementor-element-d230b9a form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.elementor-209 .elementor-element.elementor-element-d230b9a .elementor-form-fields-wrapper {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
	width: 100%;
	margin: 0 !important;
	gap: 10px;
}

.elementor-209 .elementor-element.elementor-element-d230b9a .elementor-field-group {
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
}

.elementor-209 .elementor-element.elementor-element-d230b9a .elementor-button {
	width: 100%;
	padding-inline: 22px;
}

.elementor-209 .elementor-element.elementor-element-d230b9a :is(input, button) {
	min-height: 52px;
}

/* Full-screen search redesigned to match the editorial navy/teal system. */
body .wd-search-full-screen {
	--wd-search-sp: 28px;
	--wd-form-height: 64px;
	padding: clamp(70px, 9vh, 110px) clamp(20px, 5vw, 72px) 40px;
	background: rgba(247, 249, 250, .985) !important;
	box-shadow: none;
}

body .wd-search-full-screen .searchform {
	position: relative;
	width: min(760px, 100%);
	margin: 0 auto 22px;
	padding: 0 20px 0 58px;
	background: #fff;
	border: 1px solid #cdd7e2;
	box-shadow: 0 18px 45px rgba(0, 32, 77, .08);
	transition: border-color .2s ease, box-shadow .2s ease;
}

body .wd-search-full-screen .searchform:focus-within {
	border-color: #128a8c;
	box-shadow: 0 0 0 3px rgba(18, 138, 140, .12), 0 18px 45px rgba(0, 32, 77, .08);
}

body .wd-search-full-screen .searchform::before {
	position: absolute;
	top: 50%;
	left: 21px;
	color: #128a8c;
	content: "\f130";
	font-family: "woodmart-font";
	font-size: 22px;
	line-height: 1;
	transform: translateY(-50%);
	pointer-events: none;
}

body .wd-search-full-screen .searchform input[type="text"] {
	height: 64px;
	padding: 0 !important;
	border: 0;
	background: transparent;
	color: #08275b;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 500;
	text-align: left;
	box-shadow: none;
}

body .wd-search-full-screen .wd-close-search.wd-style-icon {
	--wd-action-icon-size: 20px;
	--wd-action-icon-color: #fff;
	--wd-action-icon-color-hover: #fff;
	display: inline-flex !important;
	width: 48px;
	height: 48px;
	top: 20px;
	right: 20px;
	background: #08275b;
	transition: background-color .2s ease, transform .2s ease;
}

body .wd-search-full-screen .wd-close-search.wd-style-icon > a {
	width: 48px;
	height: 48px;
}

body .wd-search-full-screen .wd-close-search.wd-style-icon:is(:hover, :focus-within) {
	background: #128a8c;
	transform: rotate(90deg);
}

body .wd-search-full-screen .wd-close-search.wd-style-icon > a:focus-visible {
	outline: 3px solid rgba(18, 138, 140, .3);
	outline-offset: 3px;
}

body .wd-search-full-screen :is(.wd-search-info-text, .wd-search-results, .wd-search-history, .wd-search-requests) {
	width: min(1120px, 100%);
	margin-inline: auto;
}

body .wd-search-full-screen .wd-search-info-text {
	color: #657184;
	font-size: 14px;
}

body .wd-search-full-screen .wd-suggestions-group {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

body .wd-search-full-screen .wd-suggestion {
	min-width: 0;
	padding: 18px;
	background: #fff;
	border: 1px solid rgba(0, 32, 77, .09);
}

body .wd-search-full-screen .wd-suggestion-thumb img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
}

/* Single-product Recently Viewed uses full product cards, not thumbnail strips. */
.single-product .elementor-486 .elementor-element.elementor-element-b6c7ff9 .product-grid-item .product-element-top {
	min-height: 250px;
	padding: 24px;
	background: #fff;
	border: 1px solid rgba(0, 32, 77, .09);
}

.single-product .elementor-486 .elementor-element.elementor-element-b6c7ff9 .wd-product-img-link,
.single-product .elementor-486 .elementor-element.elementor-element-b6c7ff9 .wd-product-img,
.single-product .elementor-486 .elementor-element.elementor-element-b6c7ff9 .attachment-woocommerce_thumbnail {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
}

.single-product .elementor-486 .elementor-element.elementor-element-b6c7ff9 .wd-entities-title {
	margin-top: 18px;
	color: #08275b;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 19px;
	font-weight: 500;
}

@media (max-width: 1024px) {
	body .wd-search-full-screen .wd-suggestions-group { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
	.gram-profile-details__header { align-items: flex-start; flex-direction: column; }
	.gram-profile-details__edit { width: 100%; }
	.gram-profile-details__grid { grid-template-columns: minmax(0, 1fr); }
	.elementor-209 .elementor-element.elementor-element-d230b9a form { grid-template-columns: minmax(0, 1fr); }
	.elementor-209 .elementor-element.elementor-element-d230b9a .elementor-form-fields-wrapper { grid-template-columns: minmax(0, 1fr); }
	body .wd-search-full-screen { padding: 76px 16px 24px; }
	body .wd-search-full-screen .searchform { padding: 0 16px 0 50px; }
	body .wd-search-full-screen .searchform::before { left: 17px; font-size: 19px; }
	body .wd-search-full-screen .searchform input[type="text"] { height: 56px; font-size: 22px; }
	body .wd-search-full-screen .wd-close-search.wd-style-icon { width: 42px; height: 42px; top: 12px; right: 12px; }
	body .wd-search-full-screen .wd-close-search.wd-style-icon > a { width: 42px; height: 42px; }
	body .wd-search-full-screen .wd-suggestions-group { grid-template-columns: minmax(0, 1fr); }
}

body:not(.home) :where(p, li, label, input, select, textarea, button, a) {
	font-family: var(--gram-sans);
}

body:not(.home) :where(h1, h2, h3, h4, h5, h6) {
	font-family: var(--gram-serif);
	font-weight: 500;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

body:not(.home) :where(a, button, input, select, textarea) {
	transition: border-color 0.3s ease, background-color 0.3s ease,
		color 0.3s ease, opacity 0.3s ease, transform 0.3s ease,
		box-shadow 0.3s ease;
}

body:not(.home) .website-wrapper,
body:not(.home) .main-page-wrapper {
	background: var(--gram-surface);
}

body:not(.home) .main-page-wrapper {
	overflow: clip;
	padding-block: 0;
}

body:not(.home) .site-content,
body:not(.home) .wd-content-area {
	margin-bottom: 0;
	padding-bottom: 0;
}

/* Research notice and shared dynamic header */
body:not(.home) .wd-hb-wrapp {
	height: 32px !important;
	min-height: 32px;
	background: var(--gram-navy);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--gram-white);
}

body:not(.home) .wd-hb-wrapp .header-banner {
	height: 32px !important;
}

body:not(.home) .wd-hb-wrapp :where(.wd-header-banner, .wd-hb-content, .container) {
	height: 32px;
	min-height: 32px;
}

body:not(.home) .wd-hb-wrapp :where(p, div) {
	color: var(--gram-white);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 1.4;
	text-transform: uppercase;
}

body:not(.home) .whb-header {
	font-family: var(--gram-sans);
}

body:not(.home) .whb-general-header {
	background: var(--gram-surface) !important;
	border-bottom: 1px solid rgba(0, 32, 77, 0.07) !important;
	box-shadow: none;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

body:not(.home) .whb-header {
	background: var(--gram-surface) !important;
}

body:not(.home) .whb-sticked .whb-general-header {
	background: rgba(252, 249, 248, 0.98) !important;
	box-shadow: 0 16px 40px rgba(0, 32, 77, 0.08);
}

body:not(.home) .whb-general-header .whb-row-inner {
	min-height: 96px;
}

body:not(.home) .whb-general-header .container {
	max-width: 1440px;
	padding-inline: clamp(24px, 4.45vw, 64px);
}

body:not(.home) .whb-header .site-logo img {
	max-height: 62px;
}

body:not(.home) .wd-header-nav .menu > li > a {
	color: var(--gram-primary);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: none;
}

body:not(.home) .wd-header-nav .menu > li:is(:hover, .current-menu-item, .current_page_item) > a,
body:not(.home) .wd-header-nav .menu > li > a:focus-visible {
	color: var(--gram-teal);
}

body:not(.home) .wd-header-nav .menu > li:is(.current-menu-item, .current_page_item) > a::after {
	background: var(--gram-teal);
}

body:not(.home) .whb-col-right .wd-tools-element {
	color: var(--gram-primary);
}

body:not(.home) .whb-col-right .wd-tools-element:hover,
body:not(.home) .whb-col-right .wd-tools-element:focus-within {
	color: var(--gram-teal);
}

body:not(.home) .whb-col-right :where(.wd-tools-text, .wd-tools-count, .wd-tools-inner) {
	font-size: 13px;
}

body:not(.home) :where(.wd-header-cart, .wd-header-wishlist) .wd-tools-count {
	background: var(--gram-teal);
	color: var(--gram-white);
}

/* Keep the dynamic wishlist count readable beside the heart icon. */
body:not(.home) .wd-header-wishlist > a {
	min-width: 44px;
	overflow: visible;
}

body:not(.home) .wd-header-wishlist .wd-tools-icon {
	position: relative;
	overflow: visible;
}

body:not(.home) .wd-header-wishlist .wd-tools-count {
	position: absolute;
	top: -7px;
	right: -10px;
	display: flex;
	width: 17px !important;
	height: 17px !important;
	padding: 0;
	align-items: center;
	justify-content: center;
	background: var(--gram-teal);
	border: 2px solid var(--gram-surface);
	border-radius: 50%;
	color: var(--gram-white);
	font-family: var(--gram-sans);
	font-size: 9px !important;
	font-weight: 700;
	line-height: 1 !important;
}

/* Shared inner-page title and content rhythm */
body:not(.home) .wd-page-title {
	min-height: 210px;
	margin: 0;
	padding: 58px clamp(24px, 4.45vw, 64px);
	background-color: var(--gram-surface-low) !important;
	background-image: none !important;
	border-bottom: 1px solid var(--gram-line);
}

body:not(.home) .wd-page-title .container,
body:not(.home) .wd-page-title .container > * {
	max-width: 1312px;
}

body:not(.home) .wd-page-title .title {
	color: var(--gram-primary);
	font-family: var(--gram-serif);
	font-size: clamp(42px, 4vw, 58px);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.04;
}

body:not(.home) .wd-breadcrumbs,
body:not(.home) .wd-breadcrumbs :where(a, span) {
	color: var(--gram-muted);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

body:not(.home) .wd-breadcrumbs a:hover {
	color: var(--gram-teal);
}

body:not(.home) .main-page-wrapper > .wd-content-layout,
body:not(.home) .main-page-wrapper > .container,
body:not(.home) #main-content > .wd-content-layout {
	max-width: 1440px;
	padding-inline: clamp(24px, 4.45vw, 64px);
}

body:not(.home) .wd-content-layout:not(.wd-builder-on) {
	padding-block: clamp(64px, 7vw, 104px);
}

body:not(.home) .entry-content > :where(h1, h2, h3, h4) {
	color: var(--gram-primary);
}

body:not(.home) .entry-content > h2 {
	margin-top: 1.65em;
	font-size: clamp(30px, 3vw, 42px);
}

body:not(.home) .entry-content > h3 {
	margin-top: 1.5em;
	font-size: clamp(23px, 2vw, 30px);
}

body:not(.home) .entry-content :where(p, li) {
	color: var(--gram-muted);
	font-size: 16px;
	line-height: 1.8;
}

body:not(.home) .entry-content a:not(.button):not(.btn) {
	color: var(--gram-teal);
	text-decoration-color: rgba(3, 129, 129, 0.35);
	text-underline-offset: 3px;
}

/* Typography shared by existing Elementor pages */
body:not(.home) #main-content :where(.elementor-heading-title, .title, .info-box-title) {
	font-family: var(--gram-serif);
	font-weight: 500;
	letter-spacing: -0.025em;
}

body:not(.home) #main-content .elementor-widget-text-editor,
body:not(.home) #main-content .wd-text-block,
body:not(.home) #main-content .title-after_title {
	line-height: 1.75;
}

body:not(.home) #main-content .elementor-top-section,
body:not(.home) #main-content .e-con.e-parent {
	background-attachment: scroll;
}

body:not(.home) #main-content .elementor-top-section > .elementor-container,
body:not(.home) #main-content .e-con.e-parent > .e-con-inner {
	max-width: 1312px;
}

body:not(.home) #main-content .elementor-widget-image img {
	border-radius: 0 !important;
}

/* Shared interactive controls */
body:not(.home) :where(.button, .btn, button, input[type="submit"], input[type="button"], .elementor-button) {
	min-height: 50px;
	padding: 14px 24px;
	background: var(--gram-primary);
	border: 1px solid var(--gram-primary);
	border-radius: 0;
	box-shadow: none;
	color: var(--gram-white);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	line-height: 1.2;
	text-transform: uppercase;
}

body:not(.home) :where(.button, .btn, button, input[type="submit"], input[type="button"], .elementor-button):is(:hover, :focus-visible) {
	background: var(--gram-teal);
	border-color: var(--gram-teal);
	color: var(--gram-white);
	transform: translateY(-2px);
}

body:not(.home) :where(input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="number"], input[type="search"], input[type="url"], select, textarea) {
	min-height: 50px;
	padding: 12px 16px;
	background: var(--gram-white);
	border: 1px solid rgba(0, 32, 77, 0.16);
	border-radius: 0;
	box-shadow: none;
	color: var(--gram-ink);
}

body:not(.home) textarea {
	min-height: 150px;
}

body:not(.home) :where(input, select, textarea):focus {
	border-color: var(--gram-teal);
	box-shadow: 0 0 0 3px rgba(3, 129, 129, 0.1);
	outline: 0;
}

body:not(.home) :where(label, .form-row label) {
	color: var(--gram-primary);
	font-size: 13px;
	font-weight: 600;
}

body:not(.home) :where(.woocommerce-error, .woocommerce-info, .woocommerce-message, .wpcf7-response-output, .gform_validation_errors) {
	padding: 18px 22px;
	background: var(--gram-white);
	border: 1px solid var(--gram-line);
	border-left: 3px solid var(--gram-teal);
	border-radius: 0;
	color: var(--gram-primary);
}

body:not(.home) :where(
	.woocommerce-error,
	.wpcf7-not-valid-tip,
	.wpcf7 form.invalid .wpcf7-response-output,
	.gform_validation_errors,
	.gfield_validation_message,
	.user-registration-error,
	.ur-error,
	.gram-profile-save-status.is-error,
	.gram-field-error-message
) {
	color: #b42318 !important;
}

body:not(.home) :where(.woocommerce-error, .wpcf7 form.invalid .wpcf7-response-output, .gform_validation_errors, .user-registration-error, .ur-error) {
	background: #fff1f0 !important;
	border-color: #fda29b !important;
	border-left-color: #d92d20 !important;
}

body:not(.home) :where(.woocommerce-error, .user-registration-error, .ur-error) :is(li, strong, a),
body:not(.home) :where(.woocommerce-invalid, .gfield_error) :is(label, .required) {
	color: #b42318 !important;
}

body:not(.home) :where(.woocommerce-invalid, .gfield_error) :is(input, select, textarea),
body:not(.home) :where(input, select, textarea)[aria-invalid="true"] {
	border-color: #d92d20 !important;
	box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.1) !important;
}

/* Shop archive */
body:not(.home).woocommerce-shop .main-page-wrapper,
body:not(.home).tax-product_cat .main-page-wrapper,
body:not(.home).tax-product_tag .main-page-wrapper {
	background: var(--gram-surface-low);
}

body:not(.home).woocommerce-shop #main-content .elementor-element-2adb27a,
body:not(.home).tax-product_cat #main-content .elementor-element-2adb27a,
body:not(.home).tax-product_tag #main-content .elementor-element-2adb27a {
	margin: 0;
	padding: 48px clamp(24px, 4.45vw, 64px) 38px;
	background: var(--gram-surface);
	border-bottom: 1px solid var(--gram-line);
}

body:not(.home).woocommerce-shop #main-content .entry-title,
body:not(.home).tax-product_cat #main-content .entry-title,
body:not(.home).tax-product_tag #main-content .entry-title {
	color: var(--gram-primary);
	font-family: var(--gram-serif);
	font-size: clamp(40px, 4vw, 56px);
	font-weight: 500;
	letter-spacing: -0.03em;
}

body:not(.home).woocommerce-shop #main-content .elementor-element-2a85db37,
body:not(.home).tax-product_cat #main-content .elementor-element-2a85db37,
body:not(.home).tax-product_tag #main-content .elementor-element-2a85db37 {
	padding: clamp(58px, 6vw, 88px) clamp(24px, 4.45vw, 64px) clamp(88px, 8vw, 128px);
}

body:not(.home) .wd-shop-tools :where(.wd-show-sidebar-btn, .wd-products-per-page, .wd-products-shop-view) {
	color: var(--gram-primary);
}

body:not(.home) .woocommerce-ordering select {
	min-width: 205px;
	background-color: var(--gram-white);
	border-color: var(--gram-line);
}

body:not(.home) .area-sidebar-shop .widget,
body:not(.home) .shop-content-area + .area-sidebar-shop .widget {
	margin-bottom: 22px;
	padding: 26px 24px;
	background: var(--gram-white);
	border: 1px solid rgba(0, 32, 77, 0.07);
}

body:not(.home) .area-sidebar-shop .widget-title {
	margin-bottom: 22px;
	color: var(--gram-primary);
	font-family: var(--gram-serif);
	font-size: 20px;
	font-weight: 600;
}

body:not(.home) .area-sidebar-shop :where(li, a) {
	color: var(--gram-muted);
	font-size: 14px;
	line-height: 1.5;
}

body:not(.home) .area-sidebar-shop a:hover,
body:not(.home) .area-sidebar-shop .current-cat > a {
	color: var(--gram-teal);
}

/* Dynamic WooCommerce product cards */
body:not(.home) .product-grid-item {
	height: auto;
}

body:not(.home) .product-grid-item .product-wrapper {
	display: flex;
	height: 100%;
	flex-direction: column;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}

body:not(.home) .product-grid-item .wd-product-card-bg {
	display: none;
}

body:not(.home) .product-grid-item .product-element-top {
	display: flex;
	overflow: hidden;
	width: 100%;
	margin-bottom: 24px;
	padding: clamp(16px, 2.1vw, 28px);
	aspect-ratio: 1;
	align-items: center;
	justify-content: center;
	background: var(--gram-white);
	border: 1px solid rgba(0, 32, 77, 0.08);
	border-radius: 0;
}

body:not(.home) .product-grid-item .wd-product-img-link {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}

body:not(.home) .product-grid-item .product-element-top img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body:not(.home) .product-grid-item:hover .product-element-top img {
	transform: scale(1.045);
}

body:not(.home) .product-grid-item .product-element-bottom {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: stretch;
	padding: 0;
	text-align: left;
}

body:not(.home) .product-grid-item .wd-product-cats {
	order: 1;
	margin-bottom: 9px;
	color: var(--gram-teal);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1.45;
	text-transform: uppercase;
}

body:not(.home) .product-grid-item .wd-product-cats a {
	color: var(--gram-teal);
}

body:not(.home) .product-grid-item .wd-entities-title {
	order: 2;
	min-height: 2.6em;
	margin-bottom: 10px;
	font-family: var(--gram-serif);
	font-size: clamp(19px, 1.65vw, 24px);
	font-weight: 500;
	line-height: 1.25;
}

body:not(.home) .product-grid-item .wd-entities-title a {
	color: var(--gram-primary);
	font-family: inherit;
}

body:not(.home) .product-grid-item .wd-entities-title a:hover {
	color: var(--gram-teal);
}

body:not(.home) .product-grid-item .wrap-price {
	order: 3;
	margin-bottom: 22px;
}

body:not(.home) .product-grid-item .price {
	color: var(--gram-primary);
	font-size: 15px;
	font-weight: 700;
}

body:not(.home) .product-grid-item .wd-add-btn {
	order: 4;
	margin-top: auto;
}

body:not(.home) .product-grid-item .wd-add-btn .button {
	display: flex;
	width: 100%;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--gram-primary);
	border-radius: 0 !important;
	color: var(--gram-primary);
}

body:not(.home) .product-grid-item .wd-add-btn .button:is(:hover, :focus-visible),
body:not(.home) .product-grid-item .wd-add-btn .button.added {
	background: var(--gram-primary);
	color: var(--gram-white);
}

body:not(.home) .product-grid-item .wd-buttons {
	top: 14px;
	right: 14px;
}

body:not(.home) .product-grid-item .wd-buttons .wd-action-btn > a {
	background: rgba(255, 255, 255, 0.92);
	color: var(--gram-primary);
}

body:not(.home) :where(.woocommerce-pagination, .wd-pagination) a,
body:not(.home) :where(.woocommerce-pagination, .wd-pagination) span {
	border-radius: 0;
}

body:not(.home) :where(.woocommerce-pagination, .wd-pagination) .current {
	background: var(--gram-primary);
	color: var(--gram-white);
}

/* Single product template */
body:not(.home).single-product .main-page-wrapper {
	background: var(--gram-surface-low);
}

body:not(.home).single-product #main-content .elementor-element-ec938d3 {
	padding: 28px clamp(24px, 4.45vw, 64px);
	background: var(--gram-surface);
	border-bottom: 1px solid var(--gram-line);
}

body:not(.home).single-product #main-content .elementor-element-cd3749a {
	padding: clamp(54px, 6vw, 86px) clamp(24px, 4.45vw, 64px) clamp(76px, 8vw, 116px);
}

body:not(.home).single-product #main-content .elementor-element-b374152,
body:not(.home).single-product #main-content .elementor-element-958b8dd {
	background: var(--gram-white);
	border: 1px solid rgba(0, 32, 77, 0.08);
	border-radius: 0;
	box-shadow: 0 24px 65px rgba(0, 32, 77, 0.07);
}

body:not(.home).single-product #main-content .elementor-element-b374152 {
	padding: clamp(24px, 4vw, 52px);
	height: auto;
	min-height: 0;
	align-self: flex-start;
}

body:not(.home).single-product #main-content .elementor-element-958b8dd {
	padding: clamp(34px, 4vw, 54px);
}

body:not(.home).single-product .woocommerce-product-gallery,
body:not(.home).single-product .woocommerce-product-gallery__wrapper,
body:not(.home).single-product .woocommerce-product-gallery__image {
	background: var(--gram-white);
	border-radius: 0;
}

body:not(.home).single-product .product_title,
body:not(.home).single-product .elementor-widget-woocommerce-product-title .product_title {
	color: var(--gram-primary);
	font-family: var(--gram-serif);
	font-size: clamp(40px, 4vw, 58px) !important;
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.04;
}

body:not(.home).single-product .summary .price,
body:not(.home).single-product .elementor-widget-woocommerce-product-price .price {
	color: var(--gram-primary);
	font-size: clamp(23px, 2vw, 30px) !important;
	font-weight: 700;
}

body:not(.home).single-product .variations,
body:not(.home).single-product .shop_table {
	border-color: var(--gram-line);
}

body:not(.home).single-product :where(.variations th, .variations td, .shop_table th, .shop_table td) {
	padding: 14px 12px;
	border-color: var(--gram-line);
}

body:not(.home).single-product .quantity input,
body:not(.home) .cart .quantity input {
	min-height: 48px;
	border-color: var(--gram-line);
}

body:not(.home) :where(.quantity, .quantity input, .quantity button) {
	border-radius: 0 !important;
}

/* Product, cart, and checkout quantity: keep the dynamic value visible between controls. */
body:not(.home) :where(.woocommerce-cart-form td.product-quantity, .woocommerce-checkout-review-order-table .wd-checkout-prod-title) div.quantity {
	--wd-form-bg: var(--gram-white);
	--wd-form-color: var(--gram-primary);
	align-items: stretch;
}

body:not(.home).single-product form.cart div.quantity input.qty,
body:not(.home) :where(.woocommerce-cart-form td.product-quantity, .woocommerce-checkout-review-order-table .wd-checkout-prod-title) div.quantity input.qty {
	display: block;
	width: 46px !important;
	min-width: 46px;
	height: 50px;
	min-height: 50px;
	padding: 0 6px !important;
	background: var(--gram-white) !important;
	border-top: 1px solid var(--gram-primary) !important;
	border-right: 0 !important;
	border-bottom: 1px solid var(--gram-primary) !important;
	border-left: 0 !important;
	color: var(--gram-primary) !important;
	-webkit-text-fill-color: var(--gram-primary) !important;
	caret-color: var(--gram-teal);
	font-family: var(--gram-sans);
	font-size: 14px !important;
	font-weight: 700;
	line-height: 50px;
	opacity: 1;
	text-align: center;
}

body:not(.home).single-product form.cart div.quantity input.qty:focus,
body:not(.home) :where(.woocommerce-cart-form td.product-quantity, .woocommerce-checkout-review-order-table .wd-checkout-prod-title) div.quantity input.qty:focus {
	position: relative;
	z-index: 1;
	border-color: var(--gram-teal) !important;
	box-shadow: inset 0 0 0 1px var(--gram-teal);
}

body:not(.home).single-product .single_add_to_cart_button {
	min-height: 52px;
	background: var(--gram-primary);
	border-radius: 0;
}

body:not(.home).single-product .single_add_to_cart_button:hover {
	background: var(--gram-teal);
}

body:not(.home).single-product :where(.woocommerce-tabs, .wd-accordion-item, .woocommerce-Tabs-panel) {
	border-color: var(--gram-line);
}

body:not(.home).single-product :where(.wd-accordion-title-text, .woocommerce-Tabs-panel > h2) {
	color: var(--gram-primary);
	font-family: var(--gram-serif);
	font-size: 24px;
	font-weight: 500;
}

body:not(.home).single-product #main-content .elementor-element-8293cdd {
	padding: clamp(80px, 8vw, 120px) clamp(24px, 4.45vw, 64px);
	background: var(--gram-surface);
	border-top: 1px solid var(--gram-line);
}

body:not(.home).single-product .related-products > h3,
body:not(.home).single-product .related > h2,
body:not(.home).single-product .elementor-element-8293cdd .title {
	color: var(--gram-primary);
	font-family: var(--gram-serif);
	font-size: clamp(36px, 3.5vw, 50px);
	font-weight: 500;
}

/* Cart, checkout, account, and wishlist */
body:not(.home):is(.woocommerce-cart, .woocommerce-checkout, .woocommerce-account) .wd-content-layout,
body:not(.home).page-id-175 .wd-content-layout {
	max-width: 1312px;
}

body:not(.home) :where(.cart-table-section, .cart-totals-section, .checkout-order-review, .woocommerce-checkout-review-order, .woocommerce-form-login, .woocommerce-form-register, .woocommerce-MyAccount-content, .woocommerce-MyAccount-navigation, .wishlist-content, .wd-empty-page) {
	background: var(--gram-white);
	border: 1px solid rgba(0, 32, 77, 0.08);
	border-radius: 0;
	box-shadow: 0 22px 60px rgba(0, 32, 77, 0.055);
}

body:not(.home) :where(.woocommerce-cart-form, .cart-totals-inner, .checkout-order-review, .woocommerce-checkout-review-order, .woocommerce-MyAccount-content, .woocommerce-MyAccount-navigation, .wd-empty-page) {
	padding: clamp(24px, 3vw, 42px);
}

body:not(.home) :where(.shop_table, .woocommerce-checkout-review-order-table) {
	background: var(--gram-white);
	border: 1px solid var(--gram-line);
	border-radius: 0;
}

body:not(.home) :where(.shop_table th, .shop_table td, .woocommerce-checkout-review-order-table th, .woocommerce-checkout-review-order-table td) {
	padding: 17px 14px;
	border-color: var(--gram-line);
}

body:not(.home) :where(.cart-totals-inner h2, .woocommerce-billing-fields h3, .woocommerce-additional-fields h3, #order_review_heading, .woocommerce-MyAccount-content h2, .wd-empty-page-text) {
	color: var(--gram-primary);
	font-family: var(--gram-serif);
	font-size: clamp(28px, 2.8vw, 38px);
	font-weight: 500;
}

body:not(.home) .checkout_coupon,
body:not(.home) .woocommerce-form-coupon-toggle + .checkout_coupon {
	padding: 24px;
	background: var(--gram-white);
	border: 1px solid var(--gram-line);
	border-radius: 0;
}

body:not(.home) #payment {
	background: var(--gram-surface-low);
	border: 1px solid var(--gram-line);
	border-radius: 0;
}

body:not(.home) #payment .payment_box {
	background: var(--gram-white);
	border-radius: 0;
}

body:not(.home) #place_order,
body:not(.home) .wc-proceed-to-checkout .button {
	width: 100%;
	min-height: 56px;
	border-radius: 0 !important;
}

body:not(.home).woocommerce-cart :where(.button, button),
body:not(.home).woocommerce-checkout :where(.button, button) {
	border-radius: 0 !important;
}

body:not(.home).woocommerce-account .healthcare-register-box {
	margin: 0 0 46px !important;
	padding: clamp(28px, 4vw, 46px) !important;
	background: var(--gram-primary);
	border: 0 !important;
	box-shadow: 0 24px 65px rgba(0, 32, 77, 0.12);
}

body:not(.home).woocommerce-account .healthcare-register-box :where(h2, h3, p) {
	color: var(--gram-white);
}

body:not(.home).woocommerce-account .healthcare-register-box h3 {
	margin-bottom: 12px;
	font-family: var(--gram-serif);
	font-size: clamp(28px, 2.7vw, 38px);
	font-weight: 500;
}

body:not(.home).woocommerce-account .healthcare-register-box p {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
}

body:not(.home).woocommerce-account .healthcare-register-box .button {
	margin-top: 10px;
	background: var(--gram-teal) !important;
	border-color: var(--gram-teal) !important;
	border-radius: 0 !important;
}

body:not(.home).woocommerce-account .wd-registration-page {
	gap: clamp(30px, 5vw, 72px);
}

body:not(.home).woocommerce-account :where(.col-login, .col-register) {
	padding: clamp(28px, 3vw, 42px);
	background: var(--gram-white);
	border: 1px solid var(--gram-line);
}

body:not(.home).woocommerce-account :where(.col-login, .col-register) > h2 {
	margin-bottom: 26px;
	color: var(--gram-primary);
	font-family: var(--gram-serif);
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 500;
}

body:not(.home).woocommerce-account :where(.woocommerce-form-login, .woocommerce-form-register) {
	padding: 0;
	border: 0;
	box-shadow: none;
}

body:not(.home).woocommerce-account :where(.woocommerce-form-login__submit, .woocommerce-form-register__submit) {
	width: 100%;
}

body:not(.home) .woocommerce-MyAccount-navigation ul {
	margin: 0;
}

body:not(.home) .woocommerce-MyAccount-navigation li {
	margin: 0;
	border-bottom: 1px solid var(--gram-line);
}

body:not(.home) .woocommerce-MyAccount-navigation li:last-child {
	border-bottom: 0;
}

body:not(.home) .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 15px 12px;
	color: var(--gram-primary);
}

body:not(.home) .woocommerce-MyAccount-navigation :where(.is-active, li:hover) a {
	color: var(--gram-teal);
}

/* Blog, search, and standard editorial pages */
body:not(.home):is(.blog, .search, .archive:not(.post-type-archive-product)) .wd-content-layout,
body:not(.home).single-post .wd-content-layout {
	max-width: 1312px;
}

body:not(.home) :where(.post-loop, .blog-design-masonry, .wd-post) .article-body-container,
body:not(.home) :where(.post-loop, .blog-design-masonry, .wd-post) .post-img-wrapp {
	background: var(--gram-white);
	border-radius: 0;
}

body:not(.home) :where(.post-loop, .blog-design-masonry, .wd-post) .article-body-container {
	padding: 28px;
	border: 1px solid var(--gram-line);
	border-top: 0;
}

body:not(.home) :where(.post-loop, .blog-design-masonry, .wd-post) .entry-title,
body:not(.home).single-post .entry-title {
	font-family: var(--gram-serif) !important;
	font-weight: 500;
}

body:not(.home) :where(.post-loop, .blog-design-masonry, .wd-post) .entry-title a {
	color: var(--gram-primary);
	font-family: inherit;
}

body:not(.home) :where(.post-loop, .blog-design-masonry, .wd-post) .entry-title a:hover {
	color: var(--gram-teal);
}

body:not(.home) :where(.meta-post-categories, .entry-meta-list) {
	color: var(--gram-teal);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

body:not(.home).single-post article,
body:not(.home).privacy-policy .entry-content,
body:not(.home).page-id-14 .entry-content,
body:not(.home).page-id-15965 .entry-content,
body:not(.home).page-id-15971 .entry-content {
	max-width: 920px;
	margin-inline: auto;
	padding: clamp(34px, 5vw, 72px);
	background: var(--gram-white);
	border: 1px solid var(--gram-line);
	box-shadow: 0 24px 70px rgba(0, 32, 77, 0.055);
}

/* Contact, registration, calculators, and third-party forms */
body:not(.home) :where(.wpcf7, .gform_wrapper, .ur-frontend-form, .user-registration, .elementor-form) {
	color: var(--gram-ink);
}

body:not(.home) :where(.wpcf7-form, .gform_wrapper form, .ur-frontend-form form) {
	padding: clamp(26px, 4vw, 48px);
	background: var(--gram-white);
	border: 1px solid var(--gram-line);
	box-shadow: 0 24px 70px rgba(0, 32, 77, 0.06);
}

body:not(.home) :where(.wpcf7-form-control-wrap, .ginput_container, .ur-form-grid) input:not([type="checkbox"]):not([type="radio"]),
body:not(.home) :where(.wpcf7-form-control-wrap, .ginput_container, .ur-form-grid) select,
body:not(.home) :where(.wpcf7-form-control-wrap, .ginput_container, .ur-form-grid) textarea {
	width: 100%;
}

body:not(.home) :where(.gfield_label, .ur-label, .wpcf7-form label) {
	margin-bottom: 8px;
	color: var(--gram-primary);
	font-size: 13px;
	font-weight: 600;
}

body:not(.home) :where(.gfield_description, .ur-field-item.field-user_pass .description) {
	color: var(--gram-muted);
	font-size: 12px;
	line-height: 1.55;
}

body:not(.home) .page-id-17939 #main-content :where(.calculator, .peptide-calculator, [class*="calculator"]) {
	border-radius: 0 !important;
	box-shadow: 0 24px 70px rgba(0, 32, 77, 0.07) !important;
}

body:not(.home).page-id-17939 #main-content .peptide-calculator .card {
	border: 1px solid var(--gram-line) !important;
	border-radius: 0 !important;
	box-shadow: 0 24px 70px rgba(0, 32, 77, 0.07) !important;
}

body:not(.home).page-id-17939 #main-content .peptide-calculator :where(button, input, select) {
	border-radius: 0 !important;
}

body:not(.home).page-id-173 #main-content .elementor-element-c8b07ff {
	border-radius: 0;
}

body:not(.home).page-id-173 #main-content .elementor-element-c8b07ff :where(p, span, h2, h3, h4) {
	color: rgba(255, 255, 255, 0.78) !important;
}

body:not(.home).page-id-173 #main-content .elementor-element-c8b07ff :where(h2, h3, h4) {
	color: var(--gram-white) !important;
}

body:not(.home).page-id-173 #main-content .elementor-element-c8b07ff a {
	color: #93f2f2 !important;
}

body:not(.home) .page-id-16234 #main-content :where(table, .coa-search, .coa-list, .elementor-widget-container) {
	border-color: var(--gram-line);
}

/* Shared dynamic legal disclaimer in the footer */
body:not(.home) .wd-footer {
	background: var(--gram-navy);
}

body:not(.home) .wd-footer .main-footer.container {
	width: 100%;
	max-width: none;
	padding: 0;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-f0721fc {
	margin: 0;
	padding: clamp(58px, 5.5vw, 84px) clamp(24px, 4.45vw, 64px);
	background-color: #faf6f5 !important;
	background-image: none !important;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-f0721fc > .elementor-background-overlay {
	display: none;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-f0721fc > .elementor-container {
	display: block;
	position: relative;
	overflow: hidden;
	max-width: 984px;
	margin-inline: auto;
	padding: clamp(42px, 4.25vw, 60px);
	background: var(--gram-white);
	border: 3px solid var(--gram-primary);
	border-radius: 2px;
	box-shadow: 0 18px 52px rgba(0, 32, 77, 0.08);
}

body:not(.home) .elementor-209 .elementor-element:is(.elementor-element-9fee72b, .elementor-element-e739d60) {
	display: none;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-f725ad3 {
	width: 100%;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-f725ad3 > .elementor-element-populated {
	margin: 0;
	padding: 0;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-7f52922 {
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	padding-bottom: 36px;
	border-bottom: 1px solid var(--gram-line);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-7f52922::before {
	content: "";
	display: block;
	width: 60px;
	height: 60px;
	background-color: var(--gram-primary);
	background-image:
		linear-gradient(45deg, transparent 44%, rgba(255, 255, 255, 0.96) 45% 49%, transparent 50%),
		linear-gradient(135deg, transparent 44%, rgba(255, 255, 255, 0.96) 45% 49%, transparent 50%);
	background-position: 7px -6px, -7px -6px;
	background-size: 42px 42px;
	background-repeat: no-repeat;
	border-radius: 2px;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-7f52922 .elementor-heading-title {
	color: var(--gram-primary);
	font-family: var(--gram-serif);
	font-size: clamp(31px, 2.45vw, 38px);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -0.02em;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-5eaa29a {
	margin-top: 48px;
	padding: 23px 26px;
	background: rgba(0, 32, 77, 0.045);
	border-left: 3px solid var(--gram-primary);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-5eaa29a,
body:not(.home) .elementor-209 .elementor-element.elementor-element-5eaa29a :where(p, span, strong) {
	color: var(--gram-primary) !important;
	font-family: var(--gram-serif);
	font-size: clamp(20px, 1.65vw, 24px);
	line-height: 1.22;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-5eaa29a :where(u, a) {
	color: var(--gram-teal) !important;
	text-decoration-color: currentColor;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-92e15f6,
body:not(.home) .elementor-209 .elementor-element.elementor-element-92e15f6 :where(p, span, strong),
body:not(.home) .elementor-209 .elementor-element.elementor-element-a6789ee,
body:not(.home) .elementor-209 .elementor-element.elementor-element-a6789ee :where(p, span, strong) {
	color: var(--gram-muted) !important;
	font-size: 14px;
	line-height: 1.55;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-92e15f6 {
	margin-top: 36px;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-44306f1 {
	margin-block: 28px 36px;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-44306f1 .elementor-icon-list-items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 24px;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-44306f1 .elementor-icon-list-item {
	min-height: 54px;
	margin: 0;
	padding: 14px 16px;
	background: rgba(247, 243, 242, 0.82);
	border: 1px solid rgba(0, 32, 77, 0.055);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-44306f1 .elementor-icon-list-icon svg {
	width: 18px;
	height: 18px;
	fill: var(--gram-danger);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-44306f1 .elementor-icon-list-text {
	color: var(--gram-primary);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.035em;
	line-height: 1.3;
	text-transform: uppercase;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-a6789ee {
	padding-top: 32px;
	border-top: 1px solid var(--gram-line);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-a6789ee,
body:not(.home) .elementor-209 .elementor-element.elementor-element-a6789ee :where(p, span, strong) {
	font-size: 11px;
	font-style: italic;
	line-height: 1.55;
}

/* Existing dynamic footer navigation and newsletter */
body:not(.home) .elementor-209 .elementor-element.elementor-element-935deab {
	--container-max-width: 1312px;
	margin: 0;
	padding: clamp(76px, 7vw, 104px) clamp(24px, 4.45vw, 64px) 24px;
	background:
		radial-gradient(circle at 90% 100%, rgba(3, 129, 129, 0.19), transparent 35%),
		var(--gram-navy);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-c31d02e {
	background: transparent !important;
	border-radius: 0;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-538773c,
body:not(.home) .elementor-209 .elementor-element.elementor-element-7400d24 {
	padding: 0;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-538773c {
	gap: clamp(32px, 4vw, 60px);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-15aa765 {
	margin-right: clamp(20px, 4vw, 64px);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-8a1081d img {
	max-width: 250px;
	filter: brightness(0) invert(1);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-452d03b .wd-text-block,
body:not(.home) .elementor-209 .elementor-element.elementor-element-452d03b .wd-text-block :where(p, span) {
	max-width: 330px;
	color: rgba(255, 255, 255, 0.7) !important;
	font-size: 15px;
	line-height: 1.7;
}

body:not(.home) .elementor-209 .elementor-element:is(.elementor-element-f5c9876, .elementor-element-0f9b422, .elementor-element-229e45c) .title {
	color: var(--gram-white);
	font-family: var(--gram-serif);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

body:not(.home) .elementor-209 .elementor-element:is(.elementor-element-4629da7, .elementor-element-2eefa90, .elementor-element-4666512) li {
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.66);
}

body:not(.home) .elementor-209 .elementor-element:is(.elementor-element-4629da7, .elementor-element-2eefa90, .elementor-element-4666512) a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

body:not(.home) .elementor-209 .elementor-element:is(.elementor-element-4629da7, .elementor-element-2eefa90, .elementor-element-4666512) a:hover {
	color: #93f2f2;
	transform: translateX(3px);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-7400d24 {
	padding-left: clamp(28px, 3vw, 48px);
	border-left-color: rgba(255, 255, 255, 0.2);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-89df71c .elementor-heading-title {
	color: var(--gram-white);
	font-family: var(--gram-serif);
	font-size: clamp(28px, 2.7vw, 38px);
	font-weight: 500;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-d230b9a .elementor-field-group .elementor-field:not(.elementor-select-wrapper) {
	min-height: 50px;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 0;
	color: var(--gram-white);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-d230b9a .elementor-field::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-d230b9a .elementor-button[type="submit"] {
	min-height: 50px;
	background: var(--gram-teal);
	border-color: var(--gram-teal);
	border-radius: 0;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-d230b9a .elementor-button[type="submit"]:hover {
	background: var(--gram-white);
	border-color: var(--gram-white);
	color: var(--gram-primary);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-357cc5e,
body:not(.home) .elementor-209 .elementor-element.elementor-element-357cc5e :where(p, span) {
	color: rgba(255, 255, 255, 0.48) !important;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-cdc458f {
	margin-top: 80px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-cdc458f,
body:not(.home) .elementor-209 .elementor-element.elementor-element-cdc458f :where(p, a, span) {
	color: rgba(255, 255, 255, 0.5) !important;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body:not(.home) .elementor-209 .elementor-element.elementor-element-1998120 {
	padding: 0 clamp(24px, 4.45vw, 64px) 24px;
	background: var(--gram-navy);
}

/* Search drawer, account drawer, mini-cart, and consent popup */
body:not(.home) :where(.wd-side-hidden, .wd-popup, .mfp-content, .wd-dropdown) {
	font-family: var(--gram-sans);
}

body:not(.home) :where(.wd-side-hidden, .wd-popup, .mfp-content) :where(h2, h3, h4) {
	color: var(--gram-primary);
	font-family: var(--gram-serif);
}

body:not(.home) .cart-widget-side .shopping-cart-widget-footer .button {
	border-radius: 0;
}

body:not(.home) .cart-widget-side .shopping-cart-widget-footer .checkout {
	background: var(--gram-teal);
	border-color: var(--gram-teal);
}

@media (min-width: 1025px) {
	body:not(.home) .whb-general-header {
		height: 96px;
	}

	body:not(.home) .whb-general-header .whb-row-inner {
		min-height: 96px;
	}

	body:not(.home) .whb-general-header .whb-general-header-inner {
		display: flex;
		width: 100%;
		max-width: 1312px;
		gap: 56px;
		align-items: center;
		justify-content: flex-start;
	}

	body:not(.home) .whb-general-header .whb-col-center {
		order: 1;
		width: 220px;
		min-width: 220px;
		flex: 0 0 220px;
		justify-content: flex-start;
	}

	body:not(.home) .whb-general-header .whb-col-left {
		order: 2;
		width: auto;
		min-width: 0;
		flex: 1 1 auto;
		justify-content: flex-start;
	}

	body:not(.home) .whb-general-header .whb-col-right {
		order: 3;
		width: auto;
		min-width: max-content;
		flex: 0 0 auto;
		gap: 20px;
		justify-content: flex-end;
	}

	body:not(.home) .whb-general-header .whb-col-right > :where(.whb-space-element, .wd-header-divider) {
		display: none;
	}

	body:not(.home) .whb-general-header .site-logo {
		width: 220px;
		justify-content: flex-start;
	}

	body:not(.home) .whb-general-header .site-logo img {
		width: 220px;
		max-width: 220px;
		max-height: 62px;
	}

	body:not(.home) .wd-header-nav .menu {
		gap: 36px;
		justify-content: flex-start;
	}

	body:not(.home) .wd-header-nav .menu > li {
		flex: 0 0 auto;
	}

	body:not(.home) .wd-header-nav .menu > li > a {
		height: 96px;
		padding-inline: 0;
	}

	body:not(.home) .whb-col-right .wd-header-search > a {
		width: 150px;
		min-width: 150px;
		border-bottom: 1px solid rgba(0, 32, 77, 0.13);
	}

	body:not(.home) .whb-col-right .wd-header-search .wd-tools-text {
		width: 100%;
		color: rgba(0, 32, 77, 0.45);
		text-align: left;
	}

	body:not(.home) .whb-col-right .wd-header-cart {
		width: 46px;
		min-width: 46px;
	}

	body:not(.home) .whb-col-right .wd-header-cart > a {
		position: relative;
		justify-content: center;
	}

	body:not(.home) .whb-col-right .wd-header-cart :where(.wd-cart-subtotal, .subtotal-divider, .wd-cart-number > span) {
		display: none;
	}

	body:not(.home) .whb-col-right .wd-header-cart .wd-cart-number {
		position: absolute;
		top: 2px;
		right: 0;
		display: flex;
		width: 17px;
		height: 17px;
		align-items: center;
		justify-content: center;
		background: var(--gram-teal);
		border-radius: 50%;
		color: var(--gram-white);
		font-size: 9px;
	}
}

@media (max-width: 1024px) {
	body:not(.home) .whb-general-header .whb-row-inner {
		min-height: 76px;
	}

	body:not(.home) .whb-general-header .container {
		padding-inline: 28px;
	}

	body:not(.home) .whb-header .site-logo img {
		max-height: 50px;
	}

	body:not(.home) :where(.whb-mobile-left .wd-header-mobile-nav, .whb-mobile-right .wd-header-cart) {
		color: var(--gram-primary);
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-c31d02e {
		flex-wrap: wrap;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-538773c {
		width: 100%;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-7400d24 {
		width: 100%;
		margin-top: 52px;
		padding-top: 44px;
		padding-left: 0;
		border-width: 1px 0 0;
	}

	body:not(.home).single-product #main-content .elementor-element-cd3749a > .e-con-inner {
		align-items: stretch;
	}
}

@media (max-width: 767px) {
	body:not(.home) .wd-hb-wrapp,
	body:not(.home) .wd-hb-wrapp :where(.wd-header-banner, .wd-hb-content, .container) {
		min-height: 30px;
	}

	body:not(.home) .wd-hb-wrapp :where(p, div) {
		font-size: 8px;
		letter-spacing: 0.12em;
	}

	body:not(.home) .whb-general-header .whb-row-inner {
		min-height: 68px;
	}

	body:not(.home) .whb-general-header .container {
		padding-inline: 18px;
	}

	body:not(.home) .whb-header .site-logo img {
		max-width: 176px;
		max-height: 45px;
	}

	body:not(.home) .wd-page-title {
		min-height: 160px;
		padding: 42px 20px;
	}

	body:not(.home) .wd-page-title .title {
		font-size: clamp(36px, 11vw, 48px);
	}

	body:not(.home) .main-page-wrapper > .wd-content-layout,
	body:not(.home) .main-page-wrapper > .container,
	body:not(.home) #main-content > .wd-content-layout {
		padding-inline: 20px;
	}

	body:not(.home) .wd-content-layout:not(.wd-builder-on) {
		padding-block: 56px 72px;
	}

	body:not(.home) :where(.button, .btn, button, input[type="submit"], input[type="button"], .elementor-button) {
		max-width: 100%;
	}

	body:not(.home).woocommerce-shop #main-content .elementor-element-2adb27a,
	body:not(.home).tax-product_cat #main-content .elementor-element-2adb27a,
	body:not(.home).tax-product_tag #main-content .elementor-element-2adb27a {
		padding: 38px 20px 30px;
	}

	body:not(.home).woocommerce-shop #main-content .elementor-element-2a85db37,
	body:not(.home).tax-product_cat #main-content .elementor-element-2a85db37,
	body:not(.home).tax-product_tag #main-content .elementor-element-2a85db37 {
		padding: 52px 20px 80px;
	}

	body:not(.home) .products.wd-products {
		--wd-col: 2 !important;
		--wd-col-sm: 2 !important;
	}

	body:not(.home) .product-grid-item .product-element-top {
		margin-bottom: 16px;
		padding: 12px;
	}

	body:not(.home) .product-grid-item .wd-entities-title {
		min-height: 0;
		font-size: 18px;
	}

	body:not(.home) .product-grid-item .wd-add-btn .button {
		min-height: 44px;
		padding-inline: 8px;
		font-size: 9px;
		letter-spacing: 0.07em;
	}

	body:not(.home).single-product #main-content :where(.elementor-element-ec938d3, .elementor-element-cd3749a, .elementor-element-8293cdd) {
		padding-right: 20px;
		padding-left: 20px;
	}

	body:not(.home).single-product #main-content .elementor-element-cd3749a {
		padding-block: 44px 72px;
	}

	body:not(.home).single-product #main-content :where(.elementor-element-b374152, .elementor-element-958b8dd) {
		padding: 24px 20px;
	}

	body:not(.home).single-product .product_title,
	body:not(.home).single-product .elementor-widget-woocommerce-product-title .product_title {
		font-size: 38px;
	}

	body:not(.home).woocommerce-account .wd-registration-page {
		display: block;
	}

	body:not(.home).woocommerce-account :where(.col-login, .col-register) {
		width: 100%;
		margin-bottom: 28px;
		padding: 26px 20px;
	}

	body:not(.home) :where(.wpcf7-form, .gform_wrapper form, .ur-frontend-form form) {
		padding: 24px 18px;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-f0721fc {
		padding: 48px 20px;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-f0721fc > .elementor-container {
		padding: 30px 22px;
		border-width: 3px;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-7f52922 {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 16px;
		padding-bottom: 28px;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-7f52922::before {
		width: 48px;
		height: 48px;
		background-position: 4px -7px, -10px -7px;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-7f52922 .elementor-heading-title {
		font-size: clamp(27px, 8.5vw, 36px);
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-5eaa29a {
		margin-top: 30px;
		padding: 20px 18px;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-44306f1 .elementor-icon-list-items {
		grid-template-columns: 1fr;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-935deab {
		padding: 70px 20px 20px;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-538773c {
		padding: 0;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-15aa765 {
		margin-right: 0;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-a5422b4 {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 24px;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-7400d24 {
		margin-top: 46px;
		padding-top: 38px;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-cdc458f {
		margin-top: 56px;
		text-align: center;
	}

	body:not(.home) .elementor-209 .elementor-element.elementor-element-1998120 {
		padding-inline: 20px;
	}
}
