/* Category Cards (Learnn-style) */
li.product-category > a { display:block; position:relative; overflow:hidden; border-radius:16px; }
.mogwex-card{ position:relative; min-height:180px; border-radius:16px; overflow:hidden; }
.mogwex-card__bg{ position:absolute; inset:0; background-size:cover; background-position:center; transform:scale(1.02); transition:transform .3s ease; }
.mogwex-card__shade{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.65) 100%); }
.mogwex-card__content{ position:absolute; left:16px; right:16px; bottom:14px; color:#fff; }
.mogwex-card__title{ margin:0 0 6px; font-size:1.25rem; line-height:1.2; color:#fff; }
.mogwex-card__meta{ display:flex; align-items:center; gap:8px; opacity:.9; font-size:.95rem; }
.mogwex-card__dot{ opacity:.6; }
li.product-category:hover .mogwex-card__bg{ transform:scale(1.06); }
li.product-category .woocommerce-loop-category__title,
li.product-category .count{ display:none !important; } /* hide default title/count */


/* Hover upgrades: shadow + bigger title */
.mogwex-card{
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: box-shadow .3s ease, transform .3s ease;
  min-height: 200px;
}
li.product-category:hover .mogwex-card{
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transform: translateY(-2px);
}
.mogwex-card__title{
  font-size: 1.5rem;
  transition: font-size .2s ease, letter-spacing .2s ease;
}
li.product-category:hover .mogwex-card__title{
  font-size: 1.75rem;
  letter-spacing: .2px;
}

/* Responsive typography: bigger title, smaller meta */
.mogwex-card__title{
  font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  font-weight: 800;
}
.mogwex-card__meta{
  font-size: clamp(0.75rem, 1.2vw, .95rem);
  opacity: .85;
}

/* Badge */
.mogwex-card__badge{
  position:absolute;
  top:12px; left:12px;
  padding:6px 10px;
  border-radius:999px;
  font-size:.78rem;
  letter-spacing:.3px;
  text-transform:uppercase;
  font-weight:700;
  background: rgba(0,0,0,.55);
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
}
.mogwex-card__badge--pro{
  background: linear-gradient(135deg,#FFE082,#FFC107);
  color:#111;
  border:none;
}
.mogwex-card__badge--free{
  background:#22c55e;
  color:#fff;
  border:none;
}
.mogwex-card__badge--new{
  background:#8b5cf6;
  color:#fff;
  border:none;
}

/* v1.3.1 tweaks */
.mogwex-card{ position:relative; }
.mogwex-card__title{
  font-size: clamp(1.8rem, 3.6vw, 2.8rem) !important;
  line-height: 1.15;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
}
.mogwex-card__meta{
  font-size: clamp(0.7rem, 1vw, 0.9rem) !important;
  opacity: .85;
}
.mogwex-card__badge{
  right:12px; left:auto; top:12px;
  z-index:3;
}
/* Keep default woo title hidden for consistency */
li.product-category .woocommerce-loop-category__title,
li.product-category .count{ display:none !important; }
