/* ============================================
   Shorts Page — Coral/Orange Accent Override
   Loaded AFTER index.css. Only overrides accent colors.
   ============================================ */

.page-shorts {
  --accent-blue: #FF6D3F;
  --accent-blue-hover: #ff8a66;
  --accent-blue-glow: rgba(255, 109, 63, 0.3);
  --accent-blue-subtle: rgba(255, 109, 63, 0.1);
}

/* Hero gradient overlay — coral tint */
.page-shorts .hero::before {
  background: radial-gradient(ellipse at center top, rgba(255, 109, 63, 0.06) 0%, transparent 60%);
}

/* Badge dot — coral */
.page-shorts .hero__badge-dot {
  background: #FF6D3F;
  box-shadow: 0 0 8px rgba(255, 109, 63, 0.6);
}

/* Title accent gradient — coral/warm spectrum */
.page-shorts .hero__title-accent {
  background: linear-gradient(135deg, #FF6D3F, #ffab76);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Input border glow — coral */
.page-shorts .hero__input-group {
  border-color: rgba(255, 109, 63, 0.15);
}

.page-shorts .hero__input-group:focus-within {
  border-color: rgba(255, 109, 63, 0.35);
  box-shadow: 0 0 0 4px rgba(255, 109, 63, 0.08), var(--shadow-card);
}

/* Download button — coral */
.page-shorts .hero__input-btn {
  background: #FF6D3F;
  color: #ffffff;
}

.page-shorts .hero__input-btn:hover {
  background: #ff8a66;
  box-shadow: 0 0 24px rgba(255, 109, 63, 0.3);
}

/* Format card selected state — coral */
.page-shorts .format-card.is-selected {
  border-color: #FF6D3F;
  box-shadow: 0 0 0 1px #FF6D3F, 0 0 20px rgba(255, 109, 63, 0.1);
}

.page-shorts .format-card__label {
  color: #ffab76;
}

.page-shorts .format-card.is-selected .format-card__label {
  color: #FF6D3F;
}

.page-shorts .format-card__badge {
  background: #FF6D3F;
  color: #ffffff;
}

/* CTA button — coral */
.page-shorts .format-panel__cta {
  background: #FF6D3F;
  color: #ffffff;
  font-weight: var(--fw-semibold);
}

.page-shorts .format-panel__cta:hover {
  background: #ff8a66;
  box-shadow: 0 0 24px rgba(255, 109, 63, 0.3);
}

/* Progress bar — coral */
.page-shorts .progress-bar__fill {
  background: linear-gradient(90deg, #FF6D3F, #ffab76);
}

/* Section labels — coral */
.page-shorts .section-label {
  color: #FF6D3F;
}

/* Step numbers — coral */
.page-shorts .step__number {
  border-color: rgba(255, 109, 63, 0.3);
  color: #FF6D3F;
}

/* Feature card hover — coral */
.page-shorts .feature-card:hover {
  border-color: rgba(255, 109, 63, 0.2);
  box-shadow: 0 0 30px rgba(255, 109, 63, 0.05);
}

/* FAQ chevron — coral */
.page-shorts .faq__item.is-open .faq__chevron {
  color: #FF6D3F;
}

/* Focus ring — coral */
.page-shorts *:focus-visible {
  outline-color: rgba(255, 109, 63, 0.5);
}

/* Nav logo accent — coral */
.page-shorts .nav__logo-icon {
  background: linear-gradient(135deg, #FF6D3F, #e55a2b);
}

.page-shorts .nav__logo-text span {
  color: #FF6D3F;
}

/* Shorts quality cards grid */
.shorts-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .shorts-cards {
    gap: 8px;
  }
}
