:root {
	--ewsf-accent: #c9a27f;
	--ewsf-accent-dark: #9f7554;
	--ewsf-text: #2e2925;
	--ewsf-muted: #756c64;
	--ewsf-border: #eadfd5;
	--ewsf-soft: #fbf7f2;
	--ewsf-white: #ffffff;
	--ewsf-radius: 10px;
}

/* ===== BARRA SUPERIOR DE EDADES ===== */
.ewsf-age-pills {
	display: grid !important;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 8px !important;
	width: 100%;
	margin: 0;
	padding: 10px !important;
	background: #fff !important;
	border: 1px solid var(--ewsf-border) !important;
	border-radius: 10px !important;
	box-sizing: border-box;
}

.ewsf-age-pills .ewsf-age-pill {
	display: flex !important;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 8px 10px !important;
	border: 1px solid var(--ewsf-border) !important;
	border-radius: 7px !important;
	background: #fff !important;
	color: var(--ewsf-text) !important;
	font-size: 15px !important;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	box-shadow: none !important;
	transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.ewsf-age-pills .ewsf-age-pill:hover,
.ewsf-age-pills .ewsf-age-pill:focus {
	border-color: var(--ewsf-accent) !important;
	color: var(--ewsf-accent-dark) !important;
}

.ewsf-age-pills .ewsf-age-pill.is-active {
	background: var(--ewsf-accent) !important;
	border-color: var(--ewsf-accent) !important;
	color: #fff !important;
	font-weight: 700;
}

/* ===== SIDEBAR ===== */
.ewsf-wrap {
	width: 100%;
	box-sizing: border-box;
}

.ewsf-panel {
	display: block !important;
	width: 100%;
	margin: 0;
	padding: 18px !important;
	background: #fff !important;
	border: 1px solid var(--ewsf-border) !important;
	border-radius: 10px !important;
	box-sizing: border-box;
}

.ewsf-head {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 0 0 14px !important;
}

.ewsf-head strong {
	color: var(--ewsf-text) !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.2;
}

.ewsf-clear {
	color: var(--ewsf-accent-dark) !important;
	font-size: 11px !important;
	font-weight: 500;
	text-decoration: underline !important;
	text-underline-offset: 2px;
	white-space: nowrap;
}

.ewsf-clear.is-disabled {
	opacity: .42;
	pointer-events: none;
	text-decoration: none !important;
}

/* Grupos apilados verticalmente */
.ewsf-panel .ewsf-group {
	display: block !important;
	width: 100%;
	margin: 0 !important;
	padding: 15px 0 !important;
	border: 0 !important;
	border-top: 1px solid var(--ewsf-border) !important;
	box-sizing: border-box;
}

.ewsf-panel .ewsf-group:first-of-type {
	border-top: 0 !important;
	padding-top: 0 !important;
}

.ewsf-panel .ewsf-group legend {
	display: block !important;
	width: 100%;
	margin: 0 0 10px !important;
	padding: 0 !important;
	color: var(--ewsf-text) !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.3;
	float: none !important;
}

.ewsf-panel .ewsf-options {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	gap: 8px !important;
	width: 100%;
	margin: 0;
	padding: 0;
}

.ewsf-panel .ewsf-option {
	display: flex !important;
	align-items: flex-start !important;
	gap: 8px !important;
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
	cursor: pointer;
	color: var(--ewsf-muted) !important;
	font-size: 15px !important;
	line-height: 1.35;
	box-sizing: border-box;
}

.ewsf-panel .ewsf-option input {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.ewsf-panel .ewsf-check {
	position: relative;
	display: inline-block !important;
	flex: 0 0 15px;
	width: 15px !important;
	height: 15px !important;
	margin-top: 1px;
	border: 1px solid #d7ccc2 !important;
	border-radius: 3px !important;
	background: #fff !important;
	box-sizing: border-box;
}

.ewsf-panel .ewsf-option input:checked + .ewsf-check {
	border-color: var(--ewsf-accent) !important;
	background: var(--ewsf-accent) !important;
}

.ewsf-panel .ewsf-option input:checked + .ewsf-check::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.ewsf-panel .ewsf-label {
	display: block !important;
	flex: 1 1 auto;
	min-width: 0;
}

.ewsf-panel .ewsf-option:hover .ewsf-label {
	color: var(--ewsf-text) !important;
}

/* Los controles móviles no deben verse en escritorio */
.ewsf-wrap .ewsf-mobile-toggle,
.ewsf-wrap .ewsf-mobile-actions {
	display: none !important;
}

/* Ajustes del archivo WooCommerce */
body.post-type-archive-product .woocommerce .woocommerce-result-count {
	margin-top: .45em;
	color: var(--ewsf-muted);
	font-size: 16px;
}

body.post-type-archive-product .woocommerce .woocommerce-ordering select {
	min-height: 38px;
	padding: 7px 36px 7px 12px;
	border: 1px solid var(--ewsf-border);
	border-radius: 7px;
	background-color: #fff;
	font-size: 16px;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
	.ewsf-age-pills {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* ===== MÓVIL ===== */
@media (max-width: 767px) {
	.ewsf-age-pills {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto;
		gap: 7px !important;
		padding: 8px !important;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.ewsf-age-pills::-webkit-scrollbar {
		display: none;
	}

	.ewsf-age-pills .ewsf-age-pill {
		flex: 0 0 auto;
		min-width: 112px;
	}

	.ewsf-wrap .ewsf-mobile-toggle {
		display: inline-flex !important;
		width: 100%;
		align-items: center;
		justify-content: center;
		gap: 8px;
		min-height: 44px;
		padding: 10px 14px !important;
		border: 1px solid var(--ewsf-accent) !important;
		border-radius: 8px !important;
		background: var(--ewsf-accent) !important;
		color: #fff !important;
		font-weight: 700;
		cursor: pointer;
	}

	.ewsf-wrap .ewsf-panel {
		display: none !important;
		margin-top: 10px;
	}

	.ewsf-wrap.is-open .ewsf-panel {
		display: block !important;
	}

	.ewsf-wrap .ewsf-mobile-actions {
		display: flex !important;
		padding-top: 14px;
		border-top: 1px solid var(--ewsf-border);
	}

	.ewsf-wrap .ewsf-apply {
		width: 100%;
		min-height: 42px;
		padding: 9px 14px !important;
		border: 0 !important;
		border-radius: 7px !important;
		background: var(--ewsf-accent) !important;
		color: #fff !important;
		font-weight: 700;
		cursor: pointer;
	}
}


/* ===== BANNER ARTESANAL DEBAJO DEL CATÁLOGO ===== */
.ewsb-craft-banner {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	margin: 24px 0 0;
	padding: 14px 18px;
	box-sizing: border-box;
	background: linear-gradient(90deg, #fbf7f2 0%, #fffdfa 100%);
	border: 1px solid #f0e5db;
	border-radius: 10px;
	color: #3b342f;
}

.ewsb-craft-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	color: #c99e78;
}

.ewsb-craft-icon svg {
	display: block;
	width: 34px;
	height: 34px;
}

.ewsb-craft-copy {
	min-width: 0;
}

.ewsb-craft-copy strong {
	display: block;
	margin: 0 0 5px;
	color: #302a26;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
}

.ewsb-craft-copy p {
	margin: 0;
	color: #665d56;
	font-size: 16px;
	line-height: 1.55;
}

@media (max-width: 767px) {
	.ewsb-craft-banner {
		align-items: flex-start;
		gap: 11px;
		padding: 13px 14px;
	}

	.ewsb-craft-icon {
		flex-basis: 34px;
		width: 34px;
		height: 34px;
	}

	.ewsb-craft-icon svg {
		width: 29px;
		height: 29px;
	}
}


/* ===== CABECERA DE LA TIENDA ===== */
.ewsh-shop-header {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(520px, 1fr);
	align-items: center;
	gap: 36px;
	width: 100%;
	padding: 18px 0 20px;
	box-sizing: border-box;
}

.ewsh-shop-intro {
	min-width: 0;
}

.ewsh-shop-intro h1 {
	margin: 0 0 10px;
	color: #2f2925;
	font-size: clamp(32px, 3vw, 42px);
	font-weight: 700;
	line-height: 1.05;
}

.ewsh-shop-intro p {
	max-width: 620px;
	margin: 0;
	color: #625951;
	font-size: 16px;
	line-height: 1.55;
}

.ewsh-shop-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 0;
}

.ewsh-benefit {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
	padding: 4px 18px;
	border-left: 1px solid #eee4dc;
}

.ewsh-benefit:first-child {
	border-left: 0;
}

.ewsh-benefit-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	color: #c79b74;
}

.ewsh-benefit-icon svg {
	display: block;
	width: 32px;
	height: 32px;
}

.ewsh-benefit-copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.ewsh-benefit-copy strong {
	display: block;
	margin: 0 0 3px;
	color: #3a332e;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
}

.ewsh-benefit-copy span {
	display: block;
	color: #7b7068;
	font-size: 11px;
	line-height: 1.35;
	white-space: nowrap;
}

@media (max-width: 1024px) {
	.ewsh-shop-header {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.ewsh-shop-benefits {
		max-width: 760px;
	}
}

@media (max-width: 767px) {
	.ewsh-benefit-copy span {
		white-space: normal;
	}

	.ewsh-shop-header {
		padding: 14px 0 16px;
		gap: 18px;
	}

	.ewsh-shop-intro h1 {
		font-size: 32px;
	}

	.ewsh-shop-intro p {
		font-size: 16px;
	}

	.ewsh-shop-benefits {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.ewsh-benefit {
		padding: 12px 0;
		border-left: 0;
		border-top: 1px solid #eee4dc;
	}

	.ewsh-benefit:first-child {
		border-top: 0;
	}
}
