@charset "UTF-8";
:root {
  --bs-form-select-bg-img: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ff8819' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
}

.layout-service-category .layout-service-item {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.layout-service-category .layout-service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, #ff8819 0%, #ff5101 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: inherit;
}
.layout-service-category .layout-service-item:hover {
  box-shadow: 0 12px 24px rgba(255, 81, 1, 0.3);
}
.layout-service-category .layout-service-item:hover::before {
  opacity: 1;
}
.layout-service-category .layout-service-item:hover .title-service-cat span {
  color: #fff;
}
.layout-service-category .layout-service-item:hover .item-service-image {
  border-color: #fff;
}
.layout-service-category .layout-service-item > * {
  position: relative;
  z-index: 1;
}
.layout-service-category .layout-service-item .item-service-image {
  border: 1px solid transparent;
  max-width: 80px;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.layout-service-category .layout-service-item .title-service-cat span {
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-wrapper {
  background: transparent;
  margin-bottom: 2rem;
}
.filter-wrapper .filter-container .filter-label {
  font-size: 1rem;
  color: #333;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.filter-wrapper .filter-container .filter-select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter-wrapper .filter-container .filter-select:focus {
  border-color: #f15a24;
  box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.1);
}
.filter-wrapper .filter-container .filter-select:hover {
  border-color: #f15a24;
}
.filter-wrapper .filter-container .filter-select option {
  padding: 0.5rem;
}

.more-page .click-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.more-page .click-more:hover {
  background: #f15a24;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(241, 90, 36, 0.3);
}
.more-page .click-more:hover svg path {
  stroke: #fff;
}
.more-page .click-more:hover .title-more {
  color: #fff;
}
.more-page .click-more.loading {
  opacity: 0.6;
}
.more-page .click-more.loading .icon-wrapper svg {
  animation: bounce 1s infinite;
}
.more-page .click-more .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-page .click-more .title-more {
  margin: 0;
  font-weight: 600;
  color: #f15a24;
  transition: color 0.3s ease;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
.filter-group {
  min-width: 100px;
}
.filter-group .filter-label {
  color: #333;
  font-size: 0.875rem;
  display: block;
}
.filter-group .filter-select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 2rem 0.75rem 0.5rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  font-weight: 600;
}
.filter-group .filter-select:focus {
  border-color: #f15a24;
  box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.1);
}
.filter-group .btn-reset-filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.filter-group .btn-reset-filter:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

@keyframes spinSmooth {
  to {
    transform: rotate(360deg);
  }
}
.filter-loading .spinner-svg .path {
  stroke: #f15a24;
  animation: spinSmooth 0.8s linear infinite;
  will-change: transform;
  transform-origin: center;
}

.filter-select.active-filter {
  color: #ff5101;
  border-color: #ff5101;
  font-weight: 600;
}
.filter-select.active-filter option {
  background: #fff;
  color: #333;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: #f15a24;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #f15a24;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.active-filter-tag:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 81, 1, 0.3);
}
.active-filter-tag .remove-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f15a24;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}
.active-filter-tag .remove-icon:hover {
  background: #ff8819;
}

.active-filters-wrapper {
  display: none;
}
.active-filters-wrapper .fw-600 {
  color: #333;
  font-size: 1rem;
}

select.filter-select.form-select.filter-dropdown.active-filter,
.filter-select.form-select.active-filter {
  --bs-form-select-bg-img: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23f15a24' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
}

.filter-toggle-group {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.filter-toggle-group.active {
  z-index: 100;
}

.filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-toggle-btn:hover {
  border-color: #f15a24;
}
.filter-toggle-btn.active, .filter-toggle-btn.has-selection {
  background: #fbece6;
  border-color: transparent;
  color: #f15a24;
  box-shadow: 0 4px 12px rgba(255, 81, 1, 0.3);
}
.filter-toggle-btn.active .arrow-icon, .filter-toggle-btn.has-selection .arrow-icon {
  transform: rotate(180deg);
}
.filter-toggle-btn.active .arrow-icon path, .filter-toggle-btn.has-selection .arrow-icon path {
  stroke: #f15a24;
}
.filter-toggle-btn .filter-name {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.filter-toggle-btn .arrow-icon path {
  stroke: #333;
  transition: stroke 0.3s ease;
}

.filter-dropdown-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  max-width: 360px;
  width: 100vh;
  background: #fff;
  border-radius: 1.15rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-dropdown-options.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  border-color: #f15a24;
  box-shadow: 0 12px 32px rgba(62, 52, 48, 0.2);
}
.filter-dropdown-options.active::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
}

.filter-options-list {
  max-height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 1.25rem;
}
.filter-options-list::-webkit-scrollbar {
  width: 6px;
}
.filter-options-list::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.filter-options-list::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}
.filter-options-list::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

.filter-option-single {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s ease;
  gap: 0.75rem;
  position: relative;
  border: 1px solid #dedede;
  border-radius: 0.5rem;
}
.filter-option-single:hover {
  background: #fff5f0;
  color: #f15a24;
}
.filter-option-single.selected {
  background: linear-gradient(270deg, rgba(255, 136, 25, 0.1) 0%, rgba(255, 81, 1, 0.1) 100%);
  color: #f15a24;
  font-weight: 600;
}
.filter-option-single span {
  flex: 1;
}

.filter-option-multiple {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s ease;
  position: relative;
  border: 1px solid #dedede;
  border-radius: 0.5rem;
}
.filter-option-multiple:hover {
  background: linear-gradient(90deg, rgba(255, 136, 25, 0.08) 0%, rgba(255, 81, 1, 0.08) 100%);
  padding-left: 1.5rem;
}
.filter-option-multiple.active {
  background: linear-gradient(90deg, rgba(255, 136, 25, 0.15) 0%, rgba(255, 81, 1, 0.15) 100%);
  color: #f15a24;
  font-weight: 600;
  padding-left: 1.5rem;
}
.filter-option-multiple.active::before {
  content: "✓";
  position: absolute;
  left: 0.5rem;
  font-size: 1rem;
  color: #f15a24;
  font-weight: bold;
}
.filter-option-multiple .filter-checkbox {
  display: none;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.filter-option-multiple label {
  cursor: pointer;
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  color: #333;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.filter-actions {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid #e0e0e0;
  background: #fafafa;
}
.filter-actions button {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter-actions .btn-reset-filter {
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #666;
}
.filter-actions .btn-reset-filter:hover {
  border-color: #f15a24;
  color: #f15a24;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(241, 90, 36, 0.15);
}
.filter-actions .btn-apply-filter {
  background: linear-gradient(270deg, #ff8819 0%, #ff5101 100%);
  border: none;
  color: #fff;
}
.filter-actions .btn-apply-filter:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 81, 1, 0.3);
}

.price-range-slider {
  min-width: 320px;
  padding: 1.25rem;
}
.price-range-slider .price-values {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #f15a24;
  font-size: 0.95rem;
}
.price-range-slider .range-slider-container {
  position: relative;
  height: 6px;
  margin-bottom: 1.5rem;
}
.price-range-slider .range-slider-container input[type=range] {
  position: absolute;
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  pointer-events: none;
  background: transparent;
  z-index: 2;
}
.price-range-slider .range-slider-container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #f15a24;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.price-range-slider .range-slider-container input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(241, 90, 36, 0.4);
}
.price-range-slider .range-slider-container input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #f15a24;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.price-range-slider .range-slider-container input[type=range]::-moz-range-thumb:hover {
  transform: scale(1.15);
}
.price-range-slider .range-slider-container .slider-track {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  z-index: 1;
}
.price-range-slider .range-slider-container .slider-range {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  background: linear-gradient(270deg, #ff8819 0%, #ff5101 100%);
  border-radius: 3px;
  z-index: 1;
  transition: all 0.1s ease;
}
.price-range-slider .price-actions {
  display: flex;
  gap: 0.75rem;
}
.price-range-slider .price-actions button {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.price-range-slider .price-actions .btn-reset-price {
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #666;
}
.price-range-slider .price-actions .btn-reset-price:hover {
  border-color: #f15a24;
  color: #f15a24;
  transform: translateY(-2px);
}
.price-range-slider .price-actions .btn-apply-price {
  background: linear-gradient(270deg, #ff8819 0%, #ff5101 100%);
  border: none;
  color: #fff;
}
.price-range-slider .price-actions .btn-apply-price:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 81, 1, 0.3);
}

body.filter-dropdown-open .filter-toggle-btn.active .arrow-icon {
  transform: rotate(180deg);
}

.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.01);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  z-index: 89;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.filter-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1200px) {
  main.FilterTableShow {
    z-index: 1000;
  }
  .filter-wrapper.FilterTable {
    transform: translateY(-150%);
  }
  .filter-wrapper.FilterTable.show {
    position: fixed;
    display: block !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 998;
    padding: 0 0 80px;
    transform: translateY(0%);
    visibility: visible;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease, visibility 0.3s;
    overflow-y: scroll;
    padding: 0 !important;
  }
  .filter-wrapper.FilterTable.show .d-flex.align-items-center.gap-2.flex-wrap {
    display: grid !important;
    grid-template-columns: 1fr;
    padding: 1rem;
    align-items: start !important;
  }
  .filter-wrapper.FilterTable.show .d-flex.align-items-center.gap-2.flex-wrap button.btn.btn-light.d-flex.align-items-center.gap-2.fw-600 {
    display: none !important;
  }
  .filter-wrapper.FilterTable.show .d-flex.align-items-center.gap-2.flex-wrap .filter-toggle-group .filter-toggle-btn {
    width: 100%;
    background: unset;
    border-color: transparent;
    color: #f15a24;
    box-shadow: unset;
    border-bottom: 1px solid #757575;
    border-radius: 10px 10px 0px 0px;
    padding: 0.75rem 0;
    justify-content: space-between;
  }
  .filter-wrapper.FilterTable.show .d-flex.align-items-center.gap-2.flex-wrap .filter-toggle-group .filter-toggle-btn .filter-name {
    font-weight: 700;
    color: #141414;
    font-size: 16px;
    width: 100%;
    text-align: left;
  }
  .filter-wrapper.FilterTable.show .d-flex.align-items-center.gap-2.flex-wrap .filter-toggle-group .filter-dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: unset;
    border-color: #f15a24;
    box-shadow: unset;
    position: relative;
    min-width: unset;
    width: 100%;
    top: 0;
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
  }
  .filter-wrapper.FilterTable.show .d-flex.align-items-center.gap-2.flex-wrap .filter-toggle-group .filter-dropdown-options.price-range-slider {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  .filter-wrapper.FilterTable.show .d-flex.align-items-center.gap-2.flex-wrap .filter-toggle-group .filter-dropdown-options.price-range-slider.active {
    padding: 0 !important;
  }
  .filter-wrapper.FilterTable.show .d-flex.align-items-center.gap-2.flex-wrap .filter-toggle-group .filter-dropdown-options.active {
    height: 0 !important;
  }
  .filter-wrapper.FilterTable.show .d-flex.align-items-center.gap-2.flex-wrap .filter-toggle-group .filter-dropdown-options .filter-options-list {
    padding: 0.5rem 0;
  }
  .filter-wrapper.FilterTable.show .FilterTableBottom {
    position: sticky;
    z-index: 1006;
    bottom: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  .filter-wrapper.FilterTable.show .FilterTableBottom .filter-table-box .FilterTableBottom-clear {
    padding: 11px 10px;
    border: 2px solid rgba(222, 222, 222, 0.5019607843);
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
  }
  .filter-wrapper.FilterTable.show .FilterTableBottom .filter-table-box .FilterTableBottom-result {
    background: linear-gradient(90deg, #ff5101 0%, #ff8819 100%);
    padding: 11px 10px;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
  }
}
@media (max-width: 992px) {
  nav.breadcrumb-layout {
    border-bottom: 1px solid #f5f5f5;
  }
  .CatTopPadding-0 {
    padding: 0 !important;
  }
  .layout-service-category .layout-service-item .item-service-image {
    display: none !important;
  }
  .mySwiper-service-cat > .swiper-wrapper {
    flex-direction: unset !important;
  }
  .mySwiper-service-cat .swiper-slide {
    text-align: center;
    height: calc((100% - 30px) / 2) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0 !important;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 0px);
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
    border: 1px solid #f15a24;
    border-radius: 50%;
    height: 0.5rem;
    width: 0.5rem;
    background: #f15a24;
    border-radius: 50%;
    border: 1px solid #f15a24;
    margin: 0.5rem;
    position: relative;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    border: 1px solid #f15a24;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
