/*
CTC Separate Stylesheet
Updated: 2025-06-12 16:19:21
*/

.td-doctor-banner {
  width: 100%;
  background: linear-gradient(90deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(72, 61, 139, 0.3);
  animation: fadeInDoctor 1s ease both;
  font-family: 'Montserrat', sans-serif;
}

.td-doctor-banner-content h2 {
  font-size: 1.8em;
  font-weight: 800;
  margin-bottom: 10px;
}

.td-doctor-banner-content p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #ddd;
}

@keyframes fadeInDoctor {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.td-doctor-mode .woocommerce .products {
  background-color: #f4f0ff;
}

body.td-doctor-mode .woocommerce-loop-product__title {
  color: #6a0dad;
}
