.ta-popup-wrapper {
  position: fixed;
  display: none;
  inset: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3);
}

.ta-popup-wrapper .ta-popup-modal {
  position: fixed;
  max-width: 540px;
  width: 100%;
  background-color: #ffffff;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
}

.ta-popup-wrapper .ta-popup-modal .ta-popup-content {
  padding: 50px;
  width: 100%;
}

.ta-popup-wrapper .ta-popup-modal .ta-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  border: none;
  background: none;
  cursor: pointer;
}

.ta-filters {
  text-align: center;
  margin-bottom: 40px;
}

.ta-filters .ta-filter-btn {
  padding: 8px 16px;
  margin: 0 5px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000000;
  background: transparent;
  transition: 0.3s;
  font-size: 14px;
  font-weight: bold;
  font-family: "Inter";
}

.ta-filters .ta-filter-btn.active,
.ta-filters .ta-filter-btn:hover {
  background-image: linear-gradient(180deg, rgb(197, 255, 210) -382%, rgb(12, 133, 38) 100%);
  color: #ffffff;
  border-color: #0c8526;
}

.ta-filter-wrapper .ta-filter-item.show {
  animation: fadeIn 0.8s ease;
}

.ta-filter-wrapper.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.ta-product-pagination-wrap {
  margin-top: 10px;
  text-align: center;
}

.ta-ajax-pagination {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.ta-pagination-btn {
  min-width: 40px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  color: #000000;
  background: #ffffff;
  cursor: pointer;
  font-weight: 700;
}

.ta-pagination-btn.active,
.ta-pagination-btn:hover {
  border-color: #0c8526;
  color: #ffffff;
  background: #0c8526;
}

.ta-pagination-btn:disabled {
  cursor: default;
}

.ta-product-empty {
  margin: 0;
  text-align: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
