/* Filter Section */
.filter-section {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}

.filter-section-inner {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.filter-section select,
.filter-section button {
  padding: 12px 16px;
  border-radius: 25px;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.filter-section select {
  background-color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  height: auto;
}

.filter-section button {
  padding: 12px 45px;
  background-color: var(--e-global-color-accent);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Treatment Cards */
.treatment-card {
  display: flex;
  flex-direction: row;
  background-color: #21201f;
  border-radius: 15px;
  margin-bottom: 25px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  overflow: hidden;
}

.treatment-cards.loading {
  opacity: 0.5;
  cursor: not-allowed;
}

.treatment-card .card-image {
  width: 40%;
  overflow: hidden;
}

.treatment-card .card-image img {
  width: 100%;
  object-fit: cover;
}

.treatment-card .card-content {
  flex: 1;
  padding: 20px 20px 20px;
}

.treatment-card .page-title {
  font-size: 1.5rem;
  margin: 0;
  color: #fff;
}

.treatment-card .page-description {
  margin: 10px 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.treatment-card button {
  margin-top: 15px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 25px;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.treatment-card button:hover {
  background-color: #fafafa;
}

/* Responsive */
@media (max-width: 767px) {
  .treatment-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .treatment-card .card-image {
    width: 100%;
  }

  .treatment-card button {
    padding: 10px 20px;
    font-size: 14px;
  }
}