﻿.provider-card .card {
  transition: all 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
}
.provider-card .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
}

.provider-avatar {
  position: relative;
}
.provider-avatar .avatar-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B9E8B 0%, #6B7E6B 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  box-shadow: 0 4px 12px rgba(139, 158, 139, 0.3);
  border: 3px solid #FAF8F5;
}
.provider-avatar .status-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background-color: #28a745;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.provider-name {
  color: #2C2C2C;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
}

.provider-description {
  line-height: 1.6;
  font-size: 0.95rem;
  color: #4A4A4A;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-favorite {
  transition: all 0.2s ease;
  color: #C4987A !important;
}
.btn-favorite:hover {
  transform: scale(1.1);
  color: #A67B5B !important;
}
.btn-favorite.favorited i {
  color: #C4987A !important;
  animation: heartbeat 0.6s ease-in-out;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.1);
  }
}
.btn-book-session {
  background: linear-gradient(135deg, #2C2C2C 0%, #4A4A4A 100%);
  border: none;
  padding: 0.65rem 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-book-session:hover {
  background: linear-gradient(135deg, #4A4A4A 0%, #2C2C2C 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 44, 44, 0.3);
}
.btn-book-session:active {
  transform: translateY(0);
}

.bg-sage-light {
  background-color: #C5D4C5 !important;
}

.text-sage-dark {
  color: #6B7E6B !important;
}
