/* =====================================================
   Electro Directo CRO · Frontend v2.0
   Las variables --edcro-* se inyectan desde el panel admin
   (wp_head), por lo que aquí solo usamos var(...).
   ===================================================== */

:root{
  /* Valores de fallback. El plugin sobrescribe estos vía wp_head. */
  --edcro-brand:#E30613;
  --edcro-brand-dark:#B0040F;
  --edcro-accent:#FFC107;
  --edcro-ink:#0E1B2C;
  --edcro-ink-2:#3A4658;
  --edcro-muted:#6B7686;
  --edcro-line:#E6EAF0;
  --edcro-bg:#F6F7FB;
  --edcro-green:#0E9F6E;
  --edcro-green-soft:#E6F7F0;
  --edcro-brand-soft:#FFE9EB;
  --edcro-topbar-bg:#0E1B2C;
  --edcro-topbar-text:#FFFFFF;
  --edcro-radius:12px;
  --edcro-container:1280px;
  --edcro-shadow-sm:0 1px 2px rgba(14,27,44,.06);
  --edcro-shadow-md:0 6px 18px rgba(14,27,44,.08);
  --edcro-shadow-lg:0 18px 40px rgba(14,27,44,.12);
}

.edcro-container{max-width:var(--edcro-container);margin:0 auto;padding:0 20px}

/* ============ HEADER ============ */
.edcro-header{background:#fff;border-bottom:1px solid var(--edcro-line);box-shadow:var(--edcro-shadow-sm);font-family:var(--edcro-font,'Inter',sans-serif);position:relative;z-index:40}
.edcro-header.is-sticky{position:sticky;top:0;z-index:50}
.edcro-header-inner{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:32px;padding:18px 0}
.edcro-logo{display:flex;align-items:center;gap:10px;font-weight:900;font-size:22px;color:var(--edcro-ink);text-decoration:none;letter-spacing:-.02em}
.edcro-logo img{max-height:48px;width:auto}
.edcro-logo .edcro-logo-mark{width:42px;height:42px;border-radius:10px;background:var(--edcro-brand);display:grid;place-items:center;color:#fff;font-size:18px;box-shadow:0 6px 14px rgba(227,6,19,.35)}
.edcro-logo strong{display:block;line-height:1.1}
.edcro-logo small{display:block;font-size:11px;font-weight:500;color:var(--edcro-muted);letter-spacing:.04em}
.edcro-search{display:flex;background:#F1F3F8;border:2px solid transparent;border-radius:999px;overflow:hidden;transition:.2s}
.edcro-search:focus-within{border-color:var(--edcro-brand);background:#fff;box-shadow:0 0 0 4px rgba(227,6,19,.08)}
.edcro-search-cat{border:none;background:transparent;padding:0 16px;font-size:14px;color:var(--edcro-ink-2);font-weight:500;border-right:1px solid var(--edcro-line);outline:none;cursor:pointer}
.edcro-search input{flex:1;border:none;background:transparent;padding:14px 18px;font-size:15px;outline:none;font-family:inherit}
.edcro-search button{background:var(--edcro-brand);color:#fff;border:none;padding:0 26px;font-weight:700;font-size:14px;display:flex;align-items:center;gap:8px;transition:.2s;cursor:pointer}
.edcro-search button:hover{background:var(--edcro-brand-dark)}
.edcro-header-actions{display:flex;align-items:center;gap:8px}
.edcro-header-icon-btn{display:flex;flex-direction:column;align-items:center;gap:4px;padding:8px 12px;border-radius:10px;color:var(--edcro-ink-2);font-size:12px;font-weight:600;position:relative;transition:.2s;text-decoration:none}
.edcro-header-icon-btn:hover{background:var(--edcro-bg);color:var(--edcro-brand)}
.edcro-header-icon-btn svg{width:22px;height:22px}
.edcro-cart-badge{position:absolute;top:4px;right:4px;background:var(--edcro-brand);color:#fff;font-size:10px;font-weight:700;min-width:18px;height:18px;padding:0 4px;border-radius:9px;display:grid;place-items:center;border:2px solid #fff}
.edcro-nav{background:#fff;border-bottom:1px solid var(--edcro-line)}
.edcro-nav-inner{display:flex;align-items:center;gap:8px;padding:0}
.edcro-nav-item{padding:14px 16px;font-size:14px;font-weight:600;color:var(--edcro-ink-2);text-decoration:none;border-bottom:3px solid transparent;transition:.2s}
.edcro-nav-item:hover{color:var(--edcro-brand);border-color:var(--edcro-brand)}
.edcro-nav-highlight{color:var(--edcro-brand)}
.edcro-nav-highlight::before{content:"";display:inline-block;width:8px;height:8px;background:var(--edcro-brand);border-radius:50%;margin-right:6px;vertical-align:middle;animation:edcropulse 1.6s infinite}
@keyframes edcropulse{0%,100%{opacity:1}50%{opacity:.3}}
.edcro-nav-spacer{flex:1}
.edcro-nav-help{font-size:13px;color:var(--edcro-muted)}
.edcro-nav-help a{color:var(--edcro-brand);font-weight:700;text-decoration:none;margin-left:4px}

/* ============ TOP BAR ============ */
.edcro-top-bar{background:var(--edcro-topbar-bg);color:var(--edcro-topbar-text);font-size:13px;padding:var(--edcro-topbar-padding,8px) 0;font-family:var(--edcro-font,'Inter',sans-serif)}
.edcro-top-bar .edcro-container{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.edcro-top-bar ul{display:flex;gap:22px;list-style:none;flex-wrap:wrap;padding:0;margin:0}
.edcro-top-bar li{display:flex;align-items:center;gap:6px;opacity:.92}
.edcro-top-right{display:flex;gap:18px;align-items:center}
.edcro-top-bar a{color:inherit;text-decoration:none}
.edcro-top-bar a:hover{text-decoration:underline}

/* ============ HERO ============ */
.edcro-hero{color:#fff;position:relative;overflow:hidden;font-family:'Inter',system-ui,sans-serif}
.edcro-hero::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 80% 30%,rgba(255,193,7,.15),transparent 50%);pointer-events:none}
.edcro-hero-inner{display:grid;grid-template-columns:1.1fr 1fr;gap:40px;align-items:center;padding:56px 0 64px;position:relative;z-index:1}
.edcro-hero-tag{display:inline-flex;align-items:center;gap:8px;background:rgba(255,193,7,.15);color:var(--edcro-accent);padding:8px 14px;border-radius:999px;font-size:13px;font-weight:600;border:1px solid rgba(255,193,7,.3);margin-bottom:18px}
.edcro-hero h1{font-size:clamp(34px,5vw,56px);line-height:1.05;font-weight:900;letter-spacing:-.02em;margin:0 0 18px;color:#fff}
.edcro-hero h1 .em{color:var(--edcro-accent)}
.edcro-hero .edcro-lead{font-size:17px;color:#C7D1E0;max-width:520px;margin-bottom:24px}
.edcro-promo-code{display:inline-flex;align-items:center;gap:10px;background:rgba(255,255,255,.08);border:1.5px dashed rgba(255,193,7,.6);padding:10px 16px;border-radius:10px;margin-bottom:28px;font-size:14px}
.edcro-promo-code .edcro-code{background:var(--edcro-accent);color:var(--edcro-ink);padding:4px 10px;border-radius:6px;font-weight:800;letter-spacing:.06em}
.edcro-countdown{display:flex;gap:10px;margin-bottom:28px}
.edcro-cd{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:10px;padding:10px 14px;min-width:64px;text-align:center}
.edcro-cd b{display:block;font-size:24px;font-weight:800;color:#fff}
.edcro-cd span{font-size:11px;color:#A8B3C5;text-transform:uppercase;letter-spacing:.08em}
.edcro-hero-ctas{display:flex;gap:12px;flex-wrap:wrap}
.edcro-btn{display:inline-flex;align-items:center;gap:8px;padding:14px 24px;border-radius:10px;font-weight:700;font-size:15px;transition:.2s;cursor:pointer;text-decoration:none}
.edcro-btn-primary{background:var(--edcro-brand);color:#fff}
.edcro-btn-primary:hover{background:var(--edcro-brand-dark);transform:translateY(-1px);box-shadow:0 8px 22px rgba(227,6,19,.4);color:#fff}
.edcro-btn-ghost{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.3)}
.edcro-btn-ghost:hover{background:rgba(255,255,255,.08);color:#fff}
.edcro-hero-visual{position:relative;aspect-ratio:1/1;border-radius:20px;background:linear-gradient(135deg,#fff 0%,#F1F3F8 100%);display:grid;place-items:center;overflow:hidden;box-shadow:var(--edcro-shadow-lg)}
.edcro-product-img{font-size:200px;filter:drop-shadow(0 20px 30px rgba(0,0,0,.15))}
.edcro-hero-img{width:100%;height:100%;object-fit:cover}
.edcro-badge-discount{position:absolute;top:24px;right:24px;background:var(--edcro-brand);color:#fff;width:110px;height:110px;border-radius:50%;display:grid;place-items:center;text-align:center;transform:rotate(-12deg);box-shadow:0 10px 24px rgba(227,6,19,.45);border:3px solid #fff}
.edcro-badge-discount b{display:block;font-size:36px;font-weight:900;line-height:1}
.edcro-badge-discount span{font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase}

/* ============ TRUST ============ */
.edcro-trust{background:#fff;border-top:1px solid var(--edcro-line);border-bottom:1px solid var(--edcro-line);font-family:'Inter',system-ui,sans-serif}
.edcro-trust-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.edcro-trust-item{display:flex;align-items:center;gap:14px;padding:22px 24px;border-right:1px solid var(--edcro-line)}
.edcro-trust-item:last-child{border-right:none}
.edcro-trust-item .edcro-ico-wrap{width:44px;height:44px;border-radius:10px;background:var(--edcro-brand-soft);color:var(--edcro-brand);display:grid;place-items:center;flex-shrink:0}
.edcro-trust-item .edcro-ico-wrap svg{width:24px;height:24px}
.edcro-trust-item h4{font-size:14px;font-weight:700;margin:0 0 2px;color:var(--edcro-ink)}
.edcro-trust-item p{font-size:12px;color:var(--edcro-muted);line-height:1.3;margin:0}

/* ============ SECTION ============ */
.edcro-section{padding:56px 0;font-family:'Inter',system-ui,sans-serif;color:var(--edcro-ink)}
.edcro-section-light{background:#fff}
.edcro-section-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:28px;gap:16px;flex-wrap:wrap}
.edcro-section-head-center{justify-content:center;text-align:center;flex-direction:column;align-items:center}
.edcro-section-head h2{font-size:28px;font-weight:800;letter-spacing:-.02em;margin:0;color:var(--edcro-ink)}
.edcro-eyebrow{color:var(--edcro-brand);font-weight:700;font-size:13px;letter-spacing:.1em;text-transform:uppercase;margin-bottom:6px;display:block}
.edcro-link{color:var(--edcro-brand);font-weight:600;font-size:14px;text-decoration:none}
.edcro-link:hover{text-decoration:underline}

/* ============ CATEGORIES ============ */
.edcro-cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.edcro-cat-card{background:#fff;border-radius:var(--edcro-radius);padding:24px 20px;text-align:center;border:1px solid var(--edcro-line);transition:.25s;position:relative;overflow:hidden;text-decoration:none;color:var(--edcro-ink);display:block}
.edcro-cat-card:hover{transform:translateY(-4px);box-shadow:var(--edcro-shadow-md);border-color:var(--edcro-brand)}
.edcro-cat-card .edcro-emoji{font-size:54px;margin-bottom:10px;transition:.3s;display:inline-block}
.edcro-cat-card:hover .edcro-emoji{transform:scale(1.1)}
.edcro-cat-card .edcro-cat-img{width:80px;height:80px;object-fit:contain;margin:0 auto 10px}
.edcro-cat-card h3{font-size:15px;font-weight:700;margin:0 0 4px}
.edcro-cat-card p{font-size:12px;color:var(--edcro-muted);margin:0}
.edcro-cat-card .edcro-ribbon{position:absolute;top:10px;right:10px;background:var(--edcro-green-soft);color:var(--edcro-green);font-size:10px;font-weight:700;padding:3px 8px;border-radius:999px}

/* ============ FLASH ============ */
.edcro-flash-section-wrap{padding:24px 0}
.edcro-flash-section{background:linear-gradient(135deg,#FFF5F5 0%,#FFE9EB 100%);border-radius:16px;padding:32px}
.edcro-flash-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px;flex-wrap:wrap;gap:16px}
.edcro-flash-title{display:flex;align-items:center;gap:12px}
.edcro-flash-title h2{font-size:26px;font-weight:800;margin:0}
.edcro-flash-title .edcro-bolt{font-size:30px}
.edcro-flash-timer{display:flex;align-items:center;gap:10px;background:var(--edcro-ink);color:#fff;padding:10px 16px;border-radius:10px;font-size:14px;font-weight:600}
.edcro-flash-timer .edcro-clock{font-size:18px}
.edcro-digits{display:flex;gap:4px;font-variant-numeric:tabular-nums}
.edcro-digit{background:rgba(255,255,255,.12);padding:4px 8px;border-radius:5px;font-weight:800}

/* ============ PRODUCT CARD ============ */
.edcro-product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.edcro-product-card{background:#fff;border-radius:var(--edcro-radius);padding:18px;border:1px solid var(--edcro-line);transition:.25s;position:relative;display:flex;flex-direction:column}
.edcro-product-card:hover{box-shadow:var(--edcro-shadow-md);border-color:rgba(227,6,19,.3);transform:translateY(-2px)}
.edcro-badges{position:absolute;top:14px;left:14px;display:flex;flex-direction:column;gap:6px;z-index:2}
.edcro-badge{padding:4px 10px;border-radius:6px;font-size:11px;font-weight:700;letter-spacing:.02em;display:inline-block}
.edcro-badge-red{background:var(--edcro-brand);color:#fff}
.edcro-badge-green{background:var(--edcro-green);color:#fff}
.edcro-badge-yellow{background:var(--edcro-accent);color:var(--edcro-ink)}
.edcro-badge-energy{background:var(--edcro-green);color:#fff}
.edcro-wishlist{position:absolute;top:14px;right:14px;z-index:2;width:34px;height:34px;border-radius:50%;background:#fff;border:1px solid var(--edcro-line);display:grid;place-items:center;color:var(--edcro-muted);transition:.2s;cursor:pointer}
.edcro-wishlist svg{width:16px;height:16px}
.edcro-wishlist:hover{color:var(--edcro-brand);border-color:var(--edcro-brand)}
.edcro-product-img-wrap{aspect-ratio:1/1;background:#F8F9FC;border-radius:10px;display:grid;place-items:center;margin-bottom:14px;overflow:hidden;position:relative}
.edcro-product-img-wrap img{width:100%;height:100%;object-fit:contain}
.edcro-product-card h3{font-size:14px;font-weight:600;line-height:1.35;margin:0 0 8px;color:var(--edcro-ink);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:38px}
.edcro-product-card h3 a{color:inherit;text-decoration:none}
.edcro-rating{display:flex;align-items:center;gap:6px;margin-bottom:10px;font-size:12px}
.edcro-stars{color:var(--edcro-accent);letter-spacing:1px}
.edcro-rating span{color:var(--edcro-muted)}
.edcro-price-row{display:flex;align-items:baseline;gap:8px;margin-bottom:6px;flex-wrap:wrap}
.edcro-price{font-size:22px;font-weight:800;color:var(--edcro-brand)}
.edcro-price-old{font-size:14px;color:var(--edcro-muted);text-decoration:line-through}
.edcro-price-save{background:var(--edcro-green-soft);color:var(--edcro-green);font-size:11px;font-weight:700;padding:2px 6px;border-radius:4px}
.edcro-financing{font-size:12px;color:var(--edcro-ink-2);margin-bottom:12px}
.edcro-financing b{color:var(--edcro-green);font-weight:700}
.edcro-shipping-info{font-size:12px;color:var(--edcro-green);padding:6px 10px;background:var(--edcro-green-soft);border-radius:6px;margin-bottom:12px}
.edcro-stock-bar{margin-bottom:10px}
.edcro-stock-bar .edcro-bar{height:5px;background:#F1F3F8;border-radius:99px;overflow:hidden}
.edcro-stock-bar .edcro-fill{height:100%;background:linear-gradient(90deg,var(--edcro-brand),#FF8A95);border-radius:99px}
.edcro-stock-bar small{font-size:11px;color:var(--edcro-brand);font-weight:600;margin-top:4px;display:block}
.edcro-btn-add{margin-top:auto;background:var(--edcro-ink);color:#fff;padding:12px;border-radius:10px;font-weight:700;font-size:14px;display:flex;align-items:center;justify-content:center;gap:8px;transition:.2s;width:100%;text-decoration:none;border:none;cursor:pointer}
.edcro-btn-add:hover{background:var(--edcro-brand);color:#fff}

/* ============ SPLIT ============ */
.edcro-split{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.edcro-split-card{border-radius:16px;padding:36px;color:#fff;position:relative;overflow:hidden;display:flex;flex-direction:column;justify-content:space-between;min-height:220px}
.edcro-split-card .edcro-sup{font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.7);margin-bottom:8px}
.edcro-split-card h3{font-size:24px;font-weight:800;margin:0 0 8px;line-height:1.2;color:#fff}
.edcro-split-card p{font-size:14px;opacity:.85;margin:0 0 18px;max-width:340px;color:#fff}
.edcro-btn-w{background:#fff;color:var(--edcro-ink);padding:10px 18px;border-radius:8px;font-weight:700;font-size:13px;align-self:flex-start;display:inline-flex;align-items:center;gap:6px;transition:.2s;text-decoration:none}
.edcro-btn-w:hover{transform:translateX(4px);color:var(--edcro-ink)}
.edcro-emoji-bg{position:absolute;right:-20px;bottom:-30px;font-size:200px;opacity:.18}

/* ============ BRANDS ============ */
.edcro-brands-grid{display:grid;grid-template-columns:repeat(8,1fr);gap:12px}
.edcro-brand-card{background:#fff;border:1px solid var(--edcro-line);border-radius:10px;aspect-ratio:1.4/1;display:grid;place-items:center;font-weight:800;color:var(--edcro-ink-2);font-size:15px;transition:.2s;letter-spacing:-.02em;text-decoration:none}
.edcro-brand-card:hover{border-color:var(--edcro-brand);color:var(--edcro-brand);box-shadow:var(--edcro-shadow-sm);transform:translateY(-2px)}

/* ============ USP ============ */
.edcro-usp-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.edcro-usp{background:#fff;border-radius:var(--edcro-radius);padding:28px 24px;border:1px solid var(--edcro-line);text-align:center;transition:.2s}
.edcro-usp:hover{transform:translateY(-3px);box-shadow:var(--edcro-shadow-md)}
.edcro-usp .edcro-ico{width:60px;height:60px;border-radius:14px;background:var(--edcro-brand-soft);color:var(--edcro-brand);display:grid;place-items:center;margin:0 auto 14px}
.edcro-usp .edcro-ico svg{width:30px;height:30px}
.edcro-usp h3{font-size:16px;font-weight:700;margin:0 0 6px;color:var(--edcro-ink)}
.edcro-usp p{font-size:13px;color:var(--edcro-muted);line-height:1.5;margin:0}

/* ============ REVIEWS ============ */
.edcro-reviews-wrap{background:#fff;border-radius:16px;padding:40px;border:1px solid var(--edcro-line);font-family:'Inter',system-ui,sans-serif}
.edcro-reviews-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:28px;flex-wrap:wrap;gap:16px}
.edcro-h2-small{font-size:24px;font-weight:800;margin:0;color:var(--edcro-ink)}
.edcro-google-rating{display:flex;align-items:center;gap:12px}
.edcro-google-rating .edcro-big{font-size:36px;font-weight:900;color:var(--edcro-ink)}
.edcro-google-rating small{display:block;color:var(--edcro-muted);font-size:12px}
.edcro-google-rating .edcro-stars-big{font-size:18px;color:var(--edcro-accent)}
.edcro-reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.edcro-review{background:#FAFBFD;border:1px solid var(--edcro-line);border-radius:12px;padding:22px}
.edcro-review .edcro-stars{font-s

/* v3.1 configurabilidad avanzada */
.edcro-dynamic-grid{display:grid;grid-template-columns:repeat(var(--edcro-cols,4),minmax(0,1fr));gap:20px}
.edcro-products-section .edcro-product-grid,.edcro-flash-section .edcro-product-grid,.edcro-sellers-section .edcro-product-grid{grid-template-columns:repeat(var(--edcro-cols,4),minmax(0,1fr))}
.edcro-categories-section .edcro-cat-grid,.edcro-brands-section .edcro-brands-grid,.edcro-usps-section .edcro-usps-grid,.edcro-reviews-section .edcro-reviews-grid,.edcro-trust-bar .edcro-trust-grid{grid-template-columns:repeat(var(--edcro-cols,4),minmax(0,1fr))}
.edcro-style-compact .edcro-cat-card,.edcro-style-compact .edcro-brand-card,.edcro-style-compact .edcro-usp,.edcro-style-compact .edcro-review-card{padding:14px;border-radius:calc(var(--edcro-radius,12px) - 2px)}
.edcro-style-minimal .edcro-cat-card,.edcro-style-minimal .edcro-brand-card,.edcro-style-minimal .edcro-usp,.edcro-style-minimal .edcro-review-card{background:transparent;box-shadow:none;border:1px solid rgba(14,27,44,.1)}
.edcro-hero--center .edcro-hero-grid{grid-template-columns:1fr;text-align:center}.edcro-hero--center .edcro-hero-media{display:none}.edcro-hero--compact{padding:34px 0}.edcro-hero--tall{padding:86px 0}
.edcro-promo-strip{background:var(--edcro-ink);color:#fff;font-weight:800}.edcro-promo-strip .edcro-container{display:flex;align-items:center;justify-content:center;gap:18px;padding:12px 20px}.edcro-promo-strip a{color:#fff;text-decoration:underline}.edcro-promo-strip--brand{background:var(--edcro-brand)}.edcro-promo-strip--light{background:#fff;color:var(--edcro-ink);border-bottom:1px solid rgba(14,27,44,.1)}.edcro-promo-strip--light a{color:var(--edcro-brand)}
.edcro-align-left .edcro-newsletter-box{text-align:left}.edcro-align-center .edcro-newsletter-box{text-align:center}.edcro-newsletter--outline .edcro-newsletter-box{background:#fff;color:var(--edcro-ink);border:1px solid rgba(14,27,44,.12)}
@media (max-width:900px){.edcro-dynamic-grid,.edcro-products-section .edcro-product-grid,.edcro-flash-section .edcro-product-grid,.edcro-sellers-section .edcro-product-grid,.edcro-categories-section .edcro-cat-grid,.edcro-brands-section .edcro-brands-grid,.edcro-usps-section .edcro-usps-grid,.edcro-reviews-section .edcro-reviews-grid,.edcro-trust-bar .edcro-trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.edcro-categories-section .edcro-cat-grid{grid-template-columns:repeat(var(--edcro-mobile-cols,2),minmax(0,1fr))}}
@media (max-width:560px){.edcro-dynamic-grid,.edcro-products-section .edcro-product-grid,.edcro-flash-section .edcro-product-grid,.edcro-sellers-section .edcro-product-grid,.edcro-brands-section .edcro-brands-grid,.edcro-usps-section .edcro-usps-grid,.edcro-reviews-section .edcro-reviews-grid,.edcro-trust-bar .edcro-trust-grid{grid-template-columns:1fr}.edcro-categories-section .edcro-cat-grid{grid-template-columns:repeat(var(--edcro-mobile-cols,2),minmax(0,1fr))}.edcro-promo-strip .edcro-container{flex-direction:column;gap:6px;text-align:center}}

/* ===== v3.2 Responsive sólido para todos los módulos ===== */
.edcro-section{padding:clamp(28px,5vw,58px) 0;font-family:var(--edcro-font,'Inter',system-ui,sans-serif)}
.edcro-section-head{display:flex;justify-content:space-between;align-items:end;gap:18px;margin-bottom:22px;flex-wrap:wrap}.edcro-section-head h2{font-size:clamp(22px,3vw,34px);line-height:1.12;margin:0;color:var(--edcro-ink)}.edcro-eyebrow{display:inline-flex;align-items:center;gap:6px;color:var(--edcro-brand);font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;margin-bottom:8px}.edcro-link{color:var(--edcro-brand);font-weight:800;text-decoration:none}.edcro-link:hover{text-decoration:underline}
.edcro-dynamic-grid,.edcro-product-grid,.edcro-cat-grid,.edcro-brands-grid,.edcro-usps-grid,.edcro-usp-grid,.edcro-reviews-grid,.edcro-trust-grid,.edcro-split-grid{display:grid!important;grid-template-columns:repeat(var(--edcro-cols,4),minmax(0,1fr))!important;gap:clamp(12px,2vw,22px)!important}
.edcro-topbar{background:var(--edcro-topbar-bg);color:var(--edcro-topbar-text);font-size:13px;font-family:var(--edcro-font,'Inter',system-ui,sans-serif)}.edcro-topbar .edcro-container{display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap;padding-top:8px;padding-bottom:8px}.edcro-topbar-left,.edcro-topbar-right{display:flex;gap:16px;align-items:center;flex-wrap:wrap}.edcro-topbar a{color:inherit;text-decoration:none}.edcro-topbar a:hover{text-decoration:underline}
.edcro-cat-card,.edcro-review-card,.edcro-trust-item{background:#fff;border:1px solid var(--edcro-line);border-radius:var(--edcro-radius);padding:18px;text-decoration:none;color:var(--edcro-ink);box-shadow:var(--edcro-shadow-sm);position:relative;min-width:0}.edcro-cat-card{display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px}.edcro-cat-card:hover,.edcro-review-card:hover,.edcro-trust-item:hover{border-color:rgba(227,6,19,.35);box-shadow:var(--edcro-shadow-md)}.edcro-cat-icon{width:72px;height:72px;border-radius:18px;background:#f6f7fb;display:grid;place-items:center;font-size:34px;overflow:hidden}.edcro-cat-icon img{width:100%;height:100%;object-fit:cover}.edcro-cat-card strong{font-size:15px}.edcro-cat-card small{color:var(--edcro-muted)}.edcro-ribbon{position:absolute;top:10px;right:10px;background:var(--edcro-brand);color:#fff;border-radius:999px;padding:3px 8px;font-size:11px;font-weight:800}
.edcro-trust-item{display:flex;align-items:center;gap:12px}.edcro-trust-item h4{margin:0 0 3px;font-size:15px;color:var(--edcro-ink)}.edcro-trust-item p{margin:0;color:var(--edcro-muted);font-size:13px}.edcro-ico{width:44px;height:44px;display:grid;place-items:center;border-radius:12px;background:var(--edcro-brand-soft);color:var(--edcro-brand);flex:0 0 auto}
.edcro-review-card p{font-size:14px;line-height:1.55;color:var(--edcro-ink-2)}.edcro-review-author{display:flex;justify-content:space-between;align-items:center;gap:10px;flex-wrap:wrap}.edcro-review-author small{display:block;color:var(--edcro-muted)}.edcro-verified{color:var(--edcro-green);font-size:12px;font-weight:800}
.edcro-split-grid{grid-template-columns:repeat(var(--edcro-cols,2),minmax(0,1fr))!important}.edcro-split-card{min-height:220px;border-radius:18px;padding:clamp(20px,4vw,36px);color:#fff;position:relative;overflow:hidden}.edcro-split-card h3{font-size:clamp(20px,2.4vw,28px);line-height:1.15;margin:6px 0;color:#fff}.edcro-split-card p{max-width:520px;color:rgba(255,255,255,.88)}.edcro-split-card a{display:inline-flex;background:#fff;color:var(--edcro-ink);border-radius:10px;padding:10px 14px;text-decoration:none;font-weight:800}.edcro-emoji-bg{position:absolute;right:-12px;bottom:-28px;font-size:clamp(90px,14vw,190px);opacity:.16;pointer-events:none}
.edcro-product-card{min-width:0}.edcro-product-img-wrap{width:100%}.edcro-product-card img{max-width:100%;height:auto}.edcro-price{font-size:clamp(18px,2vw,22px)}
.edcro-newsletter-box{display:grid;grid-template-columns:minmax(0,1fr) minmax(260px,.8fr);gap:22px;align-items:center}.edcro-newsletter form{display:flex;gap:10px}.edcro-newsletter input{min-width:0;flex:1}.edcro-footer-grid{display:grid;grid-template-columns:2fr repeat(3,1fr);gap:24px}.edcro-footer a{display:block;color:inherit;text-decoration:none;margin:6px 0}.edcro-whatsapp-fab{position:fixed;bottom:24px;width:58px;height:58px;border-radius:50%;display:grid;place-items:center;color:#fff;text-decoration:none;font-size:26px;z-index:999;box-shadow:0 12px 26px rgba(0,0,0,.22)}
@media(max-width:1024px){.edcro-dynamic-grid,.edcro-product-grid,.edcro-cat-grid,.edcro-brands-grid,.edcro-usps-grid,.edcro-usp-grid,.edcro-reviews-grid,.edcro-trust-grid,.edcro-split-grid{grid-template-columns:repeat(var(--edcro-tablet-cols,2),minmax(0,1fr))!important}.edcro-header-inner{grid-template-columns:1fr;gap:14px}.edcro-header-actions{justify-content:center}.edcro-nav-inner{overflow:auto}.edcro-hero-grid{grid-template-columns:1fr!important;text-align:center}.edcro-hero-media{max-width:420px;margin:0 auto}.edcro-hero-actions,.edcro-countdown{justify-content:center}.edcro-footer-grid{grid-template-columns:1fr 1fr}.edcro-newsletter-box{grid-template-columns:1fr}}
@media(max-width:640px){.edcro-container{padding-left:14px;padding-right:14px}.edcro-dynamic-grid,.edcro-product-grid,.edcro-cat-grid,.edcro-brands-grid,.edcro-usps-grid,.edcro-usp-grid,.edcro-reviews-grid,.edcro-trust-grid,.edcro-split-grid{grid-template-columns:repeat(var(--edcro-mobile-cols,1),minmax(0,1fr))!important}.edcro-categories-section .edcro-cat-grid{grid-template-columns:repeat(var(--edcro-mobile-cols,2),minmax(0,1fr))!important}.edcro-section-head{align-items:flex-start}.edcro-topbar .edcro-container,.edcro-topbar-left,.edcro-topbar-right{justify-content:center;text-align:center}.edcro-search{border-radius:14px;flex-direction:column}.edcro-search-cat{border-right:0;border-bottom:1px solid var(--edcro-line);padding:10px}.edcro-search button{justify-content:center;padding:12px}.edcro-header-actions{display:grid;grid-template-columns:repeat(3,1fr);width:100%}.edcro-header-icon-btn{padding:8px 4px}.edcro-nav-inner{gap:4px}.edcro-nav-item{padding:12px 10px;font-size:13px}.edcro-hero{padding:34px 0!important}.edcro-hero-copy h1{font-size:clamp(28px,9vw,40px)}.edcro-countdown{display:grid!important;grid-template-columns:repeat(4,1fr);gap:8px}.edcro-hero-actions{display:grid;grid-template-columns:1fr;width:100%}.edcro-flash-head{align-items:flex-start;flex-direction:column}.edcro-flash-timer{width:100%;justify-content:center;flex-wrap:wrap}.edcro-product-card{padding:14px}.edcro-cat-icon{width:58px;height:58px;font-size:28px}.edcro-trust-item{align-items:flex-start}.edcro-newsletter form{flex-direction:column}.edcro-footer-grid{grid-template-columns:1fr}.edcro-promo-strip .edcro-container{flex-direction:column;text-align:center}.edcro-whatsapp-fab{width:52px;height:52px;bottom:16px}}

/* ===== v3.3 Reparación visual Hero + Categorías Premium ===== */
.edcro-hero{isolation:isolate;padding:0!important;background-size:cover;background-position:center;color:#fff}
.edcro-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,10,24,.36),rgba(3,10,24,.12));z-index:0;pointer-events:none}
.edcro-hero:after{z-index:0}
.edcro-hero .edcro-container{position:relative;z-index:1}
.edcro-hero-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);gap:clamp(24px,5vw,64px);align-items:center;min-height:clamp(470px,60vw,640px);padding:clamp(42px,6vw,82px) 0}
.edcro-hero--compact .edcro-hero-grid{min-height:390px;padding:42px 0}.edcro-hero--tall .edcro-hero-grid{min-height:720px}
.edcro-hero-copy{max-width:680px}.edcro-hero-tag{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.12);color:#fff;padding:9px 14px;border-radius:999px;font-size:13px;font-weight:800;border:1px solid rgba(255,255,255,.24);backdrop-filter:blur(10px);margin-bottom:18px;box-shadow:inset 0 1px 0 rgba(255,255,255,.12)}
.edcro-hero-copy h1{font-size:clamp(34px,5.4vw,66px);line-height:.98;font-weight:950;letter-spacing:-.045em;margin:0 0 18px;color:#fff;text-wrap:balance}.edcro-hero-copy h1 .em{color:var(--edcro-accent)}
.edcro-hero-lead{font-size:clamp(16px,1.5vw,19px);line-height:1.55;color:rgba(255,255,255,.86);max-width:580px;margin:0 0 24px}.edcro-hero-copy .edcro-promo-code{display:inline-flex;align-items:center;gap:10px;background:rgba(255,255,255,.10);border:1px dashed rgba(255,255,255,.35);padding:10px 14px;border-radius:14px;margin:0 0 24px;color:#fff;backdrop-filter:blur(10px)}
.edcro-hero-copy .edcro-code{background:var(--edcro-accent);color:var(--edcro-ink);padding:5px 10px;border-radius:8px;font-weight:950;letter-spacing:.04em}.edcro-countdown{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 26px}.edcro-cd{min-width:68px;padding:11px 12px;border-radius:14px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16);text-align:center;backdrop-filter:blur(10px)}.edcro-cd b{display:block;color:#fff;font-size:24px;line-height:1;font-weight:950}.edcro-cd span{display:block;margin-top:4px;color:rgba(255,255,255,.72);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.edcro-hero-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap}.edcro-hero-actions .edcro-btn{border-radius:14px;padding:15px 22px;font-weight:900;text-decoration:none;line-height:1}.edcro-btn-primary{background:var(--edcro-brand)!important;color:#fff!important}.edcro-btn-ghost,.edcro-btn-light{background:rgba(255,255,255,.12)!important;color:#fff!important;border:1px solid rgba(255,255,255,.25)!important;backdrop-filter:blur(10px)}.edcro-hero-media{position:relative;min-width:0}.edcro-hero-visual{position:relative;width:100%;max-width:560px;margin-left:auto;aspect-ratio:1.08/1;border-radius:32px;background:linear-gradient(135deg,rgba(255,255,255,.96),rgba(246,247,251,.90));display:grid;place-items:center;overflow:hidden;box-shadow:0 34px 70px rgba(0,0,0,.28);border:1px solid rgba(255,255,255,.55);transform:rotate(1deg)}.edcro-hero-visual:before{content:"";position:absolute;inset:auto -20% -28% -20%;height:52%;background:radial-gradient(circle,rgba(227,6,19,.18),transparent 60%)}.edcro-hero-img{position:relative;z-index:1;width:100%;height:100%;object-fit:contain;padding:clamp(18px,3vw,42px)}.edcro-product-img{position:relative;z-index:1;font-size:clamp(120px,18vw,220px);filter:drop-shadow(0 26px 34px rgba(0,0,0,.18))}.edcro-badge-discount{position:absolute;z-index:2;top:22px;right:22px;background:var(--edcro-brand);color:#fff;width:112px;height:112px;border-radius:999px;display:grid;place-items:center;text-align:center;transform:rotate(-10deg);box-shadow:0 16px 32px rgba(227,6,19,.38);border:4px solid #fff}.edcro-badge-discount b{display:block;font-size:34px;line-height:1;font-weight:950}.edcro-badge-discount span{display:block;margin-top:4px;font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.1em}.edcro-hero--center .edcro-hero-grid{grid-template-columns:1fr;max-width:900px;margin:auto;text-align:center}.edcro-hero--center .edcro-hero-copy{margin:auto}.edcro-hero--center .edcro-hero-media{display:none}.edcro-hero--center .edcro-hero-lead{margin-left:auto;margin-right:auto}.edcro-hero--center .edcro-hero-actions,.edcro-hero--center .edcro-countdown{justify-content:center}

.edcro-categories-section.edcro-style-premium .edcro-cat-grid{gap:clamp(14px,2vw,24px)!important}.edcro-categories-section.edcro-style-premium .edcro-cat-card{min-height:210px;display:flex;flex-direction:column;justify-content:flex-end;align-items:flex-start;text-align:left;overflow:hidden;border:1px solid rgba(14,27,44,.08);border-radius:22px;padding:18px;color:#fff;background:#111827;box-shadow:0 16px 36px rgba(14,27,44,.10);transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}.edcro-categories-section.edcro-style-premium .edcro-cat-card:hover{transform:translateY(-4px);box-shadow:0 22px 46px rgba(14,27,44,.16);border-color:rgba(227,6,19,.28)}.edcro-categories-section.edcro-style-premium .edcro-cat-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(10,18,32,.05),rgba(10,18,32,.76));z-index:1}.edcro-categories-section.edcro-style-premium .edcro-cat-icon{position:absolute;inset:0;width:100%;height:100%;border-radius:0;background:linear-gradient(135deg,#f8fafc,#e5e7eb);font-size:74px;display:grid;place-items:center;overflow:hidden;z-index:0}.edcro-categories-section.edcro-style-premium .edcro-cat-icon img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.edcro-categories-section.edcro-style-premium .edcro-cat-card:hover .edcro-cat-icon img{transform:scale(1.06)}.edcro-categories-section.edcro-style-premium .edcro-cat-content{position:relative;z-index:2;display:block}.edcro-categories-section.edcro-style-premium .edcro-cat-card strong{display:block;color:#fff;font-size:clamp(16px,1.5vw,21px);line-height:1.08;text-shadow:0 2px 10px rgba(0,0,0,.2)}.edcro-categories-section.edcro-style-premium .edcro-cat-card small{display:inline-flex;margin-top:8px;color:#fff;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.18);border-radius:999px;padding:5px 10px;font-size:12px;font-weight:800;backdrop-filter:blur(10px)}.edcro-categories-section.edcro-style-premium .edcro-ribbon{z-index:3;top:12px;right:12px;background:rgba(227,6,19,.95);box-shadow:0 8px 18px rgba(0,0,0,.16)}
.edcro-categories-section.edcro-style-cards .edcro-cat-card,.edcro-categories-section.edcro-style-compact .edcro-cat-card,.edcro-categories-section.edcro-style-minimal .edcro-cat-card{display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px}.edcro-categories-section.edcro-style-cards .edcro-cat-icon,.edcro-categories-section.edcro-style-compact .edcro-cat-icon,.edcro-categories-section.edcro-style-minimal .edcro-cat-icon{position:relative;inset:auto;width:82px;height:82px;border-radius:22px;background:#f6f7fb;display:grid;place-items:center;font-size:36px;overflow:hidden}.edcro-categories-section.edcro-style-cards .edcro-cat-icon img,.edcro-categories-section.edcro-style-compact .edcro-cat-icon img,.edcro-categories-section.edcro-style-minimal .edcro-cat-icon img{width:100%;height:100%;object-fit:cover}
@media(max-width:1024px){.edcro-hero-grid{grid-template-columns:1fr;min-height:auto;text-align:center}.edcro-hero-copy{margin:auto}.edcro-hero-lead{margin-left:auto;margin-right:auto}.edcro-hero-actions,.edcro-countdown{justify-content:center}.edcro-hero-visual{margin:8px auto 0;max-width:440px}.edcro-categories-section.edcro-style-premium .edcro-cat-card{min-height:190px}}
@media(max-width:640px){.edcro-hero-grid{padding:34px 0;gap:22px}.edcro-hero-copy h1{font-size:clamp(30px,10vw,42px)}.edcro-hero-lead{font-size:15px}.edcro-hero-actions{display:grid;width:100%;grid-template-columns:1fr}.edcro-hero-actions .edcro-btn{justify-content:center}.edcro-countdown{display:grid;grid-template-columns:repeat(4,1fr);width:100%}.edcro-cd{min-width:0;padding:10px 6px}.edcro-cd b{font-size:20px}.edcro-hero-media{display:none}.edcro-categories-section.edcro-style-premium .edcro-cat-card{min-height:150px;border-radius:18px;padding:14px}.edcro-categories-section.edcro-style-premium .edcro-cat-card strong{font-size:15px}.edcro-categories-section.edcro-style-premium .edcro-cat-card small{font-size:11px;padding:4px 8px}.edcro-categories-section.edcro-style-cards .edcro-cat-icon,.edcro-categories-section.edcro-style-compact .edcro-cat-icon,.edcro-categories-section.edcro-style-minimal .edcro-cat-icon{width:58px;height:58px;border-radius:16px;font-size:28px}}

/* ===== v3.4.0 · Corrección definitiva responsive + hero ===== */
.edcro-section,
.edcro-trust-bar,
.edcro-promo-strip,
.edcro-hero,
.edcro-header,
.edcro-footer{box-sizing:border-box}
.edcro-section *,
.edcro-trust-bar *,
.edcro-promo-strip *,
.edcro-hero *,
.edcro-header *,
.edcro-footer *{box-sizing:border-box}

/* Columnas: se respetan SIEMPRE los valores configurados por módulo */
.edcro-dynamic-grid,
.edcro-product-grid,
.edcro-cat-grid,
.edcro-brands-grid,
.edcro-usps-grid,
.edcro-usp-grid,
.edcro-reviews-grid,
.edcro-trust-grid,
.edcro-split-grid{
  display:grid!important;
  grid-template-columns:repeat(var(--edcro-cols,4),minmax(0,1fr))!important;
  gap:clamp(12px,2vw,24px)!important;
  align-items:stretch!important;
  width:100%!important;
}
.edcro-dynamic-grid > *,
.edcro-product-grid > *,
.edcro-cat-grid > *,
.edcro-brands-grid > *,
.edcro-usps-grid > *,
.edcro-usp-grid > *,
.edcro-reviews-grid > *,
.edcro-trust-grid > *,
.edcro-split-grid > *{min-width:0!important;max-width:100%!important}

/* Hero: imagen a la derecha en escritorio y tablet. Solo se apila/oculta en móvil real. */
.edcro-hero{padding:0!important;overflow:hidden!important;background-size:cover!important;background-position:center!important}
.edcro-hero .edcro-container{position:relative!important;z-index:2!important}
.edcro-hero-grid{
  display:grid!important;
  grid-template-columns:minmax(0,1.05fr) minmax(280px,.85fr)!important;
  align-items:center!important;
  gap:clamp(22px,4vw,58px)!important;
  min-height:clamp(430px,48vw,610px)!important;
  padding:clamp(42px,5vw,76px) 0!important;
  text-align:left!important;
}
.edcro-hero-copy{max-width:680px!important;margin:0!important;min-width:0!important}
.edcro-hero-copy h1{font-size:clamp(34px,4.8vw,62px)!important;line-height:1.02!important;letter-spacing:-.04em!important;margin-bottom:16px!important}
.edcro-hero-lead{max-width:570px!important;margin:0 0 22px!important;color:rgba(255,255,255,.88)!important}
.edcro-hero-actions,
.edcro-countdown{justify-content:flex-start!important}
.edcro-hero-media{display:block!important;min-width:0!important;max-width:none!important;margin:0!important;align-self:center!important}
.edcro-hero-visual{
  width:100%!important;
  max-width:520px!important;
  margin-left:auto!important;
  margin-right:0!important;
  aspect-ratio:1.12/1!important;
  border-radius:clamp(22px,2.6vw,34px)!important;
  transform:none!important;
}
.edcro-hero-img{object-fit:contain!important;padding:clamp(16px,2.6vw,38px)!important}
.edcro-hero--center .edcro-hero-grid{grid-template-columns:1fr!important;text-align:center!important;max-width:900px!important;margin:0 auto!important}
.edcro-hero--center .edcro-hero-copy{margin:0 auto!important}
.edcro-hero--center .edcro-hero-media{display:none!important}
.edcro-hero--center .edcro-hero-actions,
.edcro-hero--center .edcro-countdown{justify-content:center!important}

/* Tarjetas: mejora de comportamiento móvil */
.edcro-product-card,
.edcro-cat-card,
.edcro-brand-card,
.edcro-usp,
.edcro-review-card,
.edcro-trust-item,
.edcro-split-card{height:100%!important;min-width:0!important;overflow:hidden}
.edcro-product-card img{display:block!important;max-width:100%!important;height:auto!important}
.edcro-product-img-wrap{width:100%!important;aspect-ratio:1/1!important;display:grid!important;place-items:center!important;overflow:hidden!important}
.edcro-product-img-wrap img{width:100%!important;height:100%!important;object-fit:contain!important}
.edcro-product-card h3{word-break:normal!important;overflow-wrap:anywhere!important}

/* Categorías premium: mantiene imagen, estética y columnas configuradas */
.edcro-categories-section.edcro-style-premium .edcro-cat-card{min-height:clamp(170px,18vw,230px)!important}
.edcro-categories-section.edcro-style-premium .edcro-cat-icon{width:100%!important;height:100%!important}
.edcro-categories-section.edcro-style-premium .edcro-cat-icon img{width:100%!important;height:100%!important;object-fit:cover!important}

/* Tablet */
@media (max-width:1024px) and (min-width:768px){
  .edcro-dynamic-grid,
  .edcro-product-grid,
  .edcro-cat-grid,
  .edcro-brands-grid,
  .edcro-usps-grid,
  .edcro-usp-grid,
  .edcro-reviews-grid,
  .edcro-trust-grid,
  .edcro-split-grid{
    grid-template-columns:repeat(var(--edcro-tablet-cols,2),minmax(0,1fr))!important;
  }
  .edcro-hero-grid{
    grid-template-columns:minmax(0,1fr) minmax(260px,.78fr)!important;
    gap:28px!important;
    min-height:430px!important;
    text-align:left!important;
  }
  .edcro-hero-copy{margin:0!important}
  .edcro-hero-lead{margin-left:0!important;margin-right:0!important}
  .edcro-hero-actions,
  .edcro-countdown{justify-content:flex-start!important}
  .edcro-hero-visual{max-width:390px!important;margin-left:auto!important;margin-right:0!important}
  .edcro-badge-discount{width:86px!important;height:86px!important;top:14px!important;right:14px!important}
  .edcro-badge-discount b{font-size:26px!important}
}

/* Móvil */
@media (max-width:767px){
  .edcro-container{padding-left:14px!important;padding-right:14px!important}
  .edcro-section{padding:34px 0!important}
  .edcro-dynamic-grid,
  .edcro-product-grid,
  .edcro-cat-grid,
  .edcro-brands-grid,
  .edcro-usps-grid,
  .edcro-usp-grid,
  .edcro-reviews-grid,
  .edcro-trust-grid,
  .edcro-split-grid{
    grid-template-columns:repeat(var(--edcro-mobile-cols,1),minmax(0,1fr))!important;
    gap:14px!important;
  }
  .edcro-categories-section .edcro-cat-grid{
    grid-template-columns:repeat(var(--edcro-mobile-cols,2),minmax(0,1fr))!important;
  }
  .edcro-section-head{align-items:flex-start!important;margin-bottom:18px!important}
  .edcro-section-head h2{font-size:clamp(22px,7vw,28px)!important;line-height:1.12!important}

  .edcro-hero-grid{
    grid-template-columns:1fr!important;
    min-height:auto!important;
    padding:34px 0!important;
    gap:18px!important;
    text-align:center!important;
  }
  .edcro-hero-copy{margin:0 auto!important;max-width:100%!important}
  .edcro-hero-copy h1{font-size:clamp(30px,10.5vw,42px)!important;line-height:1.04!important}
  .edcro-hero-lead{font-size:15px!important;margin-left:auto!important;margin-right:auto!important}
  .edcro-hero-actions{display:grid!important;grid-template-columns:1fr!important;width:100%!important;justify-content:stretch!important}
  .edcro-hero-actions .edcro-btn{width:100%!important;justify-content:center!important;padding:14px 16px!important}
  .edcro-countdown{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;width:100%!important;gap:7px!important;justify-content:stretch!important}
  .edcro-cd{min-width:0!important;padding:9px 4px!important;border-radius:12px!important}
  .edcro-cd b{font-size:18px!important}
  .edcro-cd span{font-size:9px!important;letter-spacing:.04em!important}
  .edcro-hero-media{display:none!important}

  .edcro-product-card{padding:12px!important;border-radius:14px!important}
  .edcro-product-card h3{font-size:13px!important;min-height:auto!important}
  .edcro-price{font-size:18px!important}
  .edcro-product-card .edcro-btn,
  .edcro-product-card a.button{width:100%!important;justify-content:center!important;text-align:center!important}

  .edcro-categories-section.edcro-style-premium .edcro-cat-card{min-height:150px!important;border-radius:18px!important;padding:13px!important}
  .edcro-categories-section.edcro-style-premium .edcro-cat-card strong{font-size:15px!important;line-height:1.1!important}
  .edcro-categories-section.edcro-style-premium .edcro-cat-card small{font-size:10px!important;padding:4px 7px!important}
  .edcro-categories-section.edcro-style-premium .edcro-ribbon{font-size:10px!important;top:9px!important;right:9px!important}
  .edcro-cat-icon{width:58px!important;height:58px!important;font-size:28px!important}

  .edcro-flash-section{padding:18px!important;border-radius:18px!important}
  .edcro-flash-head{flex-direction:column!important;align-items:flex-start!important;gap:12px!important}
  .edcro-flash-timer{width:100%!important;justify-content:center!important;flex-wrap:wrap!important}
  .edcro-newsletter-box{grid-template-columns:1fr!important;text-align:center!important;padding:22px!important}
  .edcro-newsletter form{flex-direction:column!important}
  .edcro-footer-grid{grid-template-columns:1fr!important}
  .edcro-promo-strip .edcro-container{flex-direction:column!important;text-align:center!important;gap:8px!important}
}

/* Móvil estrecho: evita apelotonamiento extremo */
@media (max-width:420px){
  .edcro-countdown{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}

/* ===== v3.5.0 · Hard responsive override ===== */
.edcro-force-grid,.edcro-dynamic-grid,.edcro-product-grid,.edcro-cat-grid,.edcro-brands-grid,.edcro-usps-grid,.edcro-usp-grid,.edcro-reviews-grid,.edcro-trust-grid,.edcro-split-grid{display:grid!important;grid-template-columns:repeat(var(--edcro-cols,4),minmax(0,1fr))!important;gap:var(--edcro-gap,clamp(14px,2vw,24px))!important;width:100%!important;max-width:100%!important;align-items:stretch!important}
.edcro-force-grid>*,.edcro-dynamic-grid>*,.edcro-product-grid>*,.edcro-cat-grid>*,.edcro-brands-grid>*,.edcro-usps-grid>*,.edcro-usp-grid>*,.edcro-reviews-grid>*,.edcro-trust-grid>*,.edcro-split-grid>*{min-width:0!important;max-width:100%!important;box-sizing:border-box!important}
.edcro-hero.edcro-hero-v350{display:block!important;position:relative!important;overflow:hidden!important;padding:0!important}
.edcro-hero.edcro-hero-v350 .edcro-hero-grid{display:grid!important;grid-template-columns:minmax(0,1.08fr) minmax(300px,.92fr)!important;align-items:center!important;gap:clamp(28px,4vw,68px)!important;text-align:left!important;min-height:clamp(460px,50vw,640px)!important;padding:clamp(46px,6vw,84px) 0!important}
.edcro-hero.edcro-hero-v350 .edcro-hero-copy{grid-column:1!important;grid-row:1!important;max-width:680px!important;margin:0!important;text-align:left!important}
.edcro-hero.edcro-hero-v350 .edcro-hero-media{grid-column:2!important;grid-row:1!important;display:flex!important;align-items:center!important;justify-content:flex-end!important;margin:0!important;min-width:0!important}
.edcro-hero.edcro-hero-v350 .edcro-hero-visual{width:100%!important;max-width:560px!important;margin:0 0 0 auto!important;aspect-ratio:1.12/1!important;transform:none!important;border-radius:32px!important}
.edcro-hero.edcro-hero-v350 .edcro-hero-img{width:100%!important;height:100%!important;object-fit:contain!important;padding:clamp(18px,3vw,42px)!important}
.edcro-hero.edcro-hero-v350 .edcro-hero-actions,.edcro-hero.edcro-hero-v350 .edcro-countdown{justify-content:flex-start!important}
.edcro-hero.edcro-hero-v350.edcro-hero--center .edcro-hero-grid{grid-template-columns:1fr!important;text-align:center!important}.edcro-hero.edcro-hero-v350.edcro-hero--center .edcro-hero-copy{margin:0 auto!important;text-align:center!important}.edcro-hero.edcro-hero-v350.edcro-hero--center .edcro-hero-media{display:none!important}
@media (max-width:1024px) and (min-width:768px){.edcro-force-grid,.edcro-dynamic-grid,.edcro-product-grid,.edcro-cat-grid,.edcro-brands-grid,.edcro-usps-grid,.edcro-usp-grid,.edcro-reviews-grid,.edcro-trust-grid,.edcro-split-grid{grid-template-columns:repeat(var(--edcro-tablet-cols,2),minmax(0,1fr))!important}.edcro-hero.edcro-hero-v350 .edcro-hero-grid{grid-template-columns:minmax(0,1fr) minmax(260px,.82fr)!important;gap:26px!important;min-height:430px!important;text-align:left!important}.edcro-hero.edcro-hero-v350 .edcro-hero-copy{text-align:left!important}.edcro-hero.edcro-hero-v350 .edcro-hero-media{display:flex!important;justify-content:flex-end!important}.edcro-hero.edcro-hero-v350 .edcro-hero-visual{max-width:400px!important;margin-left:auto!important}.edcro-hero.edcro-hero-v350 .edcro-hero-actions,.edcro-hero.edcro-hero-v350 .edcro-countdown{justify-content:flex-start!important}}
@media (max-width:767px){.edcro-container{max-width:100%!important;padding-left:14px!important;padding-right:14px!important}.edcro-force-grid,.edcro-dynamic-grid,.edcro-product-grid,.edcro-cat-grid,.edcro-brands-grid,.edcro-usps-grid,.edcro-usp-grid,.edcro-reviews-grid,.edcro-trust-grid,.edcro-split-grid{grid-template-columns:repeat(var(--edcro-mobile-cols,1),minmax(0,1fr))!important;gap:14px!important}.edcro-categories-section .edcro-cat-grid{grid-template-columns:repeat(var(--edcro-mobile-cols,2),minmax(0,1fr))!important}.edcro-hero.edcro-hero-v350 .edcro-hero-grid{grid-template-columns:1fr!important;min-height:auto!important;padding:34px 0!important;gap:20px!important;text-align:center!important}.edcro-hero.edcro-hero-v350 .edcro-hero-copy{grid-column:1!important;grid-row:1!important;text-align:center!important;margin:0 auto!important;max-width:100%!important}.edcro-hero.edcro-hero-v350 .edcro-hero-media{grid-column:1!important;grid-row:2!important;display:flex!important;justify-content:center!important}.edcro-hero.edcro-hero-v350 .edcro-hero-visual{max-width:min(330px,92vw)!important;margin:0 auto!important;border-radius:22px!important}.edcro-hero.edcro-hero-v350 .edcro-hero-actions{display:grid!important;grid-template-columns:1fr!important;width:100%!important}.edcro-hero.edcro-hero-v350 .edcro-hero-actions .edcro-btn{width:100%!important;justify-content:center!important;text-align:center!important}.edcro-hero.edcro-hero-v350 .edcro-countdown{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;width:100%!important;gap:7px!important}.edcro-product-card,.edcro-cat-card,.edcro-brand-card,.edcro-usp,.edcro-review-card,.edcro-trust-item,.edcro-split-card{width:100%!important;min-width:0!important;overflow:hidden!important}.edcro-product-card img,.edcro-cat-card img{max-width:100%!important;height:auto!important}.edcro-product-card h3{font-size:13px!important;line-height:1.25!important;overflow-wrap:anywhere!important}.edcro-product-card .edcro-btn-add{width:100%!important;text-align:center!important;justify-content:center!important}.edcro-section-head{display:flex!important;flex-direction:column!important;align-items:flex-start!important;gap:10px!important}.edcro-section-head h2{font-size:clamp(22px,7vw,29px)!important;line-height:1.12!important}}


/* EDCRO v3.6.0 - mobile compact hero + richer product cards */
.edcro-hero-v360.edcro-hero--mobile-hide-image .edcro-hero-media{display:flex}
.edcro-card-short-desc{font-size:13px;line-height:1.45;color:#637083;margin:0 0 10px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:36px}
.edcro-card-delivery{font-size:12px;line-height:1.35;color:#14532d;background:#ecfdf3;border:1px solid rgba(34,197,94,.22);border-radius:10px;padding:8px 10px;margin:0 0 12px;font-weight:600}
@media (max-width:767px){
  .edcro-hero-v360.edcro-hero--mobile-hide-image .edcro-hero-media{display:none!important}
  .edcro-hero-v360.edcro-hero--mobile-hide-image .edcro-hero-grid{padding:20px 0!important;gap:10px!important}
  .edcro-hero-v360.edcro-hero--mobile-hide-image .edcro-hero-copy h1{font-size:clamp(24px,7.5vw,34px)!important;line-height:1.05!important;margin-bottom:10px!important}
  .edcro-hero-v360.edcro-hero--mobile-hide-image .edcro-hero-lead{font-size:14px!important;line-height:1.45!important;margin-bottom:10px!important}
  .edcro-hero-v360.edcro-hero--mobile-hide-image .edcro-countdown{gap:6px!important;margin-top:8px!important}
  .edcro-hero-v360.edcro-hero--mobile-hide-image .edcro-cd{padding:8px 4px!important;border-radius:10px!important}
  .edcro-hero-v360.edcro-hero--mobile-hide-image .edcro-cd b{font-size:18px!important}
  .edcro-hero-v360.edcro-hero--mobile-hide-image .edcro-cd span{font-size:10px!important}
  .edcro-card-short-desc{font-size:12px!important;min-height:auto!important;margin-bottom:8px!important}
  .edcro-card-delivery{font-size:11.5px!important;padding:7px 8px!important;border-radius:8px!important}
}

/* EDCRO v3.7.0 premium product card */
.edcro-product-card{border-radius:18px!important;border:1px solid rgba(18,24,40,.08)!important;box-shadow:0 10px 26px rgba(15,23,42,.06)!important;padding:16px!important;background:linear-gradient(180deg,#fff 0%,#fff 72%,#fbfcff 100%)!important}
.edcro-product-card:hover{box-shadow:0 18px 42px rgba(15,23,42,.12)!important;transform:translateY(-3px)!important}
.edcro-product-card h3{font-size:15px!important;line-height:1.22!important;font-weight:850!important;letter-spacing:-.025em!important;margin:2px 0 8px!important;color:#111827!important;min-height:0!important}
.edcro-product-card h3 a{text-decoration:none!important;color:inherit!important}
.edcro-product-card h3 a:hover{text-decoration:underline!important;text-underline-offset:3px!important}
.edcro-card-short-desc{font-size:12.5px!important;line-height:1.45!important;color:#667085!important;margin:0 0 10px!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;min-height:34px!important}
.edcro-card-delivery{display:flex!important;align-items:center!important;gap:8px!important;width:100%!important;margin:4px 0 14px!important;padding:9px 11px!important;border-radius:999px!important;background:linear-gradient(135deg,#ecfdf5 0%,#eefcf8 50%,#f0fdfa 100%)!important;border:1px solid rgba(16,185,129,.18)!important;color:#047857!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.8)!important;font-size:12px!important;line-height:1.25!important;font-weight:700!important}
.edcro-card-delivery .edcro-delivery-icon{display:inline-flex!important;align-items:center!important;justify-content:center!important;flex:0 0 auto!important;font-size:14px!important}
.edcro-card-delivery .edcro-delivery-copy{min-width:0!important;display:block!important}
.edcro-card-delivery .edcro-delivery-prefix{font-weight:800!important;color:#059669!important;margin-right:3px!important}
.edcro-card-delivery strong{font-weight:900!important;color:#065f46!important}
.edcro-price-row{margin-top:auto!important;margin-bottom:10px!important;align-items:flex-end!important;gap:8px!important}
.edcro-price{font-size:clamp(26px,2.1vw,34px)!important;line-height:.95!important;font-weight:950!important;letter-spacing:-.055em!important;color:var(--edcro-brand,#e30613)!important;text-shadow:0 6px 18px rgba(227,6,19,.12)!important}
.edcro-price-old{font-size:13px!important;color:#98a2b3!important}
.edcro-price-save{border-radius:999px!important;padding:3px 7px!important;font-size:10.5px!important;font-weight:900!important}
.edcro-product-img-wrap{border-radius:16px!important;background:linear-gradient(180deg,#f8fafc,#f1f5f9)!important;margin-bottom:12px!important}
@media (max-width:767px){.edcro-product-card{padding:14px!important;border-radius:16px!important}.edcro-product-card h3{font-size:14px!important;line-height:1.22!important}.edcro-card-short-desc{font-size:12px!important;line-height:1.35!important;min-height:auto!important;margin-bottom:9px!important}.edcro-card-delivery{font-size:11.5px!important;padding:8px 10px!important;border-radius:14px!important;align-items:flex-start!important}.edcro-price{font-size:30px!important}.edcro-price-row{margin-bottom:10px!important}}

/* ===== v3.8.0 · Banner con imagen + opiniones/newsletter premium ===== */
.edcro-split-v380 .edcro-split-card{
  isolation:isolate!important;
  display:grid!important;
  grid-template-columns:minmax(0,1fr) minmax(120px,34%)!important;
  gap:18px!important;
  align-items:center!important;
  min-height:240px!important;
  padding:clamp(22px,3vw,38px)!important;
  border-radius:24px!important;
  box-shadow:0 22px 50px rgba(14,27,44,.16)!important;
  border:1px solid rgba(255,255,255,.16)!important;
}
.edcro-split-v380 .edcro-split-card:not(.edcro-split-has-image){grid-template-columns:1fr!important}
.edcro-split-v380 .edcro-split-content{position:relative!important;z-index:2!important;max-width:540px!important}
.edcro-split-v380 .edcro-split-sup,
.edcro-split-v380 .edcro-split-card > span{
  display:inline-flex!important;
  width:max-content!important;
  max-width:100%!important;
  padding:6px 10px!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.14)!important;
  color:rgba(255,255,255,.9)!important;
  border:1px solid rgba(255,255,255,.18)!important;
  font-size:11px!important;
  line-height:1!important;
  font-weight:900!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
  margin-bottom:12px!important;
}
.edcro-split-v380 .edcro-split-card h3{font-size:clamp(22px,2.2vw,32px)!important;line-height:1.05!important;margin:0 0 10px!important;letter-spacing:-.035em!important;color:#fff!important;text-wrap:balance!important}
.edcro-split-v380 .edcro-split-card p{font-size:14px!important;line-height:1.55!important;color:rgba(255,255,255,.86)!important;margin:0 0 18px!important;max-width:460px!important}
.edcro-split-v380 .edcro-split-card a{display:inline-flex!important;align-items:center!important;justify-content:center!important;background:#fff!important;color:#0E1B2C!important;border-radius:999px!important;padding:11px 16px!important;text-decoration:none!important;font-weight:950!important;box-shadow:0 10px 22px rgba(0,0,0,.14)!important}
.edcro-split-v380 .edcro-split-media{position:relative!important;z-index:2!important;align-self:stretch!important;display:flex!important;align-items:center!important;justify-content:flex-end!important;min-width:0!important}
.edcro-split-v380 .edcro-split-media img{width:100%!important;max-width:260px!important;height:100%!important;max-height:220px!important;object-fit:contain!important;filter:drop-shadow(0 20px 24px rgba(0,0,0,.22))!important;transform:translateX(4px)!important}
.edcro-split-v380 .edcro-emoji-bg{z-index:1!important}

.edcro-reviews-v380 .edcro-reviews-head-v380{align-items:flex-end!important;margin-bottom:24px!important}
.edcro-reviews-v380 .edcro-reviews-score{margin-left:auto!important;background:#fff!important;border:1px solid rgba(14,27,44,.09)!important;border-radius:18px!important;padding:12px 16px!important;box-shadow:0 12px 28px rgba(14,27,44,.08)!important;text-align:right!important;min-width:130px!important}
.edcro-reviews-v380 .edcro-reviews-score strong{display:block!important;font-size:24px!important;line-height:1!important;color:var(--edcro-brand)!important;font-weight:950!important;letter-spacing:-.04em!important}
.edcro-reviews-v380 .edcro-reviews-score span{display:block!important;margin-top:3px!important;color:var(--edcro-muted)!important;font-size:11px!important;font-weight:800!important;text-transform:uppercase!important;letter-spacing:.05em!important}
.edcro-reviews-v380 .edcro-review-premium{display:flex!important;flex-direction:column!important;gap:14px!important;padding:22px!important;border-radius:22px!important;background:linear-gradient(180deg,#fff,#fbfcff)!important;border:1px solid rgba(14,27,44,.08)!important;box-shadow:0 16px 38px rgba(14,27,44,.08)!important;overflow:hidden!important;position:relative!important}
.edcro-reviews-v380 .edcro-review-premium:before{content:'“'!important;position:absolute!important;right:16px!important;top:4px!important;font-size:84px!important;font-weight:950!important;line-height:1!important;color:rgba(227,6,19,.07)!important;font-family:Georgia,serif!important}
.edcro-reviews-v380 .edcro-review-top{display:flex!important;align-items:center!important;gap:12px!important;position:relative!important;z-index:1!important}
.edcro-reviews-v380 .edcro-review-avatar{width:44px!important;height:44px!important;border-radius:14px!important;background:linear-gradient(135deg,var(--edcro-brand),var(--edcro-brand-dark))!important;color:#fff!important;display:grid!important;place-items:center!important;font-weight:950!important;font-size:17px!important;box-shadow:0 10px 18px rgba(227,6,19,.20)!important;flex:0 0 auto!important}
.edcro-reviews-v380 .edcro-review-meta strong{display:block!important;font-size:15px!important;line-height:1.15!important;color:var(--edcro-ink)!important}
.edcro-reviews-v380 .edcro-review-meta small{display:block!important;margin-top:3px!important;color:var(--edcro-muted)!important;font-size:12px!important}
.edcro-reviews-v380 .edcro-stars{color:#f59e0b!important;font-size:15px!important;letter-spacing:1px!important;line-height:1!important;position:relative!important;z-index:1!important}
.edcro-reviews-v380 .edcro-review-premium p{font-size:14px!important;line-height:1.65!important;color:#374151!important;margin:0!important;position:relative!important;z-index:1!important;display:-webkit-box!important;-webkit-line-clamp:4!important;-webkit-box-orient:vertical!important;overflow:hidden!important}
.edcro-reviews-v380 .edcro-review-foot{margin-top:auto!important;padding-top:4px!important;position:relative!important;z-index:1!important}
.edcro-reviews-v380 .edcro-verified{display:inline-flex!important;align-items:center!important;gap:5px!important;color:#047857!important;background:#ecfdf3!important;border:1px solid rgba(16,185,129,.18)!important;border-radius:999px!important;padding:6px 10px!important;font-size:11px!important;font-weight:900!important}

.edcro-newsletter-v380{padding:clamp(28px,5vw,56px) 0!important}
.edcro-newsletter-v380 .edcro-newsletter-box{position:relative!important;overflow:hidden!important;display:grid!important;grid-template-columns:minmax(0,1.05fr) minmax(300px,.95fr)!important;gap:clamp(20px,4vw,46px)!important;align-items:center!important;padding:clamp(24px,4vw,46px)!important;border-radius:28px!important;background:linear-gradient(135deg,#0E1B2C,#243A5C)!important;color:#fff!important;border:1px solid rgba(255,255,255,.12)!important;box-shadow:0 24px 60px rgba(14,27,44,.18)!important;text-align:left!important}
.edcro-newsletter-v380 .edcro-newsletter-box:before{content:''!important;position:absolute!important;inset:auto -16% -45% auto!important;width:420px!important;height:420px!important;border-radius:999px!important;background:rgba(227,6,19,.28)!important;filter:blur(10px)!important;pointer-events:none!important}
.edcro-newsletter-v380 .edcro-newsletter-copy{position:relative!important;z-index:1!important;max-width:620px!important}
.edcro-newsletter-v380 .edcro-eyebrow{background:rgba(255,255,255,.12)!important;color:#fff!important;border-color:rgba(255,255,255,.18)!important}
.edcro-newsletter-v380 h2{color:#fff!important;font-size:clamp(26px,3.3vw,42px)!important;line-height:1.05!important;letter-spacing:-.04em!important;margin:10px 0 10px!important;text-wrap:balance!important}
.edcro-newsletter-v380 p{color:rgba(255,255,255,.82)!important;font-size:15px!important;line-height:1.6!important;margin:0!important;max-width:540px!important}
.edcro-newsletter-v380 .edcro-newsletter-form-wrap{position:relative!important;z-index:1!important;background:rgba(255,255,255,.10)!important;border:1px solid rgba(255,255,255,.16)!important;border-radius:22px!important;padding:14px!important;backdrop-filter:blur(12px)!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.08)!important}
.edcro-newsletter-v380 .edcro-newsletter-form{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:10px!important;margin:0!important}
.edcro-newsletter-v380 input[type=email]{width:100%!important;min-height:50px!important;border:0!important;border-radius:14px!important;padding:0 16px!important;font-size:14px!important;background:#fff!important;color:#0E1B2C!important;box-shadow:none!important;outline:none!important}
.edcro-newsletter-v380 button{min-height:50px!important;border:0!important;border-radius:14px!important;padding:0 18px!important;background:var(--edcro-brand)!important;color:#fff!important;font-weight:950!important;cursor:pointer!important;white-space:nowrap!important;box-shadow:0 12px 24px rgba(227,6,19,.28)!important}
.edcro-newsletter-v380 button span{display:inline-block!important;margin-left:4px!important}
.edcro-newsletter-v380 small{display:block!important;margin-top:10px!important;color:rgba(255,255,255,.68)!important;font-size:12px!important;line-height:1.45!important}
.edcro-newsletter-v380.edcro-newsletter--outline .edcro-newsletter-box{background:#fff!important;color:var(--edcro-ink)!important;border-color:rgba(14,27,44,.09)!important}
.edcro-newsletter-v380.edcro-newsletter--outline h2{color:var(--edcro-ink)!important}.edcro-newsletter-v380.edcro-newsletter--outline p{color:var(--edcro-muted)!important}.edcro-newsletter-v380.edcro-newsletter--outline small{color:var(--edcro-muted)!important}.edcro-newsletter-v380.edcro-newsletter--outline .edcro-newsletter-form-wrap{background:#f6f7fb!important;border-color:rgba(14,27,44,.08)!important}
@media(max-width:1024px){
  .edcro-split-v380 .edcro-split-card{grid-template-columns:minmax(0,1fr) minmax(100px,30%)!important;min-height:220px!important}
  .edcro-newsletter-v380 .edcro-newsletter-box{grid-template-columns:1fr!important;text-align:center!important}.edcro-newsletter-v380 .edcro-newsletter-copy{margin:0 auto!important}.edcro-newsletter-v380 p{margin-left:auto!important;margin-right:auto!important}
  .edcro-reviews-v380 .edcro-reviews-score{margin-left:0!important;text-align:left!important}
}
@media(max-width:767px){
  .edcro-split-v380 .edcro-split-card{grid-template-columns:1fr!important;min-height:0!important;padding:22px!important;text-align:left!important}
  .edcro-split-v380 .edcro-split-media{display:none!important}
  .edcro-split-v380 .edcro-split-card h3{font-size:22px!important}
  .edcro-reviews-v380 .edcro-reviews-head-v380{align-items:flex-start!important}.edcro-reviews-v380 .edcro-reviews-score{width:100%!important;text-align:left!important}.edcro-reviews-v380 .edcro-review-premium{padding:18px!important;border-radius:18px!important}.edcro-reviews-v380 .edcro-review-premium p{-webkit-line-clamp:5!important;font-size:13.5px!important}
  .edcro-newsletter-v380{padding:24px 0!important}.edcro-newsletter-v380 .edcro-newsletter-box{padding:22px!important;border-radius:22px!important}.edcro-newsletter-v380 .edcro-newsletter-form{grid-template-columns:1fr!important}.edcro-newsletter-v380 input[type=email],.edcro-newsletter-v380 button{width:100%!important}.edcro-newsletter-v380 h2{font-size:clamp(24px,8vw,32px)!important}
}

/* ===== EDCRO v3.9.0 · Rediseño real newsletter + opiniones ===== */
.edcro-newsletter-v390{padding:clamp(30px,5vw,70px) 0!important;isolation:isolate!important}
.edcro-newsletter-v390 *{box-sizing:border-box!important}
.edcro-newsletter-v390 .edcro-newsletter-shell{position:relative!important;overflow:hidden!important;display:grid!important;grid-template-columns:180px minmax(0,1fr) minmax(320px,.78fr)!important;align-items:center!important;gap:clamp(18px,3vw,42px)!important;padding:clamp(26px,4.5vw,56px)!important;border-radius:34px!important;background:radial-gradient(circle at 8% 15%,rgba(255,255,255,.18),transparent 28%),linear-gradient(135deg,#08111f 0%,#12243b 52%,#e30613 160%)!important;color:#fff!important;border:1px solid rgba(255,255,255,.14)!important;box-shadow:0 28px 80px rgba(8,17,31,.24)!important;text-align:left!important}
.edcro-newsletter-v390 .edcro-newsletter-shell:before{content:''!important;position:absolute!important;inset:0!important;background:linear-gradient(90deg,rgba(255,255,255,.08) 0,transparent 34%,rgba(255,255,255,.06) 100%)!important;pointer-events:none!important}
.edcro-newsletter-v390 .edcro-newsletter-visual{position:relative!important;z-index:1!important;width:160px!important;height:160px!important;border-radius:32px!important;background:rgba(255,255,255,.11)!important;border:1px solid rgba(255,255,255,.18)!important;display:grid!important;place-items:center!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.12),0 18px 40px rgba(0,0,0,.16)!important;backdrop-filter:blur(12px)!important}
.edcro-newsletter-v390 .edcro-newsletter-icon{font-size:58px!important;line-height:1!important;filter:drop-shadow(0 10px 18px rgba(0,0,0,.20))!important}
.edcro-newsletter-v390 .edcro-newsletter-bubble{position:absolute!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;border-radius:999px!important;background:#fff!important;color:#e30613!important;font-size:13px!important;font-weight:950!important;box-shadow:0 12px 24px rgba(0,0,0,.18)!important}
.edcro-newsletter-v390 .edcro-newsletter-bubble-1{width:44px!important;height:44px!important;right:-13px!important;top:20px!important}.edcro-newsletter-v390 .edcro-newsletter-bubble-2{min-width:54px!important;height:34px!important;left:-14px!important;bottom:22px!important;padding:0 12px!important;color:#0E1B2C!important}
.edcro-newsletter-v390 .edcro-newsletter-copy{position:relative!important;z-index:1!important;min-width:0!important;max-width:720px!important}.edcro-newsletter-v390 .edcro-newsletter-kicker{background:rgba(255,255,255,.12)!important;color:#fff!important;border-color:rgba(255,255,255,.18)!important;margin-bottom:12px!important}.edcro-newsletter-v390 h2{color:#fff!important;font-size:clamp(28px,4vw,50px)!important;line-height:.98!important;letter-spacing:-.055em!important;margin:0 0 12px!important;text-wrap:balance!important}.edcro-newsletter-v390 p{color:rgba(255,255,255,.82)!important;font-size:clamp(14px,1.2vw,17px)!important;line-height:1.65!important;margin:0!important;max-width:650px!important}
.edcro-newsletter-v390 .edcro-newsletter-benefits{display:flex!important;flex-wrap:wrap!important;gap:8px!important;list-style:none!important;margin:18px 0 0!important;padding:0!important}.edcro-newsletter-v390 .edcro-newsletter-benefits li{display:inline-flex!important;align-items:center!important;gap:7px!important;padding:8px 11px!important;border-radius:999px!important;background:rgba(255,255,255,.10)!important;border:1px solid rgba(255,255,255,.13)!important;color:rgba(255,255,255,.88)!important;font-size:12px!important;font-weight:850!important;line-height:1!important}.edcro-newsletter-v390 .edcro-newsletter-benefits li:before{content:'✓'!important;color:#7dd3fc!important;font-weight:950!important}
.edcro-newsletter-v390 .edcro-newsletter-form-card{position:relative!important;z-index:1!important;background:#fff!important;border-radius:26px!important;padding:18px!important;box-shadow:0 22px 54px rgba(0,0,0,.20)!important;border:1px solid rgba(255,255,255,.35)!important}.edcro-newsletter-v390 .edcro-newsletter-form{display:grid!important;grid-template-columns:1fr!important;gap:11px!important;margin:0!important}.edcro-newsletter-v390 .edcro-newsletter-input-wrap{display:flex!important;align-items:center!important;gap:10px!important;min-height:54px!important;border-radius:17px!important;background:#f4f6fb!important;border:1px solid rgba(14,27,44,.09)!important;padding:0 15px!important}.edcro-newsletter-v390 .edcro-newsletter-input-wrap span{color:#9aa3b2!important;font-weight:950!important}.edcro-newsletter-v390 input[type=email]{width:100%!important;min-width:0!important;height:52px!important;border:0!important;background:transparent!important;color:#0E1B2C!important;font-size:14px!important;font-weight:700!important;outline:none!important;box-shadow:none!important;padding:0!important}.edcro-newsletter-v390 input[type=email]::placeholder{color:#8b95a5!important;font-weight:650!important}.edcro-newsletter-v390 button{width:100%!important;min-height:54px!important;border:0!important;border-radius:17px!important;background:linear-gradient(135deg,#e30613,#b80510)!important;color:#fff!important;font-size:14px!important;font-weight:950!important;letter-spacing:-.01em!important;cursor:pointer!important;box-shadow:0 14px 28px rgba(227,6,19,.28)!important;transition:transform .18s ease,box-shadow .18s ease!important}.edcro-newsletter-v390 button:hover{transform:translateY(-1px)!important;box-shadow:0 18px 34px rgba(227,6,19,.34)!important}.edcro-newsletter-v390 small{display:block!important;margin-top:12px!important;color:#717b8c!important;font-size:12px!important;line-height:1.45!important;text-align:center!important}.edcro-newsletter-v390.edcro-newsletter--outline .edcro-newsletter-shell{background:linear-gradient(135deg,#fff,#f7f9fc)!important;color:#0E1B2C!important;border-color:rgba(14,27,44,.08)!important}.edcro-newsletter-v390.edcro-newsletter--outline h2{color:#0E1B2C!important}.edcro-newsletter-v390.edcro-newsletter--outline p{color:#5e6878!important}.edcro-newsletter-v390.edcro-newsletter--outline .edcro-newsletter-kicker{background:#fff4f5!important;color:#e30613!important;border-color:rgba(227,6,19,.12)!important}.edcro-newsletter-v390.edcro-newsletter--outline .edcro-newsletter-benefits li{background:#fff!important;color:#374151!important;border-color:rgba(14,27,44,.08)!important}.edcro-newsletter-v390.edcro-newsletter--outline .edcro-newsletter-visual{background:#fff!important;border-color:rgba(14,27,44,.08)!important}

.edcro-reviews-v390{padding:clamp(30px,5vw,66px) 0!important;background:linear-gradient(180deg,rgba(246,248,252,.65),rgba(255,255,255,0))!important;isolation:isolate!important}.edcro-reviews-v390 *{box-sizing:border-box!important}.edcro-reviews-v390 .edcro-reviews-hero{display:flex!important;align-items:flex-end!important;justify-content:space-between!important;gap:24px!important;margin-bottom:clamp(18px,3vw,34px)!important}.edcro-reviews-v390 .edcro-reviews-title-wrap{max-width:760px!important}.edcro-reviews-v390 h2{font-size:clamp(28px,3.6vw,46px)!important;line-height:1!important;letter-spacing:-.055em!important;margin:10px 0 10px!important;color:#0E1B2C!important}.edcro-reviews-v390 .edcro-reviews-title-wrap p{margin:0!important;color:#667085!important;font-size:15px!important;line-height:1.6!important}.edcro-reviews-v390 .edcro-reviews-rating-box{flex:0 0 auto!important;display:grid!important;gap:4px!important;justify-items:flex-end!important;background:#0E1B2C!important;color:#fff!important;border-radius:24px!important;padding:17px 20px!important;min-width:170px!important;box-shadow:0 18px 40px rgba(14,27,44,.18)!important;position:relative!important;overflow:hidden!important}.edcro-reviews-v390 .edcro-reviews-rating-box:before{content:''!important;position:absolute!important;inset:auto -28px -48px auto!important;width:120px!important;height:120px!important;border-radius:999px!important;background:rgba(227,6,19,.35)!important}.edcro-reviews-v390 .edcro-reviews-rating-number{position:relative!important;z-index:1!important;font-size:36px!important;line-height:.9!important;font-weight:950!important;letter-spacing:-.06em!important}.edcro-reviews-v390 .edcro-reviews-rating-stars{position:relative!important;z-index:1!important;color:#fbbf24!important;font-size:13px!important;letter-spacing:1px!important}.edcro-reviews-v390 .edcro-reviews-rating-label{position:relative!important;z-index:1!important;font-size:11px!important;color:rgba(255,255,255,.72)!important;font-weight:850!important;text-transform:uppercase!important;letter-spacing:.05em!important}.edcro-reviews-v390 .edcro-reviews-grid{align-items:stretch!important}.edcro-reviews-v390 .edcro-review-card-v390{position:relative!important;display:flex!important;flex-direction:column!important;min-height:250px!important;padding:22px!important;border-radius:26px!important;background:#fff!important;border:1px solid rgba(14,27,44,.08)!important;box-shadow:0 14px 34px rgba(14,27,44,.075)!important;overflow:hidden!important;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease!important}.edcro-reviews-v390 .edcro-review-card-v390:hover{transform:translateY(-3px)!important;box-shadow:0 24px 52px rgba(14,27,44,.12)!important;border-color:rgba(227,6,19,.18)!important}.edcro-reviews-v390 .edcro-review-card-v390:before{content:''!important;position:absolute!important;inset:0 0 auto 0!important;height:5px!important;background:linear-gradient(90deg,#e30613,#ff8a00)!important}.edcro-reviews-v390 .edcro-review-card-head{display:flex!important;align-items:center!important;gap:12px!important;min-width:0!important}.edcro-reviews-v390 .edcro-review-avatar{width:48px!important;height:48px!important;border-radius:16px!important;display:grid!important;place-items:center!important;background:linear-gradient(135deg,#fff1f2,#ffe4e6)!important;color:#e30613!important;border:1px solid rgba(227,6,19,.12)!important;font-size:18px!important;font-weight:950!important;flex:0 0 auto!important}.edcro-reviews-v390 .edcro-review-meta{min-width:0!important}.edcro-reviews-v390 .edcro-review-meta strong{display:block!important;color:#111827!important;font-size:15px!important;line-height:1.2!important;font-weight:950!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}.edcro-reviews-v390 .edcro-review-meta small{display:block!important;margin-top:3px!important;color:#7b8494!important;font-size:12px!important;font-weight:650!important}.edcro-reviews-v390 .edcro-review-quote{margin-left:auto!important;color:rgba(227,6,19,.14)!important;font-family:Georgia,serif!important;font-size:52px!important;line-height:.6!important;font-weight:900!important}.edcro-reviews-v390 .edcro-review-stars{display:flex!important;gap:2px!important;margin:18px 0 12px!important;font-size:16px!important;line-height:1!important}.edcro-reviews-v390 .edcro-review-stars .is-filled{color:#f59e0b!important}.edcro-reviews-v390 .edcro-review-stars .is-empty{color:#d7dce5!important}.edcro-reviews-v390 .edcro-review-card-v390 p{margin:0!important;color:#374151!important;font-size:14px!important;line-height:1.68!important;display:-webkit-box!important;-webkit-line-clamp:5!important;-webkit-box-orient:vertical!important;overflow:hidden!important}.edcro-reviews-v390 .edcro-review-card-foot{margin-top:auto!important;padding-top:18px!important}.edcro-reviews-v390 .edcro-verified-badge{display:inline-flex!important;align-items:center!important;gap:6px!important;padding:7px 11px!important;border-radius:999px!important;background:#ecfdf3!important;color:#047857!important;border:1px solid rgba(16,185,129,.18)!important;font-size:11px!important;font-weight:950!important;line-height:1!important}
@media(max-width:1024px){.edcro-newsletter-v390 .edcro-newsletter-shell{grid-template-columns:110px minmax(0,1fr)!important}.edcro-newsletter-v390 .edcro-newsletter-form-card{grid-column:1/-1!important}.edcro-newsletter-v390 .edcro-newsletter-visual{width:110px!important;height:110px!important;border-radius:24px!important}.edcro-newsletter-v390 .edcro-newsletter-icon{font-size:42px!important}.edcro-reviews-v390 .edcro-reviews-hero{align-items:flex-start!important}.edcro-reviews-v390 .edcro-reviews-rating-box{min-width:150px!important}}
@media(max-width:767px){.edcro-newsletter-v390{padding:24px 0!important}.edcro-newsletter-v390 .edcro-newsletter-shell{grid-template-columns:1fr!important;text-align:left!important;padding:22px!important;border-radius:24px!important;gap:16px!important}.edcro-newsletter-v390 .edcro-newsletter-visual{display:none!important}.edcro-newsletter-v390 h2{font-size:clamp(25px,8vw,34px)!important;line-height:1.02!important}.edcro-newsletter-v390 p{font-size:14px!important}.edcro-newsletter-v390 .edcro-newsletter-benefits{gap:7px!important}.edcro-newsletter-v390 .edcro-newsletter-benefits li{font-size:11px!important;padding:7px 9px!important}.edcro-newsletter-v390 .edcro-newsletter-form-card{padding:14px!important;border-radius:20px!important}.edcro-newsletter-v390 .edcro-newsletter-input-wrap,.edcro-newsletter-v390 button{min-height:50px!important;border-radius:14px!important}.edcro-reviews-v390{padding:24px 0!important}.edcro-reviews-v390 .edcro-reviews-hero{display:grid!important;grid-template-columns:1fr!important;gap:14px!important}.edcro-reviews-v390 .edcro-reviews-rating-box{justify-items:flex-start!important;width:100%!important;min-width:0!important;border-radius:20px!important;padding:15px 17px!important}.edcro-reviews-v390 h2{font-size:clamp(25px,8vw,34px)!important}.edcro-reviews-v390 .edcro-review-card-v390{min-height:0!important;border-radius:20px!important;padding:19px!important}.edcro-reviews-v390 .edcro-review-card-v390 p{font-size:13.5px!important;line-height:1.62!important;-webkit-line-clamp:6!important}.edcro-reviews-v390 .edcro-review-avatar{width:44px!important;height:44px!important;border-radius:14px!important}.edcro-reviews-v390 .edcro-review-quote{font-size:44px!important}}

/* ===== EDCRO v4.1.0 · Flash Deals mobile premium redesign ===== */
.edcro-flash-v410{padding:clamp(26px,4vw,58px) 0!important;overflow:visible!important;isolation:isolate!important}
.edcro-flash-v410 *{box-sizing:border-box!important}
.edcro-flash-v410 .edcro-flash-section{position:relative!important;overflow:hidden!important;border-radius:34px!important;padding:clamp(24px,4vw,46px)!important;background:radial-gradient(circle at 18% 0%,rgba(255,255,255,.42),transparent 34%),linear-gradient(135deg,#1b2434 0%,#711018 45%,#e30613 100%)!important;border:1px solid rgba(255,255,255,.16)!important;box-shadow:0 24px 70px rgba(14,27,44,.18)!important}
.edcro-flash-v410 .edcro-flash-section:before{content:''!important;position:absolute!important;right:-90px!important;top:-110px!important;width:300px!important;height:300px!important;border-radius:999px!important;background:rgba(255,255,255,.12)!important;pointer-events:none!important}
.edcro-flash-v410 .edcro-flash-section:after{content:''!important;position:absolute!important;left:-70px!important;bottom:-95px!important;width:240px!important;height:240px!important;border-radius:999px!important;background:rgba(255,185,0,.16)!important;pointer-events:none!important}
.edcro-flash-v410 .edcro-flash-head{position:relative!important;z-index:1!important;display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;align-items:end!important;gap:22px!important;margin-bottom:clamp(18px,3vw,34px)!important}
.edcro-flash-v410 .edcro-flash-copy{min-width:0!important;color:#fff!important}
.edcro-flash-v410 .edcro-flash-eyebrow{display:inline-flex!important;align-items:center!important;gap:8px!important;margin:0 0 10px!important;padding:8px 12px!important;border-radius:999px!important;background:rgba(255,255,255,.13)!important;border:1px solid rgba(255,255,255,.18)!important;color:#fff!important;font-size:12px!important;font-weight:950!important;line-height:1!important;text-transform:uppercase!important;letter-spacing:.055em!important}
.edcro-flash-v410 .edcro-flash-copy h2{margin:0!important;color:#fff!important;font-size:clamp(28px,4.2vw,52px)!important;line-height:.96!important;letter-spacing:-.06em!important;font-weight:950!important;text-wrap:balance!important}
.edcro-flash-v410 .edcro-flash-copy p{margin:12px 0 0!important;color:rgba(255,255,255,.82)!important;font-size:clamp(14px,1.25vw,17px)!important;line-height:1.55!important;max-width:680px!important;font-weight:650!important}
.edcro-flash-v410 .edcro-flash-timer{position:relative!important;z-index:1!important;width:auto!important;min-width:330px!important;display:grid!important;gap:10px!important;align-items:stretch!important;background:rgba(255,255,255,.95)!important;color:#0e1b2c!important;padding:14px!important;border-radius:24px!important;border:1px solid rgba(255,255,255,.55)!important;box-shadow:0 22px 50px rgba(0,0,0,.22)!important;backdrop-filter:blur(10px)!important}
.edcro-flash-v410 .edcro-flash-timer-label{display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;color:#e30613!important;font-size:12px!important;font-weight:950!important;text-transform:uppercase!important;letter-spacing:.06em!important;line-height:1!important}
.edcro-flash-v410 .edcro-flash-timer .edcro-clock{font-size:16px!important;line-height:1!important}
.edcro-flash-v410 .edcro-digits{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:8px!important;width:100%!important}
.edcro-flash-v410 .edcro-digit-box{display:grid!important;place-items:center!important;gap:3px!important;min-width:0!important;padding:10px 7px!important;border-radius:16px!important;background:linear-gradient(180deg,#111827,#0e1b2c)!important;color:#fff!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.13),0 10px 20px rgba(14,27,44,.18)!important}
.edcro-flash-v410 .edcro-digit-box b,.edcro-flash-v410 .edcro-digit{display:block!important;color:#fff!important;font-size:clamp(21px,2.2vw,31px)!important;line-height:.95!important;font-weight:950!important;letter-spacing:-.055em!important;font-variant-numeric:tabular-nums!important}
.edcro-flash-v410 .edcro-digit-box small{display:block!important;color:rgba(255,255,255,.68)!important;font-size:9px!important;line-height:1!important;text-transform:uppercase!important;font-weight:900!important;letter-spacing:.05em!important}
.edcro-flash-v410 .edcro-product-grid{position:relative!important;z-index:1!important}
.edcro-flash-v410 .edcro-product-card{background:#fff!important;border-color:rgba(255,255,255,.72)!important;box-shadow:0 16px 36px rgba(0,0,0,.12)!important}
@media(max-width:1024px){.edcro-flash-v410 .edcro-flash-head{grid-template-columns:1fr!important;align-items:start!important}.edcro-flash-v410 .edcro-flash-timer{width:100%!important;min-width:0!important;max-width:520px!important}}
@media(max-width:767px){.edcro-flash-v410{padding:18px 0!important}.edcro-flash-v410 .edcro-container{padding-left:10px!important;padding-right:10px!important}.edcro-flash-v410 .edcro-flash-section{width:calc(100vw - 20px)!important;margin-left:calc(50% - 50vw + 10px)!important;margin-right:calc(50% - 50vw + 10px)!important;border-radius:22px!important;padding:20px 12px 14px!important;box-shadow:0 18px 42px rgba(14,27,44,.20)!important}.edcro-flash-v410 .edcro-flash-section:before{width:190px!important;height:190px!important;right:-92px!important;top:-80px!important}.edcro-flash-v410 .edcro-flash-section:after{width:150px!important;height:150px!important;left:-70px!important;bottom:-80px!important}.edcro-flash-v410 .edcro-flash-head{gap:14px!important;margin-bottom:15px!important;text-align:left!important}.edcro-flash-v410 .edcro-flash-eyebrow{font-size:10px!important;padding:7px 10px!important;margin-bottom:8px!important}.edcro-flash-v410 .edcro-flash-copy h2{font-size:clamp(24px,8.2vw,34px)!important;line-height:1!important;letter-spacing:-.05em!important}.edcro-flash-v410 .edcro-flash-copy p{font-size:13px!important;line-height:1.42!important;margin-top:8px!important}.edcro-flash-v410 .edcro-flash-timer{padding:10px!important;border-radius:18px!important;gap:8px!important;box-shadow:0 14px 32px rgba(0,0,0,.18)!important}.edcro-flash-v410 .edcro-flash-timer-label{justify-content:flex-start!important;font-size:10px!important}.edcro-flash-v410 .edcro-digits{gap:6px!important}.edcro-flash-v410 .edcro-digit-box{border-radius:13px!important;padding:9px 4px!important}.edcro-flash-v410 .edcro-digit-box b,.edcro-flash-v410 .edcro-digit{font-size:clamp(19px,6vw,26px)!important}.edcro-flash-v410 .edcro-digit-box small{font-size:8px!important}.edcro-flash-v410 .edcro-product-grid{grid-template-columns:repeat(var(--edcro-mobile-cols,1),minmax(0,1fr))!important;gap:12px!important}.edcro-flash-v410 .edcro-product-card{border-radius:18px!important;padding:12px!important}.edcro-flash-v410 .edcro-product-card h3{font-size:13px!important;line-height:1.22!important}}
@media(max-width:390px){.edcro-flash-v410 .edcro-flash-section{padding-left:10px!important;padding-right:10px!important}.edcro-flash-v410 .edcro-digits{gap:5px!important}.edcro-flash-v410 .edcro-digit-box{padding:8px 3px!important}.edcro-flash-v410 .edcro-digit-box b,.edcro-flash-v410 .edcro-digit{font-size:20px!important}}


/* ===== EDCRO v4.2.0 · Trust Bar móvil premium en 2 columnas ===== */
.edcro-trust-v420{width:100%!important;overflow:hidden!important}
.edcro-trust-v420 .edcro-trust-grid{align-items:stretch!important}
.edcro-trust-v420 .edcro-trust-item{border-radius:18px!important;border:1px solid rgba(15,23,42,.08)!important;background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%)!important;box-shadow:0 10px 24px rgba(15,23,42,.06)!important;transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease!important}
.edcro-trust-v420 .edcro-trust-item:hover{transform:translateY(-2px)!important;box-shadow:0 16px 34px rgba(15,23,42,.10)!important;border-color:rgba(227,6,19,.18)!important}
.edcro-trust-v420 .edcro-ico{width:50px!important;height:50px!important;min-width:50px!important;border-radius:16px!important;background:linear-gradient(135deg,rgba(227,6,19,.12),rgba(227,6,19,.05))!important;color:var(--edcro-brand,#e30613)!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.85)!important}
.edcro-trust-v420 .edcro-ico svg{width:28px!important;height:28px!important;stroke-width:2.2!important}
.edcro-trust-v420 .edcro-trust-item h4{font-size:15px!important;line-height:1.15!important;font-weight:900!important;letter-spacing:-.025em!important;color:#111827!important;margin:0 0 4px!important}
.edcro-trust-v420 .edcro-trust-item p{font-size:12.5px!important;line-height:1.3!important;font-weight:600!important;color:#64748b!important;margin:0!important}
@media(max-width:767px){
  .edcro-trust-v420{padding:10px 0!important;background:#fff!important}
  .edcro-trust-v420 .edcro-container{padding-left:12px!important;padding-right:12px!important;max-width:100%!important}
  .edcro-trust-v420 .edcro-trust-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;width:100%!important}
  .edcro-trust-v420 .edcro-trust-item{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:flex-start!important;text-align:center!important;gap:8px!important;padding:13px 9px!important;min-height:138px!important;border-radius:16px!important;overflow:hidden!important}
  .edcro-trust-v420 .edcro-ico{width:46px!important;height:46px!important;min-width:46px!important;border-radius:15px!important;margin:0 auto!important}
  .edcro-trust-v420 .edcro-ico svg{width:25px!important;height:25px!important}
  .edcro-trust-v420 .edcro-trust-copy{width:100%!important;min-width:0!important}
  .edcro-trust-v420 .edcro-trust-item h4{font-size:13px!important;line-height:1.12!important;margin:0 0 3px!important;word-break:normal!important;overflow-wrap:break-word!important}
  .edcro-trust-v420 .edcro-trust-item p{font-size:11.2px!important;line-height:1.25!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;max-width:100%!important}
}
@media(max-width:380px){
  .edcro-trust-v420 .edcro-trust-grid{gap:8px!important}
  .edcro-trust-v420 .edcro-trust-item{padding:12px 7px!important;min-height:132px!important}
  .edcro-trust-v420 .edcro-ico{width:42px!important;height:42px!important;min-width:42px!important}
  .edcro-trust-v420 .edcro-ico svg{width:23px!important;height:23px!important}
  .edcro-trust-v420 .edcro-trust-item h4{font-size:12.3px!important}
  .edcro-trust-v420 .edcro-trust-item p{font-size:10.8px!important}
}

/* EDCRO v4.3 · Trust Bar con iconos propios y móvil 2 columnas */
.edcro-trust-v430{width:100%!important;overflow:hidden!important}
.edcro-trust-v430 .edcro-trust-grid{align-items:stretch!important}
.edcro-trust-v430 .edcro-trust-item{border-radius:20px!important;border:1px solid rgba(15,23,42,.08)!important;background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%)!important;box-shadow:0 12px 28px rgba(15,23,42,.07)!important}
.edcro-trust-v430 .edcro-ico{width:64px!important;height:64px!important;min-width:64px!important;border-radius:20px!important;background:linear-gradient(135deg,rgba(227,6,19,.13),rgba(227,6,19,.045))!important;color:var(--edcro-brand,#e30613)!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.9)!important;display:grid!important;place-items:center!important;overflow:hidden!important}
.edcro-trust-v430 .edcro-ico svg,.edcro-trust-v430 .edcro-svg{font-size:32px!important;width:auto!important;height:auto!important;line-height:1!important}
.edcro-trust-v430 .edcro-trust-custom-icon{display:block!important;width:100%!important;height:100%!important;object-fit:contain!important;padding:10px!important}
.edcro-trust-v430 .edcro-trust-item h4{font-size:16px!important;line-height:1.14!important;font-weight:950!important;letter-spacing:-.03em!important;color:#111827!important;margin:0 0 5px!important}
.edcro-trust-v430 .edcro-trust-item p{font-size:13px!important;line-height:1.32!important;font-weight:650!important;color:#64748b!important;margin:0!important}
@media(max-width:767px){
  .edcro-trust-v430{padding:10px 0!important;background:#fff!important}
  .edcro-trust-v430 .edcro-container{padding-left:10px!important;padding-right:10px!important;max-width:100%!important}
  .edcro-trust-v430 .edcro-trust-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;width:100%!important}
  .edcro-trust-v430 .edcro-trust-item{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:flex-start!important;text-align:center!important;gap:10px!important;padding:14px 9px!important;min-height:150px!important;border-radius:18px!important;overflow:hidden!important}
  .edcro-trust-v430 .edcro-ico{width:62px!important;height:62px!important;min-width:62px!important;border-radius:18px!important;margin:0 auto!important}
  .edcro-trust-v430 .edcro-ico svg,.edcro-trust-v430 .edcro-svg{font-size:31px!important;width:auto!important;height:auto!important}
  .edcro-trust-v430 .edcro-trust-custom-icon{padding:9px!important}
  .edcro-trust-v430 .edcro-trust-copy{width:100%!important;min-width:0!important}
  .edcro-trust-v430 .edcro-trust-item h4{font-size:13.8px!important;line-height:1.12!important;margin:0 0 4px!important;word-break:normal!important;overflow-wrap:break-word!important}
  .edcro-trust-v430 .edcro-trust-item p{font-size:11.6px!important;line-height:1.25!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;max-width:100%!important}
}
@media(max-width:380px){
  .edcro-trust-v430 .edcro-trust-grid{gap:8px!important}
  .edcro-trust-v430 .edcro-trust-item{padding:12px 7px!important;min-height:144px!important}
  .edcro-trust-v430 .edcro-ico{width:56px!important;height:56px!important;min-width:56px!important}
  .edcro-trust-v430 .edcro-ico svg,.edcro-trust-v430 .edcro-svg{font-size:28px!important}
  .edcro-trust-v430 .edcro-trust-item h4{font-size:12.8px!important}
  .edcro-trust-v430 .edcro-trust-item p{font-size:10.9px!important}
}


/* EDCRO v4.4.0 - USPs premium configurables */
.edcro-usps-v440{width:100%;overflow:hidden;background:#fff;padding:clamp(34px,5vw,72px) 0}
.edcro-usps-v440 .edcro-usps-head{text-align:center;max-width:880px;margin:0 auto clamp(24px,4vw,42px)}
.edcro-usps-v440 .edcro-usps-eyebrow{display:block;margin:0 0 12px;color:var(--edcro-brand,#e30613);font-size:13px;line-height:1.1;font-weight:950;letter-spacing:.18em;text-transform:uppercase}
.edcro-usps-v440 .edcro-usps-title{margin:0;color:#0e1b2c;font-size:clamp(29px,3.2vw,44px);line-height:1.05;font-weight:950;letter-spacing:-.055em}
.edcro-usps-v440 .edcro-usps-subtitle{margin:14px auto 0;max-width:720px;color:#667085;font-size:clamp(14px,1.3vw,17px);line-height:1.55;font-weight:600}
.edcro-usps-v440 .edcro-usps-grid{align-items:stretch;gap:clamp(16px,2vw,26px)}
.edcro-usps-v440 .edcro-usp{position:relative;display:flex;flex-direction:column;align-items:center;text-align:center;justify-content:flex-start;padding:clamp(28px,3vw,42px) clamp(18px,2.2vw,28px);min-height:230px;border-radius:18px;border:1px solid rgba(15,23,42,.10);background:linear-gradient(180deg,#fff 0%,#fff 72%,#fbfcff 100%);box-shadow:0 16px 34px rgba(15,23,42,.06);transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;overflow:hidden}
.edcro-usps-v440 .edcro-usp:hover{transform:translateY(-4px);box-shadow:0 24px 54px rgba(15,23,42,.11);border-color:rgba(227,6,19,.20)}
.edcro-usps-v440 .edcro-ico{width:76px;height:76px;min-width:76px;margin:0 auto 22px;border-radius:20px;display:grid;place-items:center;background:linear-gradient(135deg,rgba(227,6,19,.13),rgba(227,6,19,.055));color:var(--edcro-brand,#e30613);box-shadow:inset 0 1px 0 rgba(255,255,255,.92);overflow:hidden}
.edcro-usps-v440 .edcro-svg{font-size:36px;line-height:1}
.edcro-usps-v440 .edcro-usp-custom-icon{display:block;width:100%;height:100%;object-fit:contain;padding:13px}
.edcro-usps-v440 .edcro-usp h3{margin:0 0 10px;color:#0e1b2c;font-size:19px;line-height:1.18;font-weight:950;letter-spacing:-.035em}
.edcro-usps-v440 .edcro-usp p{margin:0;color:#667085;font-size:15px;line-height:1.48;font-weight:600;max-width:270px}
@media(max-width:767px){.edcro-usps-v440{padding:28px 0}.edcro-usps-v440 .edcro-usps-grid{grid-template-columns:repeat(var(--edcro-mobile-cols,2),minmax(0,1fr))!important;gap:10px}.edcro-usps-v440 .edcro-usp{padding:17px 9px;min-height:168px;border-radius:16px}.edcro-usps-v440 .edcro-ico{width:58px;height:58px;min-width:58px;border-radius:16px;margin-bottom:12px}.edcro-usps-v440 .edcro-svg{font-size:27px}.edcro-usps-v440 .edcro-usp h3{font-size:13.4px;line-height:1.16;margin-bottom:6px}.edcro-usps-v440 .edcro-usp p{font-size:11.4px;line-height:1.28;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}}
