@charset "UTF-8";
/* Styles for the price input container */
.price-input-container {
  width: 100%;
  padding-bottom: 20px;
}

.price-filter-form-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.products-container ul {
  margin-bottom: 24px;
}

.site {
  border-bottom: 1px solid rgb(226, 226, 226);
}

.price-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.price-field input {
  display: block;
}

.price-input {
  display: flex;
  flex-direction: row;
  width: 100%;
  font-size: 19px;
  color: #f37021;
}

/* Remove Arrows/Spinners */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.slider {
  width: 100%;
  height: 4px;
  position: relative;
  background: #e4e4e4;
  border-radius: 5px;
  margin: 15px 0;
}

.slider .price-slider {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  bottom: 2px;
  border-radius: 5px;
  background: #f37021;
}

.range-input {
  position: relative;
  margin-top: -4px;
}

.range-input input {
  position: absolute;
  width: 100%;
  bottom: 4px;
  padding: 0;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
}
.range-input input::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 10px solid #f37021;
  background: #fff;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.range-input input::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 3px solid #f37021;
  background: #fff;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .search-results-wrapper {
    display: none;
  }
  .main {
    width: 80%;
    margin-right: 5px;
  }
  .custom-wrapper {
    width: 100%;
    left: 0;
    padding: 0 10px;
  }
  .projtitle {
    width: 100%;
    position: relative;
    right: 26px;
  }
  .price-field {
    margin-bottom: 10px;
  }
}
.form-check {
  margin-bottom: 4px;
  position: relative;
  padding-left: 32px;
}
.form-check .form-check-input {
  position: absolute;
  left: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid rgb(226, 226, 226);
  cursor: pointer;
  transition: all 0.2s e ase;
  appearance: none;
  -webkit-appearance: none;
  background-color: #FFFFFF;
}
.form-check .form-check-input:checked {
  background-color: #f37021;
  border-color: #f37021;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}
.form-check .form-check-input:hover:not(:checked) {
  border-color: #f37021;
}
.form-check .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.2);
  border-color: #f37021;
}
.form-check .form-check-label {
  color: #212529;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  margin: 0;
}
.form-check:hover .form-check-label {
  color: #f37021;
}

.onsale {
  display: none;
}

.site-main-search-result {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.site-main-search-result .onsale,
.site-main-search-result span.badge {
  display: none !important;
}
.site-main-search-result .price del {
  display: none;
}
.site-main-search-result .price ins {
  text-decoration: none;
}

.search-filters-column {
  width: 100%;
}

.search-filters-form {
  width: 20em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-outline-secondary {
  border-radius: 8px;
}

.filter-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.search-products-column {
  display: flex;
  flex-direction: column;
}

.products-order-by {
  color: rgb(117, 117, 117);
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgb(226, 226, 226);
  border-radius: 8px;
}

.load-more-container {
  margin-top: 32px;
}

.woocommerce-ordering {
  margin-bottom: 0;
  width: 100%;
}

.woocommerce-ordering select {
  border: none;
  width: 100%;
}
.woocommerce-ordering select:focus {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}

.products-count-order-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.products-count {
  display: flex;
  align-items: center;
}

.search-filters-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .products-count-order-wrapper {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 8px;
  }
}
@media screen and (max-width: 1200px) {
  .site-main-search-result {
    gap: 16px;
  }
  .search-filters-form {
    width: 16em;
  }
}
@media screen and (max-width: 992px) {
  .site-main-search-result {
    flex-direction: column;
  }
  .search-filters-form {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .price-input-container,
  .filter-group {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 768px) {
  .search-filters-form {
    flex-direction: column;
  }
  .price-input-container,
  .filter-group {
    width: 100%;
  }
  .price-field {
    flex-direction: column;
    gap: 8px;
  }
  .slider {
    margin: 24px 0 12px;
  }
}
.view-more-bottom > a {
  display: inline-block;
  /* để transform hoạt động đúng */
  transition: transform 0.3s ease;
  position: relative;
  /* optional nếu cần */
}

.view-more-bottom a:hover {
  transform: translateY(5px) !important;
  /* di chuyển xuống 5px */
}

@media (max-width: 991px) {
  .site-main-search-result {
    grid-template-columns: 1fr;
  }
}

.search-result-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 32px;
}
@media screen and (max-width: 991px) {
  .search-result-container {
    flex-direction: column;
  }
  .search-result-container .sidebar-filters {
    width: 100%;
  }
}

.text-center .btn-apply {
  margin-bottom: 24px;
}

.products-grid {
  width: 100%;
}

.sidebar-filters {
  width: 280px;
}

.search-filters-column .search-filters-form {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgb(226, 226, 226);
}
.search-filters-column .search-filters-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #212529;
}

.filter-group {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.filter-group:not(:last-child) {
  border-bottom: 1px solid rgb(226, 226, 226);
}
.filter-group .filter-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #212529;
}

.connection-filter {
  margin-top: 0;
  border-top: 1px solid rgb(226, 226, 226);
  padding-top: 16px;
}

.price-range-container {
  position: relative;
  height: 80px;
  margin-bottom: 84px;
}

.connect-filter {
  padding-top: 16px;
  border-bottom: none;
}

.slider-track {
  width: 100%;
  height: 2px;
  position: absolute;
  transform: translateY(-50%);
  background: #e4e8f7;
  border-radius: 2px;
}
.slider-track-fill {
  position: absolute;
  height: 100%;
  background: #f37021;
  border-radius: 2px;
}

input[type=range] {
  padding: 0;
}

.price-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: none;
  position: absolute;
  top: 78%;
  transform: translateY(-50%);
  margin: 0;
  pointer-events: none;
}
.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f37021;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  transition: transform 0.2s ease;
  margin-top: 0;
}
.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
.price-slider::-webkit-slider-thumb:active {
  transform: scale(0.95);
}
.price-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f37021;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  transition: transform 0.2s ease;
}
.price-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
}
.price-slider::-moz-range-thumb:active {
  transform: scale(0.95);
}
.price-slider::-webkit-slider-runnable-track {
  height: 2px;
  cursor: pointer;
  background: transparent;
}
.price-slider::-moz-range-track {
  height: 2px;
  cursor: pointer;
  background: transparent;
}

#min-price-slider {
  z-index: 2;
}

#max-price-slider {
  z-index: 2;
}

.price-slider-values {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgb(117, 117, 117);
  position: relative;
  z-index: 1;
}

.description-content h2 {
  font-size: 24px !important;
  margin: 8px 0 !important;
}

.price-range-buttons {
  display: flex;
  gap: 10px;
  margin-top: 2rem;
}
.price-range-buttons .btn-apply {
  background-color: #f37021;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}
.price-range-buttons .btn-apply:hover {
  background-color: rgb(237.6538461538, 97.4166666667, 12.8461538462);
  transform: translateY(-1px);
}
.price-range-buttons .btn-apply:active {
  transform: translateY(0);
}
.price-range-buttons .btn-reset {
  background-color: #F5F5F5;
  color: #212529;
  border: 1px solid rgb(226, 226, 226);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}
.price-range-buttons .btn-reset:hover {
  background-color: rgb(232.25, 232.25, 232.25);
  border-color: rgb(213.25, 213.25, 213.25);
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.2);
}
input[type=range]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.2);
}
input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.products-wrapper {
  display: grid;
  gap: 24px;
  margin-bottom: 2rem;
}
@media (max-width: 1200px) {
  .products-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .products-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .products-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.products-count-order-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .products-count-order-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.products-count-order-wrapper .products-count {
  color: rgb(117, 117, 117);
}
.products-count-order-wrapper .products-order-by {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.products-count-order-wrapper .products-order-by .orderby-tag {
  color: rgb(117, 117, 117);
}
.products-count-order-wrapper .products-order-by select.orderby {
  border: 1px solid rgb(226, 226, 226);
  border-radius: 8px;
  padding: 8px 12px;
  color: #212529;
  background-color: #FFFFFF;
  cursor: pointer;
}
.products-count-order-wrapper .products-order-by select.orderby:focus {
  outline: none;
  border-color: #f37021;
}

.load-more-container {
  margin-top: 3rem;
}
.load-more-container .btn-view-more {
  background: #FFFFFF;
  border: 1px solid rgb(226, 226, 226);
  color: #212529;
  padding: 1rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.load-more-container .btn-view-more:hover {
  background: #f37021;
  border-color: #f37021;
  color: #FFFFFF;
}
.load-more-container .btn-view-more i {
  transition: transform 0.3s ease;
}
.load-more-container .btn-view-more:hover i {
  transform: translateY(4px);
}

.custom-checkbox-dark {
  margin-bottom: 0.75rem;
}
.custom-checkbox-dark .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0.2em;
  border: 2px solid rgb(226, 226, 226);
}
.custom-checkbox-dark .form-check-input:checked {
  background-color: #f37021;
  border-color: #f37021;
}
.custom-checkbox-dark .form-check-label {
  padding-left: 0.5rem;
  color: #212529;
  font-size: 14px;
}

.filter-actions .button-linear {
  background: linear-gradient(45deg, #f37021, rgb(245.6153846154, 143.1666666667, 81.3846153846));
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.filter-actions .button-linear:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 112, 33, 0.2);
}

.spinner-primary {
  color: #f37021;
  width: 1.5rem;
  height: 1.5rem;
}

.loading-text {
  color: rgb(117, 117, 117);
  margin-top: 0.75rem;
  font-size: 16px;
}

.filter-group-title {
  font-size: 14px;
}

.filter-section {
  margin-bottom: 5em;
}

#product-results {
  margin-bottom: 24px;
}

.products-sorting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgb(226, 226, 226);
  border-radius: 8px;
  padding: 8px 12px;
}
.products-sorting .sort-label {
  color: rgb(117, 117, 117);
}

.woocommerce-breadcrumb-home-page {
  color: #f37021 !important;
}

.filter-button-mobile {
  display: none;
  padding: 8px 24px;
  background: #F3801F;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  height: 38.6px;
}
.filter-button-mobile i {
  font-size: 18px;
}
.filter-button-mobile:hover {
  background: rgb(235.8644067797, 114.7733050847, 12.6355932203);
}
@media (max-width: 991px) {
  .filter-button-mobile {
    display: flex;
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(2px);
  }
}
@keyframes modalFadeOut {
  from {
    opacity: 1;
    backdrop-filter: blur(2px);
  }
  to {
    opacity: 0;
    backdrop-filter: blur(0);
  }
}
@keyframes modalSlideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes modalSlideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
.filter-modal {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  transition: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(0);
}
.filter-modal.show {
  opacity: 1;
  display: block;
  animation: modalFadeIn 0.3s ease forwards;
}
.filter-modal.show .filter-modal-content {
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.filter-modal.hiding {
  opacity: 1;
  display: block;
}
.filter-modal.hiding .filter-modal-content {
  animation: modalSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.filter-modal .filter-modal-content {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 16px;
  transform: translateY(100%);
  opacity: 0;
  max-height: 90vh;
  overflow-y: auto;
  will-change: transform, opacity;
}
.filter-modal .filter-modal-header {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(226, 226, 226);
}
.filter-modal .filter-modal-header h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.filter-modal .filter-modal-header .close-modal {
  background: none;
  border: none;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  color: rgb(117, 117, 117);
  transition: all 0.2s ease;
  position: relative;
}
.filter-modal .filter-modal-header .close-modal::before, .filter-modal .filter-modal-header .close-modal::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease;
}
.filter-modal .filter-modal-header .close-modal::before {
  transform: rotate(45deg);
}
.filter-modal .filter-modal-header .close-modal::after {
  transform: rotate(-45deg);
}
.filter-modal .filter-modal-header .close-modal:hover {
  background-color: rgba(243, 112, 33, 0.1);
  color: #f37021;
  transform: rotate(90deg);
}
.filter-modal .filter-modal-footer {
  position: sticky;
  bottom: 0;
  background: #FFFFFF;
  padding-top: 16px;
  margin: 16px -16px -16px;
  padding: 16px;
  border-top: 1px solid rgb(226, 226, 226);
  display: flex;
  gap: 1rem;
}
.filter-modal .filter-modal-footer button {
  flex: 1;
  padding: 1rem 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid rgb(226, 226, 226);
  background: #FFFFFF;
  color: rgb(117, 117, 117);
  transition: all 0.2s ease;
}
.filter-modal .filter-modal-footer button.apply-filters {
  background: #F3801F;
  color: #FFFFFF;
  border-color: #F3801F;
}
.filter-modal .filter-modal-footer button.apply-filters:hover {
  background: rgb(235.8644067797, 114.7733050847, 12.6355932203);
}
.filter-modal .filter-modal-footer button.reset-filters:hover {
  background: #F5F5F5;
}

@media (max-width: 991px) {
  .product-filters {
    display: none;
  }
  .filter-button-mobile span {
    display: none;
  }
  .search-result-container {
    gap: 0px;
  }
}
.products-sorting-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.products-sorting-wrapper .products-sorting {
  white-space: nowrap;
  width: 100%;
}
@media (max-width: 991px) {
  .products-sorting-wrapper .product-filtering {
    display: block;
  }
}

@media (max-width: 991px) {
  .products-sorting-wrapper {
    width: fit-content;
  }
  .products-header-wrapper {
    flex-wrap: wrap !important;
  }
}
.products-header-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  white-space: nowrap;
}

@media (max-width: 488px) {
  .products-sorting-wrapper-container {
    width: 100%;
  }
}

.products-header {
  margin-bottom: 16px;
}

/*# sourceMappingURL=search-result-page.css.map */
