/* ==========================================================================
   BATCH VERIFICATION / COA SECTION
   Uses the approved .search-bar, .coa-card, .batch-verify-card and
   .skeleton components — only section-level layout lives here.
   ========================================================================== */

.coa-lookup {
  background: var(--color-white);
  padding-block: var(--space-24);
}

.coa-lookup__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.coa-lookup__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  color: var(--color-obsidian);
  margin-bottom: var(--space-4);
}

.coa-lookup__subhead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  color: var(--color-graphite-500);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

.coa-lookup__search {
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.coa-lookup__result {
  max-width: 480px;
  margin-inline: auto;
  text-align: left;
}

.coa-lookup__sample-label {
  display: inline-block;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  background: var(--color-cloud-grey);
  color: var(--color-graphite-500);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

/* Skeleton shown briefly during the simulated lookup */
.coa-lookup__skeleton {
  max-width: 480px;
  margin-inline: auto;
  border: 1px solid var(--color-graphite-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: none;
  text-align: left;
}

.coa-lookup__skeleton.is-visible {
  display: block;
}

.coa-lookup__result,
.coa-lookup__sample {
  transition: opacity var(--dur-mid) var(--ease-out);
}

.coa-lookup__sample.is-hidden,
.coa-lookup__result.is-hidden {
  display: none;
}

@media (max-width: 767px) {
  .coa-lookup {
    padding-block: var(--space-16);
  }
  .coa-lookup__heading {
    font-size: 28px;
    line-height: 32px;
  }
}
