/* =========================================================================
   La Económica — Sistema de diseño 2.0 (cálido / premium / redondeado)
   Tema institucional para comercio local argentino.
   Compatible con WooCommerce 4.x. Mobile-first.
   ========================================================================= */

:root {
	/* Paleta de marca (institucional) */
	--color-primary: #102480;
	--color-primary-dark: #07133F;
	--color-accent: #A50D34;
	--color-white: #FFFFFF;
	--color-bg: #F6F7FB;
	--color-border: #E5E7EB;
	--color-text: #1F2937;
	--color-muted-blue: #EEF2FF;
	--color-muted-rose: #F8EAF0;

	/* Paleta cálida ampliada (rediseño) */
	--color-warm-bg: #F5F0EB;
	--color-warm-surface: #FBF7F3;
	--color-soft-card: #F7EFE8;
	--color-soft-blue-card: #EAF0F8;
	--color-soft-green-card: #EAF3EC;
	--color-soft-rose-card: #F7EBEE;
	--color-soft-shadow: rgba(17, 24, 39, 0.08);

	/* Derivados */
	--color-primary-hover: #0c1c66;
	--color-accent-hover: #86072a;
	--color-text-soft: #4b5563;
	--color-text-muted: #6b7280;
	--color-warm-border: #ECE3D9;

	/* Tipografía */
	--font-base: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	/* Radios (redondeado marcado, clave del estilo) */
	--radius-sm: 12px;
	--radius: 18px;
	--radius-lg: 26px;
	--radius-xl: 34px;
	--radius-pill: 999px;

	/* Sombras suaves */
	--shadow-sm: 0 1px 3px var(--color-soft-shadow);
	--shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
	--shadow-lg: 0 24px 60px rgba(17, 24, 39, 0.14);

	--container: 1200px;
	--gutter: 22px;
	--header-height: 76px;

	--transition: 0.22s ease;
}

/* -------------------------------------------------------------------------
   Reset ligero
   ---------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
	margin: 0;
	font-family: var(--font-base);
	color: var(--color-text);
	background: var(--color-warm-bg);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }

h1, h2, h3, h4 {
	line-height: 1.15;
	color: var(--color-primary-dark);
	margin: 0 0 0.5em;
	font-weight: 800;
	letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.laeco-container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 1000;
	background: var(--color-primary); color: #fff;
	padding: 10px 16px; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

.laeco-icon { flex: none; vertical-align: middle; }

/* -------------------------------------------------------------------------
   Sistema de botones
   ---------------------------------------------------------------------- */
.laeco-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: var(--font-base);
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
	padding: 14px 24px;
	border-radius: var(--radius-pill);
	border: 2px solid transparent;
	cursor: pointer;
	transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
	text-align: center;
	white-space: nowrap;
	box-shadow: 0 6px 16px rgba(16, 36, 128, 0.10);
}

.laeco-btn:focus-visible,
.woocommerce a.button:focus-visible {
	outline: 3px solid rgba(16, 36, 128, 0.35);
	outline-offset: 2px;
}

.laeco-btn--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}
.laeco-btn--primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.laeco-btn--accent,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce .single_add_to_cart_button {
	background: var(--color-accent);
	color: #fff;
	border-color: var(--color-accent);
	box-shadow: 0 8px 20px rgba(165, 13, 52, 0.22);
}
.laeco-btn--accent:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce .single_add_to_cart_button:hover {
	background: var(--color-accent-hover);
	border-color: var(--color-accent-hover);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(165, 13, 52, 0.30);
}

.laeco-btn--outline {
	background: transparent;
	color: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
	box-shadow: none;
}
.laeco-btn--outline:hover {
	background: var(--color-primary-dark);
	color: #fff;
	transform: translateY(-2px);
}

.laeco-btn--outline-light {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
	box-shadow: none;
}
.laeco-btn--outline-light:hover { background: #fff; color: var(--color-primary-dark); }

.laeco-btn--white { background: #fff; color: var(--color-primary-dark); border-color: #fff; }
.laeco-btn--white:hover { background: var(--color-warm-surface); color: var(--color-primary-dark); }

.laeco-btn--lg { padding: 17px 30px; font-size: 16px; }
.laeco-btn--sm { padding: 11px 18px; font-size: 14px; box-shadow: none; }
.laeco-btn--block { display: flex; width: 100%; }

/* WhatsApp variant */
.laeco-btn--wa { background: #25D366; border-color: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25); }
.laeco-btn--wa:hover { background: #1eb658; border-color: #1eb658; color: #fff; }

/* -------------------------------------------------------------------------
   Barra de anuncios
   ---------------------------------------------------------------------- */
.laeco-announcement {
	background: var(--color-primary-dark);
	color: #fff;
	font-size: 14px;
}
.laeco-announcement__inner {
	display: flex; align-items: center; justify-content: center;
	gap: 8px; padding-block: 9px; text-align: center;
}
.laeco-announcement .laeco-icon { color: #fff; opacity: 0.9; }

/* -------------------------------------------------------------------------
   Header
   ---------------------------------------------------------------------- */
.laeco-header {
	background: var(--color-warm-surface);
	border-bottom: 1px solid var(--color-warm-border);
	position: sticky; top: 0; z-index: 200;
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition);
}
.laeco-header.is-scrolled { box-shadow: 0 8px 24px rgba(17, 24, 39, 0.10); }

.laeco-header__inner {
	display: flex; align-items: center; gap: 18px;
	min-height: var(--header-height);
}

.laeco-header__brand { flex: none; display: flex; align-items: center; }
.laeco-header__brand img,
.custom-logo { max-height: 54px; width: auto; }

.laeco-logo-img { display: inline-flex; align-items: center; }
.laeco-logo-img--header img { max-height: 50px; width: auto; }

.laeco-logo-text { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.laeco-logo-text__mark {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 14px;
	background: var(--color-primary); color: #fff;
	font-size: 22px; line-height: 1;
	box-shadow: inset -3px -3px 0 var(--color-accent);
}
.laeco-logo-text__name { font-size: 20px; color: var(--color-primary-dark); letter-spacing: -0.02em; }
.laeco-logo-text--footer .laeco-logo-text__name { color: #fff; }

/* Navegación */
.laeco-nav { margin-inline: auto; }
.laeco-menu { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.laeco-menu li { position: relative; }
.laeco-menu a {
	display: block; padding: 10px 13px;
	color: var(--color-primary-dark); font-weight: 600; font-size: 15px;
	border-radius: var(--radius-pill);
}
.laeco-menu a:hover,
.laeco-menu .current-menu-item > a,
.laeco-menu .current_page_item > a {
	color: var(--color-accent);
	background: var(--color-soft-rose-card);
}

.laeco-menu ul.sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 230px;
	background: #fff; border: 1px solid var(--color-warm-border);
	border-radius: var(--radius); box-shadow: var(--shadow);
	padding: 10px; display: none; z-index: 210;
}
.laeco-menu li:hover > ul.sub-menu,
.laeco-menu li:focus-within > ul.sub-menu { display: block; }
.laeco-menu ul.sub-menu a { border-radius: var(--radius-sm); }

/* Acciones + botones-ícono redondeados */
.laeco-header__actions { flex: none; display: flex; align-items: center; gap: 10px; margin-left: auto; }

.laeco-iconbtn {
	position: relative;
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px;
	border-radius: var(--radius-pill);
	background: #fff;
	border: 1px solid var(--color-warm-border);
	color: var(--color-primary-dark);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition), color var(--transition), background var(--transition);
	cursor: pointer;
}
.laeco-iconbtn:hover {
	color: var(--color-accent);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.laeco-cart-count {
	position: absolute; top: -5px; right: -5px;
	min-width: 20px; height: 20px; padding: 0 5px;
	background: var(--color-accent); color: #fff;
	border-radius: var(--radius-pill); font-size: 12px; font-weight: 700;
	display: inline-flex; align-items: center; justify-content: center;
	border: 2px solid var(--color-warm-surface);
}

/* Barra de búsqueda desplegable */
.laeco-search {
	position: absolute; top: 100%; right: var(--gutter); margin-top: 10px;
	width: min(420px, calc(100vw - 44px));
	background: #fff; border: 1px solid var(--color-warm-border);
	border-radius: var(--radius); box-shadow: var(--shadow-lg);
	padding: 14px; z-index: 210;
	display: none;
}
.laeco-search.is-open { display: block; }
.laeco-search form { display: flex; gap: 8px; }
.laeco-search input[type="search"] {
	flex: 1; padding: 12px 14px; border: 1px solid var(--color-border);
	border-radius: var(--radius-pill); font-size: 15px;
}

/* Toggle menú móvil */
.laeco-menu-toggle {
	display: none; align-items: center; justify-content: center;
	width: 46px; height: 46px;
	border: 1px solid var(--color-warm-border); background: #fff;
	border-radius: var(--radius-pill); cursor: pointer; box-shadow: var(--shadow-sm);
}
.laeco-menu-toggle__bars { position: relative; width: 22px; height: 16px; }
.laeco-menu-toggle__bars span {
	position: absolute; left: 0; width: 100%; height: 2px;
	background: var(--color-primary-dark); border-radius: 2px;
	transition: transform var(--transition), opacity var(--transition), top var(--transition);
}
.laeco-menu-toggle__bars span:nth-child(1) { top: 0; }
.laeco-menu-toggle__bars span:nth-child(2) { top: 7px; }
.laeco-menu-toggle__bars span:nth-child(3) { top: 14px; }
body.laeco-menu-open .laeco-menu-toggle__bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
body.laeco-menu-open .laeco-menu-toggle__bars span:nth-child(2) { opacity: 0; }
body.laeco-menu-open .laeco-menu-toggle__bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.laeco-nav-overlay {
	position: fixed; inset: 0; background: rgba(7, 19, 63, 0.5);
	z-index: 190; opacity: 0; transition: opacity var(--transition);
}
body.laeco-menu-open .laeco-nav-overlay { opacity: 1; }

/* -------------------------------------------------------------------------
   Secciones genéricas
   ---------------------------------------------------------------------- */
.laeco-section { padding-block: clamp(48px, 7vw, 96px); }

.laeco-section__head {
	text-align: center; max-width: 760px;
	margin: 0 auto clamp(32px, 4vw, 52px);
}
.laeco-section__title { font-size: clamp(28px, 4.4vw, 44px); }
.laeco-section__subtitle { color: var(--color-text-soft); font-size: 18px; margin: 0; }

.laeco-section__eyebrow {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
	color: var(--color-accent); background: var(--color-soft-rose-card);
	padding: 7px 14px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
.laeco-section__eyebrow--light { color: #fff; background: rgba(255, 255, 255, 0.14); }

/* -------------------------------------------------------------------------
   Hero
   ---------------------------------------------------------------------- */
.laeco-hero { padding-block: clamp(28px, 4vw, 56px); }

.laeco-hero__inner {
	background:
		radial-gradient(700px 340px at 100% 0%, rgba(165, 13, 52, 0.08), transparent 60%),
		linear-gradient(135deg, var(--color-soft-card), var(--color-soft-blue-card));
	border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-xl);
	padding: clamp(28px, 5vw, 64px);
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(28px, 5vw, 56px);
	align-items: center;
	box-shadow: var(--shadow);
}
.laeco-hero__inner--solo { display: block; }
.laeco-hero__inner--solo .laeco-hero__content { max-width: 820px; }

.laeco-hero__eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	background: #fff; border: 1px solid var(--color-warm-border);
	color: var(--color-primary); font-weight: 700; font-size: 13px;
	padding: 9px 15px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.laeco-hero__title { font-size: clamp(34px, 5.6vw, 60px); margin-top: 20px; color: var(--color-primary-dark); }
.laeco-hero__subtitle { font-size: clamp(17px, 2vw, 21px); color: var(--color-text-soft); max-width: 560px; }

.laeco-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

.laeco-hero__points { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.laeco-hero__points li {
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 600; font-size: 14px; color: var(--color-primary-dark);
}
.laeco-hero__points .laeco-icon { color: var(--color-accent); }

/* Visual del hero (panel lifestyle) */
.laeco-hero__visual { position: relative; }
.laeco-hero__visual-main {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background:
		linear-gradient(160deg, #fff, var(--color-soft-blue-card));
	border: 1px solid var(--color-warm-border);
	box-shadow: var(--shadow);
	aspect-ratio: 4 / 3;
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
}
.laeco-hero__visual-main img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.laeco-hero__visual-logo { width: min(60%, 260px); height: auto; opacity: 0.95; }

.laeco-hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.laeco-hero__chip {
	display: inline-flex; align-items: center; gap: 8px;
	background: #fff; border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-pill); padding: 9px 14px;
	font-weight: 600; font-size: 13.5px; color: var(--color-primary-dark);
	box-shadow: var(--shadow-sm);
}
.laeco-hero__chip .laeco-icon { color: var(--color-primary); }
.laeco-hero__chip:hover { color: var(--color-accent); transform: translateY(-2px); transition: transform var(--transition); }
.laeco-hero__chip:hover .laeco-icon { color: var(--color-accent); }

/* Accesos rápidos de categoría dentro del hero (bajo la tarjeta visual) */
.laeco-hero__cats-label {
	display: block; margin: 20px 0 12px;
	font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--color-text-muted);
}
.laeco-hero__cats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.laeco-hero__cat {
	display: flex; align-items: center; gap: 12px;
	background: #fff; border: 1px solid var(--color-warm-border);
	border-radius: var(--radius); padding: 14px 16px;
	color: var(--color-primary-dark); font-weight: 700; font-size: 15px;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.laeco-hero__cat:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
	border-color: var(--color-primary);
	color: var(--color-primary-dark);
}
.laeco-hero__cat-icon {
	flex: none; display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 12px;
	background: var(--color-soft-blue-card); color: var(--color-primary);
}
.laeco-hero__cat:nth-child(2) .laeco-hero__cat-icon { background: var(--color-soft-rose-card); color: var(--color-accent); }
.laeco-hero__cat:nth-child(3) .laeco-hero__cat-icon { background: var(--color-soft-card); color: var(--color-primary-dark); }
.laeco-hero__cat:nth-child(4) .laeco-hero__cat-icon { background: var(--color-soft-green-card); color: #1f7a45; }
.laeco-hero__cat-label { line-height: 1.2; }

/* -------------------------------------------------------------------------
   Badges de confianza (píldoras / tarjetas suaves)
   ---------------------------------------------------------------------- */
/* Fila delgada y secundaria de badges de servicio (debajo del hero) */
.laeco-badges--thin { padding-block: clamp(8px, 2vw, 20px); }
.laeco-badges__row {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: 10px 12px;
}
.laeco-badge-pill {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--color-warm-surface);
	border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-pill);
	padding: 8px 14px;
	box-shadow: var(--shadow-sm);
}
.laeco-badge-pill__icon { flex: none; display: inline-flex; color: var(--color-primary); }
.laeco-badge-pill:nth-child(2) .laeco-badge-pill__icon { color: #1f7a45; }
.laeco-badge-pill:nth-child(3) .laeco-badge-pill__icon { color: var(--color-accent); }
.laeco-badge-pill:nth-child(4) .laeco-badge-pill__icon { color: var(--color-primary-dark); }
.laeco-badge-pill__title { font-size: 13.5px; font-weight: 700; color: var(--color-primary-dark); }

/* -------------------------------------------------------------------------
   Categorías (comprá por categoría) — tarjetas grandes con tintes suaves
   ---------------------------------------------------------------------- */
.laeco-categories { background: var(--color-warm-surface); }
.laeco-categories__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.laeco-cat-card {
	display: flex; flex-direction: column;
	background: var(--color-soft-card);
	border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-lg);
	overflow: hidden; box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
}
.laeco-cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Tintes alternados: beige, rosa, azul, verde */
.laeco-cat-card:nth-child(1) { background: var(--color-soft-card); }
.laeco-cat-card:nth-child(2) { background: var(--color-soft-rose-card); }
.laeco-cat-card:nth-child(3) { background: var(--color-soft-blue-card); }
.laeco-cat-card:nth-child(4) { background: var(--color-soft-green-card); }

.laeco-cat-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.laeco-cat-card__media img { width: 100%; height: 100%; object-fit: cover; }
.laeco-cat-card__placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	color: var(--color-primary);
}
.laeco-cat-card:nth-child(2) .laeco-cat-card__placeholder { color: var(--color-accent); }
.laeco-cat-card:nth-child(4) .laeco-cat-card__placeholder { color: #1f7a45; }

.laeco-cat-card__body { display: flex; flex-direction: column; gap: 10px; padding: 24px; flex: 1; }
.laeco-cat-card__title { font-size: 20px; margin: 0; }
.laeco-cat-card__text { color: var(--color-text-soft); font-size: 14.5px; margin: 0; flex: 1; }
.laeco-cat-card__body .laeco-btn { margin-top: 8px; }

/* -------------------------------------------------------------------------
   Grillas de productos (WooCommerce + demo)
   ---------------------------------------------------------------------- */
.laeco-featured { background: var(--color-warm-bg); }
.laeco-offers { background: var(--color-soft-rose-card); }

.laeco-note-inline {
	background: var(--color-soft-blue-card);
	border: 1px dashed var(--color-primary);
	color: var(--color-primary-dark);
	padding: 15px 18px; border-radius: var(--radius);
	font-size: 14px; margin-bottom: 24px;
}
.laeco-offers__cta { text-align: center; margin-top: 40px; }

/* Normalización de grilla WooCommerce */
.woocommerce ul.products,
ul.products.laeco-wc-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px; margin: 0; padding: 0;
}
.woocommerce ul.products li.product,
ul.products.laeco-wc-grid li.product {
	width: auto !important; margin: 0 !important; float: none !important;
	background: var(--color-warm-surface);
	border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-lg);
	padding: 16px; box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
	position: relative; display: flex; flex-direction: column;
}
.woocommerce ul.products li.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.woocommerce ul.products li.product a img,
.laeco-demo-product__media {
	border-radius: var(--radius); margin-bottom: 14px;
	background: var(--color-soft-blue-card);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.laeco-demo-product__title {
	font-size: 16px; font-weight: 700; color: var(--color-primary-dark);
	padding: 0; margin: 0 0 6px; line-height: 1.35;
}

/* Marca (atributo) en la card */
.laeco-loop-brand {
	display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
	text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 4px;
}

.woocommerce ul.products li.product .price,
.laeco-demo-product .price {
	color: var(--color-accent); font-weight: 800; font-size: 20px;
	margin: 6px 0 14px; display: block;
}
.woocommerce ul.products li.product .price del { color: var(--color-text-muted); font-weight: 500; font-size: 15px; opacity: 0.9; }
.woocommerce ul.products li.product .price ins { text-decoration: none; color: var(--color-accent); }

.woocommerce ul.products li.product .button,
.laeco-demo-product .button { margin-top: auto; width: 100%; }

/* Insignia de oferta */
.woocommerce span.onsale,
.laeco-demo-product .onsale {
	position: absolute; top: 14px; left: 14px; z-index: 5;
	background: var(--color-accent); color: #fff;
	font-weight: 700; font-size: 12px; padding: 7px 13px;
	border-radius: var(--radius-pill); min-height: auto; min-width: auto;
	line-height: 1; margin: 0; box-shadow: 0 6px 16px rgba(165, 13, 52, 0.28);
}

/* Demo media */
.laeco-demo-product__media { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; color: var(--color-primary); }
.laeco-demo-grid li.product:nth-child(even) .laeco-demo-product__media { color: var(--color-accent); background: var(--color-soft-rose-card); }

/* -------------------------------------------------------------------------
   Financiación
   ---------------------------------------------------------------------- */
.laeco-financing { background: var(--color-warm-bg); }
.laeco-financing__inner {
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
	color: #fff;
	border-radius: var(--radius-xl);
	padding: clamp(32px, 5vw, 64px);
	display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: center;
	box-shadow: var(--shadow);
}
.laeco-financing__title { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.laeco-financing__text { color: rgba(255, 255, 255, 0.85); font-size: 18px; max-width: 560px; }
.laeco-financing__list { display: grid; gap: 14px; }
.laeco-financing__list li {
	display: flex; align-items: center; gap: 14px;
	background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius); padding: 16px 18px; font-weight: 600;
}
.laeco-financing__list .laeco-icon { color: #fff; }

/* -------------------------------------------------------------------------
   Contacto
   ---------------------------------------------------------------------- */
.laeco-contact { background: var(--color-warm-surface); }
.laeco-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.laeco-contact__list { display: grid; gap: 18px; margin-bottom: 24px; }
.laeco-contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.laeco-contact__ic {
	flex: none; display: inline-flex; width: 44px; height: 44px;
	align-items: center; justify-content: center; border-radius: 14px;
	background: var(--color-soft-blue-card); color: var(--color-primary);
}
.laeco-contact__list strong { color: var(--color-primary-dark); }

.laeco-contact__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.laeco-contact__actions .laeco-btn { flex: 1 1 auto; }
.laeco-contact__map { margin-top: 24px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-warm-border); }
.laeco-contact__map iframe { width: 100%; min-height: 280px; border: 0; display: block; }
.laeco-contact__map-placeholder {
	min-height: 260px; display: flex; flex-direction: column; gap: 10px;
	align-items: center; justify-content: center; text-align: center;
	color: var(--color-text-muted); background: var(--color-warm-bg); padding: 24px;
}

.laeco-contact__form-wrap {
	background: #fff; border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-sm);
}
.laeco-contact__form-title { margin-top: 0; }

/* Formulario / inputs */
.laeco-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.laeco-form__field { display: block; margin-bottom: 16px; }
.laeco-form__field > span { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--color-primary-dark); }

.laeco-form input,
.laeco-form textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .quantity input,
.woocommerce-account input.input-text,
select {
	width: 100%; font-family: var(--font-base); font-size: 15px;
	padding: 13px 15px; border: 1px solid var(--color-border);
	border-radius: var(--radius-sm); background: #fff; color: var(--color-text);
	transition: border-color var(--transition), box-shadow var(--transition);
}
.laeco-form input:focus,
.laeco-form textarea:focus,
.woocommerce form .form-row input.input-text:focus,
select:focus {
	outline: none; border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(16, 36, 128, 0.15);
}
.laeco-form__hint { font-size: 13px; color: var(--color-text-muted); margin-top: 12px; margin-bottom: 0; }

/* -------------------------------------------------------------------------
   Componente CTA reutilizable
   ---------------------------------------------------------------------- */
.laeco-cta { border-radius: var(--radius-xl); padding: clamp(30px, 4vw, 52px); margin-block: 44px; }
.laeco-cta--center { text-align: center; }
.laeco-cta--primary { background: var(--color-soft-blue-card); }
.laeco-cta--accent { background: var(--color-soft-rose-card); }
.laeco-cta--navy { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); color: #fff; }
.laeco-cta--navy .laeco-cta__title { color: #fff; }
.laeco-cta--navy .laeco-cta__text { color: rgba(255, 255, 255, 0.85); }
.laeco-cta__title { font-size: clamp(24px, 3vw, 32px); }
.laeco-cta__text { font-size: 17px; color: var(--color-text-soft); max-width: 640px; margin-inline: auto; }
.laeco-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; justify-content: center; }
.laeco-cta--left .laeco-cta__actions,
.laeco-cta--left .laeco-cta__text { margin-inline: 0; justify-content: flex-start; }

/* -------------------------------------------------------------------------
   Páginas / contenido genérico
   ---------------------------------------------------------------------- */
.laeco-page { padding-block: clamp(36px, 5vw, 64px); }
.laeco-page__article {
	background: var(--color-warm-surface); border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 52px);
	box-shadow: var(--shadow-sm); max-width: 920px; margin-inline: auto;
}
.laeco-page__title { font-size: clamp(30px, 4vw, 44px); }
.laeco-page__content { font-size: 17px; color: var(--color-text-soft); }
.laeco-page__content h2 { margin-top: 1.4em; }
.laeco-page__thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }

/* Shop hero / cabecera de archivos y páginas especiales */
.laeco-shop-hero {
	background:
		radial-gradient(700px 300px at 92% -20%, rgba(165, 13, 52, 0.08), transparent 60%),
		linear-gradient(135deg, var(--color-soft-card), var(--color-soft-blue-card));
	border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-xl);
	padding: clamp(30px, 4vw, 52px);
	margin: clamp(20px, 3vw, 32px) auto;
	max-width: var(--container);
	width: calc(100% - (var(--gutter) * 2));
}
.laeco-shop-hero .laeco-container { padding-inline: 0; }
.laeco-shop-hero__title { font-size: clamp(30px, 4vw, 46px); margin: 0; }
.laeco-shop-hero__desc { color: var(--color-text-soft); font-size: 18px; max-width: 700px; margin: 12px 0 0; }
.laeco-shop-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* Breadcrumbs */
.laeco-breadcrumb,
.woocommerce .woocommerce-breadcrumb { font-size: 14px; color: var(--color-text-muted); margin-bottom: 16px; }
.laeco-breadcrumb__sep { margin-inline: 8px; color: var(--color-border); }

.woocommerce-main .laeco-container { padding-bottom: 72px; }

/* Ordenamiento / resultados */
.woocommerce .woocommerce-ordering select,
.woocommerce-ordering select {
	border-radius: var(--radius-pill); padding: 11px 16px;
	border: 1px solid var(--color-warm-border); background: #fff; font-weight: 600;
}
.woocommerce .woocommerce-result-count { color: var(--color-text-muted); padding-top: 10px; }

/* Finance cards */
.laeco-finance-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-block: 44px; }
.laeco-finance-card {
	background: var(--color-warm-surface); border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); text-align: center;
}
.laeco-finance-card__icon {
	display: inline-flex; width: 62px; height: 62px; align-items: center; justify-content: center;
	border-radius: 18px; background: var(--color-soft-blue-card); color: var(--color-primary); margin-bottom: 14px;
}
.laeco-finance-card h3 { font-size: 20px; }
.laeco-finance-card p { color: var(--color-text-soft); margin: 0; }

/* Blog / listado */
.laeco-blog { padding-block: clamp(36px, 5vw, 64px); }
.laeco-post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.laeco-post-card {
	background: var(--color-warm-surface); border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
	display: flex; flex-direction: column;
}
.laeco-post-card__media img { width: 100%; object-fit: cover; }
.laeco-post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.laeco-post-card__title { font-size: 18px; margin: 0; }
.laeco-post-card__meta { font-size: 13px; color: var(--color-text-muted); }
.laeco-post-card__excerpt { color: var(--color-text-soft); font-size: 14.5px; }
.laeco-post-card__body .laeco-btn { margin-top: auto; align-self: flex-start; }

.laeco-pagination { margin-top: 40px; }
.laeco-pagination .nav-links,
.woocommerce-pagination ul {
	display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
	list-style: none; padding: 0; border: 0 !important;
}
.laeco-pagination a, .laeco-pagination span,
.woocommerce-pagination ul li a, .woocommerce-pagination ul li span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; height: 44px; padding: 0 12px; border-radius: var(--radius-pill);
	background: #fff; border: 1px solid var(--color-warm-border);
	color: var(--color-primary-dark); font-weight: 700;
}
.laeco-pagination .current,
.woocommerce-pagination ul li span.current {
	background: var(--color-primary); color: #fff; border-color: var(--color-primary);
}
.laeco-empty { text-align: center; color: var(--color-text-muted); padding: 64px 0; }

/* -------------------------------------------------------------------------
   WooCommerce: single product
   ---------------------------------------------------------------------- */
.woocommerce div.product { margin-top: 8px; }
.woocommerce div.product .images,
.woocommerce div.product div.images { border-radius: var(--radius-lg); }
.woocommerce div.product div.images img { border-radius: var(--radius-lg); }
.woocommerce div.product .woocommerce-product-gallery__image { border-radius: var(--radius-lg); overflow: hidden; }

.woocommerce div.product .summary { background: var(--color-warm-surface); border: 1px solid var(--color-warm-border); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-sm); }
.woocommerce div.product .product_title { font-size: clamp(26px, 4vw, 38px); color: var(--color-primary-dark); }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--color-accent); font-size: 30px; font-weight: 800; }
.woocommerce div.product p.price del { color: var(--color-text-muted); font-weight: 500; font-size: 20px; }
.woocommerce div.product .woocommerce-product-rating .star-rating span { color: var(--color-accent); }

.woocommerce div.product form.cart { margin-top: 18px; }
.woocommerce .quantity input.qty { width: 72px; text-align: center; border-radius: var(--radius-pill); }
.woocommerce div.product form.cart .button { padding: 16px 30px; }

/* Bloque de ayuda en ficha de producto */
.laeco-product-help {
	list-style: none; margin: 20px 0 0; padding: 18px 20px;
	background: var(--color-soft-blue-card); border: 1px solid var(--color-warm-border);
	border-radius: var(--radius); display: grid; gap: 10px;
}
.laeco-product-help li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--color-primary-dark); font-weight: 600; }
.laeco-product-help .laeco-icon { color: var(--color-primary); flex: none; margin-top: 1px; }

.laeco-product-wa { margin-top: 16px; }

/* Atributos (Marca, Talle, Color, Sexo) */
.laeco-product-attrs { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.laeco-attr-pill {
	display: inline-flex; align-items: center; gap: 6px;
	background: #fff; border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-pill); padding: 8px 14px; font-size: 13.5px; color: var(--color-primary-dark);
}
.laeco-attr-pill strong { color: var(--color-text-muted); font-weight: 700; }

.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: var(--color-warm-surface); border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-pill); margin-right: 8px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--color-primary); border-color: var(--color-primary); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: #fff; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-bottom: 0; }

/* -------------------------------------------------------------------------
   WooCommerce: mensajes / notices
   ---------------------------------------------------------------------- */
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews {
	border-radius: var(--radius); border-top: 3px solid var(--color-primary);
	background: #fff; box-shadow: var(--shadow-sm);
}
.woocommerce-message { border-top-color: #1f7a45; }
.woocommerce-message::before, .woocommerce-info::before { color: var(--color-primary); }
.woocommerce-error { border-top-color: var(--color-accent); }
.woocommerce-error::before { color: var(--color-accent); }

/* -------------------------------------------------------------------------
   WooCommerce: cart / checkout / account
   ---------------------------------------------------------------------- */
.woocommerce table.shop_table,
.woocommerce-cart table.cart {
	border-radius: var(--radius-lg); overflow: hidden;
	border: 1px solid var(--color-warm-border); background: var(--color-warm-surface);
}
.woocommerce table.shop_table th { background: var(--color-soft-blue-card); color: var(--color-primary-dark); }
.woocommerce table.shop_table td, .woocommerce table.shop_table th { border-top-color: var(--color-warm-border); }

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-checkout-review-order,
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	background: var(--color-warm-surface); border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm);
}
.woocommerce #order_review_heading { margin-top: 24px; }

.wc-proceed-to-checkout a.checkout-button {
	background: var(--color-accent); border-color: var(--color-accent);
	font-size: 16px; padding: 16px 24px;
}
.wc-proceed-to-checkout a.checkout-button:hover { background: var(--color-accent-hover); }

.woocommerce-checkout #payment,
.woocommerce #payment { background: var(--color-soft-blue-card); border-radius: var(--radius-lg); }
.woocommerce-checkout #payment ul.payment_methods { border-bottom-color: var(--color-warm-border); }

/* My Account */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
	background: var(--color-warm-surface); border: 1px solid var(--color-warm-border);
	border-radius: var(--radius-lg); padding: 10px; box-shadow: var(--shadow-sm);
}
.woocommerce-account .woocommerce-MyAccount-navigation li { border: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 12px 16px; border-radius: var(--radius-sm); font-weight: 600; color: var(--color-primary-dark); }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--color-primary); color: #fff; }
.woocommerce-account .woocommerce-MyAccount-content { background: var(--color-warm-surface); border: 1px solid var(--color-warm-border); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-sm); }

.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.checkout_coupon,
.woocommerce form.lost_reset_password {
	border: 1px solid var(--color-warm-border); border-radius: var(--radius-lg);
	background: var(--color-warm-surface); box-shadow: var(--shadow-sm);
}

/* Sidebar / widgets */
.widget-title { font-size: 18px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--color-soft-rose-card); }
.laeco-sidebar .widget { background: var(--color-warm-surface); border: 1px solid var(--color-warm-border); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }

/* -------------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------- */
.laeco-footer { background: var(--color-primary-dark); color: rgba(255, 255, 255, 0.8); margin-top: 48px; }
.laeco-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 44px; padding-block: clamp(44px, 5vw, 72px); }
.laeco-footer__logo .custom-logo { max-height: 54px; }

.laeco-logo-img--footer { background: #fff; padding: 10px 14px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.laeco-logo-img--footer img { max-height: 46px; width: auto; }

.laeco-footer__desc { font-size: 14.5px; margin-top: 16px; max-width: 340px; }
.laeco-footer__wa { margin-top: 8px; }
.laeco-footer__title { color: #fff; font-size: 16px; margin-bottom: 16px; }
.laeco-footer__links li { margin-bottom: 10px; }
.laeco-footer__links a { color: rgba(255, 255, 255, 0.78); font-size: 14.5px; }
.laeco-footer__links a:hover { color: #fff; }
.laeco-footer__contact { display: grid; gap: 14px; }
.laeco-footer__contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.laeco-footer__contact .laeco-icon { flex: none; color: #fff; opacity: 0.7; margin-top: 2px; }

.laeco-footer__note { border-top: 1px solid rgba(255, 255, 255, 0.12); background: rgba(0, 0, 0, 0.15); }
.laeco-footer__note p { text-align: center; font-size: 14px; padding-block: 16px; margin: 0; }
.laeco-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); background: rgba(0, 0, 0, 0.25); }
.laeco-footer__bottom-inner { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; align-items: center; padding-block: 18px; font-size: 13px; }
.laeco-footer__bottom p { margin: 0; }
.laeco-footer__credit { opacity: 0.7; }

/* -------------------------------------------------------------------------
   Botón flotante de WhatsApp
   ---------------------------------------------------------------------- */
.laeco-whatsapp-float {
	position: fixed; right: 22px; bottom: 22px; z-index: 300;
	display: inline-flex; align-items: center; gap: 8px;
	background: #25D366; color: #fff; padding: 15px 22px;
	border-radius: var(--radius-pill); font-weight: 700;
	box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
	transition: transform var(--transition), box-shadow var(--transition);
}
.laeco-whatsapp-float:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5); }
.laeco-whatsapp-float__icon { flex: none; }

/* -------------------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.laeco-hero__inner { grid-template-columns: 1fr; }
	.laeco-hero__visual { max-width: 560px; }
	.laeco-badges__grid { grid-template-columns: repeat(2, 1fr); }
	.laeco-categories__grid { grid-template-columns: repeat(2, 1fr); }
	.woocommerce ul.products, ul.products.laeco-wc-grid { grid-template-columns: repeat(3, 1fr); }
	.laeco-financing__inner { grid-template-columns: 1fr; }
	.laeco-footer__grid { grid-template-columns: 1fr 1fr; }
	.laeco-post-list { grid-template-columns: repeat(2, 1fr); }
	.laeco-finance-cards { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
	.laeco-menu-toggle { display: inline-flex; }
	.laeco-nav {
		position: fixed; top: 0; right: 0; bottom: 0;
		width: min(340px, 88vw); background: var(--color-warm-surface);
		box-shadow: var(--shadow-lg); padding: 88px 22px 32px;
		transform: translateX(100%); transition: transform 0.3s ease;
		overflow-y: auto; z-index: 195; margin: 0;
		border-left: 1px solid var(--color-warm-border);
	}
	body.laeco-menu-open .laeco-nav { transform: translateX(0); }
	.laeco-menu { flex-direction: column; align-items: stretch; gap: 4px; }
	.laeco-menu a { padding: 14px 16px; font-size: 16px; border-radius: var(--radius-sm); }
	.laeco-menu ul.sub-menu { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 0 14px; }
	.laeco-search { right: var(--gutter); left: var(--gutter); width: auto; }
}

@media (max-width: 640px) {
	:root { --gutter: 16px; }
	.laeco-badges__grid { grid-template-columns: 1fr; }
	.laeco-categories__grid { grid-template-columns: 1fr; }
	.woocommerce ul.products, ul.products.laeco-wc-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.laeco-contact__grid { grid-template-columns: 1fr; }
	.laeco-form__row { grid-template-columns: 1fr; }
	.laeco-footer__grid { grid-template-columns: 1fr; gap: 32px; }
	.laeco-post-list { grid-template-columns: 1fr; }
	.laeco-hero__actions { width: 100%; }
	.laeco-hero__actions .laeco-btn { width: 100%; }
	.laeco-whatsapp-float__text { display: none; }
	.laeco-whatsapp-float { padding: 15px; }
	.woocommerce div.product .summary { margin-top: 18px; }
}

@media (max-width: 420px) {
	.woocommerce ul.products, ul.products.laeco-wc-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	* { transition: none !important; scroll-behavior: auto !important; }
}
