/* ═══════════════════════════════════════════════
   COMPONENTS — Buttons · Panels · Badges · Pills
═══════════════════════════════════════════════ */

/* ── Section labels ── */
.eyebrow {
  font-family: var(--f-m);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .75rem;
}

/* ── Section headings ── */
.section-title {
  font-family: var(--f-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.1;
  margin-bottom: .9rem; color: var(--ink);
}

.section-desc {
  font-size: .975rem; color: var(--muted);
  max-width: 480px; line-height: 1.75;
}

/* ── Skeuomorphic panel ── */
.sku-panel {
  background: linear-gradient(160deg, var(--parchment) 0%, var(--cream2) 100%);
  border: 1px solid var(--border);
  border-bottom-color: var(--border2);
  box-shadow: var(--sh-card);
  border-radius: 16px;
}
.sku-panel:hover { box-shadow: var(--sh-card-hover); }

/* ── Inset panel ── */
.sku-inset {
  background: linear-gradient(160deg, var(--cream3) 0%, var(--cream2) 100%);
  border: 1px solid var(--border2);
  box-shadow: var(--sh-inset);
  border-radius: 10px;
}

/* ── Primary button ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .875rem 2rem;
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-d) 100%);
  color: #fff;
  border: 1px solid var(--teal-d);
  border-bottom: 2px solid rgba(0,0,0,.25);
  border-radius: 10px;
  font-family: var(--f-b); font-weight: 600; font-size: .9rem;
  box-shadow: var(--sh-btn);
  transition: all .2s var(--ease);
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.btn-primary:hover {
  background: linear-gradient(160deg, #0f8e7d 0%, var(--teal) 100%);
  box-shadow: var(--sh-btn-hover);
  transform: translateY(-1px);
}
.btn-primary:active {
  box-shadow: var(--sh-pressed);
  transform: translateY(1px);
  border-bottom-width: 1px;
}

/* ── Ghost button ── */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .875rem 1.75rem;
  background: linear-gradient(160deg, var(--parchment) 0%, var(--cream2) 100%);
  color: var(--ink3);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--border2);
  border-radius: 10px;
  font-family: var(--f-b); font-weight: 600; font-size: .9rem;
  box-shadow: var(--sh-raised);
  transition: all .2s var(--ease);
}
.btn-ghost:hover {
  background: linear-gradient(160deg, var(--white) 0%, var(--parchment) 100%);
  box-shadow: var(--sh-btn-hover);
  transform: translateY(-1px);
  color: var(--ink);
}
.btn-ghost:active { box-shadow: var(--sh-pressed); transform: translateY(1px); }

/* ── Availability stamp ── */
.availability-stamp {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px 5px 5px;
  background: linear-gradient(135deg, var(--parchment), var(--white));
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--sh-raised);
  font-size: .72rem; font-weight: 600; letter-spacing: .03em;
}
.stamp-dot {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 800; color: #fff; letter-spacing: .05em;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.stamp-dot::before {
  content: '';
  display: inline-block; width: 6px; height: 6px;
  background: #fff; border-radius: 50%; margin-right: 4px;
  animation: blink 1.8s ease-in-out infinite;
}

/* ── Trust badges ── */
.trust-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--parchment), var(--white));
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .7rem; font-weight: 600; color: var(--ink3);
  box-shadow: var(--sh-raised);
}
.trust-badge svg { color: var(--teal); flex-shrink: 0; }

/* ── Social icon button ── */
.social-icon {
  width: 40px; height: 40px;
  background: linear-gradient(160deg, var(--parchment), var(--cream2));
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  box-shadow: var(--sh-raised);
  transition: all .2s var(--spring);
}
.social-icon:hover {
  border-color: var(--teal); color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(13,122,107,.2), var(--sh-raised);
}

/* ── Tech pill ── */
.tech-pill {
  font-family: var(--f-m);
  font-size: .62rem; font-weight: 600;
  padding: 4px 11px; border-radius: 100px;
  background: linear-gradient(135deg, var(--teal-ll), var(--teal-l));
  border: 1px solid rgba(13,122,107,.2);
  color: var(--teal-d);
  box-shadow: var(--sh-raised);
  white-space: nowrap;
}