.artisan-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  padding: 24px;
  background-color: #fff8f1; /* soft artisan background */  
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.artisan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.artisan-card .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #3c2b22;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.rating_bg {
  color: #a3512d;
}

.artisan-card .btn {
  letter-spacing: 0.5px;
  background-color: #a3512d;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: none;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: #fff;
}

.artisan-card .btn:hover {
  background-color: #8c3a26;
  color: #fff;
  border-color: #8c3a26;
}
