/**
 * Styles for the homepage HCM|Da Nang tabs (Code Snippet 12 Task 4, T41).
 * Da Nang card accent colors are NOT here -- see T40's
 * assets/css/tour-card-colors.css (selectors .brxe-quaozv.kt-dn-c0..c4),
 * enqueued sitewide.
 */
#kt-city-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 6px 0 26px;
  flex-wrap: wrap;
  width: 100%;
}
#kt-city-tabs .kt-tab {
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  border: 2px solid #e5397d;
  background: #fff;
  color: #e5397d;
  border-radius: 999px;
  padding: 11px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .18s ease;
}
#kt-city-tabs .kt-tab:hover {
  background: #fde5ef;
}
#kt-city-tabs .kt-tab.is-active {
  background: #e5397d;
  color: #fff;
}
#kt-city-tabs .kt-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  background: #0d6e66;
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  transform: translateY(-1px);
}
#kt-city-tabs .kt-tab.is-active .kt-badge {
  background: #fff;
  color: #0d6e66;
}
#kt-dn-splide .splide__slide {
  height: auto;
}
/* Da Nang cards same height + image fills the slide, like the HCM carousel */
#kt-dn-splide .splide__list {
  align-items: stretch;
}
#kt-dn-splide .brxe-template,
#kt-dn-splide .brxe-quaozv {
  height: 100% !important;
}
/* clamp description to 3 lines so cards line up */
#kt-dn-list .kt-dn-desc,
#kt-dn-wrap-m .kt-dn-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 63px;
}
/* arrows + right-edge fade, matching the HCM carousel */
#kt-dn-splide {
  position: relative;
  width: 130%;
}
#kt-dn-splide::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(490px, 30%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .6) 30%, #fff 80%);
  pointer-events: none;
  z-index: 1;
}
#kt-dn-splide .splide__arrows {
  position: static;
}
#kt-dn-splide .splide__arrow {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 100px;
  opacity: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
  z-index: 3;
}
#kt-dn-splide .splide__arrow svg {
  display: none;
}
#kt-dn-splide .splide__arrow i {
  color: #b11857;
  font-size: 26px;
  line-height: 1;
}
#kt-dn-splide .splide__arrow--prev {
  left: 6px;
}
#kt-dn-splide .splide__arrow--next {
  right: 10px;
}
/* Da Nang hidden by default */
#kt-dn-wrap,
#kt-dn-wrap-m {
  display: none;
  width: 100%;
}
/* Da Nang tab active: hide both HCM variants, show DN per breakpoint */
.brxe-zsicpi.kt-dn-active .brxe-agczot,
.brxe-zsicpi.kt-dn-active .brxe-lswqzo {
  display: none !important;
}
.brxe-zsicpi.kt-dn-active #kt-dn-wrap {
  display: block;
}
@media (max-width: 767px) {
  .brxe-zsicpi.kt-dn-active #kt-dn-wrap {
    display: none;
  }
  .brxe-zsicpi.kt-dn-active #kt-dn-wrap-m {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
  }
}
