/* =========================================
   SOURCEPEPTIDECO — VERIFY PAGE CSS
   Styles for the /verify batch lookup page.
   Shared nav/hero/utility styles live in coa.css.
   Matches theme.css design tokens exactly.
   ========================================= */

/* ── VERIFY HERO ── */
.verify-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
  padding-top: 80px;
}

.verify-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.verify-hero-bg .hex-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.verify-hero-bg .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.verify-hero-bg .orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2a5a3f, transparent);
  top: -80px;
  right: -80px;
  opacity: 0.3;
}

.verify-hero-bg .orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(199, 168, 75, 0.6), transparent);
  bottom: 40px;
  left: 8%;
  opacity: 0.2;
}

.verify-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.verify-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--bg);
  margin-bottom: 16px;
}

.verify-hero-content .lede {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.65);
  max-width: 500px;
  font-weight: 300;
}

/* ── VERIFY FORM SECTION ── */
.verify-form-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}

.verify-form-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.batch-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.batch-form-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.batch-input-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--rule-heavy);
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--surface);
}

.batch-input {
  flex: 1;
  padding: 16px 20px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  background: transparent;
  border: none;
  outline: none;
  letter-spacing: 0.06em;
}

.batch-input::placeholder {
  color: rgba(13, 27, 18, 0.25);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.batch-submit {
  padding: 16px 28px;
  background: var(--forest);
  color: var(--accent);
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.batch-submit:hover { background: var(--forest-mid); }

.batch-hint {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* ── VERIFY RESULT ── */
.verify-result {
  border-radius: var(--border-radius);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.verify-found {
  background: rgba(45, 106, 79, 0.06);
  border: 1px solid rgba(45, 106, 79, 0.25);
}

.verify-not-found {
  background: rgba(155, 34, 38, 0.06);
  border: 1px solid rgba(155, 34, 38, 0.2);
}

.result-found-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: #2d6a4f;
}

.result-not-found-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: #9b2226;
}

.result-found-icon svg,
.result-not-found-icon svg {
  width: 100%;
  height: 100%;
}

.result-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.result-status-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2d6a4f;
}

.not-found-label { color: #9b2226; }

.result-product-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--forest);
}

.result-batch-id {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.result-meta-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 12px 16px;
  background: rgba(13, 27, 18, 0.04);
  border-radius: var(--border-radius);
  border: 1px solid var(--rule);
}

.result-meta-row strong { color: var(--forest); }

.btn-view-full-coa {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;
}

.btn-view-full-coa:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.not-found-message {
  font-size: 0.95rem;
  color: var(--forest);
  font-weight: 500;
}

.not-found-support {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.not-found-support a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── SAMPLE BATCHES HINT ── */
.sample-batches-hint {
  padding: 28px 32px;
  background: var(--surface-2);
  border: 1px solid var(--rule);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hint-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hint-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hint-chip {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  color: var(--accent-dark);
  background: var(--accent-glow);
  border: 1px solid rgba(199, 168, 75, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.hint-chip:hover { background: rgba(199, 168, 75, 0.25); }

.hint-sample-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.6;
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .verify-hero-content,
  .verify-form-inner {
    padding: 0 24px;
  }

  .batch-input-row {
    flex-direction: column;
  }

  .batch-submit {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }

  .verify-result {
    flex-direction: column;
    gap: 16px;
  }

  .result-meta-row {
    flex-direction: column;
    gap: 8px;
  }

  .hint-chips {
    flex-direction: column;
  }

  .hint-chip {
    width: 100%;
    text-align: center;
  }
}
