.eca-wrap {
	width: 100%;
	padding: 0;
	--eca-grid-column-gap: 8px;
	--eca-grid-row-gap: 35px;
	--eca-grid-column-gap-mobile: 5px;
	--eca-grid-row-gap-mobile: 20px;
}

.eca-toolbar {
	display: block;
	margin-bottom: 18px;
}

.eca-filter-form {
	width: 100%;
	align-items: end;
}

.eca-controls {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
}

.eca-filter-group {
	display: flex;
	align-items: flex-end;
	gap: 12px;
	flex-wrap: wrap;
	flex: 1 1 auto;
	min-width: 0;
}

.eca-filter-fields {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: end;
	flex: 1 1 auto;
}

.eca-filter-toolbar-main {
	display: contents;
}

.eca-sort-group {
	margin-left: auto;
	display: flex;
	align-items: flex-end;
	flex: 0 0 auto;
}

.eca-mobile-filter-toggle,
.eca-filter-accordion {
	display: none;
}

.eca-filter-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.eca-sort-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.eca-filter-field--order {
	min-width: 180px;
}

.eca-filter-field label,
.eca-sort-field label {
	font-size: 11px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.eca-filter-form select,
.eca-filter-form input,
.eca-filter-form button,
.eca-filter-form a {
	font: inherit;
}

.eca-filter-field select,
.eca-filter-field input {
	min-height: 54px;
	border: 2px solid #111111;
	border-radius: 0;
	background: #fff;
	padding: 0 46px 0 18px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #111111;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23111111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 14px 14px;
}

.eca-sort-field select {
	min-height: 54px;
	border: 2px solid #111111;
	border-radius: 0;
	background: #fff;
	padding: 0 46px 0 18px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #111111;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23111111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 14px 14px;
}

.eca-filter-form select[name="eca_size"] {
	min-width: 110px;
}

.eca-filter-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.eca-filter-submit {
	min-height: 54px;
	padding: 0 28px;
	border: 2px solid #111111;
	border-radius: 0;
	background: #1e1e1e;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.eca-filter-submit:hover,
.eca-filter-submit:focus-visible {
	background: #e5e5e5;
	color: #1e1e1e;
}

.eca-clear-filters {
	min-height: 54px;
	display: inline-flex;
	align-items: center;
	color: #1e1e1e;
	text-decoration: none;
}

.eca-filter-accordion {
	width: 100%;
	border: 1px solid #d8d8d8;
	background: #fff;
}

.eca-filter-accordion__summary {
	padding: 12px 14px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	list-style: none;
}

.eca-filter-accordion__summary::-webkit-details-marker {
	display: none;
}

.eca-filter-accordion__content {
	padding: 0 12px 12px;
}

.eca-filter-chip-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.eca-filter-chip {
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid #d8d8d8;
	background: #fff;
	color: #1e1e1e;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
}

.eca-filter-chip.is-active {
	border-color: #1e1e1e;
	background: #1e1e1e;
	color: #fff;
}

.eca-wrap.is-loading .eca-grid {
	opacity: .55;
	pointer-events: none;
}

.eca-filter-submit[disabled] {
	opacity: .6;
	cursor: wait;
}

.eca-grid {
	display: grid;
	grid-template-columns: repeat(var(--eca-columns, 4), 1fr);
	column-gap: var(--eca-grid-column-gap);
	row-gap: var(--eca-grid-row-gap);
}

.eca-product-card,
.eca-card {
	display: block;
	background: transparent;
	color: inherit;
	text-decoration: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.eca-product-image-wrap,
.eca-card__image {
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
}

/* BADGES DE LANÇAMENTO E PROMOÇÃO */
.eca-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
	pointer-events: none;
	z-index: 2;
}

.eca-badge {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #e5e5e5;
}

.eca-badge--launch {
	background: #1e1e1e;
}

.eca-badge--sale {
	background: #d63b5c;
}

.eca-product-image,
.eca-card__image img,
.eca-card__image-img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.eca-product-card:hover .eca-product-image,
.eca-card:hover .eca-product-image,
.eca-card:hover .eca-card__image img {
	transform: scale(1.03);
}

.eca-product-title,
.eca-card__title {
	margin: 0 0 2px;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.3;
	color: #1e1e1e;
}

.eca-product-color,
.eca-card__color {
	margin: 0 0 4px;
	font-size: 0.60rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #666666;
}

.eca-product-price,
.eca-card__price {
	color: #111;
}

/* PREÇO PARCELAS */

.eca-price {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.35;
}

.eca-product-price .epr-price {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.35;
}

.eca-price--normal {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: baseline;
	column-gap: 8px;
	row-gap: 2px;
}

.eca-product-price .epr-price--normal {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: baseline;
	column-gap: 8px;
	row-gap: 2px;
}

.eca-price--sale {
	gap: 4px;
}

.eca-product-price .epr-price--sale {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 4px;
}

.eca-price__topline {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
}

/* PREÇO NORMAL */
.eca-regular-price {
	font-size: 0.70rem;
	font-weight: 600;
	color: #c4374e;
}

.eca-product-price .epr-regular-price {
	font-size: 0.70rem;
	font-weight: 600;
	color: #c4374e;
}

.eca-regular-price del {
	text-decoration-thickness: 1px;
}

.eca-product-price .epr-regular-price del {
	text-decoration-thickness: 1px;
}

/* PREÇO DE PROMOÇÃO E PIX */
.eca-sale-price__value,
.eca-pix-price {
	font-size: 0.80rem;
	font-weight: 700;
	color: #1e1e1e;
}

.eca-product-price .epr-sale-price,
.eca-product-price .epr-pix-price {
	font-size: 0.80rem;
	font-weight: 700;
	color: #1e1e1e;
}

.eca-sale-price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px;
}

.eca-sale-price__secondary {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px;
}

/* PREÇO DE PARCELAMENTO */

.eca-installments {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px;
}

/* LEGENDAS DE PREÇO */
.eca-sale-price__label,
.eca-installments__label,
.eca-pix-caption,
.eca-installments__suffix,
.eca-product-price .epr-installment-suffix {
	font-size: 0.70rem;
	font-weight: 400;
	color: #6a6a6a;
}

.eca-product-price .epr-pix-label,
.eca-product-price .epr-installment-line {
	font-size: 0.70rem;
	font-weight: 400;
	color: #6a6a6a;
}

.eca-installments__suffix,
.eca-product-price .epr-installment-suffix {
	display: inline;
}

.eca-product-price .epr-installment-line strong {
	font-weight: 700;
	color: #111;
}

.eca-installments__value {
	font-weight: 700;
	color: #111;
}

.eca-notify-me {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #111;
}

.eca-product-price .epr-notify-me {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #111;
}

.eca-results-count {
	width: 100%;
	margin-top: 8px;
	margin-bottom: 16px;
	font-size: 0.8rem;
	color: #888;
}

.eca-empty {
	margin: 0;
	color: #666;
}

.eca-pagination {
	margin-top: 24px;
	display: flex;
	justify-content: center;
}

.eca-pagination__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.eca-page-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid #111;
	color: #111;
	text-decoration: none;
	background: #fff;
}

.eca-page-number.current {
	background: #111;
	color: #fff;
}

.eca-page-number--gap {
	border-color: transparent;
	padding: 0 4px;
}

.eca-page-number--prev,
.eca-page-number--next {
	padding: 0 14px;
}

.is_out_of_stock .eca-product-image-wrap,
.is_out_of_stock .eca-card__image {
	opacity: 0.7;
}

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

@media (max-width: 600px) {
	.eca-controls,
	.eca-filter-group {
		align-items: stretch;
		gap: 10px;
	}

	.eca-controls {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-start;
		gap: 12px;
	}

	.eca-filter-fields {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-start;
		gap: 10px;
		width: 100%;
		order: 3;
	}

	.eca-sort-group {
		width: calc(50% - 6px);
		margin-left: 0;
		order: 2;
		position: relative;
	}

	.eca-filter-toolbar-main {
		display: flex;
		width: calc(50% - 6px);
		gap: 12px;
		justify-content: space-between;
		align-items: end;
		order: 1;
		position: relative;
	}

	.eca-wrap.is-enhanced .eca-mobile-filter-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 54px;
		padding: 0 48px 0 18px;
		border: 2px solid #111111;
		background: #fff;
		color: #111111;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		cursor: pointer;
		position: relative;
	}

	.eca-wrap.is-enhanced .eca-mobile-filter-toggle::after {
		content: '';
		position: absolute;
		right: 16px;
		top: 50%;
		width: 16px;
		height: 16px;
		transform: translateY(-50%);
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23111111' stroke-width='1.5' stroke-linecap='round'%3E%3Cline x1='3' y1='4' x2='13' y2='4'/%3E%3Cline x1='3' y1='8' x2='13' y2='8'/%3E%3Cline x1='3' y1='12' x2='13' y2='12'/%3E%3Ccircle cx='6' cy='4' r='1.5' fill='%23111111' stroke='none'/%3E%3Ccircle cx='10' cy='8' r='1.5' fill='%23111111' stroke='none'/%3E%3Ccircle cx='8' cy='12' r='1.5' fill='%23111111' stroke='none'/%3E%3C/svg%3E") center/contain no-repeat;
		pointer-events: none;
	}

	.eca-wrap.is-enhanced .eca-filter-form.is-mobile-collapsed .eca-filter-fields {
		display: none;
	}

	.eca-wrap.is-enhanced .eca-filter-field--desktop {
		display: none;
	}

	.eca-wrap.is-enhanced .eca-filter-accordion {
		display: block;
	}

	.eca-filter-field--order {
		min-width: 0;
		width: calc(50% - 6px);
	}

	.eca-sort-group .eca-filter-field--order {
		width: 100%;
	}

	.eca-wrap.is-enhanced .eca-filter-field--order label {
		display: none;
	}

	.eca-wrap.is-enhanced .eca-filter-field--order select {
		width: 100%;
		min-height: 54px;
		border: 2px solid #111111;
		background: #fff;
		padding: 0 44px 0 18px;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		text-align: center;
		text-align-last: center;
		appearance: none;
	}

	.eca-sort-group::after {
		content: '';
		position: absolute;
		right: 16px;
		bottom: 19px;
		width: 16px;
		height: 16px;
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23111111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 3v10'/%3E%3Cpath d='m2.5 5.5 2.5-2.5 2.5 2.5'/%3E%3Cpath d='M11 13V3'/%3E%3Cpath d='m8.5 10.5 2.5 2.5 2.5-2.5'/%3E%3C/svg%3E") center/contain no-repeat;
		pointer-events: none;
	}

	.eca-wrap.is-enhanced .eca-mobile-filter-toggle {
		width: 100%;
	}

	.eca-filter-actions {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		width: 100%;
	}

	.eca-filter-submit,
	.eca-clear-filters {
		width: auto;
		justify-content: center;
	}

	.eca-results-count {
		margin-top: 0;
	}

	.eca-grid {
		grid-template-columns: repeat(2, 1fr);
		column-gap: var(--eca-grid-column-gap-mobile);
		row-gap: var(--eca-grid-row-gap-mobile);
	}

	.eca-product-card:hover .eca-product-image,
	.eca-card:hover .eca-product-image,
	.eca-card:hover .eca-card__image img {
		transform: none;
	}

	.eca-badges {
		top: auto;
		left: 10px;
		right: auto;
		bottom: 10px;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-start;
		gap: 6px;
	}

	.eca-price--normal {
		flex-direction: column;
		align-items: stretch;
		gap: 3px;
	}

	.eca-price__topline {
		width: 100%;
		justify-content: flex-start;
		gap: 6px;
	}

	.eca-installments {
		width: 100%;
		gap: 4px;
	}

	.eca-installments__suffix {
		display: inline;
	}

	.eca-product-price .epr-installment-suffix {
		display: inline;
	}

	.eca-sale-price {
		flex-direction: column;
		align-items: flex-start;
		gap: 3px;
	}

	.eca-sale-price__secondary {
		gap: 4px;
	}

}
