/**
 * WC SPA Menu — alcance .elche-spa-menu.wc-spa-menu (shortcode nativo [elche_spa_menu])
 * Tipografía: Anton (títulos), Poppins (cuerpo). Colores y radios fijos en este archivo (sin opciones de admin).
 */

.elche-spa-menu.wc-spa-menu {
	--wc-spa-bg: #FFFFFF;
	--wc-spa-accent: #007FFF;
	--wc-spa-accent-hover: #0066cc;
	--wc-spa-secondary: #5BA3E8;
	--wc-spa-bg-nav: #FFFFFF;
	--wc-spa-bg-card: #F9F8F4;
	--wc-spa-card-bg: #F9F8F4;
	--wc-spa-bg-footer: #007FFF;
	--wc-spa-text: #1F2937;
	--wc-spa-text-muted: #6B7280;
	--wc-spa-border: #007FFF;
	--wc-spa-radius: 12px;
	--wc-spa-radius-nav: 12px;
	--wc-spa-radius-footer: 12px;
	--wc-spa-border-width: 1px;

	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: var(--wc-spa-bg);
	border-radius: 20px;
	color: var(--wc-spa-text);
	min-height: 100vh;
	padding-bottom: 116px;
}

/* Barra sticky de categorías */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-wrap {
	position: sticky;
	top: 0;
	z-index: 100;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	background: var(--wc-spa-bg-nav);
	border-bottom: var(--wc-spa-border-width) solid var(--wc-spa-border);
	border-radius: 20px 20px 0 0;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav::-webkit-scrollbar { display: none; }

.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin: 0;
	flex-shrink: 0;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px;
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: transform 0.15s ease;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-btn:hover {
	transform: translateY(-2px);
}

/* El estado activo NO se marca con relleno: se marca con el subrayado bajo la
   etiqueta (ver .wc-spa-menu-nav-label), igual que en la referencia. */

.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-img-wrap {
	display: block;
	line-height: 0;
	overflow: hidden;
	border-radius: 16px;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-img,
.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-placeholder {
	width: 92px;
	height: 92px;
	border-radius: 18px;
	object-fit: contain;     /* respeta PNG transparentes y no recorta el ícono */
	background: transparent;  /* sin fondo plomo: la imagen va sobre el fondo de la página */
}

/* El placeholder (categoría sin imagen) sí lleva un fondo sutil para no quedar invisible. */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-placeholder {
	background: rgba(31, 41, 55, 0.06);
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-label {
	display: block;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--wc-spa-text-muted);
	white-space: nowrap;
	padding-bottom: 6px;
	border-bottom: 3px solid transparent; /* reserva el espacio del subrayado para que no salte */
	transition: color 0.15s ease, border-color 0.15s ease;
}

/* Categoría activa: etiqueta + subrayado en el color de marca (azul). */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-item:has(.wc-spa-menu-nav-btn.active) .wc-spa-menu-nav-label {
	color: var(--wc-spa-accent);
	font-weight: 700;
	border-bottom-color: var(--wc-spa-accent);
}

/* Flecha azul "hay más categorías → desliza". Oculta por defecto; el JS le pone
   .has-more al wrapper cuando la barra es desplazable y no está al final. */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-scroll-hint {
	position: absolute;
	right: 6px;
	bottom: 8px;
	z-index: 5;
	display: none;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border-radius: 50%;
	border: 1px solid var(--wc-spa-accent, #007fff);
	background: #fff;
	color: var(--wc-spa-accent, #007fff);
	box-shadow: 0 2px 8px rgba(0, 127, 255, 0.28);
	cursor: pointer;
	animation: wcSpaNavHintPulse 1.3s ease-in-out infinite;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-wrap.has-more .wc-spa-menu-nav-scroll-hint {
	display: flex;
}
@keyframes wcSpaNavHintPulse {
	0%, 100% { transform: translateX(0); }
	50%      { transform: translateX(3px); }
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-content {
	padding: 24px 16px;
	margin-top: 8px;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-products {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Tarjeta de producto */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product {
	background: #F9F8F4;
	border: 1px solid #007FFF;
	border-radius: 12px;
	padding: 10px;
	margin-bottom: 0;
	transition: box-shadow 0.2s ease;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product:hover {
	box-shadow: 0 4px 14px rgba(0, 127, 255, 0.12);
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product.selected {
	box-shadow: 0 4px 16px rgba(0, 127, 255, 0.22);
}

/* Fila principal: imagen | título+precio | acciones */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-main {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	flex-wrap: nowrap;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-col--media {
	flex-shrink: 0;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-img-trigger {
	display: block;
	padding: 0;
	margin: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	border-radius: 50%;
	line-height: 0;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-img-trigger:focus-visible {
	outline: 2px solid var(--wc-spa-accent);
	outline-offset: 2px;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-img-wrap {
	display: block;
	line-height: 0;
	border-radius: 50%;
	overflow: hidden;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-img,
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-placeholder {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid #007FFF;
	background: #e8e6df;
	display: block;
	flex-shrink: 0;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-col--info {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-right: 2px;
	overflow: hidden;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-title {
	margin: 0;
	font-family: 'Anton', sans-serif;
	font-weight: normal;
	font-size: 1.05rem;
	letter-spacing: 0.02em;
	line-height: 1.2;
	color: var(--wc-spa-accent);
	text-transform: none;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-combo-includes {
	margin: 4px 0 0;
	font-family: 'Poppins', sans-serif;
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--wc-spa-text-muted);
	line-height: 1.35;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-addons-note {
	margin: 5px 0 0;
	font-family: 'Poppins', sans-serif;
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--wc-spa-text-muted);
	line-height: 1.35;
	max-width: 100%;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-prices {
	margin: 0;
	font-family: 'Poppins', sans-serif;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-inline {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-label {
	font-size: 11px;
	font-weight: 500;
	color: var(--wc-spa-text-muted);
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-current {
	font-size: 1rem;
	font-weight: 700;
	color: var(--wc-spa-accent);
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-strike {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--wc-spa-text-muted);
	text-decoration: line-through;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-sublabel {
	font-size: 11px;
	color: var(--wc-spa-text-muted);
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-col--actions {
	flex: 0 0 auto;
	min-width: 108px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: 7px;
	--wc-spa-action-size: 34px;
	--wc-spa-action-gap: 6px;
	--wc-spa-action-radius: 999px;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-actions-row {
	display: flex;
	align-items: center;
	justify-content: stretch;
	gap: var(--wc-spa-action-gap);
	width: 100%;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-actions-row-1 {
	justify-content: center;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-actions-row-2 {
	justify-content: flex-end;
	flex-wrap: nowrap;
}

/* Cantidad: píldora con borde azul */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-qty {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	border: 1px solid #007FFF;
	border-radius: var(--wc-spa-action-radius);
	overflow: hidden;
	height: var(--wc-spa-action-size);
	width: 100%;
	background: #fff;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-qty-btn {
	flex: 1;
	height: var(--wc-spa-action-size);
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: #fff;
	color: #007FFF;
	font-size: calc(var(--wc-spa-action-size) * 0.45);
	line-height: 1;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s;
	padding: 0;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-qty-btn:hover {
	background: rgba(0, 127, 255, 0.06);
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-qty input {
	flex: 1;
	height: var(--wc-spa-action-size);
	padding: 0;
	border: none;
	border-left: 1px solid #007FFF;
	border-right: 1px solid #007FFF;
	background: #fff;
	color: #1F2937;
	font-family: 'Poppins', sans-serif;
	font-size: calc(var(--wc-spa-action-size) * 0.38);
	font-weight: 600;
	text-align: center;
	-moz-appearance: textfield;
	min-width: 0;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-qty input::-webkit-outer-spin-button,
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-qty input::-webkit-inner-spin-button { display: none; margin: 0; }

/* Botones base compartidos */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-pedir-btn.wc-spa-menu-elegir-btn,
.elche-spa-menu.wc-spa-menu .wc-spa-menu-accordion-btn {
	height: var(--wc-spa-action-size);
	min-height: var(--wc-spa-action-size);
	padding: 0 10px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #007FFF;
	border-radius: 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
	white-space: nowrap;
	flex: 1;
}

/* ELEGIR: fondo azul sólido, texto blanco */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-pedir-btn.wc-spa-menu-elegir-btn {
	background: #007FFF;
	color: #ffffff;
	transition: background 0.2s, border-color 0.2s;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-pedir-btn.wc-spa-menu-elegir-btn:hover {
	background: #0066cc;
	border-color: #0066cc;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-pedir-btn.wc-spa-menu-elegir-btn.selected {
	background: #007FFF;
	color: #ffffff;
	border-color: #007FFF;
}

/* DETALLES: fondo blanco, texto/borde azul — NUNCA azul sólido */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-accordion-btn {
	background: #ffffff;
	color: #007FFF;
	transition: background 0.18s;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-accordion-btn:hover {
	background: rgba(0, 127, 255, 0.06);
}

/* Acordeón detalles */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-accordion-content {
	overflow: hidden;
	transition: max-height 0.35s ease;
	padding-top: 0;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-accordion-content[hidden] {
	display: block !important;
	max-height: 0 !important;
	visibility: hidden;
	padding-top: 0;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-accordion-content:not([hidden]) {
	max-height: 600px;
	visibility: visible;
	padding-top: 4px;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-details-sep {
	border: none;
	border-top: 1px solid #007FFF;
	opacity: 0.3;
	margin: 8px 0 10px;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-details-list {
	margin: 0;
	padding: 0 0 0 1.1em;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #4b5563;
	line-height: 1.55;
	list-style: disc;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-details-list li {
	margin-bottom: 4px;
	padding-left: 2px;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-details-list li::marker {
	color: #9ca3af;
}

@keyframes elche-total-bump {
	0% {
		transform: scale(1);
	}
	40% {
		transform: scale(1.18);
		color: #007bff;
	}
	100% {
		transform: scale(1);
		color: inherit;
	}
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-total.elche-total-bump {
	animation: elche-total-bump 0.35s ease-out;
}

/* Barra de acción inferior (compacta, ancho completo) */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer.visible {
	display: block;
	animation: wc-spa-footer-in 0.28s ease;
}

@keyframes wc-spa-footer-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 76px;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
	padding-left: max(16px, env(safe-area-inset-left, 0px));
	padding-right: max(16px, env(safe-area-inset-right, 0px));
	background: var(--wc-spa-bg-footer);
	border-radius: 20px 20px 0 0;
	box-shadow: 0 -4px 24px rgba(0, 63, 128, 0.22);
	color: #fff;
	font-family: 'Poppins', sans-serif;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-inner--compact {
	flex-wrap: nowrap;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-total-group {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	min-width: 0;
	flex: 1 1 auto;
	line-height: 1.15;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-label {
	font-size: 11px;
	font-weight: 500;
	opacity: 0.8;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	line-height: 1.2;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-total {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1.2;
	text-align: left;
	white-space: nowrap;
	color: #ffffff;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-actions {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	gap: 6px;
	flex: 0 0 auto;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-review-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	min-width: 100px;
	padding: 11px 16px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-review-btn:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.75);
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-review-btn:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.9);
	outline-offset: 2px;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-btn {
	min-height: 40px;
	min-width: 130px;
	padding: 13px 20px;
	border: none;
	border-radius: 10px;
	background: #fff;
	color: var(--wc-spa-accent);
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.3px;
	line-height: 1.2;
	cursor: pointer;
	transition: background 0.2s;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-btn:hover {
	background: #f0f4ff;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

/* Modales de ventas (upsell / cross-sell / resumen) — capa global */
.wc-spa-menu-sales-modal-layer {
	position: fixed;
	inset: 0;
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
}

.wc-spa-menu-sales-modal-layer[hidden] {
	display: none !important;
}

.wc-spa-menu-sales-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(31, 41, 55, 0.5);
}

.wc-spa-menu-sales-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 420px;
	max-height: calc(100vh - 32px);
	display: flex;
	flex-direction: column;
	background: var(--wc-spa-card-bg, #f9f8f4);
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	font-family: 'Poppins', sans-serif;
}

.wc-spa-menu-sales-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	border-bottom: 1px solid rgba(0, 127, 255, 0.15);
}

.wc-spa-menu-sales-modal__title {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--wc-spa-text);
}

.wc-spa-menu-sales-modal__close {
	width: 32px;
	height: 32px;
	padding: 0;
	margin: 0;
	border: none;
	border-radius: 50%;
	background-color: #007bff;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Poppins', sans-serif;
	transition: background-color 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.wc-spa-menu-sales-modal__close:hover {
	background-color: #0062cc;
}

.wc-spa-menu-sales-modal__body {
	padding: 12px 16px;
	overflow-y: auto;
	flex: 1;
	min-height: 0;
}

.wc-spa-menu-sales-modal__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	padding: 14px 16px;
	border-top: 1px solid rgba(0, 127, 255, 0.12);
	background: rgba(249, 248, 244, 0.96);
}

/* «Cerrar» del resumen «Tu pedido» — outlined marca (no usar solo .sales-primary relleno) */
.wc-spa-menu-sales-modal__footer .wc-spa-menu-sales-btn.wc-spa-menu-sales-cart-close {
	display: block;
	width: 100%;
	flex-basis: 100%;
	margin-top: 8px;
	padding: 10px 0;
	background-color: transparent;
	border: 2px solid #007bff;
	border-radius: 8px;
	color: #007bff;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	filter: none;
	box-sizing: border-box;
}

.wc-spa-menu-sales-modal__footer .wc-spa-menu-sales-btn.wc-spa-menu-sales-cart-close:hover {
	background-color: #007bff;
	color: #ffffff;
	border-color: #007bff;
	filter: none;
}

.wc-spa-menu-sales-empty {
	margin: 0;
	text-align: center;
	color: var(--wc-spa-text-muted);
	font-size: 14px;
	padding: 16px 8px;
}

.wc-spa-menu-min-order-msg {
	margin: 0;
	text-align: center;
	color: var(--wc-spa-text);
	font-size: 16px;
	line-height: 1.5;
	padding: 12px 8px;
}

.wc-spa-menu-sales-lines {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wc-spa-menu-sales-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wc-spa-menu-sales-line:last-child {
	border-bottom: none;
}

.wc-spa-menu-sales-line-name {
	font-size: 14px;
	font-weight: 500;
	color: var(--wc-spa-text);
	flex: 1;
	min-width: 0;
}

.wc-spa-menu-sales-line--addon {
	padding: 2px 0 6px;
	border-bottom: none;
	justify-content: space-between;
	align-items: center;
}

.wc-spa-menu-sales-line-addon-actions {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

/* × quitar addon — solo dentro del modal de ventas */
.wc-spa-menu-sales-modal-layer .wc-spa-menu-sales-addon-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	margin: 0;
	border: 1px solid var(--wc-spa-border, #007fff);
	border-radius: 50%;
	background: #fff;
	color: var(--wc-spa-accent, #007fff);
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

.wc-spa-menu-sales-modal-layer .wc-spa-menu-sales-addon-remove:hover {
	background: rgba(0, 127, 255, 0.08);
}

.wc-spa-menu-sales-line--addon + .wc-spa-menu-sales-line--parent,
.wc-spa-menu-sales-line--parent + .wc-spa-menu-sales-line--addon {
	border-top: none;
}

.wc-spa-menu-sales-line-name--addon {
	font-size: 13px;
	font-weight: 400;
	color: #666;
}

.wc-spa-menu-sales-line-addon-sum {
	font-size: 12px;
	font-weight: 500;
	color: var(--wc-spa-text-muted);
	flex-shrink: 0;
}

.wc-spa-menu-sales-products {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wc-spa-menu-sales-product {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wc-spa-menu-sales-product:last-child {
	border-bottom: none;
}

.wc-spa-menu-sales-product-img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 10px;
	flex-shrink: 0;
	background: #e5e7eb;
}

.wc-spa-menu-sales-product-meta {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wc-spa-menu-sales-product-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--wc-spa-text);
}

.wc-spa-menu-sales-product-price {
	font-size: 13px;
	color: var(--wc-spa-text-muted);
}

.wc-spa-menu-sales-line-qty {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

/* Solo modales de ventas (capa #wc-spa-menu-sales-modal-layer); no afecta .wc-spa-menu-qty-btn del listado */
.wc-spa-menu-sales-modal-layer .wc-spa-menu-sales-qty {
	width: 32px;
	height: 32px;
	border: 1px solid var(--wc-spa-border);
	border-radius: 8px;
	background: #fff;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	color: var(--wc-spa-text);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
}

.wc-spa-menu-sales-modal-layer .wc-spa-menu-sales-qty:hover {
	border-color: var(--wc-spa-accent);
}

.wc-spa-menu-sales-qty-val {
	min-width: 22px;
	text-align: center;
	font-weight: 600;
	font-size: 15px;
}

.wc-spa-menu-sales-btn {
	padding: 10px 18px;
	border-radius: 12px;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border: none;
}

.wc-spa-menu-sales-btn--ghost {
	background: transparent;
	color: var(--wc-spa-text-muted);
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.wc-spa-menu-sales-btn--ghost:hover {
	background: rgba(0, 0, 0, 0.04);
}

.wc-spa-menu-sales-primary,
.wc-spa-menu-sales-btn.wc-spa-menu-sales-primary {
	background: var(--wc-spa-accent);
	color: #fff;
}

.wc-spa-menu-sales-primary:hover {
	filter: brightness(1.05);
}

/* Modal adicionales (markup en wp_footer) */
.spa-upsell-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 10002;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
	background: rgba(31, 41, 55, 0.55);
	font-family: 'Poppins', sans-serif;
}

.spa-upsell-modal-overlay[hidden] {
	display: none !important;
}

.spa-upsell-modal-dialog {
	width: 100%;
	max-width: 420px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
	padding: 22px 20px 18px;
	box-sizing: border-box;
}

.spa-upsell-modal-dialog h3 {
	margin: 0 0 14px;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--wc-spa-text, #1f2937);
}

.spa-upsell-addons-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: min(50vh, 280px);
	overflow-y: auto;
	margin-bottom: 16px;
	padding-right: 4px;
}

.spa-upsell-addon-label {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--wc-spa-text, #1f2937);
	cursor: pointer;
	padding: 8px 10px;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: rgba(249, 248, 244, 0.6);
}

.spa-upsell-addon-label:hover {
	border-color: rgba(0, 127, 255, 0.35);
}

.spa-upsell-addon-cb {
	margin: 0;
	flex-shrink: 0;
	accent-color: var(--wc-spa-accent, #007fff);
}

.spa-upsell-addon-price {
	font-size: 13px;
	font-weight: 600;
	color: var(--wc-spa-accent, #007fff);
}

.spa-upsell-modal-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.spa-upsell-modal-actions .button {
	border-radius: 12px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	padding: 10px 18px;
}

.elche-spa-menu.wc-spa-menu .wc-spa-menu-empty,
.elche-spa-menu.wc-spa-menu .wc-spa-menu-no-products {
	margin: 0;
	padding: 24px;
	text-align: center;
	color: var(--wc-spa-text-muted);
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
}

/* Modal imagen */
.elche-spa-menu.wc-spa-menu .wc-spa-image-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
}

.elche-spa-menu.wc-spa-menu .wc-spa-image-modal[hidden] {
	display: none !important;
}

.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(31, 41, 55, 0.45);
}

.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 360px;
	max-height: calc(100vh - 32px);
	display: flex;
	flex-direction: column;
	background: #FFFFFF; /* blanco puro: se funde con las fotos de producto (fondo blanco) */
	border: var(--wc-spa-border-width) solid var(--wc-spa-accent);
	border-radius: var(--wc-spa-radius);
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px 8px;
}

.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__titlewrap {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 4px 10px;
}

.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__title {
	margin: 0;
	font-family: 'Anton', sans-serif;
	font-weight: normal;
	font-size: 1.15rem;
	line-height: 1.25;
	color: var(--wc-spa-accent);
	letter-spacing: 0.02em;
}

/* Precio al lado del título, en el naranja de marca (poder de venta). */
.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__price {
	font-family: 'Anton', sans-serif;
	font-size: 1.1rem;
	line-height: 1.25;
	color: #FF8732;
	white-space: nowrap;
}
.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__price .wc-spa-menu-price-strike,
.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__price del {
	color: #9aa3b2;
	font-size: 0.8em;
	margin-left: 4px;
}

/* Flechas tipo carrusel (anterior / siguiente producto, infinito). Mismo estilo
   y tamaño que el indicador de scroll de las categorías. */
.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	padding: 0;
	border: 1px solid var(--wc-spa-accent, #007fff);
	border-radius: 50%;
	background: #fff;
	color: var(--wc-spa-accent, #007fff);
	box-shadow: 0 2px 8px rgba(0, 127, 255, 0.28);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
}
.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__nav:hover { background: #f0f7ff; }
.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__prev { left: 6px; }
.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__next { right: 6px; }

.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__close {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	font-family: 'Anton', sans-serif;
	font-size: 2.25rem;
	line-height: 0.85;
	color: var(--wc-spa-accent);
	cursor: pointer;
}

.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__close:hover {
	opacity: 0.85;
}

.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__body {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 6px 10px;
	min-height: 0;
	position: relative;
}

.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__img {
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 62vh;
	object-fit: contain;
	border-radius: 0;
	border: none;
	display: block;
	margin: 0;
}

.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__footer {
	display: flex;
	justify-content: flex-end;
	padding: 8px 16px 16px;
}

/* Botón AGREGAR del modal: CTA grande full-width (no la tira fina por defecto).
   Especificidad alta (footer + 2 clases base) para ganarle a la regla de botón
   estándar Y a la versión chica de la media query móvil. */
.elche-spa-menu.wc-spa-menu .wc-spa-image-modal__footer .wc-spa-image-modal__elegir.wc-spa-menu-elegir-btn {
	width: 100%;
	height: 48px;
	min-height: 48px;
	border-radius: 12px;
	font-size: 14px;
	letter-spacing: 0.06em;
}

@media (max-width: 768px) {
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav {
		padding: 12px;
		gap: 8px;
	}
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-btn {
		padding: 2px;
	}
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-label {
		font-size: 13px;
	}
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-img,
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-nav-placeholder {
		width: 92px;
		height: 92px;
	}
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-inner {
		min-height: 76px;
		padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
		gap: 6px;
	}
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-total {
		font-size: 24px;
		font-weight: 800;
		letter-spacing: -0.5px;
		color: #ffffff;
	}
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-label {
		font-size: 11px;
		letter-spacing: 0.8px;
		opacity: 0.8;
	}
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-btn {
		padding: 12px 16px;
		font-size: 15px;
		font-weight: 700;
		min-width: 120px;
		letter-spacing: 0.25px;
	}
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-footer-review-btn {
		padding: 10px 14px;
		font-size: 14px;
		font-weight: 600;
		min-width: 92px;
	}
}

@media (max-width: 430px) {
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-product {
		padding: 10px;
	}
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-main {
		gap: 8px;
	}
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-img,
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-placeholder {
		width: 64px;
		height: 64px;
	}
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-title {
		font-size: 0.93rem;
	}
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-col--actions {
		--wc-spa-action-size: 30px;
		--wc-spa-action-gap: 5px;
		min-width: 98px;
	}
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-pedir-btn.wc-spa-menu-elegir-btn,
	.elche-spa-menu.wc-spa-menu .wc-spa-menu-accordion-btn {
		font-size: 10px;
		padding: 0 8px;
	}
}

.elche-spa-menu.wc-spa-menu.wc-spa-menu--loading {
	min-height: 120px;
	padding: 24px 16px;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-loading-msg {
	margin: 0;
	color: var(--wc-spa-text-muted);
	text-align: center;
	font-size: 15px;
	font-family: 'Poppins', sans-serif;
}

/* Toasts — carrito AJAX (alcance global, fuera del menú) */
#elche-toast-container {
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	gap: 8px;
	pointer-events: none;
	max-width: min(420px, calc(100vw - 40px));
}

.elche-toast {
	background-color: #007bff;
	color: #ffffff;
	padding: 8px 16px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 500;
	border-radius: 8px;
	box-shadow: none !important;
	transform: translateX(-120%);
	opacity: 0;
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	pointer-events: none;
}

.elche-toast.show {
	transform: translateX(0);
	opacity: 1;
}

/* —— Shortcode [elche_single_product] — Flat, sin sombras —— */
.elche-spa-menu.wc-spa-menu.elche-spa-menu--single {
	min-height: 0;
	padding-bottom: 0;
	background: transparent;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .wc-spa-menu-product.elche-single-product {
	background: transparent;
	border: none;
	padding: 0;
	box-shadow: none !important;
	transition: none;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .wc-spa-menu-product.elche-single-product:hover,
.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .wc-spa-menu-product.elche-single-product.selected {
	box-shadow: none !important;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-card {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	border: 1px solid var(--wc-spa-border, #007FFF);
	border-radius: 20px;
	background: #fff;
	box-shadow: none !important;
	margin: 20px 0;
	overflow: hidden;
	font-family: 'Poppins', sans-serif;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-image {
	flex: 1 1 50%;
	min-width: 220px;
	margin: 0;
	background: var(--wc-spa-bg-card, #F9F8F4);
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-image img,
.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-image__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: middle;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-content {
	flex: 1 1 50%;
	min-width: 220px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	box-sizing: border-box;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-title {
	margin: 0;
	font-family: 'Anton', sans-serif;
	font-weight: normal;
	font-size: 1.5rem;
	line-height: 1.2;
	color: var(--wc-spa-text, #1F2937);
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-price {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--wc-spa-accent, #007FFF);
	font-family: 'Poppins', sans-serif;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-price .woocommerce-Price-amount,
.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-price span.amount {
	color: inherit;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-excerpt {
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--wc-spa-text-muted, #6B7280);
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-actions {
	position: relative;
	margin-top: auto;
	padding-top: 8px;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-qty-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-add-btn.wc-spa-menu-pedir-btn.wc-spa-menu-elegir-btn {
	width: 100%;
	max-width: 100%;
	padding: 16px 20px;
	font-size: 13px;
	font-weight: 700;
	border-radius: 14px;
	box-shadow: none !important;
}

@media (max-width: 600px) {
	.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-image,
	.elche-spa-menu.wc-spa-menu.elche-spa-menu--single .elche-single-content {
		flex: 1 1 100%;
		min-width: 100%;
	}
}

/* —— Shortcode [elche_promo_banner] —— */
.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner {
	min-height: 0;
	padding-bottom: 0;
	background: transparent;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .wc-spa-menu-product.elche-promo-banner {
	position: relative;
	background: transparent;
	border: none;
	padding: 0;
	box-shadow: none !important;
	margin: 16px 0;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .elche-promo-banner-qty {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .elche-promo-banner__visual {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	line-height: 0;
	border: 1px solid var(--wc-spa-border, #e5e7eb);
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .elche-promo-banner__media {
	display: block;
	position: relative;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .elche-promo-banner__img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .elche-promo-banner__img--mobile {
	display: none;
}

@media (max-width: 767px) {
	.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .elche-promo-banner__img--desktop.elche-promo-banner__img--has-mobile-alt {
		display: none;
	}

	.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .elche-promo-banner__img--mobile {
		display: block;
	}
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .elche-promo-banner__hit.wc-spa-menu-pedir-btn.wc-spa-menu-elegir-btn,
.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .elche-promo-banner__hit.wc-spa-menu-pedir-btn.wc-spa-menu-elegir-btn:hover,
.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .elche-promo-banner__hit.wc-spa-menu-pedir-btn.wc-spa-menu-elegir-btn.selected {
	background: transparent !important;
	border-color: transparent !important;
	color: transparent !important;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .elche-promo-banner__hit {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	pointer-events: auto;
	box-shadow: none !important;
	min-height: 0 !important;
	height: 100% !important;
	flex: none !important;
	font-size: 0;
	color: transparent;
	text-indent: -9999px;
	overflow: hidden;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .elche-promo-banner__hit:focus-visible {
	outline: 3px solid var(--wc-spa-accent, #007fff);
	outline-offset: 2px;
}

.elche-spa-menu.wc-spa-menu.elche-spa-menu--promo-banner .elche-promo-banner__hit.elche-btn-loading {
	opacity: 0.85;
}

/* ============================================================
   VISTA "VITRINA" — sin borde, imagen grande, descripción
   siempre visible y control de cantidad (− 0 +) compacto
   abajo-derecha. Reusa el markup y el motor de selección/carrito
   del menú (el qty alimenta el footer; no hay botón AGREGAR).
   ============================================================ */
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product {
	background: transparent;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #ece9e2;
	padding: 16px 4px;
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product:hover,
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product.selected {
	box-shadow: none;
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-main {
	align-items: flex-start;
	gap: 14px;
}
/* imagen grande, rectangular redondeada (no círculo) */
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-img,
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-placeholder {
	width: 128px;
	height: 128px;
	border-radius: 14px;
	border: none;
}
/* título más grande (hay espacio en 2 columnas) */
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-title {
	font-size: 1.35rem;
	line-height: 1.15;
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-img-wrap,
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-img-trigger {
	border-radius: 14px;
}
/* descripción siempre visible */
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-desc {
	margin: 2px 0 4px;
	font-size: 0.9rem;
	line-height: 1.35;
	color: #6b7280;
	font-family: 'Poppins', sans-serif;
}
/* Fila inferior tipo VICIO: precio (izq) ⟷ control de cantidad (der). El qty
   vive DENTRO de la columna de contenido (2 columnas: imagen | contenido), así
   la descripción usa todo el ancho y el precio/qty quedan alineados en una fila. */
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-vitrina-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 8px;
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-vitrina-bottom .wc-spa-menu-product-prices {
	margin: 0;
}
/* El qty base es width:100% con botones flex:1 → en la fila lo fijamos compacto
   y con esquinas redondeadas (no cuadrado). overflow:hidden recorta los botones. */
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-vitrina-bottom .wc-spa-menu-product-qty {
	width: auto;
	flex: 0 0 auto;
	border-radius: 12px;
	overflow: hidden;
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-vitrina-bottom .wc-spa-menu-qty-btn {
	flex: 0 0 30px;
	width: 30px;
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-vitrina-bottom .wc-spa-menu-product-qty input {
	flex: 0 0 32px;
	width: 32px;
}
/* qty compacto */
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-qty-btn {
	width: 30px;
	height: 30px;
	font-size: 1.05rem;
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-qty input {
	width: 30px;
	font-size: 0.92rem;
}

@media (max-width: 430px) {
	.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-img,
	.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-placeholder {
		width: 108px;
		height: 108px;
	}
	.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-title {
		font-size: 1.18rem;
	}
	.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-main {
		gap: 12px;
	}
}

/* ══════════════════════════════════════════════════════════════════════════
   NEUROMARKETING DE LA CARTA (2026-07): precio sin símbolo con decimales
   elevados · destacado hero (ancla) · prueba social · desorden orgánico.
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Precio sin dolor: entero grande, decimales chicos elevados ─────────── */
.elche-spa-menu.wc-spa-menu .spa-nprice {
	display: inline-flex;
	align-items: flex-start;
	line-height: 1;
	font-weight: 800;
}
.elche-spa-menu.wc-spa-menu .spa-nprice-int {
	font-size: 1.5em;
	letter-spacing: -0.02em;
}
.elche-spa-menu.wc-spa-menu .spa-nprice-dec {
	font-size: 0.72em;
	font-weight: 700;
	margin-left: 1px;
	top: 0.15em;
	position: relative;
	opacity: 0.85;
}
/* El tachado (ancla) queda discreto: chico, gris, sin robar atención */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-strike .spa-nprice {
	font-weight: 600;
	opacity: 0.55;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-strike .spa-nprice-int {
	font-size: 0.95em;
}

/* ── Card DESTACADA (ancla de precio, configurable desde la SaaS) ───────── */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--featured {
	position: relative;
	border: 2px solid #FF8732 !important;
	border-radius: 18px !important;
	background: #fff8f2 !important;
	padding-top: 22px !important;
	margin: 18px 0 10px;
	box-shadow: 0 10px 26px rgba(255, 135, 50, 0.16) !important;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-featured-badge {
	position: absolute;
	top: -13px;
	left: 16px;
	background: #FF8732;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	padding: 4px 12px;
	border-radius: 100px;
	box-shadow: 0 4px 10px rgba(255, 135, 50, 0.35);
	z-index: 2;
}
/* Foto dominante en la destacada (jerarquía visual, como la carta física) */
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product--featured .wc-spa-menu-product-img,
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product--featured .wc-spa-menu-product-placeholder {
	width: 150px;
	height: 150px;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--featured .wc-spa-menu-product-title {
	color: #E06A1A;
}
@media (max-width: 430px) {
	.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product--featured .wc-spa-menu-product-img,
	.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product--featured .wc-spa-menu-product-placeholder {
		width: 126px;
		height: 126px;
	}
}

/* ── Prueba social: ventas reales de la semana ──────────────────────────── */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-sold-chip {
	display: inline-block;
	background: #FFF1E6;
	color: #E06A1A;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 2px 9px;
	border-radius: 100px;
	margin: 2px 0 4px;
}

/* ── Desorden orgánico: fotos con leve rotación + sombra, fondos alternos ─ */
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-img {
	box-shadow: 0 8px 18px rgba(17, 24, 39, 0.14);
	transition: transform 0.25s ease;
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product:nth-child(odd) .wc-spa-menu-product-img {
	transform: rotate(-2deg);
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product:nth-child(even) .wc-spa-menu-product-img {
	transform: rotate(2deg);
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product:hover .wc-spa-menu-product-img {
	transform: rotate(0deg) scale(1.03);
}
/* Fondo alterno suave: rompe la lista plana sin ensuciar */
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product:nth-child(even):not(.wc-spa-menu-product--featured) {
	background: #f7f9fd;
	border-radius: 16px;
}
/* La destacada nunca rota: es la protagonista, quieta y grande */
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product--featured .wc-spa-menu-product-img {
	transform: none !important;
}

/* ── P3: Escalera de tamaños — una card, precios juntos (Familiar arriba) ── */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-size-group {
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	background: #fff;
	margin: 10px 0;
	overflow: hidden;
}
/* Las cards internas pierden su propio fondo/borde (el wrapper es LA card) */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-size-group .wc-spa-menu-product {
	background: transparent !important;
	border-radius: 0 !important;
	margin: 0 !important;
}
/* Fila principal (la más cara = Familiar): layout completo, precio dominante */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--size-lead {
	padding-bottom: 6px;
}
/* Filas compactas (Mediana/Personal): solo etiqueta + precio + stepper */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--size-row {
	border-top: 1px dashed #e5e7eb;
	padding-top: 8px !important;
	padding-bottom: 8px !important;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--size-row .wc-spa-menu-product-col--media,
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--size-row .wc-spa-menu-product-title,
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--size-row .wc-spa-menu-product-desc,
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--size-row .wc-spa-menu-product-combo-includes,
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--size-row .wc-spa-menu-sold-chip {
	display: none !important;
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product--size-row .wc-spa-menu-vitrina-bottom {
	margin-top: 0;
}
/* Etiqueta del tamaño: "8P Familiar" protagonista · filas en gris */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-size-label {
	flex: 1;
	min-width: 0;
	font-size: 0.86rem;
	font-weight: 700;
	color: #6b7280;
	font-family: 'Poppins', sans-serif;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-size-label--lead {
	font-size: 0.95rem;
	font-weight: 800;
	color: #007FFF;
}
/* Jerarquía de precio: la Familiar grande, las filas más discretas */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--size-row .spa-nprice-int {
	font-size: 1.12em;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--size-row .spa-nprice {
	font-weight: 700;
	opacity: 0.92;
}
/* Sin rotación de foto dentro del grupo (solo la lead tiene foto y va quieta) */
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-size-group .wc-spa-menu-product-img {
	transform: none;
}

/* ── Tachado REAL con "antes" (el line-through no cruza inline-flex) ─────── */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-strike {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	text-decoration: none;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-strike-antes {
	font-size: 0.62rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #9ca3af;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-strike .spa-nprice {
	position: relative;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-strike .spa-nprice::after {
	content: '';
	position: absolute;
	left: -2px;
	right: -2px;
	top: 52%;
	height: 2px;
	background: #ef4444;
	opacity: 0.75;
	transform: rotate(-8deg);
	border-radius: 2px;
}

/* ── "desde" en la card del grupo de tamaños ─────────────────────────────── */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-desde {
	font-size: 0.72rem;
	font-weight: 700;
	color: #6b7280;
	margin-right: 3px;
	text-transform: lowercase;
}
/* Las filas-holder de cantidad quedan invisibles (la elección vive en el modal) */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--size-hidden {
	display: none !important;
}
/* Sin filas visibles, el wrapper del grupo no necesita marco propio */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-size-group {
	border: none;
	border-radius: 0;
	background: transparent;
	margin: 0;
	overflow: visible;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-size-group .wc-spa-menu-product--size-lead {
	background: revert;
	border-radius: revert;
	margin: revert;
}

/* ── Modal CONFIGURADOR de tamaños ───────────────────────────────────────── */
body.spa-size-modal-open { overflow: hidden; }
.spa-size-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center; /* centrado SIEMPRE (movil y desktop), no bottom-sheet */
	justify-content: center;
	padding: 16px;
	background: rgba(15, 23, 42, 0.55);
}
/* CLAVE: display:flex del autor le gana al [hidden] del navegador — sin esta
   regla el modal aparece VACIO al cargar la pagina. */
.spa-size-modal-overlay[hidden] { display: none !important; }
.spa-size-modal-media img[src=''], .spa-size-modal-media img:not([src]) { display: none; }

.spa-size-modal-dialog {
	position: relative;
	background: #fff;
	width: 100%;
	max-width: 480px;
	max-height: 92vh;
	overflow: auto;
	border-radius: 20px;
	font-family: 'Poppins', sans-serif;
	display: flex;
	flex-direction: column;
}

.spa-size-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	width: 34px !important;
	height: 34px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border: none !important;
	border-radius: 50% !important;
	background: rgba(255,255,255,0.92) !important;
	color: #111827 !important;
	font-size: 15px;
	font-weight: 800;
	padding: 0 !important;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.spa-size-modal-media {
	width: 100%;
	height: 210px;
	background: #f8fafc;
	flex: 0 0 auto;
}
.spa-size-modal-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.spa-size-modal-body { padding: 14px 16px 8px; }
.spa-size-modal-body h3 {
	margin: 0 0 2px;
	font-family: 'Anton', 'Poppins', sans-serif;
	font-weight: normal;
	font-size: 1.45rem;
	color: #007FFF;
}
.spa-size-modal-desc {
	margin: 0 0 10px;
	font-size: 0.82rem;
	color: #6b7280;
	line-height: 1.4;
}
.spa-size-modal-sec-title {
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #374151;
	margin: 12px 0 8px;
}
/* Tamaños */
.spa-size-opt {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	border: 1.5px solid #e5e7eb !important;
	border-radius: 12px !important;
	background: #fff !important;
	color: #111827 !important;
	padding: 10px 12px !important;
	margin-bottom: 8px;
	cursor: pointer;
	text-align: left;
	font-family: 'Poppins', sans-serif;
}
.spa-size-opt.is-on {
	border-color: #007FFF !important;
	background: #eaf3ff !important;
	box-shadow: 0 0 0 1px #007FFF;
}
.spa-size-opt-radio {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	border: 2px solid #cbd5e1;
	border-radius: 50%;
	position: relative;
}
.spa-size-opt.is-on .spa-size-opt-radio { border-color: #007FFF; }
.spa-size-opt.is-on .spa-size-opt-radio::after {
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: #007FFF;
}
.spa-size-opt-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.spa-size-opt-label { font-weight: 800; font-size: 0.95rem; }
.spa-size-opt-desc { font-size: 0.72rem; color: #6b7280; }
.spa-size-opt-price { font-weight: 900; font-size: 0.98rem; white-space: nowrap; }
/* Adicionales (con imagen) */
.spa-size-modal-addons { display: flex; flex-wrap: wrap; gap: 8px; }
.spa-size-addon {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1.5px solid #e5e7eb !important;
	border-radius: 100px !important;
	background: #fff !important;
	color: #111827 !important;
	padding: 6px 12px 6px 6px !important;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	font-size: 0.82rem;
}
.spa-size-addon img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: cover;
}
.spa-size-addon.is-on {
	border-color: #FF8732 !important;
	background: #FFF1E6 !important;
}
.spa-size-addon-name { font-weight: 700; }
.spa-size-addon-price { font-weight: 800; color: #E06A1A; white-space: nowrap; }
/* Complementos (gaseosas…) */
.spa-size-comp {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid #f1f5f9;
	border-radius: 12px;
	padding: 8px 10px;
	margin-bottom: 8px;
}
.spa-size-comp.is-on { border-color: #007FFF; background: #f6faff; }
.spa-size-comp img {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	object-fit: cover;
}
.spa-size-comp-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.spa-size-comp-name { font-weight: 700; font-size: 0.85rem; }
.spa-size-comp-price { font-size: 0.78rem; color: #6b7280; }
.spa-size-comp-qty { display: flex; align-items: center; gap: 8px; font-weight: 800; }
.spa-size-comp-btn {
	width: 28px !important;
	height: 28px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border: 1.5px solid #cbd5e1 !important;
	border-radius: 8px !important;
	background: #fff !important;
	color: #111827 !important;
	font-weight: 800;
	padding: 0 !important;
	cursor: pointer;
}
/* Footer sticky del modal */
.spa-size-modal-footer {
	position: sticky;
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
	background: #fff;
	border-top: 1px solid #f1f5f9;
}
.spa-size-modal-qty {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1.5px solid #e5e7eb;
	border-radius: 12px;
	padding: 6px 10px;
	font-weight: 900;
	font-size: 1rem;
}
.spa-size-modal-qty button {
	width: 28px !important;
	height: 28px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border: none !important;
	border-radius: 8px !important;
	background: #f1f5f9 !important;
	color: #111827 !important;
	font-weight: 800;
	padding: 0 !important;
	cursor: pointer;
}
.spa-size-modal-add {
	flex: 1;
	border: none !important;
	border-radius: 12px !important;
	background: #007FFF !important;
	color: #fff !important;
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	font-size: 0.95rem;
	padding: 14px !important;
	cursor: pointer;
}
.spa-size-modal-add:hover { background: #005FCC !important; }


/* ── Pulido 2026-07-05: fondo blanco puro, fotos rectas, stepper limpio ── */
/* 1) Menú 100% blanco: sin fondos alternos ni tintes */
.elche-spa-menu.wc-spa-menu,
.elche-spa-menu.wc-spa-menu .wc-spa-menu-content,
.elche-spa-menu.wc-spa-menu .wc-spa-menu-section {
	background: #ffffff;
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product:nth-child(even):not(.wc-spa-menu-product--featured) {
	background: #ffffff;
}
/* 2) Fotos rectas y sin sombra (se retira el "desorden orgánico") */
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product-img {
	box-shadow: none;
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product:nth-child(odd) .wc-spa-menu-product-img,
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product:nth-child(even) .wc-spa-menu-product-img {
	transform: none;
}
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-product:hover .wc-spa-menu-product-img {
	transform: none;
}
/* 3) Stepper sin borde ni divisiones; + − y cantidad más grandes y gruesos */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-qty,
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-vitrina-bottom .wc-spa-menu-product-qty {
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-qty-btn {
	border: none !important;
	background: transparent !important;
	font-size: 1.35rem !important;
	font-weight: 800 !important;
	color: #007FFF;
	line-height: 1;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-qty input {
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 1.1rem !important;
	font-weight: 800 !important;
	color: #111827;
}

/* ── Pulido del MODAL: borde de marca, precios sin S/, opciones sin gritar ── */
.spa-size-modal-dialog {
	border: 1.5px solid #007FFF;
}
/* Decimales chicos elevados en los precios del modal */
.spa-price-sup {
	font-size: 0.62em;
	font-weight: 700;
	position: relative;
	top: -0.05em;
	margin-left: 1px;
	line-height: 1;
}
/* Opciones legibles: sin negrita ni MAYÚSCULAS heredadas del tema en el texto;
   la jerarquía queda en los TÍTULOS de sección (que sí van bold+uppercase). */
.spa-size-opt-label {
	font-weight: 500;
	text-transform: none;
	letter-spacing: normal;
	font-size: 0.92rem;
}
.spa-size-opt-desc { text-transform: none; letter-spacing: normal; }
.spa-size-opt-price { font-weight: 700; font-size: 1.05rem; }
.spa-size-opt.is-on .spa-size-opt-label { font-weight: 700; }
.spa-size-addon { text-transform: none !important; letter-spacing: normal !important; }
.spa-size-addon-name { font-weight: 500; }
.spa-size-addon-price { font-weight: 700; }
.spa-size-comp-name { font-weight: 600; }


/* ── Pulido estilo Bembos (2026-07-05) ──────────────────────────────────── */
/* Precio en oferta: actual arriba · viejo tachado horizontal ROJO + badge % */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-stack {
	display: flex;
	flex-direction: column;
	gap: 1px;
	line-height: 1.1;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-was {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-strike-antes { display: none; }
.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-strike .spa-nprice::after {
	transform: none;            /* horizontal, no diagonal */
	top: 50%;
	height: 1.5px;
	background: #ef4444;
	opacity: 1;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-price-strike .spa-nprice { color: #9ca3af; }
.elche-spa-menu.wc-spa-menu .wc-spa-menu-pct-badge {
	background: #ef4444;
	color: #fff;
	font-size: 0.66rem;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 6px;
	line-height: 1;
}

/* Stepper → un solo botón + en círculo azul relleno (todo abre el modal).
   La cantidad aparece como badge SOLO cuando el producto ya está en el pedido. */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-qty-btn.minus { display: none !important; }
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-qty input {
	display: none;
	width: 26px !important;
	text-align: center;
	padding: 0;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product.selected .wc-spa-menu-product-qty input {
	display: inline-block;
	color: #007FFF;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-qty-btn.plus,
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-vitrina-bottom .wc-spa-menu-qty-btn.plus {
	width: 34px !important;
	height: 34px !important;
	flex: 0 0 34px !important;
	border-radius: 50% !important;
	background: #007FFF !important;
	color: #ffffff !important;
	font-size: 1.3rem !important;
	font-weight: 800 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 127, 255, 0.35);
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product-qty {
	gap: 4px;
	justify-content: flex-end;
}

/* Destacado: borde FINO azul de marca con radio (fuera el naranja esquinado) */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--featured {
	border: 1.5px solid #007FFF !important;
	border-radius: 20px !important;
	background: #ffffff !important;
	box-shadow: none !important;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--featured .wc-spa-menu-product-title {
	color: #007FFF;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-featured-badge {
	background: #007FFF;
	box-shadow: 0 4px 10px rgba(0, 127, 255, 0.3);
}


/* ── Pulido ronda 3 (2026-07-05) ────────────────────────────────────────── */
/* 1) Destacado DENTRO de un grupo de tamaños: la regla del wrapper
      (border-radius:0) es más específica y aplastaba el radio → devolverlo.
      SIN overflow:hidden — no hay nada que recortar adentro y así el badge
      "La favorita" (que sobresale arriba con top negativo) nunca se corta. */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-size-group .wc-spa-menu-product--featured,
.elche-spa-menu.wc-spa-menu .wc-spa-menu-product--featured {
	border-radius: 20px !important;
	overflow: visible !important;
}
.elche-spa-menu.wc-spa-menu .wc-spa-menu-size-group:has(.wc-spa-menu-product--featured) {
	overflow: visible !important; /* que el badge no se recorte con el wrapper del grupo */
}

/* 2) Prueba social fuera (decisión 2026-07-05): se conserva el pipeline de
      ventas por si se reactiva, pero el chip no se muestra. */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-sold-chip { display: none !important; }

/* 3) El + del círculo: más grande y ópticamente centrado */
.elche-spa-menu.wc-spa-menu .wc-spa-menu-qty-btn.plus,
.elche-spa-menu.wc-spa-menu--view-vitrina .wc-spa-menu-vitrina-bottom .wc-spa-menu-qty-btn.plus {
	font-size: 1.55rem !important;
	line-height: 1 !important;
	padding: 0 0 2px 0 !important; /* compensación óptica del glifo + */
}

/* 4) Símbolo de moneda: chico, a la IZQUIERDA y alineado ABAJO del número */
.elche-spa-menu.wc-spa-menu .spa-nprice-cur,
.spa-size-modal-dialog .spa-nprice-cur {
	font-size: 0.52em;
	font-weight: 700;
	align-self: flex-end;
	margin-right: 2px;
	padding-bottom: 0.12em;
	opacity: 0.75;
	letter-spacing: 0;
}
/* En el modal los precios no son flex: alinear por baseline */
.spa-size-modal-dialog .spa-nprice-cur {
	display: inline-block;
	vertical-align: baseline;
	margin-right: 1px;
}
/* El tachado en rojo también tacha el símbolo (queda dentro del ::after) */
