/**
 * @file
 * Styles for therapist license product page.
 */

.therapist-license-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #ffffff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.therapist-license-card {
  background-color: #1c1d29;
  border-radius: 20px;
  max-width: 720px;
  width: 100%;
  padding: 40px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.therapist-license-card .title {
  font-size: 28px;
  font-weight: 600;
  color: #e64e73;
  margin-bottom: 20px;
}

.therapist-license-card .text {
  font-size: 16px;
  color: #d0d0d0;
  margin-bottom: 28px;
  line-height: 1.6;
}

.therapist-license-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.therapist-license-card .price-box {
  margin-bottom: 32px;
}

.therapist-license-card .old-price {
  text-decoration: line-through;
  color: #777;
  font-size: 18px;
  margin-bottom: 12px;
}

.therapist-license-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.therapist-license-card .note {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 16px;
}

.therapist-license-card .discount {
  font-size: 14px;
  color: #ffb8d0;
  margin-bottom: 8px;
  line-height: 1.5;
}

.therapist-license-card .expire {
  font-size: 14px;
  color: #a9a9b8;
  margin-top: 8px;
}

.therapist-license-card .benefits {
  text-align: left;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.5;
  color: #d0d0d0;
  list-style: none;
  padding-left: 0;
}

.therapist-license-card .benefits li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.therapist-license-card .benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff7fa1;
}

.therapist-license-card .buy-buttons--therapist-license {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.therapist-license-card .buy-buttons--therapist-license .button {
  background-color: #e64e73 !important;
  color: #fff !important;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.therapist-license-card .buy-buttons--therapist-license .button:hover {
  background-color: #ff5c85 !important;
  color: #fff !important;
  text-decoration: none;
}

.therapist-license-card .footer {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

