.ptd-tabs {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ptd-tab {
  font-family: "Poppins" !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  background-color: transparent !important;
  padding: 0px !important;
  color: #939393 !important;
  border: none !important;
}
.ptd-tab.active {
  color: #000000 !important;
}
.ptd-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.ptd-product-item {
  width: calc(25% - 37.5px);
  text-align: center;
}

.ptd-product-item-image {
  height: 370px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.ptd-pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.ptd-btn {
  font-family: "Poppins" !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  background-color: transparent !important;
  padding: 12px 30px !important;
  color: #939393 !important;
  border: 2px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* .ptd-btn:disabled {
  opacity: 0;
  cursor: default;
} */


.ptd-btn:disabled {
  cursor: not-allowed;
    color: #eee !important;
  border: 2px solid #ddd;
}

@media screen and (max-width: 1024px) {
  .ptd-product-item {
    width: calc(50% - 25px);
  }
}

@media screen and (max-width: 576px) {
  .ptd-product-item {
    width: 100%;
  }
}

.ptd-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.ptd-desc {
  font-size: 16px;
  font-weight: 400;
  color: #939393;
}

/* Simple Circle Spinner */
.ptd-loader {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #000; /* Black (spinner color) */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: ptd-spin 1s linear infinite;
  margin: 40px auto; /* Center */
}

@keyframes ptd-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
