/* DateReady Vendor Onboarding Styles */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Hero section */
.hero {
  text-align: center;
  margin-bottom: 48px;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px;
}

.hero p {
  color: #6a6a6a;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Benefits grid */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.benefit {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.benefit h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.benefit p {
  margin: 0;
  color: #666;
  font-size: 0.875rem;
}

/* Vendor type pills */
.vendor-types {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.vendor-type {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  font-size: 0.875rem;
  color: #555;
}

/* Form styles */
.vendor-form {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 32px;
  max-width: 520px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.required {
  color: #c62828;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.submit-btn:hover {
  background: #333;
}

/* Confirmation and error messages */
.confirmation {
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.confirmation h2 {
  margin: 0 0 12px;
  color: #2e7d32;
}

.confirmation p {
  margin: 0;
  color: #555;
}

.error {
  background: #ffebee;
  border: 1px solid #ef5350;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  color: #c62828;
}

/* Availability section */
.availability-days {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.day-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
}

.day-checkbox input {
  cursor: pointer;
}

/* Photo inputs */
.photo-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.photo-input-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.photo-input-row label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #666;
}

.photo-input-row input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  box-sizing: border-box;
}

/* Vendor Portal */
.portal-header {
  background: #1a1a1a;
  color: #fff;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px 12px 0 0;
}
.portal-header h1 { margin: 0; font-size: 1.4rem; }
.portal-header .business-name { color: #aaa; font-size: 0.95rem; margin-top: 4px; }
.logout-form { margin: 0; }
.logout-btn {
  padding: 8px 16px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}
.logout-btn:hover { background: #555; }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0; }
.stat-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 10px; padding: 24px; text-align: center; }
.stat-card .stat-value { font-size: 2.5rem; font-weight: 700; color: #1a1a1a; }
.stat-card .stat-label { color: #666; font-size: 0.9rem; margin-top: 4px; }
.section { background: #fff; border: 1px solid #e0e0e0; border-radius: 10px; padding: 24px; margin-bottom: 24px; }
.section h2 { margin: 0 0 16px; font-size: 1.1rem; }
.availability-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; margin-bottom: 12px; }
.day-checkbox { display: flex; align-items: center; gap: 6px; padding: 8px 12px; background: #f5f5f5; border-radius: 6px; font-size: 0.9rem; }
.day-checkbox input { cursor: pointer; }
.status-badge.confirmed { background: #e8f5e9; color: #2e7d32; }
.status-badge.pending { background: #fff3e0; color: #e65100; }

/* Onboarding Wizard */
.onboarding-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.onboarding-header {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.step-indicator {
  display: flex;
  align-items: center;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  background: #e0e0e0;
  color: #888;
}

.step-circle.active {
  background: #1a1a1a;
  color: #fff;
}

.step-circle.complete {
  background: #4caf50;
  color: #fff;
}

.step-label {
  font-size: 0.8rem;
  color: #888;
  margin-top: 6px;
  text-align: center;
}

.step-indicator-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: #e0e0e0;
  margin: 0 4px;
  margin-bottom: 20px;
}

.step-connector.active {
  background: #1a1a1a;
}

.onboarding-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 32px;
}

.onboarding-step h2 {
  margin: 0 0 24px;
  font-size: 1.4rem;
}

.step-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.step-footer .btn-back {
  padding: 12px 24px;
  background: #f5f5f5;
  color: #333;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.step-footer .btn-back:hover {
  background: #e0e0e0;
}

.step-footer .btn-next,
.step-footer .btn-submit {
  padding: 12px 24px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.step-footer .btn-next:hover,
.step-footer .btn-submit:hover {
  background: #333;
}

.onboarding-error {
  background: #ffebee;
  border: 1px solid #ef5350;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  color: #c62828;
}

.confirmation-box {
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
}

.confirmation-box h2 {
  margin: 0 0 16px;
  color: #2e7d32;
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.summary-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.summary-list li:last-child {
  border-bottom: none;
}

.summary-label {
  color: #666;
  font-size: 0.9rem;
}

.summary-value {
  font-weight: 500;
}

.onboarding-prompt {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-bottom: 32px;
}

.onboarding-prompt p {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 16px;
}

.onboarding-prompt .submit-btn {
  background: #fff;
  color: #667eea;
  width: auto;
  padding: 12px 32px;
  display: inline-block;
}

.onboarding-prompt .submit-btn:hover {
  background: #f0f0f0;
}

.dashboard-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard-header h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}