/* Fox & Maple Booking Styles */

.booking-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.booking-form-card h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #333;
}

/* Category Picker */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.category-option { cursor: pointer; }
.category-option input { display: none; }

.category-card {
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.2s;
}

.category-option input:checked + .category-card {
  border-color: #2d5016;
  background: rgba(45, 80, 22, 0.05);
}

.category-card i {
  font-size: 24px;
  color: #2d5016;
  margin-bottom: 8px;
  display: block;
}

.category-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.category-price {
  display: block;
  font-size: 12px;
  color: #888;
}

/* Calendar */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  max-width: 600px;
  margin: 0 auto;
}

.calendar-header {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  padding: 8px 0;
  text-transform: uppercase;
}

.calendar-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #f0f0f0;
}

.calendar-cell.empty { border: none; }
.calendar-cell.past { color: #ccc; background: #fafafa; }
.calendar-cell.available { background: #e8f5e1; color: #2d5016; }
.calendar-cell.limited { background: #fff8e1; color: #b58900; }
.calendar-cell.full { background: #fde8e8; color: #c0392b; }

.day-num { font-weight: 600; }
.day-avail { font-size: 10px; opacity: 0.7; }

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  font-size: 13px;
  color: #666;
}

.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
}

.legend-dot.available { background: #e8f5e1; border: 1px solid #2d5016; }
.legend-dot.limited { background: #fff8e1; border: 1px solid #b58900; }
.legend-dot.full { background: #fde8e8; border: 1px solid #c0392b; }

/* Site Cards */
.site-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 2px solid #e5e5e5;
  transition: all 0.2s;
  text-align: center;
}

.site-card:hover {
  border-color: #2d5016;
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.12);
}

.site-number {
  font-size: 22px;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 12px;
}

.site-hookups {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.hookup-badge {
  background: rgba(45, 80, 22, 0.1);
  color: #2d5016;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 11px;
}

/* Booking Summary */
.booking-summary-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 2px solid rgba(45, 80, 22, 0.15);
  position: sticky;
  top: 100px;
}

.booking-summary-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.summary-details { }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: #555;
}

.summary-row.small { font-size: 12px; color: #888; }
.summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: #2d5016;
  padding-top: 12px;
}

/* Confirmation */
.booking-confirmation {
  padding: 40px;
}

.confirm-icon {
  font-size: 64px;
  color: #2d5016;
  margin-bottom: 20px;
}

.confirm-number {
  font-size: 18px;
  color: #888;
  margin-bottom: 30px;
}

.confirm-details {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  color: #555;
}

.confirm-row.total {
  font-weight: 700;
  font-size: 18px;
  color: #2d5016;
  border-top: 1px solid #ddd;
  padding-top: 12px;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-form-card { padding: 24px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
