/* ── Sort Tabs ── */
.sort-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sort-tab {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
}
.sort-tab:hover,
.sort-tab.active {
  background: #f0a500;
  border-color: #f0a500;
  color: #1a1a2e;
  font-weight: 600;
}

/* ── Instructor Cards ── */
.instructor-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  padding: 24px;
  margin-bottom: 20px;
  transition: box-shadow .2s;
}
.instructor-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.instructor-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.instructor-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px;
}

.rating {
  color: #f0a500;
  font-size: 14px;
  margin-bottom: 4px;
}
.rating .star { font-size: 16px; }

.badge-dvsa {
  color: #28a745;
  font-size: 13px;
  margin: 4px 0;
}

.tag-great-value {
  display: inline-block;
  background: #f0a500;
  color: #1a1a2e;
  border-radius: 20px;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
}

.packages-from {
  font-size: 13px;
  color: #6b7280;
}

/* ── Card Actions ── */
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.btn-book-now {
  background: #f0a500;
  color: #1a1a2e;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background .2s;
}
.btn-book-now:hover { background: #d68f00; color: #1a1a2e; }

.btn-outline {
  border: 1px solid #e5e7eb;
  color: #374151;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: all .2s;
}
.btn-outline:hover { border-color: #1a1a2e; color: #1a1a2e; }

/* ── Skeleton Loader ── */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
  height: 16px;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Mobile ── */
@media (max-width: 576px) {
  .instructor-card { padding: 16px; }
  .instructor-photo { width: 60px; height: 60px; }
  .card-actions { flex-direction: column; }
  .btn-book-now, .btn-outline { text-align: center; }
}
