@charset "UTF-8";
/* ── Layout ──────────────────────────────────────────────────────────────── */
.bkp-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.bkp-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  padding: 2.5rem 2rem;
}

.bkp-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.bkp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.85) 0%, rgba(26, 26, 46, 0.9) 100%);
}

.bkp-hero-body {
  position: relative;
  z-index: 1;
  color: #fff;
}

.bkp-hero-body--over-img {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.bkp-plan-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff;
}

.bkp-plan-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.bkp-plan-title-secondary {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 0.6rem;
}

.bkp-plan-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  max-width: 560px;
  margin-bottom: 1.2rem;
}

.bkp-plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bkp-meta-chip {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.25rem 0.85rem;
  font-size: 0.82rem;
  color: #fff;
}

/* ── Section header ──────────────────────────────────────────────────────── */
.bkp-section-header {
  margin-bottom: 1.5rem;
}

.bkp-section-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.2rem;
}

/* ── Grid ────────────────────────────────────────────────────────────────── */
.bkp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

/* ── Card ────────────────────────────────────────────────────────────────── */
.bkp-card {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}

.bkp-card:not(.bkp-card--disabled):hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
}

/* Disabled card — greyed out, no hover lift */
.bkp-card--disabled {
  opacity: 0.65;
  filter: grayscale(0.4);
  cursor: not-allowed;
}

.bkp-card-accent {
  height: 5px;
}

.bkp-card-body {
  padding: 1.25rem 1.25rem 0.75rem;
  flex: 1;
}

.bkp-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.4rem;
}

.bkp-card-desc {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bkp-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.bkp-tag {
  background: #f3f4f6;
  border-radius: 50px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  color: #4b5563;
}

/* ── Sessions progress ───────────────────────────────────────────────────── */
.bkp-sessions-progress {
  padding-bottom: 0.25rem;
}

.bkp-progress-track {
  height: 6px;
  border-radius: 10px;
  background: #e5e7eb;
  overflow: hidden;
}

.bkp-progress-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.4s ease;
}

/* ── Card footer ─────────────────────────────────────────────────────────── */
.bkp-card-footer {
  padding: 0.9rem 1.25rem;
  border-top: 1px solid #f3f4f6;
}

.bkp-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f3460;
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.bkp-book-btn:hover {
  background: #16213e;
  color: #fff;
}

/* Disabled button — not a link, just a label */
.bkp-book-btn--disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Empty / footer ──────────────────────────────────────────────────────── */
.bkp-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #6b7280;
}

.bkp-footer-link {
  margin-top: 2rem;
  text-align: center;
}

.bkp-footer-link a {
  color: #6b7280;
  font-size: 0.9rem;
  text-decoration: none;
}

.bkp-footer-link a:hover {
  color: #0f3460;
}

.bkp-footer-link.preview a {
  font-weight: bold;
}

.bkp-booking-footer-link {
  margin-top: 2rem;
  text-align: center;
}

.bkp-booking-footer-link a {
  color: #6b7280;
  font-size: 0.9rem;
  text-decoration: none;
}

.bkp-booking-footer-link a:hover {
  color: #0f3460;
}

.bkp-plan-disabled .bkp-card {
  opacity: 0.6;
  pointer-events: none;
}

.bkp-plan-disabled .bkp-book-btn:not(.bkp-book-btn--disabled) {
  pointer-events: none;
  background: #d1d5db;
  color: #6b7280;
}