/* ============================================================
   Screen 04 — Select People
   ============================================================ */

.banner-wrap {
  width: 100%;
  padding: 8px 28px 20px;
}

.product-banner {
  width: 100%;
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(27, 27, 92, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
}

.product-banner-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.product-banner-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
}

/* Category Grid */
.category-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 28px;
}

.cat-row {
  display: flex;
  gap: 14px;
}

.cat-card {
  flex: 1;
  height: 200px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 3px solid transparent;
  box-shadow: 0 4px 16px rgba(27, 27, 92, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  justify-content: space-between;
  transition: border-color 0.2s ease;
}

.cat-card.is-selected {
  border-color: var(--border-navy-dark);
}

.cat-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.cat-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cat-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.cat-age {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
}

.cat-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.cat-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-price);
}

.cat-per-person {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-secondary);
}

.cat-counter {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cat-btn {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: var(--bg-soft);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.12s;
}

.cat-btn:hover {
  background: var(--border-light);
}

.cat-btn i[data-lucide] {
  width: 20px;
  height: 20px;
}

.cat-btn .minus-icon { color: var(--text-muted); }
.cat-btn .plus-icon  { color: var(--text-primary); }

.cat-count {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 40px;
  text-align: center;
}

/* Spacer pushes footer to the bottom */
.flex-spacer {
  flex: 1;
}
