/* Espace partenaire — extension du design business */

body.partner-portal .biz-welcome-badge {
  background: rgba(255, 255, 255, 0.2);
}

.biz-alert-info {
  background: var(--ds-blue-soft);
  color: var(--ds-blue-deep);
  border: 1px solid #bfdbfe;
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Commander une course */
.prt-booking-grid {
  display: grid;
  gap: 20px;
}

.prt-map {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-card);
  margin-bottom: 16px;
  background: var(--grey);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.prt-map .map-unavailable,
.prt-map .map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

.prt-price-box {
  background: var(--ds-blue-soft);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-card);
  padding: 18px;
  text-align: center;
  margin: 16px 0;
}

.prt-price-box .prt-price-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.prt-price-box .prt-price-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--ds-blue);
  margin-top: 4px;
}

.prt-choice-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.prt-choice-btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--white);
  font-weight: 700;
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.prt-choice-btn:hover {
  border-color: var(--ds-blue);
}

.prt-choice-btn.is-active {
  background: var(--ds-blue);
  color: #fff;
  border-color: var(--ds-blue);
}

.prt-time-panel {
  background: var(--grey);
  border-radius: var(--radius-card);
  padding: 16px;
  margin-bottom: 8px;
}

.prt-client-suggest {
  position: relative;
}

.prt-client-suggest ul {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 var(--radius-xs) var(--radius-xs);
  max-height: 220px;
  overflow-y: auto;
  z-index: 50;
  box-shadow: var(--shadow-md);
}

.prt-client-suggest li {
  padding: 12px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.prt-client-suggest li:hover {
  background: var(--ds-blue-soft);
}

.prt-client-suggest li small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.prt-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}

.prt-checkbox-row input {
  width: auto;
  margin-top: 3px;
}

.prt-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  body.partner-portal .biz-site-nav {
    display: none;
  }
}
