/*
Theme Name: Estancias Argentinas
Theme URI: https://estanciasargentinas.com.ar
Author: Estancias Argentinas MDZ
Author URI: https://estanciasargentinas.com.ar
Description: Tema para tienda-catálogo de carnes premium con WooCommerce. Pedidos vía WhatsApp, sin checkout online.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: estancias
Tags: woocommerce, custom-menu, custom-logo, featured-images, full-width-template
WC requires at least: 7.0
WC tested up to: 8.5
*/

/* ═══════════════════════════════════════════
   FONTS
═══════════════════════════════════════════ */
@font-face {
  font-family: 'RangeSans';
  src: url('fonts/rangesans-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'RangeSans';
  src: url('fonts/rangesans-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'RangeSans';
  src: url('fonts/rangesans-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'RangeSans';
  src: url('fonts/rangesans-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'RangeSans';
  src: url('fonts/rangesans-black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CheddarGothic';
  src: url('fonts/cheddar-gothic.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════ */
:root {
  --rojo:      #B52020;
  --rojo-h:    #d42828;
  --negro:     #111111;
  --carbon:    #1c1c1c;
  --crema:     #FAF7F2;
  --gris-bg:   #f4f2ee;
  --borde:     #e2ddd6;
  --gris-t:    #777;
  --blanco:    #ffffff;
  --texto:     #1a1a1a;
  --wa:        #25D366;
  --gold:      #b8922a;
  --fr: 'RangeSans', sans-serif;
  --fc: 'CheddarGothic', serif;
  --fl: 'Lora', serif;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fr);
  font-weight: 400;
  color: var(--texto);
  background: var(--blanco);
  font-size: 14px;
  line-height: 1.55;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font-family: inherit; }

/* ═══════════════════════════════════════════
   TOPBAR ANUNCIO
═══════════════════════════════════════════ */
.ea-topbar {
  background: var(--rojo);
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
}
.ea-topbar a { color: #ffd0d0; text-decoration: underline; }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
#ea-header {
  background: var(--negro);
  position: sticky;
  top: 0;
  z-index: 300;
}
.ea-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ea-logo { display: flex; flex-direction: column; gap: 2px; }
.ea-logo-name {
  font-family: var(--fc);
  font-size: 22px;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1;
}
.ea-logo-sub {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.ea-header-search {
  flex: 1;
  max-width: 360px;
  display: flex;
}
.ea-header-search input {
  flex: 1;
  background: #242424;
  border: 1px solid #333;
  border-right: none;
  color: #fff;
  padding: 9px 14px;
  font-size: 13px;
  outline: none;
  border-radius: 3px 0 0 3px;
}
.ea-header-search input::placeholder { color: #555; }
.ea-header-search button {
  background: var(--rojo);
  border: none;
  color: #fff;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 0 3px 3px 0;
  transition: background .15s;
}
.ea-header-search button:hover { background: var(--rojo-h); }
.ea-header-right { display: flex; align-items: center; gap: 18px; }
.ea-header-wa {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--wa);
  font-size: 13px;
  font-weight: 500;
}
.ea-header-wa svg { width: 18px; height: 18px; fill: var(--wa); }

/* ── Botón carrito header ── */
.ea-cart-trigger {
  position: relative;
  background: var(--rojo);
  color: #fff;
  border: none;
  padding: 9px 18px 9px 14px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .15s;
  white-space: nowrap;
}
.ea-cart-trigger:hover { background: var(--rojo-h); }
.ea-cart-badge {
  background: #fff;
  color: var(--rojo);
  font-size: 10px;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  transition: transform .2s;
}
.ea-cart-badge.hidden { display: none; }
.ea-cart-badge.bump { transform: scale(1.4); }

/* ── Nav categorías ── */
.ea-cat-nav { background: var(--rojo); }
.ea-cat-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.ea-cat-nav-inner::-webkit-scrollbar { display: none; }
.ea-cat-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 11px 16px;
  white-space: nowrap;
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
  cursor: pointer;
  transition: all .15s;
  display: block;
  font-family: var(--fr);
}
.ea-cat-link:hover,
.ea-cat-link.active {
  color: #fff;
  border-bottom-color: #fff;
  background: rgba(255,255,255,.07);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.ea-hero {
  background: var(--negro);
  min-height: 320px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ea-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: radial-gradient(ellipse at 70% 50%, rgba(181,32,32,.22) 0%, transparent 65%);
  pointer-events: none;
}
.ea-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 28px;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.ea-hero-eyebrow {
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.ea-hero h1 {
  font-family: var(--fc);
  font-size: clamp(42px, 5vw, 72px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: .01em;
  margin-bottom: 16px;
}
.ea-hero h1 em { color: var(--rojo); font-style: normal; }
.ea-hero-desc {
  font-family: var(--fl);
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 28px;
}
.ea-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ea-hero-nums { display: flex; flex-direction: column; gap: 14px; }
.ea-hero-num {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 14px 22px;
  text-align: center;
  background: rgba(255,255,255,.04);
  min-width: 110px;
}
.ea-hero-num .n {
  font-family: var(--fc);
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.ea-hero-num .l {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #777;
  margin-top: 3px;
  display: block;
}

/* ═══════════════════════════════════════════
   PROMESAS
═══════════════════════════════════════════ */
.ea-promesas { background: var(--gris-bg); border-bottom: 1px solid var(--borde); }
.ea-promesas-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.ea-promesa {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #555;
  white-space: nowrap;
}
.ea-promesa-ico {
  width: 30px;
  height: 30px;
  background: var(--rojo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   LAYOUT PRINCIPAL
═══════════════════════════════════════════ */
.ea-main-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 28px 64px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}

/* ═══════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════ */
.ea-sidebar-box {
  border: 1px solid var(--borde);
  border-radius: 6px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #fff;
}
.ea-sb-title {
  background: var(--negro);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 10px 16px;
}
.ea-sb-list { list-style: none; }
.ea-sb-list li a,
.ea-sb-list li button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--texto);
  font-weight: 500;
  border-bottom: 1px solid #f3f0eb;
  border-left: none;
  border-right: none;
  border-top: none;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: background .12s, color .12s;
  font-family: var(--fr);
}
.ea-sb-list li:last-child a,
.ea-sb-list li:last-child button { border-bottom: none; }
.ea-sb-list li a:hover,
.ea-sb-list li button:hover,
.ea-sb-list li a.active,
.ea-sb-list li button.active {
  background: #fff5f5;
  color: var(--rojo);
}
.ea-sb-count { font-size: 11px; color: #bbb; font-weight: 400; }

.ea-sb-promo {
  background: var(--rojo);
  border-radius: 6px;
  padding: 20px 16px;
  text-align: center;
  margin-bottom: 18px;
}
.ea-sb-promo p {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
.ea-sb-promo strong {
  font-family: var(--fc);
  font-size: 18px;
  color: #fff;
  display: block;
  margin-bottom: 14px;
  line-height: 1.25;
}
.ea-sb-promo a {
  background: #fff;
  color: var(--rojo);
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 3px;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-block;
  transition: background .15s;
}
.ea-sb-promo a:hover { background: #f5f5f5; }

/* ═══════════════════════════════════════════
   CATÁLOGO — SECCIONES
═══════════════════════════════════════════ */
.ea-cat-section { margin-bottom: 48px; }
.ea-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--rojo);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.ea-cat-title {
  font-family: var(--fc);
  font-size: 22px;
  color: var(--negro);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .01em;
}
.ea-cat-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--rojo);
  border-radius: 2px;
}
.ea-ver-todos {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rojo);
  transition: opacity .15s;
}
.ea-ver-todos:hover { opacity: .7; }

/* ═══════════════════════════════════════════
   PRODUCT GRID
═══════════════════════════════════════════ */
.ea-prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 14px;
}

/* ═══════════════════════════════════════════
   PRODUCT CARD
═══════════════════════════════════════════ */
.ea-prod-card {
  border: 1px solid var(--borde);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.ea-prod-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
  transform: translateY(-3px);
  border-color: #ccc;
}
.ea-prod-card:hover .ea-p-img-inner { transform: scale(1.06); }
.ea-prod-card:hover .ea-p-overlay { opacity: 1; }

.ea-p-img {
  height: 175px;
  background: var(--gris-bg);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.ea-p-img-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  transition: transform .35s ease;
}
.ea-p-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ea-p-overlay {
  position: absolute;
  inset: 0;
  background: rgba(181,32,32,.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .2s;
}
.ea-ov-btn {
  background: #fff;
  color: var(--rojo);
  padding: 8px 20px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--fr);
  border-radius: 3px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .15s;
}
.ea-ov-btn:hover { background: var(--crema); }

/* Badges */
.ea-badge {
  position: absolute;
  top: 8px; left: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 2;
  font-family: var(--fr);
}
.ea-badge-prem  { background: var(--gold); color: #fff; }
.ea-badge-nuevo { background: var(--rojo); color: #fff; }
.ea-badge-oferta{ background: #d4650a; color: #fff; }
.ea-badge-ss    { position: absolute; top: 8px; right: 8px; left: auto; background: rgba(0,0,0,.6); color: #fff; }

/* Product info */
.ea-p-info {
  padding: 13px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ea-p-cat {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rojo);
  font-weight: 700;
  margin-bottom: 4px;
}
.ea-p-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--negro);
  line-height: 1.3;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.ea-p-peso {
  font-size: 11px;
  color: #999;
  font-weight: 400;
  margin-bottom: 10px;
}
.ea-p-precio-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: auto;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.ea-p-precio-lbl {
  font-size: 9px;
  color: #aaa;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ea-p-precio {
  font-family: var(--fc);
  font-size: 20px;
  color: var(--rojo);
  letter-spacing: -.01em;
}
.ea-p-precio-ant {
  font-size: 12px;
  color: #bbb;
  text-decoration: line-through;
}

/* Add to cart btn */
.ea-add-btn {
  width: 100%;
  background: var(--negro);
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--fr);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .15s;
}
.ea-add-btn:hover { background: #2a2a2a; }
.ea-add-btn.ea-added { background: var(--rojo); }
.ea-add-btn svg { width: 14px; height: 14px; fill: #fff; flex-shrink: 0; }

/* Sin stock */
.ea-prod-card.ea-sin-stock .ea-p-img { opacity: .45; }
.ea-prod-card.ea-sin-stock .ea-add-btn {
  background: #ddd;
  color: #999;
  cursor: not-allowed;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   BANNER PROMO MID
═══════════════════════════════════════════ */
.ea-banner-mid {
  background: var(--negro);
  border-radius: 6px;
  padding: 28px 32px;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.ea-banner-mid::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(181,32,32,.18);
  pointer-events: none;
}
.ea-bm-eyebrow {
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}
.ea-bm-title {
  font-family: var(--fc);
  font-size: 26px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}
.ea-bm-desc {
  font-family: var(--fl);
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   BOTONES GENÉRICOS
═══════════════════════════════════════════ */
.ea-btn-rojo {
  background: var(--rojo);
  color: #fff;
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--fr);
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background .15s;
}
.ea-btn-rojo:hover { background: var(--rojo-h); color: #fff; }
.ea-btn-outline {
  background: transparent;
  color: #bbb;
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--fr);
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid #3a3a3a;
  display: inline-block;
  transition: all .15s;
  cursor: pointer;
}
.ea-btn-outline:hover { border-color: #aaa; color: #fff; }

/* ═══════════════════════════════════════════
   PANEL CARRITO
═══════════════════════════════════════════ */
.ea-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 399;
  display: none;
}
.ea-cart-overlay.open { display: block; }

.ea-cart-panel {
  position: fixed;
  top: 0; right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.ea-cart-panel.open { transform: translateX(0); }

.ea-cart-head {
  background: var(--negro);
  color: #fff;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.ea-cart-head-title { font-family: var(--fc); font-size: 22px; }
.ea-cart-head-close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
.ea-cart-head-close:hover { color: #fff; }

.ea-cart-items { flex: 1; overflow-y: auto; }
.ea-cart-empty {
  text-align: center;
  padding: 60px 24px;
}
.ea-cart-empty-ico { font-size: 48px; margin-bottom: 12px; }
.ea-cart-empty p { font-size: 13px; color: #bbb; font-weight: 500; letter-spacing: .04em; }

.ea-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid #f0ece6;
}
.ea-ci-emoji {
  width: 52px; height: 52px;
  background: var(--gris-bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.ea-ci-info { flex: 1; min-width: 0; }
.ea-ci-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--negro);
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.ea-ci-peso { font-size: 11px; color: #aaa; }
.ea-ci-precio { font-family: var(--fc); font-size: 16px; color: var(--rojo); margin-top: 3px; }
.ea-ci-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.ea-ci-qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--borde);
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .12s;
}
.ea-ci-qty-btn:hover { background: var(--gris-bg); }
.ea-ci-qty { font-size: 13px; font-weight: 700; min-width: 18px; text-align: center; }
.ea-ci-del {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #ccc;
  margin-left: 4px;
  padding: 4px;
  transition: color .15s;
}
.ea-ci-del:hover { color: var(--rojo); }

/* Cart footer */
.ea-cart-foot {
  border-top: 2px solid var(--borde);
  padding: 20px 22px;
  flex-shrink: 0;
  background: var(--crema);
}
.ea-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.ea-cart-subtotal span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
}
.ea-cart-subtotal strong { font-family: var(--fc); font-size: 26px; color: var(--negro); }
.ea-cart-nota {
  font-family: var(--fl);
  font-size: 12px;
  color: #aaa;
  margin-bottom: 16px;
  line-height: 1.5;
  font-style: italic;
}
.ea-cart-wa-btn {
  width: 100%;
  background: var(--wa);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 15px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--fr);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .15s;
}
.ea-cart-wa-btn:hover { background: #1ebe5d; }
.ea-cart-wa-btn svg { width: 20px; height: 20px; fill: #fff; }
.ea-cart-clear {
  width: 100%;
  background: none;
  border: none;
  font-size: 11px;
  color: #bbb;
  cursor: pointer;
  margin-top: 10px;
  text-align: center;
  transition: color .15s;
  letter-spacing: .06em;
  font-family: var(--fr);
}
.ea-cart-clear:hover { color: var(--rojo); }

/* ═══════════════════════════════════════════
   MODAL DETALLE PRODUCTO
═══════════════════════════════════════════ */
.ea-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ea-modal-bg.open { display: flex; }
.ea-modal {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.ea-modal-img {
  height: 220px;
  background: var(--gris-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  overflow: hidden;
}
.ea-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.ea-modal-body { padding: 26px 28px 28px; }
.ea-m-close {
  position: absolute;
  top: 12px; right: 14px;
  background: rgba(0,0,0,.4);
  border: none;
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ea-m-close:hover { background: rgba(0,0,0,.7); }
.ea-m-cat   { font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: var(--rojo); font-weight: 700; margin-bottom: 4px; }
.ea-m-name  { font-family: var(--fc); font-size: 26px; color: var(--negro); margin-bottom: 6px; }
.ea-m-peso  { font-size: 12px; color: #999; margin-bottom: 12px; }
.ea-m-desc  { font-family: var(--fl); font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.ea-m-precio{ font-family: var(--fc); font-size: 30px; color: var(--rojo); margin-bottom: 4px; }
.ea-m-nota  { font-size: 11px; color: #bbb; margin-bottom: 20px; letter-spacing: .04em; }
.ea-m-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ea-m-qty-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
}
.ea-m-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--borde);
  border-radius: 4px;
  padding: 4px 8px;
}
.ea-mqb {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--texto);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  transition: color .15s;
}
.ea-mqb:hover { color: var(--rojo); }
.ea-m-qty-val { font-size: 15px; font-weight: 700; min-width: 24px; text-align: center; }
.ea-m-add-btn {
  width: 100%;
  background: var(--negro);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--fr);
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s;
}
.ea-m-add-btn:hover { background: #2a2a2a; }

/* ═══════════════════════════════════════════
   WA FLOAT
═══════════════════════════════════════════ */
.ea-wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 350;
  width: 54px; height: 54px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
  transition: transform .2s;
}
.ea-wa-float:hover { transform: scale(1.1); }
.ea-wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.ea-footer { background: var(--negro); color: #ccc; }
.ea-footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 28px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.ea-footer-logo { font-family: var(--fc); font-size: 20px; color: #fff; margin-bottom: 4px; }
.ea-footer-sub { font-size: 9px; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; display: block; }
.ea-footer-desc { font-family: var(--fl); font-size: 13px; color: #777; line-height: 1.7; max-width: 240px; }
.ea-footer-col h4 { font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 700; }
.ea-footer-col ul { list-style: none; }
.ea-footer-col ul li { margin-bottom: 9px; }
.ea-footer-col ul li a { font-size: 13px; color: #777; transition: color .15s; }
.ea-footer-col ul li a:hover { color: #fff; }
.ea-footer-bottom {
  border-top: 1px solid #222;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #444;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════
   WOOCOMMERCE OVERRIDES
═══════════════════════════════════════════ */

/* Ocultar carrito nativo de WC */
.woocommerce-cart-form,
.woocommerce-checkout,
.cart-contents,
.woocommerce .cart-collaterals,
.wc-proceed-to-checkout,
.woocommerce-mini-cart,
.widget_shopping_cart { display: none !important; }

/* Precio en lista de productos */
.woocommerce ul.products li.product .price {
  font-family: var(--fc);
  color: var(--rojo);
  font-size: 18px;
}

/* Botón "add to cart" de WC — redirigido a nuestro botón */
.woocommerce a.button.add_to_cart_button,
.woocommerce button.button.alt,
.woocommerce a.button.product_type_simple {
  background: var(--negro) !important;
  color: #fff !important;
  font-family: var(--fr) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  border-radius: 3px !important;
  padding: 9px 14px !important;
  border: none !important;
  transition: background .15s !important;
}
.woocommerce a.button.add_to_cart_button:hover,
.woocommerce button.button.alt:hover {
  background: var(--rojo) !important;
}

/* Single product */
.woocommerce div.product .product_title {
  font-family: var(--fc);
  font-size: 32px;
  color: var(--negro);
  letter-spacing: .02em;
}
.woocommerce div.product p.price {
  font-family: var(--fc);
  font-size: 28px;
  color: var(--rojo);
}
.woocommerce div.product .woocommerce-product-details__short-description {
  font-family: var(--fl);
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* Ocultar qty y add-to-cart en single para mostrar nuestro botón */
.woocommerce div.product form.cart { display: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ea-main-layout { grid-template-columns: 1fr; }
  .ea-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .ea-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ea-header-search { display: none; }
  .ea-hero-inner { grid-template-columns: 1fr; }
  .ea-hero-nums { flex-direction: row; }
  .ea-footer-top { grid-template-columns: 1fr; }
  .ea-banner-mid { flex-direction: column; text-align: center; }
  .ea-sidebar { grid-template-columns: 1fr; }
  .ea-promesas-inner { flex-wrap: wrap; }
  .ea-promesa { width: 50%; }
  .ea-cart-panel { width: 100vw; }
}
@media (max-width: 480px) {
  .ea-prod-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ea-hero-inner { padding: 40px 20px; }
  .ea-main-layout { padding: 20px 16px 48px; }
}

/* ═══════════════════════════════════════════
   TIPO DE PEDIDO — MODAL
═══════════════════════════════════════════ */

/* Fila selector tipo */
.ea-m-tipo-row {
  margin-bottom: 14px;
}

/* Etiqueta "Se vende por..." */
.ea-m-tipo-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gris-t);
  background: var(--gris-bg);
  border: 1px solid var(--borde);
  border-radius: 3px;
  padding: 5px 12px;
}

/* Label "¿Cómo querés pedirlo?" */
.ea-m-tipo-lbl {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}

/* Botones kg / pieza */
.ea-m-tipo-btns {
  display: flex;
  gap: 8px;
}
.ea-tipo-btn {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--fr);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid var(--borde);
  background: #fff;
  color: #888;
  cursor: pointer;
  transition: all .15s;
  line-height: 1.3;
}
.ea-tipo-btn:hover {
  border-color: var(--negro);
  color: var(--negro);
}
.ea-tipo-btn.active {
  border-color: var(--rojo);
  background: var(--rojo);
  color: #fff;
}

/* Precio en modal */
.ea-m-precio {
  font-family: var(--fc);
  font-size: 30px;
  color: var(--rojo);
  margin-bottom: 2px;
}
.ea-m-precio-unit {
  font-family: var(--fr);
  font-size: 14px;
  color: #aaa;
  font-weight: 400;
}
.ea-m-peso-estimado {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 14px;
  letter-spacing: .03em;
}

/* Fila cantidad */
.ea-m-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 6px;
}
.ea-m-qty-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  white-space: nowrap;
}
.ea-m-qty-unit {
  font-size: 10px;
  color: #bbb;
  text-transform: lowercase;
  letter-spacing: .04em;
}
.ea-m-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--borde);
  border-radius: 4px;
  padding: 4px 8px;
}
.ea-m-qty-val {
  font-size: 15px;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}
.ea-mqb {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--texto);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s;
  font-family: var(--fr);
}
.ea-mqb:hover { color: var(--rojo); }

/* Resumen de cantidad kg estimado */
.ea-m-qty-resumen {
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
  line-height: 1.5;
  min-height: 18px;
}
.ea-m-qty-resumen strong {
  color: var(--rojo);
  font-weight: 700;
}

/* Nota inferior modal */
.ea-m-nota {
  font-family: var(--fl);
  font-size: 11px;
  color: #bbb;
  margin-bottom: 16px;
  letter-spacing: .03em;
  font-style: italic;
}

/* ── Cart item — etiqueta kg/piezas ── */
.ea-ci-qty-label {
  font-size: 11px;
  color: #888;
  margin-bottom: 2px;
  font-weight: 500;
}

/* ── Campos personalizados en editor WC ── */
/* (aplicados inline via HTML — sin CSS adicional necesario) */

/* ── Etiqueta tipo de pedido en la card ── */
.ea-p-tipo-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  background: var(--gris-bg);
  border: 1px solid var(--borde);
  border-radius: 2px;
  padding: 3px 8px;
  margin-bottom: 8px;
}
.ea-p-tipo-tag::before {
  content: '⚖';
  font-size: 10px;
}
.ea-p-tipo-ambos {
  color: var(--rojo);
  background: #fff5f5;
  border-color: #f5c0c0;
}
.ea-p-tipo-ambos::before {
  content: '↕';
}

/* ═══════════════════════════════════════════
   SISTEMA DE PRECIOS / LOGIN
═══════════════════════════════════════════ */

/* Botón "Iniciá sesión para ver precio" */
.ea-login-price-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fr);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rojo);
  background: #fff5f5;
  border: 1px solid #f5c0c0;
  border-radius: 3px;
  padding: 6px 12px;
  text-decoration: none;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
  margin-top: auto;
}
.ea-login-price-btn:hover {
  background: #ffe8e8;
  border-color: var(--rojo);
  color: var(--rojo);
}
.ea-login-price-btn svg {
  flex-shrink: 0;
}

/* Precio valor (logueado) */
.ea-precio-valor {
  font-family: var(--fc);
  font-size: 20px;
  color: var(--rojo);
  letter-spacing: -.01em;
}
.ea-precio-unit {
  font-family: var(--fr);
  font-size: 11px;
  color: #aaa;
  font-weight: 400;
}
.ea-precio-consultar {
  font-family: var(--fr);
  font-size: 13px;
  color: #bbb;
  font-weight: 500;
}

/* Badge de lista en card (logueado) */
.ea-list-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}
.ea-list-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* Overlay en cards cuando no está logueado */
.ea-prod-card.ea-no-login .ea-p-precio-row {
  min-height: 32px;
}

/* Login page styling */
.ea-login-page-wrap {
  max-width: 420px;
  margin: 80px auto;
  padding: 0 24px;
}
.ea-login-box {
  background: var(--carbon);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 36px;
}
.ea-login-box .ea-logo-nombre {
  font-size: 20px;
  margin-bottom: 4px;
}
.ea-login-box h2 {
  font-family: var(--fc);
  font-size: 26px;
  color: var(--crema);
  margin: 20px 0 6px;
}
.ea-login-box p {
  font-family: var(--fl);
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDER HERO
═══════════════════════════════════════════════════════════════ */

.ea-slider {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
  background: var(--negro);
}

.ea-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── Slide ── */
.ea-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease;
}
.ea-slide--active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Imágenes de fondo ── */
.ea-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 7s ease;
}
.ea-slide--active .ea-slide-bg {
  transform: scale(1.04);
}

/* Desktop visible por defecto, mobile oculto */
.ea-slide-bg--mob { display: none; }
.ea-slide-bg--desk { display: block; }

@media (max-width: 768px) {
  .ea-slide-bg--desk { display: none; }
  .ea-slide-bg--mob  { display: block; }
}

/* ── Overlay de gradiente ── */
.ea-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,8,6,.85) 0%, rgba(10,8,6,.45) 55%, rgba(10,8,6,.1) 100%),
    linear-gradient(to top, rgba(10,8,6,.4) 0%, transparent 40%);
}

/* Texto claro sobre fondo oscuro = default (ya sobrescribe el overlay en reversed) */
.ea-slide--dark-text .ea-slide-overlay {
  background:
    linear-gradient(to right, rgba(255,250,240,.88) 0%, rgba(255,250,240,.5) 55%, rgba(255,250,240,.05) 100%),
    linear-gradient(to top, rgba(255,250,240,.3) 0%, transparent 40%);
}

/* ── Contenido del slide ── */
.ea-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ea-slide-inner {
  max-width: 580px;
}

/* Eyebrow */
.ea-hero-eyebrow {
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.ea-slide--dark-text .ea-hero-eyebrow { color: var(--rojo); text-shadow: none; }

/* H1 */
.ea-slide-inner h1 {
  font-family: var(--fc);
  font-size: clamp(40px, 6vw, 76px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: .01em;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.ea-slide-inner h1 em { color: var(--rojo); font-style: normal; }
.ea-slide--dark-text .ea-slide-inner h1 { color: var(--negro); text-shadow: none; }
.ea-slide--dark-text .ea-slide-inner h1 em { color: var(--rojo); }

/* Descripción */
.ea-hero-desc {
  font-family: var(--fl);
  font-size: 16px;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.ea-slide--dark-text .ea-hero-desc { color: #333; text-shadow: none; }

/* Botones */
.ea-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.ea-btn-rojo {
  background: var(--rojo);
  color: #fff !important;
  padding: 13px 32px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--fr);
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background .15s, transform .1s;
  text-decoration: none;
}
.ea-btn-rojo:hover { background: var(--rojo-h); transform: translateY(-1px); }

.ea-btn-outline {
  background: transparent;
  color: rgba(255,255,255,.92) !important;
  padding: 13px 32px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--fr);
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid rgba(255,255,255,.55);
  cursor: pointer;
  display: inline-block;
  transition: border-color .15s, color .15s, background .15s;
}
.ea-btn-outline:hover {
  border-color: #fff;
  color: #fff !important;
  background: rgba(255,255,255,.08);
}
.ea-slide--dark-text .ea-btn-outline { color: var(--negro) !important; border-color: rgba(0,0,0,.4); }
.ea-slide--dark-text .ea-btn-outline:hover { color: var(--negro) !important; background: rgba(0,0,0,.06); border-color: var(--negro); }

/* ── Stats / nums ── */
.ea-hero-nums {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.ea-hero-num {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  padding: 14px 22px;
  text-align: center;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(4px);
  min-width: 110px;
}
.ea-hero-num .n {
  font-family: var(--fc);
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.ea-hero-num .l {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: 3px;
  display: block;
  font-weight: 600;
}

/* ── Flechas de navegación ── */
.ea-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .1s;
}
.ea-slider-arrow:hover {
  background: var(--rojo);
  border-color: var(--rojo);
  transform: translateY(-50%) scale(1.08);
}
.ea-slider-arrow svg { width: 20px; height: 20px; flex-shrink: 0; }
.ea-slider-arrow--prev { left: 20px; }
.ea-slider-arrow--next { right: 20px; }

/* ── Dots ── */
.ea-slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.ea-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.ea-slider-dot.active {
  background: #fff;
  border-color: #fff;
  width: 24px;
  border-radius: 4px;
}

/* ── Barra de progreso ── */
.ea-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.15);
  z-index: 10;
}
.ea-slider-progress-bar {
  height: 100%;
  background: var(--rojo);
  width: 0%;
}

/* ── Responsive slider ── */
@media (max-width: 768px) {
  .ea-slider { height: 70vh; min-height: 420px; }
  .ea-slide-content { flex-direction: column; justify-content: flex-end; padding: 0 20px 60px; }
  .ea-slide-inner { max-width: 100%; }
  .ea-slide-inner h1 { font-size: clamp(32px, 9vw, 52px); }
  .ea-hero-desc { font-size: 14px; }
  .ea-hero-nums { flex-direction: row; }
  .ea-hero-num { min-width: 80px; padding: 10px 14px; }
  .ea-hero-num .n { font-size: 22px; }
  .ea-slider-arrow { width: 38px; height: 38px; }
  .ea-slider-arrow--prev { left: 10px; }
  .ea-slider-arrow--next { right: 10px; }
  .ea-slide-overlay {
    background: linear-gradient(to top, rgba(10,8,6,.9) 0%, rgba(10,8,6,.55) 50%, rgba(10,8,6,.15) 100%);
  }
}

/* ═══════════════════════════════════════════════════════════════
   MEJORAS DE CONTRASTE GLOBALES
═══════════════════════════════════════════════════════════════ */

/* Texto de categoría en card — más visible */
.ea-p-cat {
  color: var(--rojo) !important;
  font-weight: 700 !important;
  font-size: 10px !important;
  letter-spacing: .18em !important;
}

/* Nombre del producto — más fuerte */
.ea-p-name {
  color: #111 !important;
  font-weight: 800 !important;
}

/* Peso — contraste mejorado */
.ea-p-peso {
  color: #666 !important;
  font-size: 12px !important;
}

/* Tipo de pedido tag — más contraste */
.ea-p-tipo-tag {
  color: #555 !important;
  border-color: #ccc !important;
}
.ea-p-tipo-ambos {
  color: var(--rojo) !important;
  border-color: #f5c0c0 !important;
  background: #fff8f8 !important;
}

/* Sidebar títulos — letras más claras sobre negro */
.ea-sb-title {
  background: var(--negro);
  color: #fff !important;
  font-size: 11px !important;
  letter-spacing: .18em !important;
  font-weight: 700 !important;
}

/* Sidebar links — contraste mejorado */
.ea-sb-list li a,
.ea-sb-list li button {
  color: #222 !important;
  font-weight: 500 !important;
  font-size: 13px !important;
}
.ea-sb-list li a:hover,
.ea-sb-list li button:hover,
.ea-sb-list li a.active,
.ea-sb-list li button.active {
  color: var(--rojo) !important;
  background: #fff5f5 !important;
}

/* Sidebar count badges */
.ea-sb-count { color: #999 !important; font-size: 12px !important; }

/* Cat section title — más bold */
.ea-cat-title {
  font-size: 20px !important;
  color: #111 !important;
  font-weight: 800 !important;
}
.ea-cat-title::before {
  background: var(--rojo) !important;
  width: 5px !important;
}

/* Footer — texto más visible */
.ea-footer-desc { color: #bbb !important; }
.ea-footer-col ul li a { color: #bbb !important; }
.ea-footer-col ul li a:hover { color: #fff !important; }
.ea-footer-sub { color: var(--gold) !important; }
.ea-footer-logo { color: #fff !important; }
.ea-footer-col h4 { color: var(--gold) !important; }
.ea-footer-bottom { color: #777 !important; }

/* Header WA link — más visible */
.ea-header-wa { color: #4ade80 !important; font-weight: 600 !important; }
.ea-header-wa svg { fill: #4ade80 !important; }

/* Cart trigger — visibilidad */
.ea-cart-trigger {
  background: var(--rojo) !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
}

/* Nav cat links — contraste sobre rojo */
.ea-cat-link { font-weight: 700 !important; font-size: 12px !important; letter-spacing: .1em !important; }

/* Topbar — contraste */
.ea-topbar { font-weight: 600 !important; letter-spacing: .05em !important; font-size: 13px !important; }

/* Precio valor */
.ea-precio-valor { font-weight: 900 !important; }

/* Banner mid texto */
.ea-bm-title { font-size: 28px !important; color: #fff !important; }
.ea-bm-desc  { color: #bbb !important; }
.ea-bm-eyebrow { color: var(--gold) !important; }

/* Bloque nosotros */
.ea-main-layout + div h2,
[data-cats="todos"] h2 { color: var(--negro) !important; }

/* ── Quitar barra de promesas (se oculta via CSS por si quedara en algún template) ── */
.ea-promesas { display: none !important; }


/* ── Botón Consultar por WA (visitante no logueado) ── */
.ea-add-btn--consultar {
  background: var(--wa) !important;
}
.ea-add-btn--consultar:hover {
  background: #1ebe5d !important;
}

/* Overlay WA en hover */
.ea-ov-btn--wa {
  background: var(--wa) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.ea-ov-btn--wa:hover { background: #1ebe5d !important; }

/* Precio oculto para visitantes */
.ea-precio-oculto {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--fr);
  font-size: 10px;
  color: #aaa;
  font-weight: 500;
  letter-spacing: .04em;
  font-style: italic;
}

/* ── Sidebar CTA para no-logueados — mejor contraste ── */
.ea-sb-promo a {
  color: var(--negro) !important;
  background: #fff !important;
  font-weight: 700 !important;
}
.ea-sb-promo strong { color: #fff !important; line-height: 1.4 !important; }
.ea-sb-promo p { color: rgba(255,255,255,.75) !important; }

/* ── Indicador de lista (usuario logueado) ── */
#ea-user-list-bar { font-size: 12px !important; }

