/* ═══════════════════════════════════════════════════════
   CODQI — Products listing (marketplace style)
   Loaded only on /products via $headExtra
   ═══════════════════════════════════════════════════════ */

/* ── PAGE HEADER ── */
.mk-pp-header {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(139,70,245,.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(108,39,232,.07) 0%, transparent 55%),
    linear-gradient(180deg, #fbfaff 0%, #ffffff 100%);
  border-bottom: 1px solid #ececf6;
}
.mk-pp-header::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(108,39,232,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 80%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 80%, transparent 100%);
  opacity: .55;
}
.mk-pp-header-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 26px 24px 22px; }

.mk-pp-crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #7c7a9e; margin-bottom: 14px; flex-wrap: wrap; }
.mk-pp-crumbs a { color: #7c7a9e; text-decoration: none; transition: color .15s; }
.mk-pp-crumbs a:hover { color: #6c27e8; }
.mk-pp-crumbs span[aria-hidden] { color: #c4c2d8; }
.mk-pp-crumb-active { color: #0a0820; font-weight: 600; }

.mk-pp-title-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.mk-pp-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800; letter-spacing: -1.1px; line-height: 1.1;
  color: #0a0820; margin: 0 0 10px;
}
.mk-pp-sub { font-size: 14.5px; color: #5c5a7c; line-height: 1.6; margin: 0; max-width: 640px; }
.mk-pp-sub strong { color: #0a0820; font-weight: 700; }

.mk-pp-quick-trust { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.mk-pp-trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: #2e2b50;
  padding: 6px 13px 6px 7px; border-radius: 100px;
  background: #fff; border: 1px solid #ece6ff;
  box-shadow: 0 4px 14px rgba(108,39,232,.06), 0 1px 2px rgba(0,0,0,.02);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.mk-pp-trust-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(108,39,232,.10), 0 1px 2px rgba(0,0,0,.02);
  border-color: #d8ccff;
}
.mk-pp-trust-chip i {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(5,150,105,.16), rgba(5,150,105,.06));
  color: #059669; font-size: 11px; flex-shrink: 0;
}

/* ── Category menu (scrolls with page; only site header is sticky) ── */
.mk-pp-cats-sticky {
  position: relative;
  z-index: 1;
  background: #fff;
}

/* ── CATEGORY PILLS BAR ── */
.mk-pp-cats-bar {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #f0edf8;
}
.mk-pp-cats-bar::before,
.mk-pp-cats-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  z-index: 2;
  pointer-events: none;
}
.mk-pp-cats-bar::before {
  left: 0;
  background: linear-gradient(90deg, #fff 30%, transparent);
}
.mk-pp-cats-bar::after {
  right: 0;
  background: linear-gradient(270deg, #fff 30%, transparent);
}
.mk-pp-cats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px clamp(14px, 4vw, 24px);
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mk-pp-cats-inner::-webkit-scrollbar {
  display: none;
  height: 0;
}
.mk-pp-cat {
  scroll-snap-align: start;
}
.mk-pp-cat {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 100px;
  background: #f4f2fc; border: 1.5px solid transparent;
  font-size: 13.5px; font-weight: 600; color: #4a4870;
  text-decoration: none; white-space: nowrap;
  transition: all .15s;
}
.mk-pp-cat:hover { background: #ede8fd; color: #5b1fd1; }
.mk-pp-cat.is-active {
  background: linear-gradient(135deg, #ffffff 0%, #f7f3ff 100%);
  border-color: #6c27e8; color: #5b1fd1;
  box-shadow: 0 6px 18px rgba(108,39,232,.22), inset 0 0 0 1px rgba(108,39,232,.05);
}
.mk-pp-cat-icon { font-size: 14px; line-height: 1; }

/* ── TOOLBAR (search + sort + active filters) ── */
.mk-pp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mk-pp-toolbar-wrap {
  background: linear-gradient(180deg, #fbfaff 0%, #fff 100%);
  overflow-x: clip;
}
.mk-pp-toolbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(14px, 3vw, 20px) clamp(14px, 4vw, 24px);
}

.mk-pp-toolbar {
  background: #fff;
  border: 1.5px solid #e8e2fb;
  border-radius: 16px;
  padding: clamp(12px, 2.5vw, 16px);
  box-shadow: 0 4px 24px rgba(108, 39, 232, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mk-pp-toolbar:focus-within {
  border-color: #b8a3f5;
  box-shadow: 0 6px 28px rgba(108, 39, 232, 0.14);
}

.mk-pp-toolbar__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

/* Search field */
.mk-pp-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  background: #f6f4fc;
  border: 1.5px solid #e4ddf8;
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.mk-pp-search-field:focus-within {
  background: #fff;
  border-color: #6c27e8;
  box-shadow: 0 0 0 3px rgba(108, 39, 232, 0.12);
}
.mk-pp-search-field__icon {
  color: #8b7bb8;
  font-size: 15px;
  flex-shrink: 0;
}
.mk-pp-search-field input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  font-family: inherit;
  color: #0a0820;
  padding: 12px 0;
}
.mk-pp-search-field input::placeholder {
  color: #9b97b8;
}
.mk-pp-search-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #7c7a9e;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.mk-pp-search-clear:hover {
  background: #ede8fd;
  color: #6c27e8;
}

/* Sort + search button row */
.mk-pp-toolbar__actions {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.mk-pp-sort-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: min(200px, 42vw);
}
.mk-pp-sort-field__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7c7a9e;
  padding-left: 2px;
}
.mk-pp-sort-field__control {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 12px 0 14px;
  background: #f6f4fc;
  border: 1.5px solid #e4ddf8;
  border-radius: 12px;
  transition: border-color 0.2s;
}
.mk-pp-sort-field__control:focus-within {
  border-color: #6c27e8;
  box-shadow: 0 0 0 3px rgba(108, 39, 232, 0.1);
}
.mk-pp-sort-field__icon {
  color: #8b7bb8;
  font-size: 13px;
  flex-shrink: 0;
}
.mk-pp-sort-field select {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #0a0820;
  font-family: inherit;
  cursor: pointer;
  padding: 12px 24px 12px 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237c7a9e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.mk-pp-btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #6c27e8, #9333ea);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(108, 39, 232, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.mk-pp-btn-search:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(108, 39, 232, 0.42);
}
.mk-pp-btn-search:active {
  transform: translateY(0);
}

.mk-pp-active-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f0edf8;
}
.mk-pp-af-label { font-size: 12.5px; font-weight: 700; color: #7c7a9e; }
.mk-pp-af-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #ede8fd; color: #5b1fd1;
  padding: 5px 12px; border-radius: 100px;
  font-size: 12.5px; font-weight: 600;
  text-decoration: none; transition: all .15s;
}
.mk-pp-af-chip:hover { background: #d6cdfb; color: #4615a6; }
.mk-pp-af-chip span { font-size: 14px; line-height: 1; opacity: .7; }
.mk-pp-af-clear { font-size: 12.5px; font-weight: 700; color: #ea580c; text-decoration: none; margin-left: 4px; }
.mk-pp-af-clear:hover { color: #c2410c; text-decoration: underline; }

/* ── RESULTS ── */
.mk-pp-results { padding: 32px 24px 56px; background: #fff; }
.mk-pp-results-inner { max-width: 1200px; margin: 0 auto; }
.mk-pp-count { font-size: 13.5px; color: #6b6885; margin-bottom: 20px; }
.mk-pp-count strong { color: #0a0820; font-weight: 700; }

.mk-pp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .mk-pp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .mk-pp-grid { grid-template-columns: 1fr; } }

/* Lighter overrides for the existing .product-card so it matches the marketplace tone */
.mk-pp-grid .product-card {
  border: 1px solid #ececf6;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(108,39,232,.04);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.mk-pp-grid .product-card:hover {
  transform: translateY(-4px);
  border-color: #c4b5fd;
  box-shadow: 0 18px 40px rgba(108,39,232,.14), 0 2px 6px rgba(108,39,232,.05);
}
.mk-pp-grid .product-card::before { display: none; }
.mk-pp-grid .product-img {
  background: linear-gradient(135deg, #f4f2fc 0%, #ebe6fa 100%);
}
.mk-pp-grid .product-img img,
.mk-pp-grid .product-card-media img {
  object-fit: contain;
  object-position: center;
}
/* Product card layout: see product-card.css (aligned content column) */

/* ── EMPTY STATE ── */
.mk-pp-empty {
  text-align: center; padding: 64px 24px;
  background: #fbfaff; border: 1.5px dashed #e0dcf5; border-radius: 16px;
}
.mk-pp-empty-icon { font-size: 48px; margin-bottom: 14px; }
.mk-pp-empty h3 { font-size: 20px; font-weight: 800; color: #0a0820; margin: 0 0 8px; }
.mk-pp-empty p { font-size: 14.5px; color: #5c5a7c; max-width: 420px; margin: 0 auto 22px; line-height: 1.6; }
.mk-pp-empty-cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ── PAGINATION ── */
.mk-pp-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap; margin-top: 36px;
}
.mk-pp-page {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 12px;
  background: #fff; border: 1.5px solid #e8e4ff; border-radius: 10px;
  font-size: 13.5px; font-weight: 700; color: #4a4870;
  text-decoration: none; transition: all .15s;
}
.mk-pp-page:hover { border-color: #c4b5fd; color: #5b1fd1; background: #f4f2fc; }
.mk-pp-page.is-current {
  background: linear-gradient(135deg, #6c27e8, #9333ea);
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 12px rgba(108,39,232,.35);
}
.mk-pp-page--nav { padding: 0 16px; }
.mk-pp-page-gap { color: #a09ec0; font-weight: 700; padding: 0 4px; }

/* ── INLINE SERVICES CTA ── */
.mk-pp-svc-cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 50% 100% at 0% 50%, rgba(254,215,170,.40) 0%, transparent 60%),
    linear-gradient(135deg, #fff7ed 0%, #fffbf5 60%, #fff 100%);
  border-top: 1px solid #f5e9d8; border-bottom: 1px solid #ececf6;
  padding: 40px 24px;
}
.mk-pp-svc-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 28px; align-items: center;
}
.mk-pp-svc-art {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
  color: #ea580c; font-size: 32px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 6px 18px rgba(234,88,12,.22);
}
.mk-pp-svc-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: #ea580c;
  background: rgba(234,88,12,.1); padding: 4px 10px; border-radius: 100px; margin-bottom: 8px;
}
.mk-pp-svc-h { font-size: 20px; font-weight: 800; color: #0a0820; margin: 0 0 6px; letter-spacing: -.4px; }
.mk-pp-svc-p { font-size: 14px; color: #5c5a7c; line-height: 1.6; margin: 0; max-width: 560px; }
.mk-pp-svc-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* mk-btn-* may or may not be loaded (home.css only on /). Provide minimal fallbacks. */
.mk-pp-svc-cta .mk-btn-primary,
.mk-pp-empty .mk-btn-primary,
.mk-cat-empty .mk-btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #6c27e8, #9333ea); color: #fff;
  border: none; padding: 12px 22px; border-radius: 11px;
  font-size: 14px; font-weight: 700; font-family: inherit;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 16px rgba(108,39,232,.32);
  transition: all .18s;
}
.mk-pp-svc-cta .mk-btn-primary:hover,
.mk-pp-empty .mk-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(108,39,232,.45); color: #fff; }
.mk-pp-svc-cta .mk-btn-ghost,
.mk-pp-empty .mk-btn-ghost,
.mk-cat-empty .mk-btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: #0a0820; border: 1.5px solid #e0dcf5;
  padding: 12px 20px; border-radius: 11px;
  font-size: 14px; font-weight: 700; font-family: inherit;
  cursor: pointer; text-decoration: none; transition: all .18s;
}
.mk-pp-svc-cta .mk-btn-ghost:hover,
.mk-pp-empty .mk-btn-ghost:hover { border-color: #c4b5fd; color: #5b1fd1; transform: translateY(-1px); }

/* ── KEYBOARD FOCUS (a11y) ── */
.mk-pp-cat:focus-visible,
.mk-pp-af-chip:focus-visible,
.mk-pp-af-clear:focus-visible,
.mk-pp-page:focus-visible,
.mk-pp-btn-search:focus-visible,
.mk-pp-svc-cta a:focus-visible,
.mk-pp-empty a:focus-visible {
  outline: 2px solid #6c27e8;
  outline-offset: 2px;
  border-radius: 10px;
}
.mk-pp-search-clear:focus-visible {
  outline: 2px solid #6c27e8;
  outline-offset: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .mk-pp-toolbar__main {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .mk-pp-toolbar__actions {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    align-items: stretch;
  }
  .mk-pp-sort-field {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .mk-pp-header-inner { padding: 24px 16px 20px; }
  .mk-pp-title-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mk-pp-quick-trust { gap: 6px; }
  .mk-pp-trust-chip { font-size: 11px; padding: 5px 10px 5px 6px; }
  .mk-pp-svc-inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .mk-pp-svc-art { margin: 0 auto; }
  .mk-pp-svc-actions { justify-content: center; }
  .mk-pp-svc-p { margin: 0 auto; }
}

@media (max-width: 520px) {
  .mk-pp-toolbar__actions {
    grid-template-columns: 1fr;
  }
  .mk-pp-btn-search {
    width: 100%;
  }
  .mk-pp-btn-search span {
    display: inline;
  }
}

@media (max-width: 480px) {
  .mk-pp-header-inner { padding: 22px 14px 18px; }
  .mk-pp-cats-inner { padding: 10px 14px; }
  .mk-pp-toolbar {
    border-radius: 14px;
    padding: 12px;
  }
  .mk-pp-search-field,
  .mk-pp-sort-field__control,
  .mk-pp-btn-search {
    min-height: 44px;
  }
  .mk-pp-trust-chip { font-size: 10.5px; padding: 5px 8px 5px 5px; }
  .mk-pp-trust-chip i { width: 18px; height: 18px; font-size: 9px; }
}

/* ═══════════════════════════════════════════════════════
   CATEGORY PAGE HERO (/category/{slug})
   ═══════════════════════════════════════════════════════ */
.page-category .mk-pp-header { display: none; }

.mk-cat-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 85% -10%, rgba(147, 51, 234, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 5% 100%, rgba(108, 39, 232, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #f3eeff 0%, #faf8ff 38%, #ffffff 100%);
  border-bottom: 1px solid #e8e2fb;
}
.mk-cat-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(rgba(108, 39, 232, 0.09) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}
.mk-cat-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px) clamp(16px, 4vw, 24px) clamp(32px, 4vw, 40px);
}

.mk-cat-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6b6885;
  margin-bottom: clamp(20px, 3vw, 28px);
}
.mk-cat-hero__crumbs a {
  color: #6b6885;
  text-decoration: none;
  transition: color 0.15s;
}
.mk-cat-hero__crumbs a:hover { color: #6c27e8; }
.mk-cat-hero__crumbs span[aria-hidden] { color: #c4c2d8; }
.mk-cat-hero__crumb-active { color: #0a0820; font-weight: 600; }

.mk-cat-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
@media (max-width: 900px) {
  .mk-cat-hero__grid {
    grid-template-columns: 1fr;
  }
  .mk-cat-hero__panel { order: 2; }
}

.mk-cat-hero__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff 0%, #f7f3ff 100%);
  border: 1px solid rgba(108, 39, 232, 0.18);
  box-shadow: 0 12px 32px rgba(108, 39, 232, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.mk-cat-hero__icon {
  font-size: 32px;
  line-height: 1;
}
.mk-cat-hero__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c3aed;
}
.mk-cat-hero__title {
  margin: 0 0 14px;
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.08;
  color: #0a0820;
}
.mk-cat-hero__lead {
  margin: 0 0 22px;
  max-width: 52ch;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
  color: #5c5a7c;
}
.mk-cat-hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}
.mk-cat-hero__stat {
  font-size: 13.5px;
  font-weight: 600;
  color: #4a4870;
}
.mk-cat-hero__stat strong {
  font-size: 15px;
  font-weight: 800;
  color: #6c27e8;
}
.mk-cat-hero__stat-div {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d4c4f7;
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .mk-cat-hero__stat-div { display: none; }
  .mk-cat-hero__stats { gap: 8px; }
}

.mk-cat-hero__panel-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(108, 39, 232, 0.14);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 20px 50px rgba(108, 39, 232, 0.1);
}
.mk-cat-hero__panel-title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7c7a9e;
}
.mk-cat-hero__benefits {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mk-cat-hero__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: #2e2b50;
  font-weight: 500;
}
.mk-cat-hero__benefits i {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(108, 39, 232, 0.12), rgba(147, 51, 234, 0.06));
  color: #6c27e8;
  font-size: 12px;
}
.mk-cat-hero__link-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #6c27e8;
  text-decoration: none;
}
.mk-cat-hero__link-all:hover { color: #5b1fd1; text-decoration: underline; }
.mk-cat-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.mk-cat-empty {
  padding: 56px 24px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(180deg, #faf8ff 0%, #fff 100%);
  border: 1px dashed #e4ddf8;
}
.mk-cat-empty__icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.mk-cat-empty h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: #0a0820;
}
.mk-cat-empty p {
  margin: 0 auto 24px;
  max-width: 40ch;
  color: #6b6885;
  font-size: 15px;
  line-height: 1.6;
}
.mk-cat-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.mk-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #5b1fd1;
  background: #fff;
  border: 1.5px solid #e4ddf8;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.mk-btn-ghost:hover {
  background: #f7f3ff;
  border-color: #c4b5fd;
}
