:root {
  --bg: #060606;
  --card: rgba(20, 20, 20, 0.92);
  --accent: #d72638;
  --accent-soft: #ff4b5c;
  --text: #f8f7f4;
  --muted: #b8b8b8;
  --border: rgba(255, 255, 255, 0.16);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #2d090d 0, #060606 45%, #000 100%);
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 10%, rgba(215, 38, 56, 0.22), transparent 35%),
    radial-gradient(circle at 15% 80%, rgba(255, 75, 92, 0.12), transparent 40%);
}

.app-shell {
  width: min(1050px, 92vw);
  margin: 0 auto;
  padding: 36px 0 70px;
}

.hero h1 {
  margin: 8px 0 6px;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.1;
}

.eyebrow {
  margin: 0;
  color: var(--accent-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.subtitle {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
}

.search-panel {
  margin-top: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.label {
  display: block;
  margin-bottom: 9px;
  font-weight: 700;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input {
  width: 100%;
  border: 1px solid #3c3c3c;
  border-radius: 14px;
  background: #0f0f0f;
  color: var(--text);
  font-size: 1rem;
  padding: 0.86rem 0.95rem;
}

button {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent-soft), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.86rem 1.1rem;
  cursor: pointer;
}

button:hover {
  filter: brightness(1.1);
}

.status {
  min-height: 28px;
  margin: 14px 2px 6px;
  color: var(--muted);
}

.progress-wrap {
  display: grid;
  gap: 8px;
  padding: 2px 0;
}

.progress-text {
  color: #f4d9dc;
  font-size: 0.95rem;
}

.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #c31123, #ff5b6d);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(255, 91, 109, 0.45);
  transition: width 0.45s ease;
}

.summary-card,
.outfit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 14px;
  margin-top: 14px;
}

.summary-card h2,
.outfit-card h3 {
  margin: 0 0 6px;
  font-family: "Cinzel", serif;
}

.subject-image {
  width: min(100%, 240px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.meta {
  margin: 0;
  color: var(--muted);
}

.column-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.panel {
  background: rgba(9, 9, 9, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
}

.panel h4 {
  margin: 0 0 8px;
  color: #f5adad;
  font-size: 0.92rem;
}

.list {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 8px;
}

a {
  color: #ff8e99;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.price {
  color: #e7c66a;
}

@media (max-width: 860px) {
  .column-grid {
    grid-template-columns: 1fr;
  }

  .input-row {
    grid-template-columns: 1fr;
  }
}
