/* Enhanced JV Submit Features CSS */

/* Enhanced Photo Upload Styles */
.photo-upload-zone {
  border: 2px dashed #d1d5db;
  transition: all 0.3s ease;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.photo-upload-zone:hover {
  border-color: #3b82f6;
  background-color: #f0f9ff;
}

.photo-upload-zone.drag-over {
  border-color: #3b82f6;
  background-color: #dbeafe;
}

.photo-preview-item {
  position: relative;
  display: inline-block;
  margin: 0.5rem;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e5e7eb;
}

.photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-preview-item .remove-photo {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  cursor: pointer;
}

/* Voice Memo Styles */
.voice-memo-btn {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.voice-memo-btn:hover {
  background: #2563eb;
}

.voice-memo-btn.recording {
  background: #ef4444;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Real-Time Calculator Styles */
.deal-score {
  text-align: center;
  margin-bottom: 1rem;
}

.profit-indicator {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.profit-breakdown {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.profit-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.profit-breakdown-item:last-child {
  border-bottom: none;
}

/* Market Intelligence Styles */
.market-insight {
  background: #f0f9ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.market-insight-icon {
  color: #3b82f6;
  margin-right: 0.5rem;
}

/* Deal Type Cards Enhanced */
.deal-type-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: white;
}

.deal-type-card:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.deal-type-card.selected {
  border-color: #3b82f6;
  background: #f0f9ff;
}

.deal-type-card .deal-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.deal-type-card .deal-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.deal-type-card .deal-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Trust Building Elements */
.trust-metric {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: #374151;
  font-size: 0.875rem;
}

.trust-metric i {
  margin-right: 0.5rem;
  color: #10b981;
}

/* Enhanced Mobile Responsive Updates */
@media (max-width: 768px) {
  .photo-upload-zone {
    padding: 1rem;
  }
  
  .photo-preview-item {
    width: 60px;
    height: 60px;
  }
  
  .profit-indicator {
    font-size: 1.25rem;
  }
  
  .deal-type-card {
    padding: 1rem;
  }
  
  .deal-type-card .deal-icon {
    font-size: 1.5rem;
  }
}