/* Upload section */
.vee-section {
  background: var(--cream);
  padding: 8rem 4rem;
  text-align: center;
}
.vee-section-header {
  margin-bottom: 3rem;
}
.vee-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.2;
  max-width: 500px;
  margin: 0 auto 1rem;
}
.vee-section-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.drop-zone {
  max-width: 640px;
  margin: 0 auto;
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 4rem 3rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.drop-zone:hover,
.drop-zone.drag-over {
  border-color: var(--bronze);
  background: rgba(201, 169, 110, 0.04);
}
.drop-zone-icon {
  display: block;
  margin: 0 auto 1.5rem;
  width: 48px;
  height: 48px;
}
.drop-zone-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.drop-zone-hint {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}
.drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* Loading state */
.vee-loading {
  max-width: 640px;
  margin: 0 auto;
  background: var(--warm-gray);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem;
  display: none;
}
.vee-loading.active { display: block; }
.vee-pulse-ring {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--bronze);
  opacity: 0.2;
  animation: vee-pulse 1.8s ease-in-out infinite;
}
@keyframes vee-pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.25); opacity: 0.4; }
}
.vee-loading-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.vee-loading-sub {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}