.bcp-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.bcp-header {
  text-align: center;
  margin-bottom: 2rem;
}

.bcp-header h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a1a2e;
}

.bcp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

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

.bcp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
}

.bcp-card-img {
  height: 140px;
  background-size: cover;
  background-position: center;
}

.bcp-card-img--placeholder {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}

.bcp-card-body {
  padding: 1.1rem 1.1rem 0.6rem;
  flex: 1;
}

.bcp-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.15rem;
}

.bcp-card-title-sec {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

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

.bcp-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.bcp-tag {
  background: #f3f4f6;
  border-radius: 50px;
  padding: 0.18rem 0.65rem;
  font-size: 0.76rem;
  color: #4b5563;
}

.bcp-tag--price {
  background: #ecfdf5;
  color: #065f46;
}

.bcp-card-footer {
  padding: 0.85rem 1.1rem;
  border-top: 1px solid #f3f4f6;
}

.bcp-select-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f3460;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.bcp-select-btn:hover {
  background: #16213e;
}

.bcp-select-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.bcp-empty,
.bcp-skip {
  text-align: center;
  padding: 2rem 1rem;
  color: #9ca3af;
}

.bcp-skip a {
  color: #9ca3af;
  font-size: 0.88rem;
  text-decoration: none;
}

.bcp-skip a:hover {
  color: #0f3460;
}

#bcp-alert {
  margin-bottom: 1.5rem;
}

.bcp-user-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 20px;
  font-size: 14px;
}

.bcp-user-info {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #444;
}

.bcp-user-phone {
  color: #888;
}

.bcp-logout-btn {
  background: none;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 5px 14px;
  font-size: 13px;
  color: #dc3545;
  cursor: pointer;
  transition: all 0.2s;
}

.bcp-logout-btn:hover {
  background: #dc3545;
  color: white;
  border-color: #dc3545;
}