.egu{max-width:1200px;margin:20px auto;padding:10px}
.egu-head{display:flex;justify-content:space-between;align-items:flex-end;gap:14px;flex-wrap:wrap}
.egu-title{margin:0;font-size:26px;line-height:1.1}
.egu-subtitle{margin-top:6px;color:#666;font-size:14px}
.egu-crumbs{font-size:13px;color:#666;display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.egu-crumb{border:0;background:transparent;color:#0b63ce;cursor:pointer;padding:0;font-weight:600}
.egu-sep{color:#aaa}
.egu-crumb-current{font-weight:600;color:#111}

.egu-empty{border:1px solid #eee;border-radius:14px;padding:16px;background:#fff}
.egu-empty-help{margin-top:10px;color:#666;font-size:14px;line-height:1.4}

.egu-cats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:16px}
@media(max-width:900px){.egu-cats{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:520px){.egu-cats{grid-template-columns:1fr}}

.egu-cat{
  border:0;
  background:linear-gradient(135deg,#f3b43f,#e5a80f);
  border-radius:16px;
  padding:18px 18px;
  min-height:72px;
  color:#fff;
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.egu-cat:hover{transform:translateY(-2px);box-shadow:0 12px 26px rgba(0,0,0,.14)}
.egu-cat.is-active{filter:brightness(.86);box-shadow:0 12px 26px rgba(0,0,0,.18)}

/* Filtro premium */
.egu-filter{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin:16px 0 10px;
  padding:12px 12px;
  border:1px solid #eee;
  border-radius:14px;
  background:#fff;
  flex-wrap:wrap;
}
.egu-filter-left{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.egu-filter-label{font-size:13px;color:#666;font-weight:700}
.egu-filter-select{
  appearance:none;
  border:1px solid #e7e7e7;
  background:#fafafa;
  border-radius:12px;
  padding:10px 12px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  min-width:220px;
}
.egu-filter-select:focus{outline:none;border-color:#111}

.egu-filter-clear{
  border:0;
  background:#111;
  color:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}
.egu-active-pill{
  display:inline-block;
  border:1px solid #e7e7e7;
  background:#fff;
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  color:#111;
}

.egu-status{color:#666;font-size:14px;padding:12px 0}

.egu-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:18px;margin-top:12px}
.egu-card{border:1px solid #eee;border-radius:18px;overflow:hidden;background:#fff;cursor:pointer;transition:transform .18s ease, box-shadow .18s ease}
.egu-card:hover{transform:translateY(-2px);box-shadow:0 14px 32px rgba(0,0,0,.12)}
.egu-card img{width:100%;height:240px;object-fit:cover;display:block;transition:transform .35s ease}
.egu-card:hover img{transform:scale(1.06)}
.egu-cap{padding:10px 12px;font-size:13px;color:#666}

.egu-fadein{animation:eguIn .18s ease both}
@keyframes eguIn{from{opacity:.3;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}

/* Lightbox */
.egu-lb{position:fixed;inset:0;background:rgba(0,0,0,.78);display:none;align-items:center;justify-content:center;padding:18px;z-index:99999}
.egu-lb.open{display:flex}
.egu-lb-inner{position:relative;max-width:1100px;width:100%}
.egu-lb-img{width:100%;max-height:80vh;object-fit:contain;border-radius:14px;background:#111;display:block}
.egu-lb-cap{margin-top:10px;color:#fff;font-size:14px;opacity:.9}
.egu-lb-close{
  position:absolute;top:-10px;right:-10px;width:44px;height:44px;border-radius:999px;
  border:0;background:rgba(255,255,255,.16);color:#fff;font-size:26px;cursor:pointer;
}
.egu-lb-prev,.egu-lb-next{
  position:absolute;top:50%;transform:translateY(-50%);
  width:46px;height:46px;border-radius:999px;border:0;background:rgba(255,255,255,.16);
  color:#fff;font-size:30px;cursor:pointer;
}
.egu-lb-prev{left:-12px}
.egu-lb-next{right:-12px}
@media(max-width:520px){
  .egu-lb-prev{left:6px}
  .egu-lb-next{right:6px}
  .egu-lb-close{right:6px;top:6px}
  .egu-filter-select{min-width:180px}
}
