/* Category strip + header shell under global cm-topbar */

.cm-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tp_header_section {
  position: relative;
  z-index: 1100 !important;
  overflow: visible !important;
  background: #fff;
}

.cm-catbar,
.cm-catbar a {
  font-family: "Inter", Arial, sans-serif !important;
}

.cm-catbar {
  background: #f5f7fc;
  border-bottom: 1px solid #e5eaf5;
}

.cm-catbar__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.cm-catbar__item {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  color: #53627a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: none !important;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.cm-catbar__item:hover {
  color: #005ee8;
  background: #e8f0fe;
}

.cm-catbar__item.is-active {
  color: #fff;
  background: #005ee8;
}

@media (max-width: 991px) {
  .cm-catbar__inner {
    min-height: 36px;
    gap: 6px;
  }

  .cm-catbar__item {
    padding: 5px 10px;
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .cm-catbar__item {
    padding: 4px 9px;
    font-size: 11px;
  }
}
