/* Upload Page Specific Styles */

/* Style buttons background images */
.style-btn.style-1 {
  background-image: url('/static/img/placeholder.png');
  background-size: cover;
  background-position: center;
}
.style-btn.style-2 {
  background-image: url('/static/img/pixar.png');
  background-size: cover;
  background-position: center;
}
.style-btn.style-3 {
  background-image: url('/static/img/cartoon.png');
  background-size: cover;
  background-position: center;
}
.style-btn.style-4 {
  background-image: url('/static/img/anime.png');
  background-size: cover;
  background-position: center;
}

/* How It Works Section */
.how-it-works {
  max-width: 900px;
  margin: 4em auto 2em;
  padding: 2.5em 1.5em;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.how-it-works h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #333;
}
.how-it-works-subtitle {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 2.5em;
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-bottom: 3em;
}
.step {
  padding: 1.5em;
}
.step-icon {
  font-size: 3em;
  margin-bottom: 0.5em;
}
.step h3 {
  font-size: 1.3em;
  margin: 0.5em 0;
  color: #333;
}
.step p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95em;
}

/* Use Cases Section */
.use-cases {
  max-width: 1000px;
  margin: 0em auto 4em;
  padding: 0 1.5em;
  text-align: center;
}
.use-cases h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #333;
}
.use-cases-subtitle {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 2.5em;
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
}
.use-case {
  background: #fff;
  padding: 2em 1.5em;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.use-case:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.use-case-icon {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}
.use-case h3 {
  font-size: 1.2em;
  margin: 0.5em 0;
  color: #333;
}
.use-case p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95em;
}

/* Moved from inline styles */
.ai-gen-bar.ai-gen-blocked {
  max-width: 420px;
  margin: 0 auto 1.5em auto;
  background: linear-gradient(90deg, #ffeaea 0%, #ffd6d6 100%);
  color: #a94442;
  border: 1.5px solid #ffb3b3;
  border-radius: 8px;
  font-size: 1.08em;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(255, 71, 71, 0.10);
  padding: 1em 1.2em;
  display: flex;
  align-items: center;
  gap: 0.7em;
}

/* Discount alert boxes - match upload form width */
.discount-alert {
  max-width: 420px;
  margin: 0 auto 1.5em auto;
  background: var(--color-primary-light);
  color: var(--color-text-dark);
  border: 3px solid var(--color-primary);
  border-radius: 18px;
  font-size: 1.08em;
  font-weight: 500;
  box-shadow: 0 6px 30px var(--shadow-primary-strong);
  padding: 1em 1.2em;
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.discount-alert-invalid {
  max-width: 420px;
  margin: 0 auto 1.5em auto;
  background: linear-gradient(90deg, var(--color-alert-error-bg) 0%, #ffdada 100%);
  color: var(--color-alert-error-text);
  border: 2px solid var(--color-error);
  border-radius: 10px;
  font-size: 1.08em;
  font-weight: 500;
  box-shadow: 0 3px 12px rgba(221, 28, 26, 0.15);
  padding: 1em 1.2em;
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.upload-btn:disabled {
  background: #ccc;
  color: #888;
  cursor: not-allowed;
}
.terms-row {
  margin: 1em 0 0.5em 0;
}
.terms-row input[type="checkbox"] {
  margin-right: 0.5em;
}
.terms-row .terms-label {
  font-size: 0.98em;
}