

:root {
	--ec-green: #5baa2f;
	--ec-green-dark: #0a5a2c;
	--ec-green-light: #b7d943;

	--ec-green-deep: #1b2d23;
	--ec-sand: #f5e6c8;
	--ec-sand-soft: #faf4e6;
	--ec-ink: #383d47;
	--ec-ink-dark: #363740;
	--ec-bg: #fffdf8;
	--ec-radius: 16px;

	--ec-home-max: 1180px;
	--ec-home-pad: clamp(16px, 3vw, 32px);
	--ec-rail-max: var(--ec-home-max);
	--ec-rail-pad: var(--ec-home-pad);
	--ec-content-max: var(--ec-home-max);
	--ec-font: "Poppins", ui-sans-serif, system-ui, sans-serif;
	--ec-field-gap: 16px;
	--ec-section-gap: 28px;

	/* Rotulo de campo: um estilo so no site inteiro. A entrelinha entra no
	   token porque e ela que decide o respiro visual — dois rotulos com a
	   mesma margem e line-height diferente nao parecem iguais na tela. */
	--ec-label-gap: 12px;
	--ec-label-size: 13px;
	--ec-label-weight: 600;
	--ec-label-lh: 1.35;
	--ec-label-color: var(--ec-ink-dark);
	--ec-control-px: 20px;
	--ec-control-py: 20px;
	--ec-pill-padding: 10px 18px;
	--ec-input-padding: var(--ec-control-py) var(--ec-control-px);

	/* Campo de formulario: uma altura so no site inteiro. A altura vem de
	   height + padding lateral, nunca de padding vertical — somar padding a
	   linha do texto da numeros diferentes para input, select e textarea,
	   que foi o que deixou o site desarmonico. */
	--ec-field-h: 58px;
	--ec-field-px: 24px;
	--ec-field-padding: 0 var(--ec-field-px);
	--ec-textarea-padding: 18px var(--ec-field-px);

	/* O checkout tinha medida propria (14/18). Agora aponta para a unica. */
	--ec-checkout-py: 0px;
	--ec-checkout-px: var(--ec-field-px);
	--ec-checkout-input-min-height: var(--ec-field-h);
	--ec-btn-padding: var(--ec-control-py) var(--ec-control-px);
	--ec-btn-secondary-bg: var(--ec-sand-soft);
	--ec-btn-secondary-bg-hover: color-mix(in srgb, var(--ec-sand, #f5e6c8) 72%, #fff);
	--ec-action-row-height: calc(var(--ec-control-py) * 2 + 1.15em);
	--ec-qty-border: 1px;
	--ec-qty-pad-block: 5px;
	--ec-qty-pad-inline: 5px;

	--woocommerce: var(--ec-green);
	--wc-primary: var(--ec-green);
	--wc-primary-text: #fff;
}

:where(
	a,
	button,
	input,
	textarea,
	select,
	summary,
	[role="button"],
	[tabindex]:not([tabindex="-1"])
):focus,
:where(
	a,
	button,
	input,
	textarea,
	select,
	summary,
	[role="button"],
	[tabindex]:not([tabindex="-1"])
):focus-visible {
	outline: none !important;
	outline-offset: 0 !important;
}

:where(button, .button, a.button, summary, [role="button"]):focus,
:where(button, .button, a.button, summary, [role="button"]):focus-visible {
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
}

:where(a:not(.ec-line-card)):focus,
:where(a:not(.ec-line-card)):focus-visible {
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
}

.ec-nav .ec-menu a:focus,
.ec-nav .ec-menu a:focus-visible,
.ec-nav .ec-menu a:active {
	outline: none !important;
	box-shadow: none !important;
}

:where(a, button, input, select, textarea, summary) {
	-webkit-tap-highlight-color: transparent;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--ec-bg);
	color: var(--ec-ink);
	font-family: var(--ec-font);
	font-size: 16px;
	line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ec-font);
	color: var(--ec-ink-dark);
	font-weight: 600;
	line-height: 1.25;
}

body.ec-site :where(b, strong) {
	font-weight: 600;
}

body.ec-site :where(.price, .amount, .woocommerce-Price-amount) {
	font-weight: 600;
}

a {
	color: var(--ec-green-dark);
	text-decoration: none;
}

a:hover {
	color: var(--ec-green);
	text-decoration: none;
}

:where(a, button, label, summary, span, p, li, u) {
	text-decoration: none !important;
}

:where(
	input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]),
	textarea,
	select,
	.select2-container--default .select2-selection--single,
	.select2-container--default .select2-selection--multiple
) {
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
}

:where(
	input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]),
	textarea,
	select
):focus,
:where(
	input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]),
	textarea,
	select
):focus-visible {
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
	border-color: var(--ec-green);
}

.ec-portion-calc__package.is-recommended {
	box-shadow: none !important;
	border: 2px solid var(--ec-green);
}

.ec-bleed {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.ec-wrap {

	margin-left: auto;
	margin-right: auto;
}

.storefront-handheld-footer-bar {
	display: none !important;
}

body.ec-site {
	margin-bottom: 0 !important;
}

body.ec-site .site-main,
body.ec-site .content-area,
body.ec-site #primary {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

body.ec-site .site-content {
	margin-bottom: 0 !important;
}

.ec-btn,
.button,
button.button,
input[type="submit"],
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.wc-block-components-button {
	display: inline-block;
	box-sizing: border-box;
	background: var(--ec-green);
	color: #fff !important;
	border: none;
	border-radius: 999px;
	padding: var(--ec-btn-padding);
	font-family: var(--ec-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}

.ec-btn:hover,
.button:hover,
button.button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
	background: var(--ec-green-dark);
	color: #fff !important;
}

.ec-btn-outline,
.ec-btn-secondary {
	background: var(--ec-btn-secondary-bg);
	color: var(--ec-green-dark) !important;
	border: none;
	box-shadow: none;
}

.ec-btn-outline:hover,
.ec-btn-secondary:hover {
	background: var(--ec-btn-secondary-bg-hover);
	color: var(--ec-green-dark) !important;
}

.button.disabled,
.button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

select:not(.mp-document-select):not(.mp-checkout-andes-input):not(.mp-input-select-select),
.woocommerce select:not(.mp-document-select):not(.mp-checkout-andes-input):not(.mp-input-select-select),
.woocommerce-ordering select,
.variations select,
.ec-site select:not(.mp-document-select):not(.mp-checkout-andes-input):not(.mp-input-select-select) {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%230a5a2c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 14px 14px;
	border: 1px solid var(--ec-sand);
	border-radius: 999px;
	padding: var(--ec-field-padding);
	padding-right: 46px;
	font-family: var(--ec-font);
	font-size: 14px;
	color: var(--ec-ink);
	line-height: 1.4;
	cursor: pointer;
	max-width: 100%;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select:not(.mp-document-select):not(.mp-checkout-andes-input):not(.mp-input-select-select):hover {
	border-color: var(--ec-green);
}

select:not(.mp-document-select):not(.mp-checkout-andes-input):not(.mp-input-select-select):focus {
	outline: none;
	border-color: var(--ec-green);
}

select::-ms-expand {
	display: none;
}

.ec-topbar {
	background: var(--ec-green-dark);
	color: var(--ec-sand);
	font-size: 13px;
	line-height: 1.4;
}

.ec-topbar strong {
	color: var(--ec-green-light);
	font-weight: 600;
}

.ec-topbar-inner {
	position: relative;
	height: 38px;
	text-align: center;
	padding-top: 0;
	padding-bottom: 0;
}

.ec-topbar-item {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 16px;
	opacity: 0;
	animation: ec-topbar-rotate 8s infinite;
}

.ec-topbar-item:nth-child(2) {
	animation-delay: 4s;
}

@keyframes ec-topbar-rotate {
	0%, 27% { opacity: 1; }
	33%, 94% { opacity: 0; }
	100% { opacity: 1; }
}

.site-header {
	background: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: saturate(1.15) blur(16px);
	backdrop-filter: saturate(1.15) blur(16px);
	border-bottom: 1px solid var(--ec-sand);
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 400;
	isolation: isolate;
	box-shadow: 0 10px 30px rgba(24, 26, 31, 0);
	transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.ec-stuck {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 10px 30px rgba(24, 26, 31, 0.08);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.site-header,
	.site-header.ec-stuck {
		background: #fff;
	}
}

#masthead,
#masthead > .col-full,
.site-header .col-full,
.site-header-cart,
.storefront-primary-navigation,
body.ec-site #colophon > .col-full,
body.ec-site .site-footer > .col-full,
body.ec-site #content > .col-full {
	max-width: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

.ec-topbar-inner,
.ec-header,
.ec-nav .ec-menu,
.ec-footer__inner,
.ec-back-top,
.ec-wrap {
	width: 100%;
	max-width: var(--ec-rail-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--ec-rail-pad);
	padding-right: var(--ec-rail-pad);
	box-sizing: border-box;
}

body.ec-site .storefront-breadcrumb > .col-full {
	width: 100% !important;
	max-width: var(--ec-rail-max) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: var(--ec-rail-pad) !important;
	padding-right: var(--ec-rail-pad) !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	box-sizing: border-box !important;
}

body.ec-site:not(:has(.ec-home)):not(:has(.ec-page)) #primary,
body.ec-site:not(:has(.ec-home)):not(:has(.ec-page)) .content-area {
	float: none !important;
	width: 100% !important;
	max-width: var(--ec-rail-max);
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: var(--ec-rail-pad);
	padding-right: var(--ec-rail-pad);
	box-sizing: border-box;
}

body.ec-site.woocommerce-cart #primary,
body.ec-site.woocommerce-checkout #primary,
body.ec-site.woocommerce-cart .content-area,
body.ec-site.woocommerce-checkout .content-area {
	float: none !important;
	width: 100% !important;
	max-width: var(--ec-rail-max) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: var(--ec-rail-pad) !important;
	padding-right: var(--ec-rail-pad) !important;
	box-sizing: border-box !important;
}

body.ec-site.woocommerce-cart .entry-content > .alignwide,
body.ec-site.woocommerce-cart .entry-content > .alignfull,
body.ec-site.woocommerce-checkout .entry-content > .alignwide,
body.ec-site.woocommerce-checkout .entry-content > .alignfull,
body.ec-site.woocommerce-cart .wp-block-woocommerce-cart.alignwide,
body.ec-site.woocommerce-cart .wp-block-woocommerce-cart.alignfull,
body.ec-site.woocommerce-checkout .wp-block-woocommerce-checkout.alignwide,
body.ec-site.woocommerce-checkout .wp-block-woocommerce-checkout.alignfull {
	max-width: 100% !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

body.ec-site:not(:has(.ec-home)):not(:has(.ec-page)) .hentry .entry-header,
body.ec-site:not(:has(.ec-home)):not(:has(.ec-page)) .hentry .entry-content {
	max-width: none !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	text-align: left !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.ec-site:not(:has(.ec-home)):not(:has(.ec-page)) .hentry .entry-header {
	padding-top: 24px !important;
	padding-bottom: 28px !important;
	margin-bottom: 0 !important;
	border-bottom: 0 !important;
}

#content,
#page {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.site-header,
#masthead {
	position: sticky !important;
	top: 0 !important;
	right: auto !important;
	left: auto !important;
	width: auto !important;
}

body,
.site,
#page {
	overflow-x: clip !important;
}

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

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

.ec-header {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 82px;
	gap: 16px;
}

.ec-header-left {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
}

.ec-header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
}

.ec-logo {
	justify-self: center;
}

.ec-logo img {
	display: block;
	height: 52px;
	width: auto;
	transition: height 0.2s ease;
}

.ec-nav {
	border-top: 1px solid var(--ec-sand-soft);
	padding-top: 8px;
	padding-bottom: 8px;
}

.ec-nav-search {
	display: none;
}

.ec-nav-account {
	display: none;
}

@media (max-width: 860px) {
	.ec-nav-account {
		display: block;
		margin-top: 10px;
		padding: 12px 4px;
		border-top: 1px solid var(--ec-sand-soft);
		color: var(--ec-green-dark);
		font-size: 15px;
		font-weight: 600;
		text-decoration: none;
	}
}

@media (max-width: 860px) {
	.ec-nav-search {
		display: block;
		padding: 10px 0 14px;
	}
}

.ec-product-search {
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	border: 1px solid var(--ec-sand);
	border-radius: 999px;
	background: #fff;
	overflow: hidden;
	box-sizing: border-box;
	height: var(--ec-field-h);
}

.ec-product-search__input {
	flex: 1 1 auto;
	min-width: 0;
	width: auto !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	padding: 12px 4px 12px 18px !important;
	font-family: var(--ec-font);
	font-size: 14px;
	color: var(--ec-ink);
}

.ec-product-search__input::placeholder {
	color: rgba(56, 61, 71, 0.45);
}

.ec-product-search__btn {
	flex: 0 0 48px;
	width: 48px;
	min-width: 48px;
	height: auto;
	align-self: stretch;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--ec-green-dark) !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0 !important;
	box-shadow: none !important;
	line-height: 0;
}

.ec-product-search__btn svg,
.ec-search-toggle svg {
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	flex-shrink: 0;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 2;
	opacity: 1 !important;
	visibility: visible !important;
	overflow: visible;
}

.ec-product-search__btn:hover {
	background: var(--ec-sand-soft) !important;
	color: var(--ec-green-dark) !important;
}

.ec-search-bar[hidden] {
	display: none !important;
}

.ec-search-bar {
	display: block;
	border-top: 1px solid var(--ec-sand-soft);
	padding: 12px var(--ec-home-pad) 16px;
	background: #fff;
	box-sizing: border-box;
}

.ec-search-bar .ec-product-search {
	max-width: 560px;
}

.ec-nav .ec-menu {
	display: flex;
	justify-content: center;
	gap: 6px;
	list-style: none;
	flex-wrap: wrap;

	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.ec-nav .ec-menu li {
	position: relative;
}

.ec-nav .ec-menu > li > a {
	display: inline-block;
	color: var(--ec-ink);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	padding: 12px 16px;
	border-radius: 999px;
	transform: translateZ(0);
	transition: color 0.2s ease;
}

.ec-nav .ec-menu > li > a:hover,
.ec-nav .ec-menu > li.current-menu-item > a,
.ec-nav .ec-menu > li.current_page_item > a {
	color: var(--ec-green-dark);
	background: transparent;
}

.ec-nav .ec-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 230px;
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: 14px;
	padding: 8px;
	list-style: none;
	box-shadow: 0 18px 40px rgba(24, 26, 31, 0.12);
	z-index: 50;
}

.ec-nav .ec-menu li:hover > .sub-menu,
.ec-nav .ec-menu li:focus-within > .sub-menu {
	display: block;
}

.ec-nav .ec-menu .sub-menu a {
	display: block;
	padding: 9px 14px;
	border-radius: 9px;
	color: var(--ec-ink);
	font-size: 14px;
	text-decoration: none;
	white-space: nowrap;
}

.ec-nav .ec-menu .sub-menu a:hover {
	background: var(--ec-sand-soft);
	color: var(--ec-green-dark);
}

.ec-search-toggle,
.ec-cart-toggle,
.ec-account-link,
.ec-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: transparent;
	border: none;
	border-radius: 999px;
	color: var(--ec-ink);
	cursor: pointer;
	position: relative;
	transition: background 0.2s ease, color 0.2s ease;
}

.ec-search-toggle:hover,
.ec-cart-toggle:hover,
.ec-account-link:hover,
.ec-menu-toggle:hover {
	background: var(--ec-sand-soft);
	color: var(--ec-green-dark);
}

@media (max-width: 860px) {

	.ec-account-link {
		display: none;
	}
}

.ec-cart-toggle svg {
	display: block;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.ec-cart-count {
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	background: var(--ec-green);
	color: #fff;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	line-height: 18px;
	text-align: center;
	z-index: 2;
}

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

.ec-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
}

.ec-menu-toggle span {
	display: block;
	width: 19px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.ec-nav-open .ec-menu-toggle span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.site-header.ec-nav-open .ec-menu-toggle span:nth-child(2) {
	opacity: 0;
}

.site-header.ec-nav-open .ec-menu-toggle span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 860px) {
	.ec-header {
		grid-template-columns: 52px 1fr 52px;
		min-height: 62px;
	}

	.ec-menu-toggle {
		display: inline-flex;
	}

	.ec-search-desktop {
		display: none;
	}

	.ec-logo img {
		height: 40px;
	}

	.ec-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-top: none;
		border-bottom: 1px solid var(--ec-sand);
		padding: 8px 20px 20px;
		box-shadow: 0 24px 40px rgba(24, 26, 31, 0.12);
		max-height: calc(100vh - 100px);
		overflow-y: auto;
	}

	.site-header.ec-nav-open .ec-nav {
		display: block;
		animation: ec-nav-slide 0.25s ease;
	}

	.ec-nav .ec-menu {
		flex-direction: column;
		gap: 0;
		padding: 0;
	}

	.ec-nav .ec-menu > li > a {
		display: block;
		padding: 13px 4px;
		font-size: 15px;
		border-radius: 0;
		border-bottom: 1px solid var(--ec-sand-soft);
	}

	.ec-nav .ec-menu > li > a:hover {
		background: transparent;
	}

	.ec-nav .ec-menu .sub-menu {
		display: block;
		position: static;
		transform: none;
		border: none;
		box-shadow: none;
		padding: 0 0 6px 18px;
		min-width: 0;
	}

	.ec-nav .ec-menu .sub-menu a {
		padding: 9px 4px;
		font-size: 14px;
		color: rgba(56, 61, 71, 0.75);
		white-space: normal;
	}
}

@keyframes ec-nav-slide {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.woocommerce ul.products,
ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin: 0 0 2em;
	padding: 0;
	list-style: none;
}

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

@media (max-width: 1024px) {
	.woocommerce ul.products,
	ul.products {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.woocommerce ul.products,
	ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}

.woocommerce ul.products li.product,
ul.products li.product {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: left;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

ul.products li.product:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(91, 170, 47, 0.14);
}

ul.products li.product a img {
	width: 100% !important;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	margin: 0 !important;
	border-radius: 0;
	background: var(--ec-sand-soft);
}

ul.products li.product .ec-card-cat {
	display: block;
	padding: 14px 16px 0;
	color: var(--ec-green);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

ul.products li.product .woocommerce-loop-product__title {
	padding: 4px 16px 0 !important;
	font-size: 15px !important;
	font-weight: 600;
	color: var(--ec-ink-dark);
	line-height: 1.4;

	min-height: 2.8em;
	flex: 1 1 auto;
}

ul.products li.product .price {
	padding: 8px 16px 0;
	color: var(--ec-green-dark) !important;
	font-size: 16px;
	font-weight: 600 !important;
	margin: 0 !important;
}

ul.products li.product .price del {
	opacity: 0.5;
	font-weight: 400;
}

ul.products li.product .star-rating {
	margin: 6px 16px 0 !important;
}

ul.products li.product .button {
	margin: 14px 16px 18px !important;
	text-align: center;
	font-size: 13px;
	padding: var(--ec-btn-padding);
}

ul.products li.product .button .ec-atc-label--short {
	display: none;
}

@media (max-width: 768px) {
    ul.products li.product .woocommerce-loop-product__title {
		min-height: 5.6em;
	}
	ul.products li.product .button .ec-atc-label--full {
		display: none;
	}
	ul.products li.product .button .ec-atc-label--short {
		display: inline;
	}
}

body.ec-site a.added_to_cart.wc-forward,
body.ec-site .added_to_cart.wc-forward {
	display: none !important;
}

.ec-badge-out {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 5;
	background: rgba(24, 26, 31, 0.82);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
}

.woocommerce span.onsale,
span.onsale {
	position: absolute;
	top: 12px;
	right: 12px;
	left: auto;
	z-index: 5;
	min-height: 0;
	min-width: 0;
	background: var(--ec-green-light);
	color: var(--ec-ink-dark);
	font-size: 11px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
	line-height: 1.4;
}

.ec-cat-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 22px;
}

.ec-cat-pills a {
	display: inline-block;
	border: 1px solid var(--ec-sand);
	border-radius: 999px;
	padding: var(--ec-btn-padding);
	color: var(--ec-ink);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	background: #fff;
	transition: all 0.2s ease;
}

.ec-cat-pills a:hover {
	border-color: var(--ec-green);
	color: var(--ec-green-dark);
}

.ec-cat-pills a.is-active {
	background: var(--ec-green);
	border-color: var(--ec-green);
	color: #fff;
}

.woocommerce-result-count {
	color: rgba(56, 61, 71, 0.6);
	font-size: 13px;
}

.woocommerce-ordering select {
	border: 1px solid var(--ec-sand);
	border-radius: 999px;
	padding: var(--ec-field-padding);
	padding-right: 46px;
	font-family: var(--ec-font);
	font-size: 13px;
	background-color: #fff;
}

.woocommerce-products-header__title.page-title {
	font-size: 30px;
	margin-bottom: 0.4em;
}

.storefront-full-width-content.woocommerce-cart .entry-header,
.storefront-full-width-content.woocommerce-checkout .entry-header,
.storefront-full-width-content.woocommerce-account .entry-header {
	text-align: left !important;
	padding: 24px 0 28px !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.storefront-full-width-content .woocommerce-products-header {
	text-align: left !important;
	padding: 0 0 28px !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.storefront-full-width-content.woocommerce-cart .entry-header h1,
.storefront-full-width-content.woocommerce-checkout .entry-header h1,
.storefront-full-width-content.woocommerce-account .entry-header h1,
.storefront-full-width-content .woocommerce-products-header h1 {
	font-size: clamp(26px, 3.4vw, 34px);
}

.storefront-sticky-add-to-cart {
	display: none !important;
}

.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.single-product div.product::before,
.single-product div.product::after {
	content: none !important;
	display: none !important;
}

.storefront-product-pagination {
	display: none !important;
}

@media (max-width: 860px) {
	.single-product div.product {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

.single-product div.product .woocommerce-product-gallery {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

.single-product .woocommerce-product-gallery__trigger {
	display: none !important;
}

.single-product .woocommerce-product-gallery .flex-viewport {
	aspect-ratio: 1 / 1 !important;
	height: auto !important;
	max-height: none !important;
	overflow: hidden !important;
	border-radius: var(--ec-radius);
	background: var(--ec-sand-soft);
}

.single-product .woocommerce-product-gallery__wrapper {
	aspect-ratio: 1 / 1;
	height: 100% !important;
}

.single-product .woocommerce-product-gallery__image {
	height: 100%;
}

.single-product .woocommerce-product-gallery__image a {
	display: block;
	height: 100%;
}

.single-product div.product .woocommerce-product-gallery img {
	border-radius: var(--ec-radius);
	background: var(--ec-sand-soft);
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

.single-product .woocommerce-product-gallery .zoomImg {
	object-fit: cover;
}

.single-product .flex-control-nav.flex-control-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 14px 0 0 !important;
	padding: 0;
	list-style: none;
}

.single-product .flex-control-nav.flex-control-thumbs li {
	width: 72px !important;
	height: 72px !important;
	float: none !important;
	margin: 0 !important;
}

.single-product .flex-control-nav.flex-control-thumbs li img {
	width: 72px !important;
	height: 72px !important;
	object-fit: cover;
	border-radius: 12px;
	opacity: 0.55;
	border: 2px solid transparent;
	transition: opacity 0.2s ease, border-color 0.2s ease;
}

.single-product .flex-control-nav.flex-control-thumbs li img.flex-active,
.single-product .flex-control-nav.flex-control-thumbs li img:hover {
	opacity: 1;
	border-color: var(--ec-green);
}

.single-product div.product .summary {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.single-product .ec-product-badge {
	display: inline-block;
	align-self: flex-start;
	background: var(--ec-green-light);
	color: var(--ec-ink-dark);
	font-size: 12px;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 999px;
	margin-bottom: 10px;
}

.single-product div.product .product_title {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.35em;
	color: var(--ec-ink-dark);
}

.single-product div.product .summary .price {
	color: var(--ec-ink-dark) !important;
	font-size: 28px;
	font-weight: 600;
	margin: 0.15em 0 0.5em;
}

.single-product.product-type-variable div.product .summary > p.price,
.single-product.product-type-variable div.product .summary > .price,
.single-product.product-type-ec_kit div.product .summary > p.price,
.single-product.product-type-ec_kit div.product .summary > .price {
	display: none !important;
}

.single-product .ec-live-variation-price:empty {
	display: none;
}

.single-product .ec-live-variation-price:not(:empty) {
	display: block;
	margin: 0.4em 0 0.8em;
}

.single-product div.product .summary .price .woocommerce-Price-amount,
.single-product .ec-live-variation-price .amount {
	color: var(--ec-ink-dark) !important;
}

.single-product .woocommerce-variation.single_variation .woocommerce-variation-price {
	display: none !important;
}

.single-product .woocommerce-variation-price {
	width: 100%;
	margin: 0.2em 0 0.4em;
}

.single-product div.product form.cart .button.disabled,
.single-product div.product form.cart .button:disabled,
.single-product div.product .woocommerce-variation-add-to-cart .button.disabled,
.single-product div.product .woocommerce-variation-add-to-cart .button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.single-product .ec-live-variation-price .amount,
.single-product .woocommerce-variation-price .price,
.single-product .woocommerce-variation-price .amount {
	color: var(--ec-ink-dark) !important;
	font-size: 28px;
	font-weight: 600;
}

.single-product div.product .woocommerce-product-details__short-description {
	color: rgba(56, 61, 71, 0.72);
	font-size: 14px;
	line-height: 1.65;
	margin: 0 0 1em;
}

.single-product div.product .woocommerce-product-details__short-description p {
	margin: 0 0 0.6em;
}

.single-product div.product form.cart:not(.variations_form):not(.ec-kit-form),
.single-product div.product .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	margin: 1.4em 0 0.8em;
	padding: 0 !important;
	width: 100%;
	box-sizing: border-box;
}

.single-product div.product form.variations_form {
	display: block;
	padding: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.single-product div.product form.variations_form .variations {
	width: 100%;
	margin-bottom: 0.4em;
}

.single-product div.product form.variations_form .woocommerce-variation-add-to-cart {
	margin-top: 0.6em;
	width: 100%;
	padding: 0 !important;
	margin-left: 0 !important;
}

.single-product div.product .woocommerce-variation.single_variation {
	margin: 0;
	padding: 0;
}

.single-product div.product .woocommerce-variation-add-to-cart .quantity,
.single-product div.product form.cart .quantity {
	float: none !important;
	margin: 0 !important;
	clear: none !important;
}

.single-product div.product form.cart:not(.ec-kit-form) .button,
.single-product div.product .woocommerce-variation-add-to-cart .button {
	flex: 1 1 160px;
	max-width: 100%;
	min-height: var(--ec-action-row-height);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	font-size: 15px;
	font-weight: 600;
	padding: var(--ec-btn-padding);
	border-radius: 999px;
}

.single-product div.product .product_meta {
	margin-top: 0.6em;
	padding-top: 1em;
	border-top: 1px solid var(--ec-sand);
	font-size: 13px;
	color: rgba(56, 61, 71, 0.55);
}

.single-product div.product .product_meta > span {
	display: block;
	margin-bottom: 4px;
}

.single-product .ec-variation-field .ec-variation-select,
.single-product form.variations_form .ec-variation-select,
.single-product form.variations_form table.variations select,
.variations_form.ec-has-pills table.variations select {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.single-product .ec-variation-field .select2-container,
.single-product form.variations_form .select2-container,
.variations_form.ec-has-pills .select2-container,
.single-product .ec-kit-gramatura-field .select2-container {
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.single-product form.variations_form table.variations th.label,
.variations_form.ec-has-pills table.variations th.label {
	display: none !important;
}

.single-product .ec-variation-field {
	margin-bottom: 0.6em;
	width: 100%;
	position: relative;
}

table.variations {
	margin-bottom: 0.6em;
	border: none;
}

table.variations td {
	border: none;
	padding: 0;
}

table.variations th.label {
	font-weight: 600;
	font-size: 14px;
	padding-right: 12px;
}

.single-product .ec-variation-label {
	margin: 0 0 var(--ec-label-gap);
	font-size: var(--ec-label-size);
	font-weight: var(--ec-label-weight);
	line-height: var(--ec-label-lh);
	color: var(--ec-label-color);
}

.single-product .ec-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.single-product .ec-pills button,
.single-product .ec-pill {
	border: 1px solid #e5e5e5;
	background: #fff;
	border-radius: 999px;
	padding: var(--ec-pill-padding);
	font-family: var(--ec-font);
	font-size: 14px;
	font-weight: 500;
	color: rgba(56, 61, 71, 0.55);
	cursor: pointer;
	transition: all 0.2s ease;
}

.single-product .ec-pills button:hover,
.single-product .ec-pill:hover {
	border-color: #ccc;
	color: var(--ec-ink-dark);
}

.single-product .ec-pills button.is-active,
.single-product .ec-pill.is-active {
	background: #ececec;
	border-color: #ececec;
	color: var(--ec-ink-dark);
}

.single-product .ec-pills button:disabled,
.single-product .ec-pill:disabled {
	opacity: 0.35;
	text-decoration: line-through;
	cursor: not-allowed;
}

.ec-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.ec-pills button {
	border: 1px solid var(--ec-sand);
	background: #fff;
	border-radius: 999px;
	padding: var(--ec-pill-padding);
	font-family: var(--ec-font);
	font-size: 14px;
	font-weight: 500;
	color: var(--ec-ink);
	cursor: pointer;
	transition: all 0.2s ease;
}

.ec-pills button:hover {
	border-color: var(--ec-green);
	color: var(--ec-green-dark);
}

.ec-pills button.is-active {
	background: var(--ec-green);
	border-color: var(--ec-green);
	color: #fff;
}

.ec-pills button:disabled {
	opacity: 0.35;
	text-decoration: line-through;
	cursor: not-allowed;
}

.reset_variations {
	display: none !important;
}

.ec-qty-stepper {

	--ec-qty-control: calc(
		var(--ec-action-row-height) - (2 * var(--ec-qty-pad-block)) - (2 * var(--ec-qty-border))
	);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	border: var(--ec-qty-border) solid var(--ec-sand);
	border-radius: 999px;
	background: #fff;
	padding-block: var(--ec-qty-pad-block);
	padding-inline: var(--ec-qty-pad-inline);
	flex: 0 0 auto;
	height: var(--ec-action-row-height);
	max-height: var(--ec-action-row-height);
	box-sizing: border-box;
	overflow: hidden;
}

.single-product .ec-qty-stepper > label.screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.single-product div.product form.cart:not(.variations_form)::before,
.single-product div.product form.cart:not(.variations_form)::after,
.single-product div.product .woocommerce-variation-add-to-cart::before,
.single-product div.product .woocommerce-variation-add-to-cart::after {
	content: none !important;
	display: none !important;
}

.ec-qty-stepper .qty,
.ec-qty-stepper__input,
.ec-kit-flavor-qty {
	border: none !important;
	border-radius: 0;
	padding: 0 !important;
	margin: 0 !important;
	width: var(--ec-qty-control);
	height: var(--ec-qty-control) !important;
	min-height: var(--ec-qty-control) !important;
	max-height: var(--ec-qty-control) !important;
	line-height: var(--ec-qty-control);
	text-align: center;
	font-family: var(--ec-font);
	font-size: 15px;
	font-weight: 600;
	color: var(--ec-ink-dark);
	background: transparent !important;
	box-shadow: none !important;
	box-sizing: border-box;
	-moz-appearance: textfield;
	appearance: textfield;
}

.ec-kit-flavor__qty.ec-qty-stepper {

	--ec-action-row-height: 46px;
	--ec-qty-pad-block: 5px;
	--ec-qty-pad-inline: 5px;
	height: var(--ec-action-row-height);
	max-height: var(--ec-action-row-height);
	align-self: center;
}

.ec-kit-flavor__qty .ec-kit-flavor-qty {
	min-width: 2.5em;
	width: auto;
	flex: 1 1 auto;
	max-height: var(--ec-qty-control) !important;
}

.ec-qty-stepper .qty::-webkit-outer-spin-button,
.ec-qty-stepper .qty::-webkit-inner-spin-button,
.ec-kit-flavor-qty::-webkit-outer-spin-button,
.ec-kit-flavor-qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.ec-qty-btn,
.ec-qty-stepper__btn {
	width: var(--ec-qty-control);
	height: var(--ec-qty-control);
	min-width: var(--ec-qty-control);
	min-height: var(--ec-qty-control);
	max-width: var(--ec-qty-control);
	max-height: var(--ec-qty-control);
	padding: 0 !important;
	margin: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: var(--ec-ink-dark);
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.18s ease, color 0.18s ease;
	flex: 0 0 var(--ec-qty-control);
	flex-shrink: 0;
	align-self: center;
	box-sizing: border-box;
}

.ec-kit-flavor__qty .ec-qty-stepper__btn,
.ec-kit-flavor__qty .ec-qty-btn {
	font-size: 17px;
}

.ec-qty-btn:hover,
.ec-qty-stepper__btn:hover,
.ec-qty-btn:focus-visible,
.ec-qty-stepper__btn:focus-visible {
	color: var(--ec-ink-dark);
	background: var(--ec-sand-soft) !important;

	padding: 0 !important;
	border-radius: 50% !important;
}

.ec-qty-btn:active,
.ec-qty-stepper__btn:active {
	background: color-mix(in srgb, var(--ec-sand) 28%, var(--ec-sand-soft)) !important;
}

.single-product form.cart .quantity:not(.ec-qty-stepper) .qty,
.quantity:not(.ec-qty-stepper) .qty {
	border: 1px solid var(--ec-sand);
	border-radius: 999px;
	padding: var(--ec-input-padding);
	min-width: 88px;
	width: 88px;
	max-width: 120px;
	text-align: center;
	font-family: var(--ec-font);
	background: #fff;
	-moz-appearance: textfield;
	appearance: textfield;
}

.quantity .qty::-webkit-outer-spin-button,
.quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.single-product div.product form.cart.ec-kit-form {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0;
	margin: 1.4em 0 0.8em;
	padding: 0 !important;
	width: 100%;
	box-sizing: border-box;
}

.single-product .ec-kit-form {
	margin-top: 8px;
}

.single-product div.product form.cart.ec-kit-form .ec-kit-submit {
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
}

.single-product .ec-kit-price {
	margin: 0 0 18px;
	font-size: 22px;
	font-weight: 600;
	color: var(--ec-green-dark);
}

.ec-kit-builder {
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	background: #fff;
	padding: 24px 22px 22px;
}

.single-product .ec-kit-form .ec-kit-gramatura-field {
	margin: 0 0 20px;
}

.single-product .ec-kit-form .ec-kit-gramatura-field .ec-variation-select {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ec-kit-builder__title {
	margin: 0 0 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--ec-ink-dark);
	line-height: 1.3;
}

.ec-kit-mode {
	margin: 0;
}

.ec-kit-mode__label {
	margin: 0 0 var(--ec-label-gap);
	padding: 0;
	font-size: var(--ec-label-size);
	font-weight: var(--ec-label-weight);
	line-height: var(--ec-label-lh);
	color: var(--ec-label-color);
}

.ec-kit-mode__options {
	display: grid;
	gap: 10px;
}

.ec-kit-mode__option {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: var(--ec-input-padding);
	border: 1px solid var(--ec-sand);
	border-radius: 14px;
	background: #fff;
	font-size: 14px;
	color: var(--ec-ink);
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.ec-kit-mode__option:hover {
	border-color: var(--ec-green);
	background: var(--ec-sand-soft);
}

.ec-kit-mode__option:has(input:checked) {
	border-color: var(--ec-green);
	background: rgba(91, 170, 47, 0.08);
}

.ec-kit-mode__option input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}

.ec-kit-mode__indicator {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border: 2px solid #c5c9cf;
	border-radius: 50%;
	background: #fff;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ec-kit-mode__option:has(input:checked) .ec-kit-mode__indicator {
	border-color: var(--ec-green);
	background: var(--ec-green);
	box-shadow: inset 0 0 0 3px #fff;
}

.ec-kit-mode__text {
	flex: 1;
	line-height: 1.35;
	font-weight: 500;
	color: var(--ec-ink-dark);
}

.ec-kit-manual {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--ec-sand-soft);
}

.ec-kit-manual__intro {
	margin-bottom: 14px;
}

.ec-kit-manual__title {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 600;
	color: var(--ec-ink-dark);
	line-height: 1.35;
}

.ec-kit-manual__hint {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: var(--ec-ink);
}

.ec-kit-assorted-note {
	margin: 16px 0 0;
	padding: 12px 14px;
	border-radius: 12px;
	background: var(--ec-sand-soft);
	font-size: 13px;
	line-height: 1.45;
	color: var(--ec-ink-dark);
}

.ec-kit-form.is-manual .ec-kit-assorted-note {
	display: none;
}

.ec-kit-progress {
	display: grid;
	gap: 10px;
	margin-bottom: 16px;
	padding: 14px 16px;
	border: 1px solid var(--ec-sand);
	border-radius: 14px;
	background: #fff;
	color: var(--ec-ink-dark);
}

.ec-kit-progress__track {
	height: 6px;
	border-radius: 999px;
	background: var(--ec-sand-soft);
	overflow: hidden;
}

.ec-kit-progress__fill {
	display: block;
	height: 100%;
	width: 0;
	border-radius: inherit;
	background: var(--ec-green);
	transition: width 0.25s ease, background 0.25s ease;
}

.ec-kit-progress__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	font-weight: 600;
}

.ec-kit-progress.is-complete {
	border-color: rgba(91, 170, 47, 0.35);
	background: rgba(91, 170, 47, 0.06);
}

.ec-kit-progress.is-complete .ec-kit-progress__fill {
	background: var(--ec-green-dark);
}

.ec-kit-progress.is-over {
	border-color: rgba(155, 44, 31, 0.25);
	background: #fdf0ee;
}

.ec-kit-progress.is-over .ec-kit-progress__fill {
	background: #c0392b;
}

.ec-kit-progress__count {
	font-size: 22px;
	line-height: 1;
}

.ec-kit-progress__total {
	font-size: 22px;
	line-height: 1;
}

.ec-kit-progress__label {
	margin-left: 2px;
	font-size: 13px;
	font-weight: 500;
	color: var(--ec-ink);
}

.ec-kit-flavors {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.ec-kit-flavor {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 16px;
	border: 1px solid var(--ec-sand);
	border-radius: 14px;
	background: #fff;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ec-kit-flavor.is-selected {
	border-color: rgba(91, 170, 47, 0.45);
	background: rgba(91, 170, 47, 0.05);
}

.ec-kit-flavor__name {
	flex: 1;
	min-width: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--ec-ink-dark);
	line-height: 1.35;
}

.ec-kit-submit {
	display: block;
	width: 100%;
	margin-top: 18px;
	border-radius: 999px;
	padding: var(--ec-btn-padding);
	font-size: 15px;
	font-weight: 600;
}

.ec-kit-submit.is-pending,
.ec-kit-submit:disabled {
	background: #8b929c !important;
	border-color: #8b929c !important;
	color: #fff !important;
	cursor: not-allowed;
}

.ec-kit-empty,
.ec-kit-notice {
	margin: 0 0 16px;
	padding: 12px 16px;
	border-radius: 12px;
	font-size: 14px;
	background: var(--ec-sand-soft);
	color: var(--ec-ink-dark);
}

@media (max-width: 600px) {
	.ec-kit-builder {
		padding: 20px 16px 18px;
	}

	.ec-kit-flavor {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.ec-kit-flavor__qty {
		align-self: stretch;
		justify-content: space-between;

		height: var(--ec-action-row-height);
		max-height: var(--ec-action-row-height);
	}

	.ec-kit-flavor__qty .ec-qty-stepper__btn,
	.ec-kit-flavor__qty .ec-qty-btn {
		flex: 0 0 var(--ec-qty-control);
		align-self: center;
	}

	.ec-kit-flavor__qty .ec-kit-flavor-qty {
		flex: 1;
		width: auto;
	}
}

.woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 2.5em;
}

.woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	width: 100% !important;
	float: none !important;
	gap: 4px;
	list-style: none;
	margin: 0 0 1.2em;
	padding: 0 0 1px;
	border-bottom: 1px solid var(--ec-sand);
	background: transparent;
}

.woocommerce-tabs ul.tabs li {
	background: transparent !important;
	border: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce-tabs ul.tabs li:before,
.woocommerce-tabs ul.tabs li:after {
	display: none !important;
}

.woocommerce-tabs ul.tabs li a {
	display: inline-block;
	padding: 10px 20px !important;
	font-weight: 600 !important;
	font-size: 14px;
	color: rgba(56, 61, 71, 0.6) !important;
	border-bottom: 2px solid transparent;
	text-decoration: none;
}

.woocommerce-tabs ul.tabs li.active a {
	color: var(--ec-green-dark) !important;
	border-bottom-color: var(--ec-green);
}

.woocommerce-tabs .panel {
	width: 100% !important;
	float: none !important;
	clear: both;
	max-width: 760px;
}

.woocommerce-tabs .panel h2:first-of-type {
	font-size: 20px;
}

.related.products,
.up-sells.products {
	grid-column: 1 / -1;
	margin-top: 2.5em;
}

.related.products > h2,
.up-sells.products > h2 {

	text-align: left !important;
	font-size: 22px;
	margin-bottom: 0.9em;
}

.single-product .ec-shipping-calc {
	margin-top: 1.75em;
	width: 100%;
	background: #fff;
	border: 1px solid rgba(56, 61, 71, 0.08);
	border-radius: 18px;
	padding: 18px 20px;
	box-sizing: border-box;
}

.single-product .ec-shipping-calc__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ec-ink-dark);
	font-family: var(--ec-font);
	cursor: pointer;
	text-align: left;
	box-shadow: none !important;
	list-style: none;
}

.single-product .ec-shipping-calc__toggle::-webkit-details-marker {
	display: none;
}

.single-product .ec-shipping-calc__toggle::marker {
	content: "";
	display: none;
}

.single-product .ec-shipping-calc__toggle-main {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.single-product .ec-shipping-calc__icon {
	flex: 0 0 auto;
	color: var(--ec-ink-dark);
}

.single-product .ec-shipping-calc__title {
	font-size: 15px;
	font-weight: 500;
	margin: 0;
	color: var(--ec-ink-dark);
	letter-spacing: -0.01em;
}

.single-product .ec-shipping-calc__chevron {
	flex: 0 0 auto;
	color: rgba(56, 61, 71, 0.55);
	transition: transform 0.2s ease;
}

.single-product .ec-shipping-calc[open] .ec-shipping-calc__chevron {
	transform: rotate(180deg);
}

.single-product .ec-shipping-calc__panel {
	margin-top: 14px;
	padding-top: 16px;
	border-top: 1px solid rgba(56, 61, 71, 0.1);
}

.single-product .ec-shipping-form {
	display: block;
	margin: 0 0 12px;
}

.single-product .ec-shipping-field {
	position: relative;
	display: flex;
	align-items: center;
}

.single-product .ec-shipping-cep {
	width: 100%;
	min-width: 0;
	border: 1px solid rgba(56, 61, 71, 0.18);
	border-radius: 999px;
	padding: 14px 148px 14px 18px;
	font-family: var(--ec-font);
	font-size: 14px;
	font-weight: 500;
	color: var(--ec-ink-dark);
	background: #fff;
	box-shadow: none;
}

.single-product .ec-shipping-cep::placeholder {
	color: rgba(56, 61, 71, 0.4);
	font-weight: 400;
}

.single-product .ec-shipping-cep-help {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	font-weight: 500;
	color: var(--ec-green);
	text-decoration: none;
	white-space: nowrap;
	line-height: 1;
}

.single-product .ec-shipping-cep-help:hover {
	color: var(--ec-green-dark);
	text-decoration: underline;
}

.single-product .ec-shipping-result {
	margin-top: 0;
	padding: 0;
	background: transparent;
	border-radius: 0;
	font-size: 14px;
}

.single-product .ec-shipping-result[hidden] {
	display: none !important;
}

.ec-shipping-options {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.ec-shipping-option {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"label price"
		"days price";
	align-items: start;
	column-gap: 16px;
	row-gap: 4px;
	padding: 14px 16px;
	background: #e9f6df;
	border-radius: 12px;
	border: 2px solid transparent;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ec-shipping-option.is-selectable {
	cursor: pointer;
}

.ec-shipping-option.is-selectable:hover {
	border-color: rgba(45, 106, 79, 0.35);
}

.ec-shipping-option.is-selected {
	border-color: var(--ec-green);
	box-shadow: 0 0 0 1px var(--ec-green);
}

.ec-shipping-option__label {
	grid-area: label;
	font-weight: 600;
	font-size: 14px;
	color: var(--ec-ink-dark);
	min-width: 0;
}

.ec-shipping-option__days {
	grid-area: days;
	color: var(--ec-green);
	font-size: 13px;
	font-weight: 500;
	min-width: 0;
}

.ec-shipping-option__price {
	grid-area: price;
	margin-left: 0;
	font-weight: 600;
	font-size: 14px;
	color: var(--ec-ink-dark);
	white-space: nowrap;
	justify-self: end;
	align-self: start;
}

.single-product .ec-shipping-message {
	margin: 10px 0 0;
	font-size: 13px;
	color: rgba(56, 61, 71, 0.65);
	min-height: 0;
}

.single-product .ec-shipping-message:empty {
	display: none;
}

@media (max-width: 420px) {
	.single-product .ec-shipping-cep {
		padding-right: 18px;
		padding-bottom: 36px;
	}

	.single-product .ec-shipping-cep-help {
		right: 16px;
		top: auto;
		bottom: 10px;
		transform: none;
	}
}

.single-product .ec-product-accordion {
	grid-column: 1 / -1;
	margin-top: 2.5em;
	border-top: 1px solid var(--ec-sand);
}

.single-product .ec-accordion-item {
	border-bottom: 1px solid var(--ec-sand);
}

.single-product .ec-accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 0;
	border: none;
	background: transparent;
	font-family: var(--ec-font);
	font-size: 15px;
	font-weight: 600;
	color: var(--ec-ink-dark);
	cursor: pointer;
	text-align: left;
	position: relative;
	z-index: 1;
}

.single-product .ec-accordion-trigger:focus,
.single-product .ec-accordion-trigger:focus-visible {
	outline: none !important;
	box-shadow: none !important;
}

.single-product .ec-accordion-chevron {
	flex-shrink: 0;
	transition: transform 0.2s ease;
	color: rgba(56, 61, 71, 0.45);
}

.single-product .ec-accordion-item.is-open .ec-accordion-chevron {
	transform: rotate(180deg);
}

.single-product .ec-accordion-panel[hidden] {
	display: none !important;
}

.single-product .ec-accordion-panel:not([hidden]) {
	display: block;
	padding: 0 0 20px;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(56, 61, 71, 0.75);
}

.single-product .ec-accordion-panel p {
	margin: 0 0 0.65em;
}

.single-product .ec-reviews {
	grid-column: 1 / -1;
	margin-top: 2.5em;
	padding-top: 2em;
	border-top: 1px solid var(--ec-sand);
}

.single-product .ec-reviews-title,
.single-product .ec-reviews-inner > .ec-reviews-title {
	font-size: 22px;
	margin: 0 0 1.2em;
	color: var(--ec-ink-dark);
}

.single-product .ec-review-compose {
	margin: 0 0 2em;
}

.single-product .ec-review-write {
	display: block;
	margin: 0 auto 1.5em;
	border: none;
}

.single-product .ec-reviews-empty,
.single-product .woocommerce-noreviews {
	display: none !important;
}

.single-product .ec-review-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.single-product .ec-review-item {
	padding: 1.25em 0;
	border-bottom: 1px solid var(--ec-sand-soft);
}

.single-product .ec-review-date {
	display: block;
	font-size: 12px;
	color: rgba(56, 61, 71, 0.5);
	margin-bottom: 4px;
}

.single-product .ec-review-author {
	margin: 0 0 6px;
	font-weight: 600;
	font-size: 15px;
	color: var(--ec-ink-dark);
}

.single-product .ec-review-stars {
	margin-bottom: 8px;
}

.single-product .ec-review-heading {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 600;
	color: var(--ec-ink-dark);
}

.single-product .ec-review-body {
	font-size: 14px;
	line-height: 1.65;
	color: rgba(56, 61, 71, 0.78);
}

.single-product .ec-review-form-wrap {
	margin: 0 auto;
	max-width: 560px;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.single-product .ec-review-form-wrap[hidden] {
	display: none !important;
}

.single-product .ec-reviews-form-title,
.single-product #reply-title {
	display: none !important;
}

.single-product .ec-reviews-privacy {
	font-size: 12px;
	color: rgba(56, 61, 71, 0.65);
	margin: 0 0 1.25em;
	line-height: 1.55;
	text-align: center;
}

.single-product #review_form .comment-form-rating,
.single-product #review_form .comment-form-ec-title,
.single-product #review_form .comment-form-comment,
.single-product #review_form .comment-form-author,
.single-product #review_form .comment-form-email {
	margin-bottom: 16px;
}

.single-product #review_form .comment-form-rating {
	text-align: center;
}

.single-product #review_form .comment-form-rating label {
	text-align: center;
}

.single-product #review_form .stars {
	display: flex;
	justify-content: center;
	margin: 8px 0 0;
	font-size: 0;
}

.single-product #review_form .stars a {
	color: rgba(56, 61, 71, 0.28);
	font-size: 28px;
	line-height: 1;
	margin: 0 4px;
	text-indent: 0;
	width: auto;
	height: auto;
	box-shadow: none !important;
}

.single-product #review_form .stars a:hover,
.single-product #review_form .stars a.active,
.single-product #review_form .stars:hover a {
	color: var(--ec-green);
}

.single-product #review_form label {
	display: block;
	margin-bottom: var(--ec-label-gap);
	font-size: var(--ec-label-size);
	font-weight: var(--ec-label-weight);
	line-height: var(--ec-label-lh);
	color: var(--ec-label-color);
	text-align: left;
}

.single-product #review_form input[type="text"],
.single-product #review_form input[type="email"],
.single-product #review_form select,
.single-product #review_form textarea {
	width: 100%;
	border: 1px solid rgba(56, 61, 71, 0.12);
	border-radius: 999px;
	padding: var(--ec-field-padding);
	font-family: var(--ec-font);
	font-size: 14px;
	background: #f3f3f3;
	box-shadow: none;
	color: var(--ec-ink);
}

.single-product #review_form textarea {
	border-radius: 24px;
	min-height: 140px;
	resize: vertical;
}

.single-product #review_form select {
	padding-right: 46px;
	background-color: #f3f3f3;
}

.single-product #review_form .ec-review-actions,
.single-product #review_form .form-submit {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.single-product #review_form .form-submit input[type="submit"],
.single-product #review_form .ec-review-cancel {
	margin: 0;
}

.single-product #review_form .form-submit #cancel-comment-reply-link {
	display: none !important;
}

.woocommerce-message a.button,
.woocommerce-info a.button {
	background: var(--ec-green);
}

.woocommerce-store-notice {
	background: var(--ec-green-dark);
	color: var(--ec-sand);
}

.ec-cart-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(24, 26, 31, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 998;
}

.ec-cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(420px, 100vw);
	background: #fff;
	box-shadow: -18px 0 50px rgba(24, 26, 31, 0.18);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 999;
	display: flex;
	flex-direction: column;
}

.admin-bar .ec-cart-drawer {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .ec-cart-drawer {
		top: 46px;
	}
}

body.ec-cart-drawer-open .ec-cart-drawer {
	transform: translateX(0);
}

body.ec-cart-drawer-open .ec-cart-drawer-overlay {
	opacity: 1;
	pointer-events: auto;
}

.ec-cart-drawer__head {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 12px;
	padding: 20px 24px;
	border-bottom: 1px solid var(--ec-sand);
	flex-shrink: 0;
	position: relative;
	width: 100%;
	text-align: left;
	overflow: visible;
}

aside.ec-cart-drawer header button {
	text-indent: 0 !important;
	overflow: visible !important;
}

.ec-cart-drawer__title {
	font-size: 18px;
	margin: 0;
	color: var(--ec-green-dark);
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: left;
	padding-right: 48px;
}

.ec-cart-drawer__close {
	background: transparent;
	border: none;
	border-radius: 999px;
	width: 44px;
	height: 44px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	color: var(--ec-ink) !important;
	cursor: pointer;
	flex: 0 0 44px;
	position: absolute;
	top: 50%;
	right: 16px;
	left: auto;
	margin: 0;
	transform: translateY(-50%);
	float: none !important;
	font-size: 0 !important;
	line-height: 0 !important;
	text-indent: 0 !important;
	overflow: visible !important;
	opacity: 1 !important;
	visibility: visible !important;
	z-index: 2;
}

.ec-cart-drawer__close svg {
	display: block !important;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	stroke: currentColor;
}

.ec-cart-drawer__close:hover {
	background: var(--ec-sand-soft);
}

.ec-cart-drawer__body {
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
	padding: 0 24px;
}

.ec-cart-drawer__content {
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
}

.ec-cart-drawer__content,
.ec-cart-drawer__content * {
	box-sizing: border-box;
}

.ec-cart-drawer__content a,
.ec-cart-drawer__content img {
	float: none !important;
	clear: none !important;
}

.ec-cart-drawer__list {
	list-style: none;
	margin: 0;
	padding: 8px 0 0;
	flex: 1;
	min-height: 0;
	overflow-y: auto;
}

.ec-cart-drawer__item {
	display: flex !important;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 0;
	margin: 0 !important;
	border-bottom: 1px solid var(--ec-sand-soft);
}

.ec-cart-drawer__thumb {
	display: block;
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	border-radius: 14px;
	overflow: hidden;
	background: var(--ec-sand-soft);
	text-decoration: none;
}

.ec-cart-drawer__thumb img {
	display: block !important;
	width: 72px !important;
	height: 72px !important;
	max-width: none !important;
	object-fit: cover;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
}

.ec-cart-drawer__details {
	flex: 1 1 auto;
	min-width: 0;
	padding-right: 4px;
}

.ec-cart-drawer__name {
	display: block;
	color: var(--ec-ink-dark);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	text-decoration: none;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

a.ec-cart-drawer__name:hover {
	color: var(--ec-green-dark);
}

.ec-cart-drawer__variation {
	margin-top: 4px;
	font-size: 12px;
	line-height: 1.4;
	color: rgba(56, 61, 71, 0.65);
}

.ec-cart-drawer__variation dl {
	margin: 0;
	padding: 0;
	border: 0;
}

.ec-cart-drawer__variation dl.variation {
	display: flex;
	flex-wrap: wrap;
	gap: 0 4px;
}

.ec-cart-drawer__variation dt,
.ec-cart-drawer__variation dd {
	margin: 0;
	padding: 0;
	border: 0;
	float: none !important;
	font-weight: 400;
}

.ec-cart-drawer__variation dd p {
	margin: 0;
	display: inline;
}

.ec-cart-drawer__qty {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.4;
	color: rgba(56, 61, 71, 0.7);
}

.ec-cart-drawer__qty .amount {
	color: var(--ec-green-dark);
	font-weight: 600;
}

.ec-cart-drawer__remove {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-size: 0 !important;
	line-height: 1;
	text-decoration: none !important;
	text-indent: 0 !important;
	overflow: visible !important;
	color: rgba(56, 61, 71, 0.55) !important;
	background: var(--ec-sand-soft) !important;
	position: static !important;
	left: auto !important;
	right: auto !important;
	top: auto !important;
	box-shadow: none !important;
}

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

.ec-cart-drawer__remove svg {
	display: block !important;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	stroke: currentColor;
}

.ec-cart-drawer__remove:hover {
	color: #fff !important;
	background: #c0392b !important;
}

.ec-cart-drawer__remove:hover svg {
	stroke: #fff;
}

.ec-cart-drawer__footer {
	margin-top: auto;
	padding: 18px 0 8px;
	border-top: 2px solid var(--ec-sand);
	flex-shrink: 0;
}

.ec-cart-drawer__subtotal {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
	font-size: 15px;
	color: var(--ec-ink-dark);
}

.ec-cart-drawer__subtotal strong,
.ec-cart-drawer__subtotal .amount {
	color: var(--ec-green-dark);
	font-size: 20px;
	font-weight: 600;
}

.ec-cart-drawer__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ec-cart-drawer__btn {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: var(--ec-btn-padding);
	border: none;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none !important;
	line-height: 1.3;
}

.ec-cart-drawer__btn--ghost,
.ec-cart-drawer__btn--secondary {
	color: var(--ec-green-dark) !important;
	background: var(--ec-btn-secondary-bg);
	box-shadow: none;
}

.ec-cart-drawer__btn--ghost:hover,
.ec-cart-drawer__btn--secondary:hover {
	background: var(--ec-btn-secondary-bg-hover);
}

.ec-cart-drawer__view-cart {

	pointer-events: auto;
}

.ec-cart-drawer__btn--primary {
	color: #fff !important;
	background: var(--ec-green);
}

.ec-cart-drawer__btn--primary:hover {
	background: var(--ec-green-dark);
}

.ec-cart-drawer__empty {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 48px 0;
	text-align: center;
}

.ec-cart-drawer__empty p {
	margin: 0;
	color: rgba(56, 61, 71, 0.65);
}

.ec-cart-drawer__empty .ec-cart-drawer__btn {
	width: auto;
	min-width: 180px;
}

.ec-cart-drawer__note {
	margin: 0;
	padding: 12px 24px 20px;
	font-size: 12px;
	color: rgba(56, 61, 71, 0.55);
	text-align: center;
	border-top: 1px solid var(--ec-sand-soft);
	flex-shrink: 0;
}

body.ec-site #colophon,
body.ec-site .site-footer,
body.ec-site .site-footer .col-full {
	background: var(--ec-green-deep) !important;
	background-image: none !important;
	color: #fff;
}

.site-footer {
	margin-top: 0 !important;
	padding: 0 !important;
	width: 100%;
	max-width: none;
	box-sizing: border-box;
}

body.ec-site:not(:has(.ec-cta-find)) .site-footer {
	margin-top: 48px !important;
}

.ec-footer {
	padding: clamp(40px, 6vw, 64px) 0 0;
	background: var(--ec-green-deep);
	width: 100%;
	box-sizing: border-box;
}

.ec-footer__inner {

	padding-top: 0;
	padding-bottom: 0;
}

.ec-newsletter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px 40px;
	flex-wrap: wrap;
	padding: 0 0 36px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ec-newsletter__copy {
	flex: 1 1 280px;
	min-width: 0;
}

.ec-newsletter h3 {
	color: #fff;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 6px;
	text-transform: none;
	letter-spacing: 0;
}

.ec-newsletter__copy p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.5;
}

.ec-newsletter-form {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	position: relative;
	flex: 0 1 420px;
	width: min(420px, 100%);
}

.ec-newsletter-form__row {
	display: flex;
	align-items: stretch;
	gap: 0;
	flex-wrap: nowrap;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
	background: transparent;
	overflow: hidden;
	box-sizing: border-box;
	height: var(--ec-field-h);
}

.ec-newsletter-form input[type="email"] {
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #fff !important;
	padding: var(--ec-field-padding) !important;
	font-family: var(--ec-font);
	font-size: 14px;
	box-shadow: none !important;
	outline: none !important;
}

.ec-newsletter-form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.ec-newsletter-form input[type="email"]:focus {
	outline: none !important;
	box-shadow: none !important;
}

.ec-newsletter-form button {
	width: 56px;
	min-width: 56px;
	flex: 0 0 56px;
	border: 0 !important;
	border-left: 1px solid rgba(255, 255, 255, 0.35) !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #fff !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0 !important;
	transition: background 0.2s ease, color 0.2s ease;
}

.ec-newsletter-form button:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
}

.ec-newsletter-msg {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8) !important;
	margin: 0;
	min-height: 1.2em;
	line-height: 1.35;
}

.ec-newsletter-msg:empty {
	display: none;
}

.ec-footer-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr 1fr 1.15fr;
	gap: clamp(28px, 4vw, 48px);
	padding: 40px 0 36px;
	align-items: start;
}

.ec-footer-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ec-footer-brand__logo {
	height: 96px;
	width: auto;
	max-width: 120px;
	margin: 0 0 20px;
	display: block;
	object-fit: contain;
}

.ec-footer-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin: 0;
}

.ec-footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	padding: 0;
	border: none !important;
	border-radius: 0;
	color: #fff !important;
	background: transparent !important;
	box-shadow: none !important;
	text-decoration: none !important;
	font-size: 20px;
	line-height: 1;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.ec-footer-social__link:hover {
	background: transparent !important;
	border: none !important;
	color: #fff !important;
	opacity: 0.75;
}

.ec-footer-social__link.is-static {
	opacity: 0.55;
	cursor: default;
}

.ec-footer-col h3 {
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 16px;
}

.ec-footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.ec-footer-col ul li {
	margin: 0 0 10px;
}

.ec-footer-col ul a {
	color: rgba(255, 255, 255, 0.88) !important;
	font-size: 14px;
	line-height: 1.4;
	text-decoration: none !important;
}

.ec-footer-col ul a:hover {
	color: rgba(255, 255, 255, 0.68) !important;
	text-decoration: none !important;
}

.ec-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
	padding: 18px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ec-footer-bottom__legal {
	flex: 1 1 280px;
	min-width: 0;
}

.ec-footer-bottom__legal p {
	margin: 0 0 4px;
	font-size: 11px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.55);
}

.ec-footer-bottom__legal p:last-child {
	margin-bottom: 0;
}

.ec-footer-payments {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.ec-footer-payments img {
	display: block;
	height: 28px;
	width: auto;
	max-width: 64px;
	object-fit: contain;
	border-radius: 4px;
}

@media (max-width: 900px) {
	.ec-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ec-footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.ec-footer {
		padding-top: 32px;
	}

	.ec-footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 28px 0 20px;
	}

	.ec-newsletter {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding-bottom: 24px;
	}

	.ec-newsletter__copy,
	.ec-newsletter-form {
		flex: 0 0 auto;
		width: 100%;
		max-width: none;
	}

	.ec-footer-bottom {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 16px 0 22px;
	}

	.ec-footer-bottom__legal {
		flex: 0 0 auto;
		width: 100%;
	}

	.ec-footer-payments {
		justify-content: center;
		width: 100%;
	}
}

.ec-hero {
	background: var(--ec-sand-soft);
	padding: 0;
}

.ec-hero-slider {
	position: relative;
	width: 100%;
}

.ec-hero-slider__viewport {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.ec-hero-slider__track {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
}

.ec-hero-slider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.55s ease, visibility 0.55s ease;
	z-index: 0;
}

.ec-hero-slider__slide.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.ec-hero-slider__link {
	display: block;
	line-height: 0;
	text-decoration: none;
	color: inherit;
}

.ec-hero-slider__link--static {
	cursor: default;
}

.ec-hero-slider__link img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 640;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 860px) {
	.ec-hero-slider__link img {
		aspect-ratio: 4 / 3;
		object-position: 78% center;
	}
}

.ec-hero-slider__dots {
	--ec-dot-size: 16px;
	--ec-dot-active-width: 88px;
	--ec-dot-gap: 12px;

	position: absolute;
	left: 0;
	right: 0;
	bottom: 22px;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--ec-dot-gap);
	pointer-events: none;
}

.ec-hero-slider__dot {
	pointer-events: auto;
	position: relative;
	box-sizing: border-box;
	flex: 0 0 auto;
	width: var(--ec-dot-size);
	height: var(--ec-dot-size);
	min-width: var(--ec-dot-size);
	min-height: var(--ec-dot-size);
	padding: 0 !important;
	margin: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
	box-shadow: none;
	overflow: hidden;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transform: none;
	transition:
		width 450ms cubic-bezier(0.22, 1, 0.36, 1),
		min-width 450ms cubic-bezier(0.22, 1, 0.36, 1),
		background-color 250ms ease;
}

.ec-hero-slider__dot:hover {
	background: rgba(255, 255, 255, 0.9);
}

.ec-hero-slider__dot:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 4px;
}

.ec-hero-slider__dot.is-active {
	width: var(--ec-dot-active-width);
	min-width: var(--ec-dot-active-width);
	background: rgba(255, 255, 255, 0.72);
}

.ec-hero-slider__dot-fill {
	display: none;
}

@media (max-width: 767px) {
	.ec-hero-slider__dots {
		--ec-dot-size: 14px;
		--ec-dot-active-width: 72px;
		--ec-dot-gap: 10px;
		bottom: 16px;
	}
}

.ec-section {
	padding: 56px 0 8px;
}

.ec-home > .ec-section:not(.ec-bleed) {
	width: 100%;
	max-width: var(--ec-rail-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--ec-rail-pad);
	padding-right: var(--ec-rail-pad);
	box-sizing: border-box;
}

.ec-home > .ec-section.ec-faq {
	max-width: min(100%, 760px);
}

.ec-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 26px;
}

.ec-section-head h2 {
	font-size: 26px;
	margin: 0;
}

.ec-section-head p {
	margin: 4px 0 0;
	color: rgba(56, 61, 71, 0.6);
	font-size: 14px;
}

.ec-link-more {
	font-size: 14px;
	font-weight: 600;
	color: var(--ec-green-dark);
	text-decoration: none;
	white-space: nowrap;
}

.ec-portion-calc {
	background: var(--ec-sand-soft);
	color: var(--ec-ink-dark);
	margin-top: 0;
	padding: clamp(56px, 7vw, 88px) var(--ec-home-pad);
}

.ec-portion-calc__inner {
	width: min(100%, var(--ec-home-max));
	margin: 0 auto;
	display: grid;
	gap: clamp(28px, 4vw, 40px);
}

.ec-portion-calc__intro {
	width: min(100%, 640px);
	margin: 0 auto;
	text-align: center;
}

.ec-portion-calc__intro h2 {
	margin: 0;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 600;
	color: var(--ec-ink-dark);
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.ec-portion-calc__sub {
	margin: 14px auto 0;
	max-width: 520px;
	font-size: clamp(15px, 1.4vw, 17px);
	line-height: 1.65;
	color: rgba(56, 61, 71, 0.72);
}

.ec-portion-calc .ec-kicker-pill {
	background: rgba(91, 170, 47, 0.12);
	color: var(--ec-green-dark);
	margin-bottom: 14px;
}

.ec-portion-calc__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 20px;
	align-items: stretch;
}

.ec-portion-calc__controls,
.ec-portion-calc__result {
	background: #fff;
	border: 1px solid rgba(56, 61, 71, 0.08);
	border-radius: 20px;
	padding: clamp(22px, 3vw, 28px);
	box-shadow: 0 10px 30px rgba(24, 26, 31, 0.04);
}

.ec-portion-calc__label {
	display: block;
	margin-bottom: var(--ec-label-gap);
	font-size: 15px;
	font-weight: var(--ec-label-weight);
	line-height: var(--ec-label-lh);
	color: var(--ec-label-color);
}

.ec-portion-calc__weight-row {
	display: grid;
	gap: 18px;
}

.ec-portion-calc__range {
	width: 100%;
	accent-color: var(--ec-green);
}

.ec-portion-calc__weight-input-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.ec-portion-calc__weight {
	width: 96px;
	border: 1px solid rgba(56, 61, 71, 0.12);
	border-radius: 999px;
	padding: 14px 16px;
	text-align: center;
	font-family: var(--ec-font);
	font-size: 22px;
	font-weight: 600;
	color: var(--ec-ink-dark);
	background: var(--ec-sand-soft);
	box-shadow: none;
	-moz-appearance: textfield;
	appearance: textfield;
}

.ec-portion-calc__weight::-webkit-outer-spin-button,
.ec-portion-calc__weight::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.ec-portion-calc__weight:focus {
	outline: none;
	border-color: var(--ec-green);
	background: #fff;
}

.ec-portion-calc__unit {
	font-size: 18px;
	font-weight: 600;
	color: var(--ec-green-dark);
}

.ec-portion-calc__hint {
	margin: 14px 0 0;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(56, 61, 71, 0.55);
	text-align: center;
}

.ec-portion-calc__result {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	background: #fff;
	border-color: rgba(91, 170, 47, 0.18);
	box-shadow: 0 12px 32px rgba(91, 170, 47, 0.08);
}

.ec-portion-calc__result-kicker {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--ec-green-dark);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.ec-portion-calc__result-amount {
	margin: 0 0 12px;
	font-size: clamp(36px, 5vw, 52px);
	font-weight: 600;
	line-height: 1;
	color: var(--ec-green);
}

.ec-portion-calc__result-note {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(56, 61, 71, 0.62);
}

.ec-portion-calc__packages {
	display: grid;
	gap: 8px;
}

.ec-portion-calc__package {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(56, 61, 71, 0.08);
	background: var(--ec-sand-soft);
	font-size: 13px;
}

.ec-portion-calc__package.is-recommended {
	background: #fff;
	border: 2px solid var(--ec-green);
	font-weight: 600;
	box-shadow: none;
}

.ec-portion-calc__package-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ec-ink-dark);
	text-align: left;
}

.ec-portion-calc__ideal {
	display: inline-flex;
	align-items: center;
	min-height: 20px;
	padding: 2px 8px;
	border-radius: 999px;
	background: rgba(91, 170, 47, 0.14);
	color: var(--ec-green-dark);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ec-portion-calc__package-meta {
	color: rgba(56, 61, 71, 0.65);
	white-space: nowrap;
}

@media (max-width: 768px) {
	.ec-portion-calc {
		padding: 48px var(--ec-home-pad) 56px;
	}

	.ec-portion-calc__panel {
		grid-template-columns: 1fr;
	}
}

.ec-ticker {
	background: var(--ec-green-deep);
	overflow: hidden;
	padding: 22px 0;
	display: flex;
}

.ec-ticker-group {
	display: flex;
	align-items: center;
	gap: 34px;
	padding-right: 34px;
	flex-shrink: 0;
	min-width: 100%;
	justify-content: space-around;
	animation: ec-ticker-scroll 26s linear infinite;
	will-change: transform;
}

.ec-ticker-group span {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

@keyframes ec-ticker-scroll {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-100%, 0, 0); }
}

.ec-compare-head {
	width: min(100%, 760px);
	margin: 0 auto clamp(28px, 4vw, 48px);
	text-align: center;
}

.ec-compare-head h2 {
	font-size: clamp(28px, 4.2vw, 46px);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.04em;
	margin: 0;
}

.ec-compare-head .ec-lines-sub {
	margin-left: auto;
	margin-right: auto;
}

.ec-compare-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 48px;
	align-items: center;
}

@media (max-width: 860px) {
	.ec-compare-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

.ec-compare {
	--pos: 92%;
	position: relative;
	isolation: isolate;
	aspect-ratio: 4 / 3;
	border-radius: var(--ec-radius);
	overflow: hidden;
	background: var(--ec-sand-soft);
	user-select: none;
	-webkit-user-select: none;
}

.ec-compare-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	display: block;
	margin: 0;
	pointer-events: none;
	border-radius: 0;
}

.ec-compare-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	overflow: hidden;
	clip-path: inset(0 calc(100% - var(--pos)) 0 0);
	will-change: clip-path;
	pointer-events: none;
}

.ec-compare-handle {
	position: absolute;
	z-index: 3;
	top: 0;
	bottom: 0;
	left: var(--pos);
	width: 2px;
	background: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.28);
	transform: translateX(-50%);
	will-change: left;
	pointer-events: none;
}

.ec-benefit {
	padding: 14px 0;
	border-bottom: 1px solid var(--ec-sand);
}

.ec-benefit:last-child {
	border-bottom: none;
}

.ec-benefit h3 {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--ec-green-dark);
	margin-bottom: 6px;
}

.ec-benefit p {
	font-size: 14px;
	line-height: 1.5;
	color: rgba(56, 61, 71, 0.75);
	margin: 0;
}

.ec-kicker {
	display: block;
	color: var(--ec-green);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.ec-kicker-pill {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 32px;
	padding: 7px 14px;
	border: 1px solid rgba(91, 170, 47, 0.22);
	border-radius: 999px;
	background: rgba(250, 244, 230, 0.8);
	color: var(--ec-green);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 auto 14px;
}

.ec-lines {
	padding: clamp(56px, 7vw, 104px) var(--ec-home-pad);
	margin-top: 32px;
	overflow: hidden;
}

.ec-lines-head {
	width: min(100%, 760px);
	margin: 0 auto clamp(32px, 4vw, 52px);
	text-align: center;
}

.ec-lines-head h2 {
	font-size: clamp(30px, 4.5vw, 50px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.04em;
	margin: 0;
}

.ec-lines-sub {
	width: min(100%, 640px);
	margin: 16px auto 0;
	color: rgba(56, 61, 71, 0.7);
	font-size: clamp(15px, 1.4vw, 17px);
	line-height: 1.65;
}

.ec-lines-grid {
	display: flex;
	align-items: stretch;
	gap: clamp(14px, 2vw, 20px);
	width: min(100%, var(--ec-home-max));
	margin: 0 auto;
}

.ec-line-card {
	--ec-card-accent: var(--ec-green);
	position: relative;
	isolation: isolate;
	display: block;
	flex: 1 1 0;
	min-width: 0;
	height: clamp(430px, 48vw, 560px);
	overflow: hidden;
	border-radius: 20px;
	background: var(--ec-ink);
	box-shadow: 0 12px 34px rgba(69, 75, 84, 0.1);
	color: #fff;
	text-decoration: none !important;
	transition: box-shadow 0.26s ease;
}

.ec-line-card--petiscos {
	--ec-card-accent: #eaaa17;
}

.ec-line-card--individualizada {
	--ec-card-accent: rgba(245, 230, 200, 0.8);
}

.ec-line-card:hover,
.ec-line-card:focus-visible {
	box-shadow: 0 16px 38px rgba(69, 75, 84, 0.14);
	color: #fff;
	outline: none;
}

.ec-line-card:focus-visible {
	box-shadow: 0 0 0 4px rgba(91, 170, 47, 0.22), 0 22px 48px rgba(69, 75, 84, 0.18);
}

.ec-line-img {
	position: absolute !important;
	z-index: 1;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	object-fit: cover;
	object-position: center;
	transform: scale(1.001);
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
	pointer-events: none;
}

.ec-line-card:hover .ec-line-img,
.ec-line-card:focus-visible .ec-line-img {
	transform: scale(1.025);
}

.ec-line-shade {
	position: absolute;
	z-index: 2;
	inset: 0;
	background: linear-gradient(to top, rgba(25, 30, 34, 0.88) 0%, rgba(25, 30, 34, 0.5) 38%, rgba(25, 30, 34, 0.07) 72%, rgba(25, 30, 34, 0.04) 100%);
	pointer-events: none;
}

.ec-line-content {
	position: absolute;
	z-index: 4;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: clamp(18px, 2.5vw, 28px);
	pointer-events: none;
}

.ec-line-tag {
	position: absolute;
	top: clamp(16px, 2vw, 22px);
	left: clamp(16px, 2vw, 22px);
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 7px 12px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	background: color-mix(in srgb, var(--ec-card-accent) 78%, transparent);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: lowercase;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
	-webkit-backdrop-filter: blur(9px);
	backdrop-filter: blur(9px);
}

.ec-line-copy {
	width: 100%;
}

.ec-line-copy h3 {
	max-width: 15ch;
	margin: 0;
	color: #fff;
	font-size: clamp(22px, 2.4vw, 32px);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.ec-line-copy h3 span {
	color: var(--ec-card-accent);
}

.ec-line-copy p {
	max-width: 34ch;
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(13px, 1.3vw, 15px);
	line-height: 1.55;
}

.ec-line-options {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 12px;
}

.ec-line-options > span {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 5px 9px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 10px;
	font-weight: 500;
	line-height: 1.15;
	text-transform: lowercase;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.ec-line-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	margin-top: 18px;
	padding: var(--ec-btn-padding);
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-transform: lowercase;
	transition: background 0.22s ease, border-color 0.22s ease;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.ec-line-card:hover .ec-line-cta,
.ec-line-card:focus-visible .ec-line-cta {
	border-color: var(--ec-card-accent);
	background: var(--ec-card-accent);
}

.ec-line-cta svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.22s ease;
}

.ec-line-card:hover .ec-line-cta svg,
.ec-line-card:focus-visible .ec-line-cta svg {
	transform: translateX(3px);
}

.ec-lines-hint {
	display: none;
}

@media (max-width: 767px) {
	.ec-lines {
		padding-left: 0;
		padding-right: 0;
	}

	.ec-lines-head {
		padding: 0 16px;
	}

	.ec-lines-grid {
		justify-content: flex-start;
		gap: 14px;
		width: 100%;
		padding: 0 16px 12px;
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		scroll-padding-inline: 16px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.ec-lines-grid::-webkit-scrollbar {
		display: none;
	}

	.ec-line-card {
		flex: 0 0 min(82vw, 330px);
		width: min(82vw, 330px);
		height: min(125vw, 500px);
		min-height: 440px;
		scroll-snap-align: center;
	}

	.ec-line-copy h3 {
		font-size: 24px;
	}

	.ec-line-copy p {
		font-size: 14px;
	}

	.ec-lines-hint {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		margin: 12px 0 0;
		padding: 0 16px;
		color: rgba(56, 61, 71, 0.56);
		font-size: 12px;
		line-height: 1;
		text-transform: lowercase;
	}

	.ec-lines-hint svg {
		width: 16px;
		height: 16px;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.6;
		stroke-linecap: round;
		stroke-linejoin: round;
	}
}

.ec-bento-section {
	padding-left: var(--ec-home-pad);
	padding-right: var(--ec-home-pad);
}

.ec-bento {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto auto;
	gap: 20px;
	width: min(100%, var(--ec-home-max));
	margin: 0 auto;
}

.ec-bento-card {
	border-radius: 28px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 1px 2px rgba(10, 20, 15, 0.05);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ec-bento-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(10, 20, 15, 0.14);
}

.ec-bento-card h3 {
	font-weight: 600;
	font-size: 19px;
	line-height: 1.22;
	margin: 0 0 12px;
}

.ec-bento-card p {
	font-size: 14.5px;
	line-height: 1.6;
	margin: 0;
}

.ec-bento-icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	flex-shrink: 0;
}

.ec-bento-icon svg {
	width: 22px;
	height: 22px;
}

.ec-bento-hero {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
	position: relative;
	isolation: isolate;
	min-height: 460px;
	overflow: hidden;
	padding: 0;
}

.ec-bento-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	margin: 0;
	object-fit: cover;
	z-index: 0;
}

.ec-bento-clinico {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
	background: #fff;
	border: 1px solid rgba(56, 61, 71, 0.07);
}

.ec-bento-clinico .ec-bento-icon {
	background: rgba(91, 170, 47, 0.12);
	color: var(--ec-green);
}

.ec-bento-clinico h3 {
	color: var(--ec-ink);
}

.ec-bento-clinico p {
	color: rgba(56, 61, 71, 0.72);
}

.ec-bento-recompensa {
	grid-column: 4 / 5;
	grid-row: 1 / 2;
	background: var(--ec-green-dark);
	color: #fff;
}

.ec-bento-recompensa .ec-bento-icon {
	background: rgba(183, 217, 67, 0.18);
	color: var(--ec-green-light);
}

.ec-bento-recompensa .ec-kicker {
	color: var(--ec-green-light);
}

.ec-bento-recompensa h3 {
	color: var(--ec-sand-soft);
}

.ec-bento-recompensa p {
	color: rgba(255, 255, 255, 0.8);
}

.ec-bento-impacto {
	grid-column: 3 / 5;
	grid-row: 2 / 3;
	background: var(--ec-green-light);
	color: var(--ec-ink);
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.ec-bento-impacto-copy {
	max-width: 100%;
}

.ec-bento-impacto .ec-bento-icon {
	background: rgba(56, 61, 71, 0.1);
	color: var(--ec-ink);
}

.ec-bento-impacto .ec-kicker {
	color: var(--ec-green-dark);
}

.ec-bento-impacto h3 {
	font-size: 21px;
	color: var(--ec-green-dark);
}

.ec-bento-impacto p {
	color: rgba(56, 61, 71, 0.85);
}

@media (max-width: 860px) {
	.ec-bento {
		grid-template-columns: 1fr;
	}

	.ec-bento-hero,
	.ec-bento-clinico,
	.ec-bento-recompensa,
	.ec-bento-impacto {
		grid-column: 1 / 2;
		grid-row: auto;
	}

	.ec-bento-hero {
		min-height: 380px;
	}
}

.ec-backstage {
	background: var(--ec-green-deep);
	margin-top: 56px;
	padding: clamp(56px, 7vw, 88px) var(--ec-home-pad);
}

.ec-backstage-inner {
	width: min(100%, var(--ec-home-max));
	margin: 0 auto;
}

.ec-backstage-head {
	width: min(100%, 640px);
	margin: 0 auto clamp(28px, 4vw, 40px);
	text-align: center;
}

.ec-backstage-head .ec-kicker {
	color: var(--ec-green-light);
	margin-bottom: 10px;
}

.ec-backstage-head h2 {
	color: #fff;
	font-size: clamp(28px, 4.2vw, 44px);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.03em;
	margin: 0;
}

.ec-backstage-sub {
	margin: 14px 0 0;
	color: rgba(245, 230, 200, 0.72);
	font-size: clamp(15px, 1.4vw, 17px);
	line-height: 1.6;
}

.ec-backstage-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(12px, 1.6vw, 18px);
}

@media (max-width: 860px) {
	.ec-backstage-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

.ec-video-card {
	margin: 0;
	position: relative;
	isolation: isolate;
	border-radius: 18px;
	overflow: hidden;
	background: #000;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.ec-video-card video {
	width: 100%;
	aspect-ratio: 9 / 16;
	object-fit: cover;
	display: block;
}

.ec-video-card::after {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		to top,
		rgba(24, 26, 31, 0.92) 0%,
		rgba(24, 26, 31, 0.55) 28%,
		rgba(24, 26, 31, 0.12) 52%,
		transparent 72%
	);
}

.ec-video-card figcaption {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 18px 14px 14px;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.ec-video-kicker {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ec-green-light);
}

.ec-video-card figcaption strong {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
}

.ec-video-card figcaption a {
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	margin-top: 2px;
}

.ec-video-card figcaption a:hover {
	color: #fff;
}

.ec-faq.ec-section {
	padding-top: 56px;
	padding-bottom: 0;
	margin-bottom: 0;
}

.ec-faq {
	max-width: min(100%, 760px);
	margin-left: auto;
	margin-right: auto;
}

.ec-faq-head {
	width: min(100%, 640px);
	margin: 0 auto 28px;
	text-align: center;
}

.ec-faq-head h2 {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.03em;
	margin: 0;
}

.ec-faq-head .ec-lines-sub {
	margin-left: auto;
	margin-right: auto;
}

.ec-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ec-faq-list details {
	background: #fff;
	border: 1px solid rgba(56, 61, 71, 0.08);
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(10, 20, 15, 0.04);
	overflow: hidden;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.ec-faq-list details[open] {
	border-color: rgba(91, 170, 47, 0.22);
	box-shadow: 0 8px 24px rgba(10, 20, 15, 0.06);
}

.ec-faq-list summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 52px 18px 20px;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.4;
	color: var(--ec-ink-dark);
	position: relative;
	transition: color 0.2s ease;
}

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

.ec-faq-list summary::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	color: var(--ec-green);
	transition: transform 0.25s ease, color 0.2s ease;
}

.ec-faq-list details[open] summary {
	color: var(--ec-green-dark);
}

.ec-faq-list details[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.ec-faq-list details p {
	padding: 0 52px 18px 20px;
	margin: 0;
	font-size: 14px;
	color: rgba(56, 61, 71, 0.75);
	line-height: 1.7;
}

.ec-cta-find {
	--ec-cta-find-image: url("../img/onde-encontrar-banner.webp");
	position: relative;
	isolation: isolate;
	display: block;
	box-sizing: border-box;
	width: auto;
	max-width: none;
	margin: 56px 0 0;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: clamp(72px, 10vw, 120px) var(--ec-home-pad);
	text-align: center;
	color: #fff;
	background-color: #000;
	background-image: var(--ec-cta-find-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.ec-cta-find::before {
	content: "";
	position: absolute;
	z-index: 0;
	inset: 0;
	background: rgba(0, 0, 0, 0.72) !important;
	pointer-events: none;
}

.ec-cta-find__inner {
	position: relative;
	z-index: 1;
	width: min(100%, 640px);
	margin: 0 auto;
}

.ec-cta-find .ec-kicker {
	color: var(--ec-green-light);
	margin-bottom: 12px;
}

.ec-cta-find h2 {
	margin: 0;
	font-size: clamp(28px, 4.4vw, 44px);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: #fff;
}

.ec-cta-find p {
	margin: 14px auto 0;
	max-width: 480px;
	font-size: clamp(15px, 1.4vw, 17px);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
}

.ec-cta-find__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 26px;
}

.ec-cta-find .ec-btn {
	background: var(--ec-green) !important;
	color: #fff !important;
	border: none !important;
	box-shadow: none !important;
}

.ec-cta-find .ec-btn:hover {
	background: var(--ec-green-light) !important;
	color: var(--ec-green-dark) !important;
}

.ec-cta-find__secondary.ec-btn-outline {
	background: rgba(255, 255, 255, 0.14) !important;
	color: #fff !important;
	border: none !important;
	box-shadow: none !important;
}

.ec-cta-find__secondary.ec-btn-outline:hover {
	background: rgba(255, 255, 255, 0.24) !important;
	color: #fff !important;
	border: none !important;
}

/* Faixa emendada no rodape: o fundo sangra ate as bordas, mas o link
   continua alinhado na regua de --ec-rail-max, como o resto da pagina. */
.ec-back-top {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	max-width: none;
	padding-top: 24px;
	padding-bottom: 24px;
	padding-inline: max(var(--ec-rail-pad), calc((100% - var(--ec-rail-max)) / 2));
	background: var(--ec-green-deep);
}

.ec-back-top__link {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.4;
}

.ec-back-top__link:hover {
	color: var(--ec-green-light);
}

.ec-cta {
	text-align: center;
	padding-bottom: 40px;
}

.ec-page .ec-wrap {

	box-sizing: border-box;
}

.ec-page-hero .ec-wrap {
	padding-top: 23px;
	padding-bottom: 23px;
}

.ec-page-hero h1 {
	font-size: clamp(28px, 3.6vw, 38px);
	margin: 0;
}

.ec-page-hero p {
	margin: 8px 0 0;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(56, 61, 71, 0.65);
}

.ec-page .ec-kicker:not(.ec-kicker-pill) {
	text-align: center;
}

.ec-page .ec-page-pills {
	justify-content: center;
}

.ec-page .ec-partners-lead,
.ec-page .ec-vets-lead,
.ec-page .ec-careers-lead,
.ec-page .ec-about-body p,
.ec-page .ec-partners-card p,
.ec-page .ec-vets-card p,
.ec-page .ec-vets-pillar p,
.ec-page .ec-partners-steps-list strong,
.ec-page .ec-partners-steps-list span,
.ec-page .ec-partners-cta > p,
.ec-page .ec-vets-cta > p,
.ec-page .ec-page-content {
	font-size: 1rem;
	line-height: 1.65;
}

.ec-narrow {
	max-width: 100%;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.ec-wrap.ec-narrow {
	max-width: var(--ec-rail-max);
}

.ec-page-content p {
	margin-bottom: 1.1em;
}

.ec-page--prose .ec-page-content {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(56, 61, 71, 0.88);
	max-width: none;
	width: 100%;
}

.ec-page--prose .ec-page-content p:last-child {
	margin-bottom: 0;
}

.ec-404-hero {
	max-width: 640px;
	margin: 0 auto;
	padding: 8px var(--ec-rail-pad) 48px;
	text-align: center;
}

.ec-404-code {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ec-green);
}

.ec-404-hero h1 {
	font-size: clamp(28px, 3.6vw, 38px);
	margin: 0 0 12px;
}

.ec-404-lead {
	margin: 0 0 28px;
	color: rgba(56, 61, 71, 0.65);
	font-size: 16px;
	line-height: 1.6;
}

.ec-404-search {
	margin-bottom: 24px;
}

.ec-404-search .woocommerce-product-search,
.ec-404-search form.search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	max-width: 520px;
	margin: 0 auto;
}

.ec-404-search .search-field,
.ec-404-search input[type="search"] {
	flex: 1 1 220px;
	min-width: 0;
	border: 1px solid var(--ec-sand);
	border-radius: 999px;
	padding: var(--ec-field-padding);
	font-family: var(--ec-font);
	font-size: 14px;
	color: var(--ec-ink);
	background: #fff;
}

.ec-404-search button,
.ec-404-search input[type="submit"] {
	flex: 0 0 auto;
	border: none;
	border-radius: 999px;
	padding: var(--ec-btn-padding);
	font-family: var(--ec-font);
	font-size: 14px;
	font-weight: 600;
	background: var(--ec-green);
	color: #fff !important;
	cursor: pointer;
}

.ec-404-search button:hover,
.ec-404-search input[type="submit"]:hover {
	background: var(--ec-green-dark);
}

.ec-404-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.ec-404-products {
	padding-top: 8px;
}

.ec-section-head--center {
	justify-content: center;
	text-align: center;
}

.ec-section-head--center p {
	margin-left: auto;
	margin-right: auto;
}

.ec-404-page .widget-area,
.ec-404-page #secondary {
	display: none !important;
}

.ec-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 900px) {
	.ec-contact-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.ec-contact-grid {
		grid-template-columns: 1fr;
	}
}

.ec-contact-card {
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	padding: 26px;
}

.ec-contact-card h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--ec-green-dark);
	margin: 0 0 8px;
}

.ec-contact-card p {
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(56, 61, 71, 0.75);
	margin: 0;
}

.ec-partners .ec-page-hero .ec-kicker-pill,
.ec-vets .ec-page-hero .ec-kicker-pill,
.ec-careers .ec-page-hero .ec-kicker-pill,
.ec-about .ec-page-hero .ec-kicker-pill {
	margin-bottom: 12px;
}

.ec-home .ec-backstage-head,
.ec-home .ec-faq-head {
	text-align: center;
}

.ec-home .ec-cta-find .ec-kicker {
	text-align: center;
}

.ec-vets-intro {
	padding-top: 8px;
	padding-bottom: 8px;
}

.ec-vets-pillars {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.ec-vets-pillar {
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	padding: 26px;
}

.ec-vets-pillar .ec-kicker {
	margin-bottom: 10px;
	text-align: left;
}

.ec-vets-pillar h3 {
	margin: 0 0 10px;
	font-size: 1.125rem;
	color: var(--ec-ink-dark);
}

.ec-vets-pillar p {
	margin: 0;
	color: rgba(56, 61, 71, 0.75);
}

.ec-vets-head {
	margin-bottom: 22px;
	text-align: center;
}

.ec-vets-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.ec-vets-card {
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	padding: 22px;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.ec-vets-card:hover {
	border-color: rgba(91, 170, 47, 0.45);
	transform: translateY(-2px);
}

.ec-vets-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
	color: var(--ec-green-dark);
}

.ec-vets-card p {
	margin: 0;
	color: rgba(56, 61, 71, 0.75);
}

.ec-vets-quality__inner {
	background: var(--ec-sand-soft);
	border-radius: var(--ec-radius);
	padding: clamp(28px, 4vw, 40px);
}

.ec-page-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

.ec-page-pills li {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 8px 14px;
	border: 1px solid rgba(91, 170, 47, 0.22);
	border-radius: 999px;
	background: rgba(250, 244, 230, 0.9);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--ec-green-dark);
}

.ec-vets-quality__inner .ec-page-pills {
	margin-top: 18px;
}

.ec-vets-quality__inner .ec-page-pills li {
	background: #fff;
}

.ec-vets-cta {
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	padding: clamp(28px, 4vw, 40px);
	text-align: center;
}

.ec-vets-cta h2 {
	margin: 0;
	font-size: clamp(22px, 2.8vw, 28px);
}

.ec-vets-cta > p {
	margin: 12px auto 0;
	max-width: 540px;
	color: rgba(56, 61, 71, 0.75);
}

.ec-vets-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
}

@media (max-width: 900px) {
	.ec-vets-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 700px) {
	.ec-vets-pillars,
	.ec-vets-grid {
		grid-template-columns: 1fr;
	}
}

.ec-partners-intro {
	padding-top: 8px;
	padding-bottom: 8px;
}

.ec-partners-lead,
.ec-careers-lead,
.ec-vets-lead {
	margin: 0 0 20px;
	max-width: none;
	width: 100%;
	color: rgba(56, 61, 71, 0.82);
}

.ec-about-body {
	padding-top: 8px;
	padding-bottom: 8px;
}

.ec-about-body p {
	margin: 0 0 1.15em;
	max-width: none;
	width: 100%;
	color: rgba(56, 61, 71, 0.82);
}

.ec-about-body p:last-child {
	margin-bottom: 0;
}

.ec-about-cta {
	text-align: center;
	padding: 8px 0 16px;
}

.ec-about-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.ec-partners-head {
	margin-bottom: 22px;
	text-align: center;
}

.ec-partners-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.ec-partners-card {
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	padding: 24px;
}

.ec-partners-card h3 {
	margin: 0 0 10px;
	font-size: 17px;
	color: var(--ec-green-dark);
}

.ec-partners-card p {
	margin: 0;
	color: rgba(56, 61, 71, 0.75);
}

.ec-partners-steps-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 14px;
	counter-reset: ec-partner-step;
}

.ec-partners-steps-list li {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	column-gap: 16px;
	row-gap: 4px;
	align-items: start;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	counter-increment: ec-partner-step;
}

.ec-partners-steps-list li::before {
	content: counter(ec-partner-step);
	grid-column: 1;
	grid-row: 1 / span 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--ec-sand-soft);
	color: var(--ec-green-dark);
	font-size: 15px;
	font-weight: 600;
}

.ec-partners-steps-list strong {
	grid-column: 2;
	display: block;
	margin: 2px 0 0;
	font-weight: 600;
	color: var(--ec-ink-dark);
}

.ec-partners-steps-list span {
	grid-column: 2;
	display: block;
	min-width: 0;
	color: rgba(56, 61, 71, 0.72);
}

.ec-partners-cta {
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	padding: clamp(28px, 4vw, 40px);
	text-align: center;
}

.ec-partners-cta h2 {
	margin: 0;
	font-size: clamp(22px, 2.8vw, 28px);
}

.ec-partners-cta > p {
	margin: 12px auto 0;
	max-width: 520px;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(56, 61, 71, 0.75);
}

.ec-partners-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
}

.ec-partners-cta__note {
	margin: 18px 0 0 !important;
	font-size: 13px !important;
	color: rgba(56, 61, 71, 0.55) !important;
}

.ec-partners-cta__note a {
	color: var(--ec-green-dark);
	font-weight: 600;
}

@media (max-width: 860px) {
	.ec-partners-grid {
		grid-template-columns: 1fr;
	}
}

.ec-careers-intro {
	padding-top: 8px;
	padding-bottom: 8px;
}

.ec-careers-form-section {
	padding-top: 12px;
}

.ec-careers-card {
	background: #fff;
	border: 1px solid rgba(56, 61, 71, 0.08);
	border-radius: 20px;
	padding: clamp(22px, 3vw, 32px);
	box-shadow: 0 10px 30px rgba(24, 26, 31, 0.04);
}

.ec-careers-card h2 {
	margin: 0 0 6px;
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 600;
	letter-spacing: -0.02em;
}

.ec-careers-card__sub {
	margin: 0 0 24px;
	font-size: 14px;
	color: rgba(56, 61, 71, 0.6);
}

.ec-careers-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.ec-careers-message {
	margin: 0 0 16px;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.45;
}

.ec-careers-message.is-error {
	background: #fdf0ee;
	color: #9b2c1f;
}

.ec-careers-message.is-success {
	background: var(--ec-sand-soft);
	color: var(--ec-green-dark);
}

.ec-careers-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 18px;
}

.ec-careers-field--full {
	grid-column: 1 / -1;
}

.ec-careers-field label {
	display: block;
	margin-bottom: var(--ec-label-gap);
	font-size: var(--ec-label-size);
	font-weight: var(--ec-label-weight);
	line-height: var(--ec-label-lh);
	color: var(--ec-label-color);
}

.ec-careers-optional {
	font-weight: 400;
	color: rgba(56, 61, 71, 0.5);
}

.ec-careers-field input[type="text"],
.ec-careers-field input[type="email"],
.ec-careers-field input[type="tel"],
.ec-careers-field input[type="url"],
.ec-careers-field select,
.ec-careers-field textarea {
	width: 100%;
	border: 1px solid rgba(56, 61, 71, 0.12);
	border-radius: 12px;
	padding: var(--ec-field-padding);
	font-family: var(--ec-font);
	font-size: 14px;
	color: var(--ec-ink);
	background: #fff;
	box-shadow: none;
}

.ec-careers-field select {
	padding-right: 46px;
}

.ec-careers-field textarea {
	resize: vertical;
	min-height: 120px;
}

.ec-careers-field input[type="file"] {
	width: 100%;
	font-size: 13px;
}

.ec-careers-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 400 !important;
	font-size: 13px !important;
	line-height: 1.5;
	color: rgba(56, 61, 71, 0.78);
	cursor: pointer;
}

.ec-careers-check input {
	margin-top: 3px;
	flex: 0 0 auto;
}

.ec-careers-check a {
	color: var(--ec-green-dark);
	text-decoration: underline;
}

.ec-careers-actions {
	margin-top: 22px;
}

.ec-careers-actions .ec-btn[disabled] {
	opacity: 0.7;
	cursor: wait;
}

@media (max-width: 640px) {
	.ec-careers-grid {
		grid-template-columns: 1fr;
	}
}

.ec-stores-section {
	padding-top: 40px;
}

.ec-stores-filters {
	background: var(--ec-sand-soft);
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	padding: 24px;
	margin-bottom: 32px;
}

.ec-stores-filters__row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

@media (max-width: 768px) {
	.ec-stores-filters__row {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}

.ec-stores-filter label {
	display: block;
	margin-bottom: var(--ec-label-gap);
	font-size: var(--ec-label-size);
	font-weight: var(--ec-label-weight);
	line-height: var(--ec-label-lh);
	color: var(--ec-label-color);
}

.ec-stores-select {
	width: 100%;
	border-radius: 12px;
	padding: var(--ec-field-padding);
	padding-right: 46px;
	background-position: right 16px center;
}

.ec-stores-clear {
	margin-top: 18px;
	padding: var(--ec-btn-padding);
	border: none;
	border-radius: 999px;
	background: var(--ec-ink);
	color: #fff;
	font-family: var(--ec-font);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.ec-stores-clear:hover {
	background: var(--ec-ink-dark);
}

.ec-stores-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

@media (max-width: 960px) {
	.ec-stores-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.ec-stores-grid {
		grid-template-columns: 1fr;
	}
}

.ec-store-card {
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	padding: 22px 22px 20px;
	box-shadow: 0 10px 28px rgba(24, 26, 31, 0.06);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.ec-store-card.is-hidden {
	display: none;
}

.ec-store-card__head {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
}

.ec-store-card__pin {
	flex: 0 0 24px;
	color: var(--ec-green);
	margin-top: 2px;
}

.ec-store-card__pin svg {
	display: block;
}

.ec-store-card__name {
	margin: 0;
	font-size: 17px;
	font-weight: 600;
	color: var(--ec-green-dark);
	line-height: 1.35;
}

.ec-store-card__address {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-style: normal;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(56, 61, 71, 0.78);
}

.ec-stores-empty {
	margin: 8px 0 0;
	padding: 28px;
	text-align: center;
	font-size: 15px;
	color: rgba(56, 61, 71, 0.65);
	background: var(--ec-sand-soft);
	border-radius: var(--ec-radius);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea,
.woocommerce-EditAccountForm input.input-text,
form.woocommerce-form input[type="text"],
form.woocommerce-form input[type="email"],
form.woocommerce-form input[type="password"],
form.woocommerce-form input[type="tel"] {
	width: 100%;
	border: 1px solid var(--ec-sand);
	border-radius: 12px;
	padding: var(--ec-field-padding);
	font-family: var(--ec-font);
	font-size: 14px;
	color: var(--ec-ink);
	background: #fff;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
form.woocommerce-form input:focus,
.single-product .ec-shipping-cep:focus,
input:focus,
textarea:focus {
	outline: none;
	border-color: var(--ec-green);
	box-shadow: none;
}

.woocommerce form .form-row label {
	font-size: var(--ec-label-size);
	font-weight: var(--ec-label-weight);
	line-height: var(--ec-label-lh);
	color: var(--ec-label-color);
}

/* O rotulo de checkbox fica ao lado do controle, nao acima: sem margem embaixo. */
.woocommerce form .form-row label:not(.woocommerce-form__label-for-checkbox):not(.checkbox):not(.inline) {
	display: block;
	margin-bottom: var(--ec-label-gap);
}

.woocommerce form .form-row .required {
	color: var(--ec-green);
	text-decoration: none;
}

body.ec-site .woocommerce-notices-wrapper,
body.ec-site .woocommerce-message,
body.ec-site .woocommerce-info,
body.ec-site ul.woocommerce-error {
	display: none !important;
}

.ec-site-notices {
	max-width: var(--ec-content-max, 1180px);
	margin: 0 auto 16px;
	padding: 0 16px;
}

.ec-site-notice,
.ec-form-notice {
	margin: 0 0 12px;
	padding: 12px 16px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.45;
}

.ec-site-notice.is-error,
.ec-form-notice.is-error {
	background: #fdf0ee;
	color: #9b2c1f;
}

.ec-site-notice.is-success,
.ec-site-notice.is-notice {
	background: var(--ec-sand-soft);
	color: var(--ec-ink-dark);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews {
	border-top: none !important;
	border-radius: 14px;
	background: var(--ec-sand-soft) !important;
	color: var(--ec-ink) !important;
	padding: 16px 20px 16px 52px !important;
	font-size: 14px;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error li::before {
	color: var(--ec-green);
	top: 16px;
	left: 20px;
}

.woocommerce-error {
	background: #fdf0ee !important;
}

.woocommerce-error li::before {
	color: #c0392b;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
	margin-top: -0.35em;
}

.woocommerce-cart h1.entry-title,
.woocommerce-checkout h1.entry-title,
.woocommerce-account h1.entry-title {
	font-size: clamp(26px, 3.4vw, 34px);
	margin-bottom: 0.8em;
}

.woocommerce-cart table.shop_table {
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	overflow: hidden;
	border-collapse: separate;
	border-spacing: 0;
}

.woocommerce-cart table.shop_table th {
	background: var(--ec-sand-soft);
	color: var(--ec-ink-dark);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 14px 16px;
}

.woocommerce-cart table.shop_table td {
	padding: 16px;
	border-top: 1px solid var(--ec-sand-soft);
	background: #fff;
	vertical-align: middle;
}

.woocommerce-cart table.cart img {
	width: 72px;
	border-radius: 12px;
	background: var(--ec-sand-soft);
}

.woocommerce-cart table.cart td.product-name a {
	color: var(--ec-ink-dark);
	font-weight: 600;
	text-decoration: none;
}

.woocommerce-cart table.cart td.product-name a:hover {
	color: var(--ec-green-dark);
}

.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal {
	color: var(--ec-green-dark);
	font-weight: 600;
}

.woocommerce-cart table.cart a.remove {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-size: 0 !important;
	line-height: 0;
	text-decoration: none !important;
	text-indent: 0 !important;
	color: rgba(56, 61, 71, 0.55) !important;
	background: var(--ec-sand-soft);
	transition: background 0.2s ease, color 0.2s ease;
}

.woocommerce-cart table.cart a.remove svg {
	display: block;
	width: 18px;
	height: 18px;
	stroke: currentColor;
}

.woocommerce-cart table.cart a.remove:hover {
	color: #fff !important;
	background: #c0392b;
}

.woocommerce-cart table.cart a.remove:hover svg {
	stroke: #fff;
}

.woocommerce .quantity:not(.ec-qty-stepper) .qty {
	width: 88px;
	border: 1px solid var(--ec-sand);
	border-radius: 999px;
	padding: var(--ec-input-padding);
	text-align: center;
	font-family: var(--ec-font);
	font-size: 14px;
	background: #fff;
}

.woocommerce .quantity:not(.ec-qty-stepper) .qty:focus {
	outline: none;
	border-color: var(--ec-green);
	box-shadow: none;
}

.woocommerce-cart table.cart td.actions {
	padding: 16px;
}

.woocommerce-cart table.cart td.actions .coupon {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	min-width: 0;
	max-width: 100%;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
	flex: 1 1 160px;
	width: auto;
	min-width: 0;
	max-width: 100%;
	border: 1px solid var(--ec-sand);
	border-radius: 999px;
	padding: var(--ec-field-padding);
	font-family: var(--ec-font);
	font-size: 14px;
}

.woocommerce-cart table.cart td.actions .coupon .button {
	flex: 0 0 auto;
}

.cart-collaterals .cart_totals {
	width: 100%;
	max-width: 420px;
	float: none;
	margin-left: auto;
	background: var(--ec-sand-soft);
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	padding: 24px 26px 26px;
}

.cart-collaterals .cross-sells {
	width: 100%;
	float: none;
	margin: 0 0 32px;
}

.cart-collaterals .cart_totals h2 {
	font-size: 19px;
	margin: 0 0 12px;
}

.cart-collaterals .cart_totals table.shop_table {
	border: none;
	background: transparent;
	margin: 0 0 14px;
}

.cart-collaterals .cart_totals table.shop_table th,
.cart-collaterals .cart_totals table.shop_table td {
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--ec-sand);
	padding: 12px 0;
	font-size: 14px;
}

.cart-collaterals .cart_totals .order-total .amount {
	color: var(--ec-green-dark);
	font-size: 18px;
	font-weight: 600;
}

.wc-proceed-to-checkout {
	padding: 0 !important;
}

.wc-proceed-to-checkout a.checkout-button {
	display: block;
	text-align: center;
	font-size: 15px !important;
	padding: var(--ec-btn-padding) !important;
	margin: 0 !important;
}

.cart-empty.woocommerce-info,
.woocommerce-info.cart-empty {
	text-align: center;
	padding: 40px 24px 32px !important;
	margin: 0 0 28px !important;
	background: var(--ec-sand-soft) !important;
	border: 1px dashed color-mix(in srgb, var(--ec-sand, #f5e6c8) 88%, var(--ec-ink, #383d47) 6%) !important;
	border-radius: var(--ec-radius) !important;
	color: var(--ec-ink-dark) !important;
	font-family: var(--ec-font) !important;
	font-size: 17px !important;
	font-weight: 600 !important;
	box-shadow: none !important;
}

.cart-empty.woocommerce-info::before,
.woocommerce-info.cart-empty::before {
	display: none !important;
}

.return-to-shop {
	text-align: center;
	margin: 0 0 36px;
}

.return-to-shop .button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: var(--ec-btn-padding) !important;
	border-radius: 999px !important;
	background: var(--ec-green-dark) !important;
	color: #fff !important;
	font-family: var(--ec-font) !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	border: none !important;
}

.return-to-shop .button:hover {
	background: var(--ec-green) !important;
	color: #fff !important;
}

.woocommerce-cart .ec-cart-shipping-note {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(56, 61, 71, 0.72);
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout .woocommerce-contact-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper,
.woocommerce-account .woocommerce-address-fields__field-wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--ec-field-gap);
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > .form-row-wide,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper > .form-row-wide,
.woocommerce-checkout .woocommerce-contact-fields__field-wrapper > .form-row-wide,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper > .form-row-wide,
.woocommerce-account .woocommerce-address-fields__field-wrapper > .form-row-wide {
	grid-column: 1 / -1;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-contact-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper .form-row,
.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row {
	width: 100% !important;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-contact-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-form-login .form-row,
.woocommerce-checkout .woocommerce-form-coupon .form-row,
.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row,
.woocommerce-account .woocommerce-EditAccountForm .form-row,
.woocommerce-account .woocommerce-EditAccountForm .ec-account-password .form-row {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--ec-label-gap);
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row > label,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row > label,
.woocommerce-checkout .woocommerce-contact-fields__field-wrapper .form-row > label,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper .form-row > label,
.woocommerce-checkout .woocommerce-form-login .form-row > label,
.woocommerce-checkout .woocommerce-form-coupon .form-row > label,
.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row > label,
.woocommerce-account .woocommerce-EditAccountForm .form-row > label {
	position: static !important;
	inset: auto !important;
	transform: none !important;
	scale: none !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: var(--ec-label-size) !important;
	font-weight: var(--ec-label-weight);
	line-height: var(--ec-label-lh) !important;
	color: var(--ec-label-color);
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper,
.woocommerce-checkout .woocommerce-contact-fields__field-wrapper .form-row .woocommerce-input-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper,
.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row .woocommerce-input-wrapper {
	display: block;
	width: 100%;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row input.input-text,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row input.input-text,
.woocommerce-checkout .woocommerce-contact-fields__field-wrapper .form-row input.input-text,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper .form-row input.input-text,
.woocommerce-checkout .woocommerce-form-login .form-row input.input-text,
.woocommerce-checkout .woocommerce-form-coupon .form-row input.input-text,
.woocommerce-checkout #coupon_code,
.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row input.input-text,
.woocommerce-account .woocommerce-EditAccountForm .form-row input.input-text {
	/* O padding vem do normalizador global; repetir aqui, com peso maior e em
	   shorthand, so servia para zerar a folga do olho da senha. */
	min-height: var(--ec-checkout-input-min-height);
	line-height: 1.35;
	border-radius: 12px !important;
	box-sizing: border-box;
}

/* Aviso de CEP nao encontrado, logo abaixo do campo. Ocupa a linha inteira
   para nao brigar com o grid de duas colunas do endereco. */
.ec-cep-aviso {
	grid-column: 1 / -1;
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.4;
	color: #9b2c1f;
}

/* Select do checkout: mesma caixa dos demais, com a folga da seta preservada. */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row select,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row select,
.woocommerce-checkout .woocommerce-contact-fields__field-wrapper .form-row select,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper .form-row select,
.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row select {
	padding: 0 46px 0 var(--ec-field-px) !important;
	min-height: var(--ec-checkout-input-min-height);
	line-height: 1.35;
	border-radius: 12px !important;
	box-sizing: border-box;
}

/* Textarea fica fora da altura fixa: cresce com o conteudo, mas com o mesmo
   respiro lateral dos demais campos. */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row textarea,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row textarea,
.woocommerce-checkout .woocommerce-contact-fields__field-wrapper .form-row textarea,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper .form-row textarea,
.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row textarea {
	padding: var(--ec-textarea-padding) !important;
	min-height: 96px;
	line-height: 1.35;
	border-radius: 12px !important;
	box-sizing: border-box;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row:has(> label:not(.screen-reader-text):not(.checkbox)) input.input-text::placeholder,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row:has(> label:not(.screen-reader-text):not(.checkbox)) input.input-text::placeholder,
.woocommerce-checkout .woocommerce-contact-fields__field-wrapper .form-row:has(> label:not(.screen-reader-text):not(.checkbox)) input.input-text::placeholder,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper .form-row:has(> label:not(.screen-reader-text):not(.checkbox)) input.input-text::placeholder,
.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row:has(> label:not(.screen-reader-text):not(.checkbox)) input.input-text::placeholder {
	color: transparent;
}

@media (max-width: 600px) {
	.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
	.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
	.woocommerce-checkout .woocommerce-contact-fields__field-wrapper,
	.woocommerce-checkout .woocommerce-additional-fields__field-wrapper,
	.woocommerce-account .woocommerce-address-fields__field-wrapper {
		grid-template-columns: 1fr;
	}
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-contact-fields,
.woocommerce-checkout .woocommerce-additional-fields {
	margin-bottom: var(--ec-section-gap);
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	margin-bottom: 0;
}

.woocommerce-checkout #payment {
	margin-top: var(--ec-section-gap);
}

.woocommerce-account .woocommerce-address-fields__field-wrapper .woocommerce-form-row,
.woocommerce-account form:not(.woocommerce-EditAccountForm) .form-row {
	margin-bottom: var(--ec-field-gap);
}

.woocommerce-account .woocommerce-address-fields__field-wrapper .woocommerce-form-row:last-child,
.woocommerce-account form:not(.woocommerce-EditAccountForm) .form-row:last-child {
	margin-bottom: 0;
}

@media (min-width: 993px) {
	.woocommerce-checkout form.checkout {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 420px;
		gap: 36px;
		align-items: start;
	}

	.woocommerce-checkout form.checkout #customer_details {
		grid-column: 1;
		width: 100%;
	}

	.woocommerce-checkout form.checkout #customer_details .col-1,
	.woocommerce-checkout form.checkout #customer_details .col-2 {
		float: none;
		width: 100%;
	}

	.woocommerce-checkout form.checkout #order_review_heading,
	.woocommerce-checkout form.checkout #order_review {
		grid-column: 2;
		width: 100% !important;
		float: none !important;
	}

	.woocommerce-checkout form.checkout #order_review {
		position: sticky;
		top: 170px;
	}
}

.woocommerce-checkout form.checkout h3 {
	font-size: 19px;
	margin: 0 0 16px;
}

#order_review_heading {
	margin-bottom: 0;
}

.woocommerce-checkout #order_review {
	background: var(--ec-sand-soft);
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	padding: 24px 26px 26px;
}

.woocommerce-checkout #order_review table.shop_table {
	border: none;
	background: transparent;
	margin-bottom: 16px;
}

.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--ec-sand);
	padding: 11px 0;
	font-size: 14px;
}

.woocommerce-checkout #order_review .order-total .amount {
	color: var(--ec-green-dark);
	font-size: 18px;
	font-weight: 600;
}

.woocommerce-checkout #payment {
	background: transparent;
	border-radius: 0;
}

.woocommerce-checkout #payment ul.payment_methods {
	border-bottom: 1px solid var(--ec-sand);
	padding: 0 0 14px;
}

.woocommerce-checkout #payment ul.payment_methods li {
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: 12px;
	padding: 12px 14px;
	margin-bottom: 8px;
}

.woocommerce-checkout #payment div.payment_box {
	background: var(--ec-sand-soft);
	border-radius: 10px;
	font-size: 13px;
}

.woocommerce-checkout #payment div.payment_box::before {
	display: none;
}

.woocommerce-checkout #payment #place_order {
	display: block;
	width: 100%;
	font-size: 15px;
	padding: var(--ec-btn-padding);
	margin-top: 14px;
}

.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .woocommerce-form-coupon {
	border: 1px solid var(--ec-sand) !important;
	border-radius: var(--ec-radius);
	background: #fff;
	padding: 22px !important;
}

.ec-delivery-schedule {
	margin-top: 8px;
	padding: 22px;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	background: var(--ec-sand-soft);
}

.ec-delivery-schedule.is-hidden-pickup,
.ec-delivery-schedule.is-hidden-no-shipping,
.ec-delivery-schedule[hidden] {
	display: none !important;
}

.ec-delivery-schedule__title {
	margin: 0 0 8px;
	font-size: 17px;
	color: var(--ec-ink-dark);
}

.ec-delivery-schedule__hint {
	margin: 0 0 16px;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(56, 61, 71, 0.72);
}

.ec-delivery-schedule__hint strong {
	color: var(--ec-green-dark);
}

.ec-delivery-schedule .ec-delivery-date-row select,
.ec-delivery-schedule .ec-delivery-date-select {
	width: 100%;
	max-width: 360px;
	border: 1px solid var(--ec-sand);
	border-radius: 12px;
	padding: var(--ec-checkout-py) var(--ec-checkout-px);
	min-height: var(--ec-checkout-input-min-height);
	font-family: var(--ec-font);
	font-size: 14px;
	background: #fff;
	box-sizing: border-box;
}

.ec-delivery-schedule .ec-delivery-date-row label {
	display: block;
	margin-bottom: var(--ec-label-gap);
	font-size: var(--ec-label-size);
	font-weight: var(--ec-label-weight);
	line-height: var(--ec-label-lh);
	color: var(--ec-label-color);
}

.ec-delivery-schedule__note {
	margin: 12px 0 0;
	padding: var(--ec-input-padding);
	border-radius: 12px;
	background: rgba(91, 170, 47, 0.12);
	color: var(--ec-green-dark);
	font-size: 13px;
	font-weight: 600;
}

.ec-order-delivery-note {
	margin: 16px 0 0;
	padding: var(--ec-input-padding);
	border-radius: 12px;
	background: var(--ec-sand-soft);
	font-size: 14px;
}

.woocommerce-order .woocommerce-thankyou-order-received {
	font-size: clamp(20px, 2.6vw, 26px);
	font-weight: 600;
	color: var(--ec-green-dark);
	margin-bottom: 20px;
}

.woocommerce-order ul.woocommerce-thankyou-order-details {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.woocommerce-order ul.woocommerce-thankyou-order-details li {
	flex: 1 1 150px;
	background: var(--ec-sand-soft);
	border: 1px solid var(--ec-sand);
	border-radius: 14px;
	padding: 14px 16px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgba(56, 61, 71, 0.65);
	margin: 0 !important;
	border-right: 1px solid var(--ec-sand) !important;
}

.woocommerce-order ul.woocommerce-thankyou-order-details li strong {
	display: block;
	margin-top: 4px;
	font-size: 15px;
	text-transform: none;
	letter-spacing: 0;
	color: var(--ec-ink-dark);
}

.ec-auth-page h1.entry-title {
	display: none;
}

.ec-auth-page .woocommerce > .woocommerce-notices-wrapper {
	max-width: 440px;
	margin: 0 auto 16px;
}

.ec-auth {
	max-width: 440px;
	margin: 0 auto 48px;
	padding: 32px 28px 28px;
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	box-shadow: 0 10px 30px rgba(24, 26, 31, 0.05);
	text-align: center;
}

.ec-auth-title {
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 600;
	color: var(--ec-ink-dark);
	margin: 0 0 8px;
	line-height: 1.2;
}

.ec-auth-subtitle {
	margin: 0 0 24px;
	font-size: 15px;
	color: rgba(56, 61, 71, 0.72);
}

.ec-auth-message {
	margin-bottom: 16px;
	padding: 12px 16px;
	border-radius: 12px;
	font-size: 14px;
	text-align: left;
}

.ec-auth-message.is-error {
	background: #fdf0ee;
	color: #9b2c1f;
}

.ec-auth-message.is-success {
	background: var(--ec-sand-soft);
	color: var(--ec-ink-dark);
}

.ec-auth-step[hidden] {
	display: none !important;
}

.ec-auth-google {
	margin-bottom: 20px;
}

.ec-auth-google .nsl-container,
.ec-auth-google .nsl-container-buttons {
	width: 100% !important;
	max-width: 100% !important;
}

.ec-auth-google a,
.ec-auth-google button {
	width: 100% !important;
	justify-content: center !important;
	border-radius: 999px !important;
	font-family: var(--ec-font) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	padding: var(--ec-btn-padding) !important;
	min-height: 0 !important;
}

.ec-auth-divider {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 20px;
	color: rgba(56, 61, 71, 0.45);
	font-size: 13px;
}

.ec-auth-divider::before,
.ec-auth-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--ec-sand);
}

.ec-auth-form {
	text-align: left;
}

.ec-auth-email-row {
	display: flex;
	gap: 10px;
	align-items: stretch;
}

.ec-auth-input {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--ec-sand);
	border-radius: 999px;
	padding: var(--ec-field-padding);
	font-family: var(--ec-font);
	font-size: 14px;
	color: var(--ec-ink);
	background: #fff;
}

.ec-auth-input:focus {
	outline: none;
	border-color: var(--ec-green);
}

.ec-auth-submit {
	flex-shrink: 0;
	border-radius: 999px;
	padding: var(--ec-btn-padding);
	white-space: nowrap;
}

.ec-auth-step--password .ec-auth-form {
	display: grid;
	gap: 12px;
}

.ec-auth-step--password .ec-auth-submit {
	width: 100%;
}

.ec-auth-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 18px 0 0;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(56, 61, 71, 0.82);
	cursor: pointer;
	text-align: left;
}

.ec-auth-checkbox input {
	margin-top: 3px;
	accent-color: var(--ec-green);
	flex-shrink: 0;
}

.ec-auth-legal {
	margin: 22px 0 0;
	font-size: 12px;
	line-height: 1.55;
	color: rgba(56, 61, 71, 0.58);
	text-align: center;
}

.ec-auth-legal a {
	color: var(--ec-green-dark);
}

.ec-auth-legal--center {
	margin-top: 28px;
}

.ec-auth-sent {
	margin: 0 0 28px;
	font-size: 14px;
	color: rgba(56, 61, 71, 0.72);
	line-height: 1.5;
}

.ec-auth-sent strong {
	color: var(--ec-ink-dark);
	font-weight: 600;
	word-break: break-all;
}

.ec-auth-change {
	display: inline;
	margin-left: 6px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--ec-green);
	font-family: var(--ec-font);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.ec-auth-otp {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 8px;
}

.ec-auth-otp__digit {
	width: 46px;
	height: 52px;
	border: 1px solid var(--ec-sand);
	border-radius: 12px;
	text-align: center;
	font-family: var(--ec-font);
	font-size: 22px;
	font-weight: 600;
	color: var(--ec-ink-dark);
	background: #fff;
	padding: 0;
}

.ec-auth-otp__digit:focus {
	outline: none;
	border-color: var(--ec-green);
	box-shadow: 0 0 0 2px rgba(91, 170, 47, 0.18);
}

.ec-auth-resend-wrap {
	margin: 18px 0 0;
	text-align: center;
}

.ec-auth-resend {
	padding: 0;
	border: 0;
	background: none;
	color: var(--ec-green-dark);
	font-family: var(--ec-font);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.ec-auth-resend:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

@media (max-width: 480px) {
	.ec-auth {
		padding: 24px 18px 22px;
	}

	.ec-auth-email-row {
		flex-direction: column;
	}

	.ec-auth-submit {
		width: 100%;
	}

	.ec-auth-otp {
		gap: 7px;
	}

	.ec-auth-otp__digit {
		width: 42px;
		height: 48px;
		font-size: 20px;
	}
}

.woocommerce-account:not(.logged-in) .woocommerce > h2 {
	max-width: 440px;
	margin: 0 auto 14px;
	font-size: 22px;
}

.woocommerce-account:not(.logged-in) form.woocommerce-form-login,
.woocommerce-account:not(.logged-in) form.woocommerce-form-register {
	max-width: 440px;
	margin: 0 auto 40px;
	background: #fff;
	border: 1px solid var(--ec-sand) !important;
	border-radius: var(--ec-radius) !important;
	padding: 28px !important;
	box-shadow: 0 10px 30px rgba(24, 26, 31, 0.05);
}

form.woocommerce-form-login .woocommerce-form-login__submit,
form.woocommerce-form-register .woocommerce-form-register__submit {
	display: block;
	width: 100%;
	margin-top: 6px;
}

form.woocommerce-form-login .woocommerce-form-login__rememberme {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 0 12px !important;
	font-size: 13px;
}

.woocommerce-LostPassword {
	font-size: 13px;
	text-align: center;
	margin-top: 14px !important;
}

.woocommerce-ResetPassword {
	max-width: 440px;
	margin: 0 auto;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	float: none;
	width: 100%;
	margin-bottom: 24px;
}

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

.woocommerce-account.logged-in .woocommerce-MyAccount-content {
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	padding: 28px 30px;
}

@media (max-width: 600px) {
	.woocommerce-account.logged-in .woocommerce-MyAccount-content {
		padding: 22px 18px;
	}
}

@media (min-width: 861px) {
	.woocommerce-account.logged-in .woocommerce {
		display: grid;
		grid-template-columns: 230px minmax(0, 1fr);
		gap: 36px;
		align-items: start;
	}

	.woocommerce-account.logged-in .woocommerce > .woocommerce-notices-wrapper,
	.woocommerce-account.logged-in .woocommerce > .woocommerce-message,
	.woocommerce-account.logged-in .woocommerce > .woocommerce-info,
	.woocommerce-account.logged-in .woocommerce > .woocommerce-error {
		grid-column: 1 / -1;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		margin-bottom: 0;
		position: sticky;
		top: 170px;
	}
}

.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 8px;
	background: var(--ec-sand-soft);
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	display: flex;
	flex-direction: column;
	gap: 4px;
}

@media (max-width: 860px) {
	.woocommerce-MyAccount-navigation ul {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

.woocommerce-MyAccount-navigation ul li {
	margin: 0;
	border: none !important;
}

.woocommerce-MyAccount-navigation ul li + li {
	border-top: none !important;
}

.woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 12px var(--ec-control-px) !important;
	border: none !important;
	border-radius: 10px;
	color: var(--ec-ink);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	box-shadow: none !important;
	transition: background 0.2s ease, color 0.2s ease;
}

.woocommerce-MyAccount-navigation ul li a::before {
	display: none !important;
	content: none !important;
}

.woocommerce-MyAccount-navigation ul li a:hover {
	background: #fff;
	color: var(--ec-green-dark);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
	background: var(--ec-green);
	color: #fff;
}

.woocommerce-MyAccount-content p {
	font-size: 14.5px;
}

.woocommerce-MyAccount-content .woocommerce-Button {
	margin-top: 0;
}

.woocommerce-account .woocommerce-address-fields > p {
	margin: var(--ec-field-gap) 0 0;
}

.woocommerce-account .woocommerce-address-fields > p:last-child {
	margin-bottom: 0;
}

.woocommerce-MyAccount-content table.woocommerce-orders-table {
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	overflow: hidden;
	border-collapse: separate;
	border-spacing: 0;
}

.woocommerce-MyAccount-content table.woocommerce-orders-table th {
	background: var(--ec-sand-soft);
	color: var(--ec-ink-dark);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 13px 16px;
}

.woocommerce-MyAccount-content table.woocommerce-orders-table td {
	padding: 14px 16px;
	border-top: 1px solid var(--ec-sand-soft);
	font-size: 14px;
	background: #fff;
}

.woocommerce-MyAccount-content table.woocommerce-orders-table .button {
	padding: var(--ec-btn-padding);
	font-size: 13px;
	margin-right: 6px;
}

.woocommerce-account .woocommerce-Addresses {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.woocommerce-account .woocommerce-Address {
	width: 100% !important;
	max-width: none !important;
	float: none !important;
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	padding: 22px 24px;
}

.woocommerce-account .woocommerce-Address-title h3 {
	font-size: 17px;
}

.woocommerce-account .woocommerce-Address address {
	font-style: normal;
	color: rgba(56, 61, 71, 0.75);
	font-size: 14px;
	line-height: 1.7;
}

.woocommerce-EditAccountForm {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--ec-field-gap);
}

.woocommerce-EditAccountForm .clear {
	display: none;
}

.woocommerce-EditAccountForm > .form-row,
.woocommerce-EditAccountForm > .woocommerce-form-row {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	margin: 0 !important;
}

@media (min-width: 640px) {
	.woocommerce-EditAccountForm {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce-EditAccountForm > .form-row-wide,
	.woocommerce-EditAccountForm > .ec-account-password,
	.woocommerce-EditAccountForm > .ec-account-form-actions {
		grid-column: 1 / -1;
	}
}

.ec-account-field-hint {
	display: block;
	margin-top: var(--ec-label-gap);
	font-size: 13px;
	line-height: 1.45;
	color: rgba(56, 61, 71, 0.62);
}

.ec-account-field-hint em {
	font-style: normal;
}

.ec-account-password {
	display: flex;
	flex-direction: column;
	gap: var(--ec-field-gap);
	margin-top: calc(var(--ec-field-gap) / 2);
	padding-top: var(--ec-field-gap);
	border-top: 1px solid var(--ec-sand);
}

.ec-account-password__title {
	margin: 0;
	font-size: 17px;
	font-weight: 600;
	color: var(--ec-ink-dark);
}

.ec-account-password .form-row,
.ec-account-password .woocommerce-form-row {
	margin: 0 !important;
}

.ec-account-form-actions {
	margin: 0;
}

.woocommerce-EditAccountForm .password-input {
	width: 100%;
}

.ec-account-empty {
	text-align: center;
	padding: 40px 24px 32px;
	background: var(--ec-sand-soft);
	border: 1px dashed color-mix(in srgb, var(--ec-sand, #f5e6c8) 88%, var(--ec-ink, #383d47) 6%);
	border-radius: var(--ec-radius);
}

.ec-account-empty__emoji {
	margin: 0 0 12px;
	font-size: 30px;
	line-height: 1;
	color: rgba(56, 61, 71, 0.42);
}

.ec-account-empty__title {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 600;
	color: var(--ec-ink-dark);
}

.ec-account-empty__text {
	max-width: 36ch;
	margin: 0 auto 20px;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(56, 61, 71, 0.68);
}

.woocommerce-MyAccount-content > .ec-site-notices {
	margin-bottom: var(--ec-field-gap);
}

.woocommerce-MyAccount-content > .ec-site-notices:last-child {
	margin-bottom: 0;
}

.woocommerce-MyAccount-content > .ec-site-notices .ec-site-notice {
	margin: 0;
}

.woocommerce-EditAccountForm fieldset {
	border: none;
	padding: 0;
	margin: 0;
}

.woocommerce-EditAccountForm fieldset legend {
	display: none;
}

.password-input {
	position: relative;
}

body.ec-site .password-input input.input-text {
	padding-right: 46px !important;
}

.show-password-input {
	position: absolute !important;
	top: 50% !important;
	right: 6px !important;
	transform: translateY(-50%) !important;
	width: 32px !important;
	height: 32px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 999px;
	background: transparent !important;
	color: rgba(56, 61, 71, 0.5);
	transition: background 0.2s ease, color 0.2s ease;
}

.show-password-input:hover {
	background: var(--ec-sand-soft) !important;
	color: var(--ec-green-dark);
}

.show-password-input::after {
	font-size: 15px;
}

body.ec-site:not(.woocommerce-shop):not(.single-product):not(.tax-product_cat):not(.tax-product_tag) .storefront-breadcrumb {
	display: none !important;
}

.storefront-breadcrumb {
	padding: 0.5em 0 !important;
	margin: 0 0 0.8em !important;
}

@media screen and (min-width: 768px) {
	.storefront-breadcrumb {
		padding: 0.708em 0 !important;
		margin: 0 0 2.12em !important;
	}
}

.woocommerce-breadcrumb {
	font-size: 13px !important;
	color: rgba(56, 61, 71, 0.55) !important;
	margin-bottom: 0 !important;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 0.85em;
	row-gap: 0.35em;
}

.woocommerce-breadcrumb a:first-of-type::before {
	display: none !important;
	content: none !important;
	margin: 0 !important;
}

.woocommerce-breadcrumb .ec-breadcrumb-sep,
.woocommerce-breadcrumb .breadcrumb-separator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 0 !important;
	min-width: 0.65em;
	color: rgba(56, 61, 71, 0.35);
	font-size: 1.05em;
	line-height: 1;
	user-select: none;
}

.woocommerce-breadcrumb .breadcrumb-separator {
	text-indent: 0 !important;
	position: static !important;
}

.woocommerce-breadcrumb .breadcrumb-separator::after {
	position: static !important;
	transform: none !important;
	display: inline !important;
	text-indent: 0 !important;
	opacity: 0.35;
}

.woocommerce-breadcrumb a {
	color: rgba(56, 61, 71, 0.75);
}

.woocommerce nav.woocommerce-pagination ul {
	border: none;
	display: flex;
	gap: 6px;
	justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	min-width: 38px;
	height: 38px;
	line-height: 38px;
	padding: 0 8px;
	border-radius: 999px;
	border: 1px solid var(--ec-sand);
	background: #fff;
	color: var(--ec-ink);
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--ec-green);
	border-color: var(--ec-green);
	color: #fff;
}

.ec-quote-section {
	padding-top: 40px;
	padding-bottom: 56px;
}

.ec-quote {
	max-width: none;
	margin: 0;
	padding: 32px 28px 28px;
	background: #fff;
	border: 1px solid var(--ec-sand);
	border-radius: var(--ec-radius);
	box-shadow: 0 10px 30px rgba(24, 26, 31, 0.05);
}

.ec-quote-progress {
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	counter-reset: quote-step;
}

.ec-quote-progress li {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 8px;
	border-radius: 999px;
	background: var(--ec-sand-soft);
	color: rgba(56, 61, 71, 0.55);
	font-size: 12px;
	font-weight: 600;
	text-align: center;
}

.ec-quote-progress li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(56, 61, 71, 0.12);
	font-size: 11px;
}

.ec-quote-progress li.is-active,
.ec-quote-progress li.is-done {
	background: var(--ec-sand);
	color: var(--ec-green-dark);
}

.ec-quote-progress li.is-active span,
.ec-quote-progress li.is-done span {
	background: var(--ec-green);
	color: #fff;
}

.ec-quote-message {
	margin-bottom: 16px;
	padding: 12px 16px;
	border-radius: 12px;
	font-size: 14px;
}

.ec-quote-message.is-error {
	background: #fdf0ee;
	color: #9b2c1f;
}

.ec-quote-message.is-success {
	background: var(--ec-sand-soft);
	color: var(--ec-ink-dark);
}

.ec-quote-step[hidden],
.ec-quote-success[hidden],
.ec-quote-honeypot,
.ec-newsletter-honeypot {
	display: none !important;
}

.ec-quote-step h2 {
	font-size: clamp(20px, 3vw, 24px);
	margin: 0 0 8px;
}

.ec-quote-step-intro {
	margin: 0 0 22px;
	font-size: 14px;
	color: rgba(56, 61, 71, 0.72);
}

.ec-quote-field {
	margin-bottom: 16px;
}

.ec-quote-field label {
	display: block;
	margin-bottom: var(--ec-label-gap);
	font-size: var(--ec-label-size);
	font-weight: var(--ec-label-weight);
	line-height: var(--ec-label-lh);
	color: var(--ec-label-color);
}

.ec-quote-optional {
	font-weight: 400;
	color: rgba(56, 61, 71, 0.5);
}

.ec-quote-field input[type="text"],
.ec-quote-field input[type="email"],
.ec-quote-field input[type="tel"],
.ec-quote-field input[type="number"],
.ec-quote-field select,
.ec-quote-field textarea {
	width: 100%;
	border: 1px solid var(--ec-sand);
	border-radius: 12px;
	padding: var(--ec-field-padding);
	font-family: var(--ec-font);
	font-size: 14px;
	color: var(--ec-ink);
	background: #fff;
	box-shadow: none;
}

.ec-quote-field select {
	padding-right: 46px;
}

.ec-quote-field textarea {
	resize: vertical;
	min-height: 96px;
}

.ec-quote-field input[type="file"] {
	width: 100%;
	font-family: var(--ec-font);
	font-size: 13px;
}

.ec-quote-field-hint {
	margin: 6px 0 0;
	font-size: 12px;
	color: rgba(56, 61, 71, 0.55);
}

.ec-quote-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 18px 0 0;
	font-size: 13px;
	color: rgba(56, 61, 71, 0.8);
	cursor: pointer;
}

.ec-quote-check input {
	margin-top: 3px;
	flex-shrink: 0;
}

.ec-quote-check a {
	color: var(--ec-green-dark);
	font-weight: 600;
}

.ec-quote-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.ec-quote-actions .ec-btn {
	flex: 1 1 140px;
}

.ec-quote-success {
	text-align: center;
	padding: 12px 0 4px;
}

.ec-quote-success h2 {
	font-size: clamp(22px, 3vw, 28px);
	margin: 0 0 10px;
	color: var(--ec-green-dark);
}

.ec-quote-success p {
	margin: 0;
	color: rgba(56, 61, 71, 0.75);
	font-size: 15px;
}

@media (max-width: 520px) {
	.ec-quote {
		padding: 24px 18px 22px;
	}

	.ec-quote-progress li {
		font-size: 0;
		gap: 0;
		padding: 10px;
	}

	.ec-quote-progress li span {
		font-size: 11px;
	}
}

/* Altura unica de campo em todo o site: caixa de var(--ec-field-h) com
   var(--ec-field-px) de respiro lateral. Fora ficam so os controles que nao
   sao campo de formulario (steppers de quantidade, digitos do OTP, o peso da
   calculadora, o select escondido de variacao e os campos do Mercado Pago).
   As excecoes ficam em um unico :not(), nao encadeadas: assim a regra pesa
   duas classes em vez de dez e os casos com padding assimetrico (seta do
   select, olho da senha, CEP) ainda conseguem se sobrepor pela cascata. */
body.ec-site :where(
	input[type="text"],
	input[type="email"],
	input[type="password"],
	input[type="tel"],
	input[type="search"],
	input[type="url"],
	input[type="number"],
	input[type="date"]
):not(
	.qty,
	.ec-kit-flavor-qty,
	.ec-auth-otp__digit,
	.ec-portion-calc__weight,
	.mp-document-select,
	.mp-checkout-andes-input,
	.mp-input-select-select,
	.screen-reader-text
) {
	box-sizing: border-box !important;
	height: var(--ec-field-h) !important;
	min-height: var(--ec-field-h) !important;
	padding: var(--ec-field-padding) !important;
}

/* Select: mesma caixa, com folga a direita para a seta desenhada no fundo. */
body.ec-site select:not(
	.ec-variation-select,
	.mp-document-select,
	.mp-checkout-andes-input,
	.mp-input-select-select,
	.screen-reader-text
) {
	box-sizing: border-box !important;
	height: var(--ec-field-h) !important;
	min-height: var(--ec-field-h) !important;
	padding: 0 46px 0 var(--ec-field-px) !important;
}

body.ec-site .wp-block-woocommerce-cart :is(
	input[type="text"],
	input[type="email"],
	input[type="password"],
	input[type="tel"],
	input[type="search"],
	input[type="url"],
	input[type="number"],
	select
):not(.wc-block-components-quantity-selector__input) {

	padding: var(--ec-checkout-py) var(--ec-checkout-px) !important;
}

body.ec-site .wc-block-checkout :is(
	input[type="text"],
	input[type="email"],
	input[type="password"],
	input[type="tel"],
	input[type="search"],
	input[type="url"],
	input[type="number"],
	select
):not(.wc-block-components-quantity-selector__input):not(.mp-document-select):not(.mp-checkout-andes-input):not(.mp-input-select-select),
body.ec-site .wc-block-cart :is(
	input[type="text"],
	input[type="email"],
	input[type="password"],
	input[type="tel"],
	input[type="search"],
	input[type="url"],
	input[type="number"],
	select
):not(.wc-block-components-quantity-selector__input):not(.mp-document-select):not(.mp-checkout-andes-input):not(.mp-input-select-select),
body.ec-site .wp-block-woocommerce-checkout :is(
	input[type="text"],
	input[type="email"],
	input[type="password"],
	input[type="tel"],
	input[type="search"],
	input[type="url"],
	input[type="number"],
	select
):not(.wc-block-components-quantity-selector__input):not(.mp-document-select):not(.mp-checkout-andes-input):not(.mp-input-select-select) {
	padding: var(--ec-checkout-py) var(--ec-checkout-px) !important;
}

body.ec-site .wc-block-checkout select:not(.mp-document-select):not(.mp-checkout-andes-input):not(.mp-input-select-select),
body.ec-site .wc-block-cart select:not(.mp-document-select):not(.mp-checkout-andes-input):not(.mp-input-select-select),
body.ec-site .wp-block-woocommerce-checkout select:not(.mp-document-select):not(.mp-checkout-andes-input):not(.mp-input-select-select),
body.ec-site .wp-block-woocommerce-cart select:not(.mp-document-select):not(.mp-checkout-andes-input):not(.mp-input-select-select) {
	background-image: none;
	background-position: unset;
	background-size: unset;
	border-radius: 12px;
}

/* Textarea nunca entra na altura fixa. Esta regra fica depois das regras dos
   blocos do WooCommerce porque empata com elas em especificidade: quem vem
   por ultimo ganha. */
body.ec-site textarea:not(.screen-reader-text) {
	box-sizing: border-box !important;
	height: auto !important;
	padding: var(--ec-textarea-padding) !important;
}

body.ec-site :where(
	.ec-btn,
	.button,
	a.button,
	button.button,
	input[type="submit"],
	.woocommerce a.button,
	.woocommerce button.button,
	.wc-block-components-button,
	.ec-cart-drawer__btn,
	.ec-line-cta,
	.ec-stores-clear,
	.ec-auth-submit,
	.ec-kit-submit
):not(.ec-qty-stepper__btn):not(.ec-qty-btn):not(.wc-block-components-quantity-selector__button):not(.wc-block-components-totals-coupon__button):not(.ec-menu-toggle):not(.ec-search-toggle):not(.ec-product-search__btn):not(.ec-cart-toggle):not(.ec-account-link):not(.ec-cart-drawer__close):not(.ec-auth-change):not(.ec-auth-resend):not(.ec-pill) {
	padding: var(--ec-btn-padding) !important;
}

body.ec-site .ec-cat-pills a {
	padding: var(--ec-btn-padding) !important;
}

body.ec-site .ec-newsletter-form button {
	padding: 0 !important;
}

/* Carrinho lateral — stepper de quantidade.
   Mesma linguagem do stepper da página do carrinho, em escala menor. */
.ec-cart-drawer__qty-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 8px 0 0;
}

.ec-cart-drawer__stepper {
	--ec-drawer-qty-control: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	box-sizing: border-box;
	height: 32px;
	padding: 3px;
	border: 1px solid var(--ec-sand);
	border-radius: 999px;
	background: #fff;
}

/* Enquanto o servidor nao confirma, o numero fica levemente apagado.
   Nada de bloquear o clique: a contagem tem que responder na hora. */
.ec-cart-drawer__stepper.is-syncing .ec-cart-drawer__step-value {
	opacity: 0.5;
}

.ec-cart-drawer__step {
	flex: 0 0 var(--ec-drawer-qty-control);
	width: var(--ec-drawer-qty-control);
	height: var(--ec-drawer-qty-control);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--ec-sand-soft);
	color: var(--ec-green-dark);
	font-family: var(--ec-font, "Poppins", sans-serif);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease;
}

.ec-cart-drawer__step:hover:not(:disabled) {
	background: var(--ec-green);
	color: #fff;
}

.ec-cart-drawer__step:disabled {
	opacity: 0.35;
	cursor: default;
}

.ec-cart-drawer__step-value {
	min-width: 26px;
	text-align: center;
	font-family: var(--ec-font, "Poppins", sans-serif);
	font-size: 14px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	color: var(--ec-ink-dark);
}

.ec-cart-drawer__price {
	font-size: 13px;
	line-height: 1.4;
	color: rgba(56, 61, 71, 0.7);
}

.ec-cart-drawer__price .amount {
	color: var(--ec-green-dark);
	font-weight: 600;
}

/* Checkout — aviso de lista de dias desatualizada. */
.ec-delivery-stale {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 10px 0 0;
	padding: 10px 14px;
	border: 1px solid var(--ec-sand);
	border-radius: 12px;
	background: var(--ec-sand-soft);
	font-size: 13px;
	line-height: 1.45;
	color: var(--ec-ink);
}

.ec-delivery-stale button {
	padding: 5px 14px;
	border: 0;
	border-radius: 999px;
	background: var(--ec-green-dark);
	color: #fff;
	font-family: var(--ec-font, "Poppins", sans-serif);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

/* Formulário de prescrição veterinária.
   O <dialog> vive no rodapé, fora das seções da página: dentro da CTA ele
   herdava text-align:center e desalinhava todos os rótulos. */
.ec-vetform-dialog {
	width: min(880px, calc(100vw - 32px));
	max-width: none;
	max-height: min(88vh, 940px);
	padding: 0;
	border: 0;
	border-radius: 18px;
	background: var(--ec-bg);
	color: var(--ec-ink);
	font-family: var(--ec-font, "Poppins", sans-serif);
	text-align: left;
	box-shadow: 0 24px 60px rgba(27, 45, 35, 0.25);
	overflow: hidden;
}

.ec-vetform-dialog[open] {
	display: flex;
	flex-direction: column;
}

.ec-vetform-dialog::backdrop {
	background: rgba(27, 45, 35, 0.5);
}

.ec-vetform-dialog__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-shrink: 0;
	padding: 18px 24px;
	border-bottom: 1px solid var(--ec-sand);
}

.ec-vetform-dialog__head h2 {
	margin: 0;
	font-size: 19px;
	line-height: 1.3;
	color: var(--ec-green-dark);
}

.ec-vetform-dialog__close {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--ec-sand-soft);
	color: var(--ec-ink);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.ec-vetform-dialog__close:hover {
	background: var(--ec-sand);
}

/* min-height:0 e obrigatorio: sem isso o corpo nao encolhe, estoura a altura
   do dialogo e empurra o cabecalho para fora da caixa. */
.ec-vetform-dialog__body {
	flex: 1 1 auto;
	min-height: 0;
	padding: 18px 24px 24px;
	overflow-y: auto;
}

.ec-vetform__intro {
	margin: 0 0 18px;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(56, 61, 71, 0.72);
}

.ec-vetform__section {
	margin: 0 0 20px;
	padding: 0 0 18px;
	border-bottom: 1px solid var(--ec-sand-soft);
}

.ec-vetform__section:last-of-type {
	margin-bottom: 12px;
	padding-bottom: 0;
	border-bottom: 0;
}

.ec-vetform__section h3 {
	margin: 0 0 14px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ec-green);
}

.ec-vetform__grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 14px 16px;
	align-items: start;
}

.ec-vetform__field,
.ec-vetform__scale,
.ec-vetform__radios {
	grid-column: span var(--ec-vetform-span, 12);
	min-width: 0;
	margin: 0;
}

/* Mesmo rotulo de .ec-quote-field label: um estilo so para o site inteiro. */
.ec-vetform__field label,
.ec-vetform__scale legend,
.ec-vetform__radios legend {
	display: block;
	padding: 0;
	margin: 0 0 var(--ec-label-gap);
	font-size: var(--ec-label-size);
	font-weight: var(--ec-label-weight);
	line-height: var(--ec-label-lh);
	color: var(--ec-label-color);
	background: transparent;
}

.ec-vetform__req {
	margin-left: 3px;
	color: #9b2c1f;
}

.ec-vetform__field input,
.ec-vetform__field select,
.ec-vetform__field textarea {
	box-sizing: border-box;
	width: 100%;
	height: var(--ec-field-h);
	padding: var(--ec-field-padding);
	border: 1px solid var(--ec-sand);
	border-radius: 10px;
	background: #fff;
	font-family: inherit;
	font-size: 14px;
	color: var(--ec-ink-dark);
}

.ec-vetform__field textarea {
	height: auto;
	min-height: 96px;
	padding: var(--ec-textarea-padding);
	resize: vertical;
}

.ec-vetform__field input::placeholder,
.ec-vetform__field textarea::placeholder {
	color: rgba(56, 61, 71, 0.38);
}

.ec-vetform__field input:focus,
.ec-vetform__field select:focus,
.ec-vetform__field textarea:focus {
	outline: none;
	border-color: var(--ec-green);
	box-shadow: 0 0 0 3px rgba(91, 170, 47, 0.15);
}

/* O Storefront pinta fieldset e legend com #fbfbfb. Aqui nao queremos fundo. */
.ec-vetform__scale,
.ec-vetform__radios {
	padding: 0;
	border: 0;
	margin: 0;
	background: transparent;
}

/* Escala clinica: uma barra por nivel, rotulo embaixo. So o nivel escolhido
   fica verde — preencher tudo ate ele sugeriria que "mais e melhor", o que
   nao vale para escore corporal, onde o ideal e o meio. */
.ec-vetform__scale legend {
	margin-bottom: var(--ec-label-gap);
}

.ec-vetform__scale-track {
	display: grid;
	grid-template-columns: repeat(var(--ec-scale-count, 3), 1fr);
	gap: 10px;
}

.ec-vetform__scale-track input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.ec-vetform__scale-track label {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-weight: 400;
	cursor: pointer;
}

.ec-vetform__scale-bar {
	display: block;
	width: 100%;
	height: 9px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--ec-ink) 12%, #fff);
	transition: background 0.18s ease;
}

.ec-vetform__scale-text {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.25;
	text-align: center;
	color: var(--ec-green);
	transition: color 0.18s ease;
}

.ec-vetform__scale-track label:hover .ec-vetform__scale-bar {
	background: color-mix(in srgb, var(--ec-green) 28%, #fff);
}

.ec-vetform__scale-track input[type="radio"]:checked + label .ec-vetform__scale-bar {
	background: var(--ec-green);
}

.ec-vetform__scale-track input[type="radio"]:checked + label .ec-vetform__scale-text {
	color: var(--ec-green-dark);
}

.ec-vetform__scale-track input[type="radio"]:focus-visible + label .ec-vetform__scale-bar {
	box-shadow: 0 0 0 3px rgba(91, 170, 47, 0.3);
}

/* Sexo: radios comuns. */
.ec-vetform__radios-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	min-height: var(--ec-field-h);
	align-items: center;
}

.ec-vetform__radios-row label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--ec-ink);
	cursor: pointer;
}

.ec-vetform__radios-row input[type="radio"] {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--ec-green-dark);
	cursor: pointer;
}

.ec-vetform__consent {
	margin: 0 0 4px;
	font-size: 13px;
	line-height: 1.5;
}

.ec-vetform__consent label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.ec-vetform__consent input {
	margin: 3px 0 0;
	flex-shrink: 0;
}

.ec-vetform__hp {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.ec-vetform__status {
	margin: 14px 0 0;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 13px;
	line-height: 1.45;
}

.ec-vetform__status[hidden] {
	display: none;
}

.ec-vetform__status.is-error {
	background: #fdf0ee;
	color: #9b2c1f;
}

.ec-vetform__status.is-success {
	background: var(--ec-sand-soft);
	color: var(--ec-ink-dark);
}

.ec-vetform__actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin: 18px 0 0;
}

@media (max-width: 700px) {
	.ec-vetform-dialog {
		width: 100vw;
		height: 100vh;
		max-height: 100vh;
		border-radius: 0;
	}

	.ec-vetform__field,
	.ec-vetform__choice {
		grid-column: span 12;
	}

	.ec-vetform__actions {
		flex-direction: column-reverse;
	}

	.ec-vetform__actions .ec-btn {
		width: 100%;
		text-align: center;
	}
}
