/**
 * Light studio theme — component polish (loaded after style.css on preview branch).
 * Merged into style.css when design is approved.
 */

.upload-zone-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border: 2px dashed var(--border-light);
  border-radius: 50%;
  position: relative;
  font-size: 0;
}

.upload-zone-icon::before {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.upload-zone-icon--error {
  border-color: var(--error);
  background: var(--error-bg);
}

.upload-zone-icon--error::before {
  content: '!';
  color: var(--error);
  font-weight: 700;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 -4px 24px rgba(26, 26, 26, 0.08);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cookie-consent-text {
  margin: 0;
  flex: 1 1 100%;
  max-width: 42rem;
  text-align: center;
  line-height: 1.55;
}

.cookie-consent-text a {
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-consent-btn {
  width: auto;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.opinion-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.showcase-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.showcase-stage-panel.active {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.upload-zone:not(.preview):not(.warning):not(.error):not(.validating) {
  border-color: var(--accent);
  background: var(--bg-dropzone);
  box-shadow: var(--shadow);
}

.upload-zone:not(.preview):not(.warning):not(.error):not(.validating):hover {
  border-color: var(--accent-hover);
  box-shadow: var(--shadow-lg);
}

.payment-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.payment-card-icon {
  display: none;
}

.offline-banner {
  background: var(--warning-bg);
  color: var(--warning);
  border-bottom: 1px solid rgba(180, 83, 9, 0.2);
  font-size: 0.875rem;
  font-weight: 500;
}

.generating-section {
  background: var(--bg-secondary);
}

.viewer-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
}
