/* css/page-stylists.css */

.container {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stylistCardWrapper {
  text-decoration: none;
  color: inherit;
  display: block;
}

.stylistCard {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stylistCard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(212, 175, 55, 0.3);
}

.imageWrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
  flex-shrink: 0;
}

.stylistImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stylistInfo {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nameRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.role {
  font-size: 0.9rem;
  color: var(--accent-gold);
  font-weight: 500;
}

.metaRow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.metaItem {
  display: flex;
  align-items: center;
  gap: 4px;
}
.metaItem i.star {
  color: var(--accent-gold);
  fill: var(--accent-gold);
}

.bookBtn {
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold-hover);
  border: none;
  align-self: flex-start;
  transition: all 0.2s ease;
  cursor: pointer;
}

.bookBtn:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

.heartBtn {
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.heartBtn.saved i {
  color: #ef4444; /* Heart red */
  fill: #ef4444;
}
