/* =============== Category Tags — Premium SVG (Outline mode) FINAL =============== */
.tour-categories {
  background: transparent;
  padding: 0;
  --chip-icon: 26px; /* bigger icons for clarity */
}
nav.tour-categories, .tour-categories { margin: 10px 0 20px !important; }

/* Row container */
.tour-categories .categories-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid var(--brand-border, #e5eaee) !important;
}
.tour-categories .categories-container::-webkit-scrollbar{ display: none; }

/* SUPER-KILL: remove any icon fonts or background/mask icons */
.tour-categories .category-tab,
.tour-categories .tab-icon{
  background: none !important;
  background-image: none !important;
  -webkit-mask: none !important;
  mask: none !important;
}
.tour-categories .tab-icon i,
.tour-categories .category-tab i,
.tour-categories .category-tab [class^="icon-"],
.tour-categories .category-tab [class*=" icon-"],
.tour-categories .category-tab [class^="ri-"],
.tour-categories .category-tab [class*=" ri-"],
.tour-categories .category-tab [class^="ti-"],
.tour-categories .category-tab [class*=" ti-"],
.tour-categories .category-tab [class^="fa"],
.tour-categories .category-tab [class*=" fa"],
.tour-categories .category-tab [class^="bi-"],
.tour-categories .category-tab [class*=" bi-"]{
  display: none !important;
  font-family: inherit !important;
}
.tour-categories .category-tab::before,
.tour-categories .category-tab::after,
.tour-categories .tab-icon::before,
.tour-categories .tab-icon::after,
.tour-categories .category-tab [class^="icon-"]::before,
.tour-categories .category-tab [class*=" icon-"]::before,
.tour-categories .category-tab [class^="ri-"]::before,
.tour-categories .category-tab [class*=" ri-"]::before,
.tour-categories .category-tab [class^="ti-"]::before,
.tour-categories .category-tab [class*=" ti-"]::before,
.tour-categories .category-tab [class^="fa"]::before,
.tour-categories .category-tab [class*=" fa"]::before,
.tour-categories .category-tab [class^="bi-"]::before,
.tour-categories .category-tab [class*=" bi-"]::before{
  content: none !important;
  display: none !important;
}

/* Chip (thin outline, no fill) */
.tour-categories .category-tab{
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 12px !important;
  color: var(--chip-text, #0f172a) !important;
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  background: transparent !important;
  border: 1px solid var(--chip-border, #e2e8f0) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}
.tour-categories .category-tab::after{ display: none !important; }

/* Icon box + SVG */
.tour-categories .category-tab .tab-icon{
  width: var(--chip-icon) !important;
  height: var(--chip-icon) !important;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; flex: 0 0 auto;
  font-size: 0 !important; /* hide any text/glyph slipping through */
}
.tour-categories .category-tab .tab-icon svg{
  width: var(--chip-icon) !important;
  height: var(--chip-icon) !important;
  stroke: currentColor !important;
  stroke-width: 1.85 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  fill: none !important;      /* outline-only look */
  vertical-align: -2px;       /* optical alignment */
  display: block !important;
}
.tour-categories .category-tab .tab-icon svg .duo{
  fill: none !important;
  opacity: 1 !important;
}

/* Label */
.tour-categories .category-tab .tab-label{ line-height: 1; }

/* States */
.tour-categories .category-tab:hover{
  color: var(--brand-primary, #213f52) !important;
  border-color: var(--brand-primary-50, #e8eef2) !important;
  background: transparent !important;
}
.tour-categories .category-tab.active{
  color: var(--brand-primary, #213f52) !important;
  border-color: var(--brand-primary, #213f52) !important;
  background: transparent !important;
  box-shadow: none !important;
}
.tour-categories .category-tab:focus-visible{
  outline: 2px solid var(--brand-primary-50, #e8eef2) !important;
  outline-offset: 2px;
}

/* ======================= Mobile tag-strip scrollbar fix ======================= */
@media (max-width: 768px) {
  .tour-categories { overflow: hidden; }

  .tour-categories .categories-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;

    padding-bottom: 12px;
    margin-bottom: -12px;

    border-bottom: 0 !important;
    box-shadow: none !important;
  }
  .tour-categories .categories-container::-webkit-scrollbar {
    height: 0;
    width: 0;
    display: none;
    background: transparent;
  }
}