/* Trust & Verification Widget */
.trust-widget {
  background: var(--paper, #fff);
  border: 1px solid var(--line, #e2d8c8);
  border-radius: var(--r-md, 12px);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.trust-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.trust-score {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  position: relative;
  background: var(--ink-soft, #6B5A3E);
  background: conic-gradient(from -90deg, var(--ink-soft) 0%, var(--ink-soft) 100%);
  transition: background 0.3s;
}

.trust-score-free { background: var(--ink-soft, #6B5A3E); }
.trust-score-starter { background: linear-gradient(135deg, #d4a017 0%, #f5d76e 100%); }
.trust-score-pro { background: linear-gradient(135deg, #A6192E 0%, #c92a44 100%); }
.trust-score-elite { background: linear-gradient(135deg, #8B6914 0%, #E8B947 50%, #d4a017 100%); }

.trust-score-num {
  font-size: 1.6rem;
  line-height: 1;
  font-family: var(--font-head, 'Fraunces', serif);
}

.trust-score-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 0.2rem;
  opacity: 0.95;
}

.trust-level {
  flex: 1;
  min-width: 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-pill, 999px);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.trust-badge-claimed {
  background: var(--trust-tint, #e6f4ec);
  color: var(--trust, #1a6b3e);
}

.trust-badge-unclaimed {
  background: var(--paper-2, #f7f1e3);
  color: var(--ink-soft, #6B5A3E);
}

.trust-level-name {
  font-family: var(--font-head, 'Fraunces', serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink, #2a1f10);
}

.trust-bar {
  height: 6px;
  background: var(--paper-2, #f7f1e3);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.trust-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary, #A6192E) 0%, var(--gold, #E8B947) 100%);
  transition: width 0.3s;
}

.trust-signals {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.trust-signal {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.3rem 0;
  color: var(--ink, #2a1f10);
}

.trust-signal svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.trust-signal-yes svg { color: var(--trust, #1a6b3e); }
.trust-signal-no svg { color: var(--ink-soft, #999); }
.trust-signal-neutral svg { color: var(--ink-soft, #999); }

.trust-signal-no span { color: var(--ink-soft, #999); }
.trust-signal-neutral span { color: var(--ink-soft, #999); font-style: italic; }

.trust-cta {
  border-top: 1px solid var(--line, #e2d8c8);
  padding-top: 0.85rem;
  margin-top: 0.5rem;
}

.trust-cta .btn {
  width: 100%;
}

.trust-cta-note {
  font-size: 0.75rem;
  color: var(--ink-soft, #6B5A3E);
  margin-top: 0.5rem;
  margin-bottom: 0;
  line-height: 1.4;
  text-align: center;
}

/* Hero card trust badge enhancements */
.listing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.verified-badge-sidebar, .claimed-badge, .tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill, 999px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 1px solid transparent;
}

.verified-badge-sidebar {
  background: var(--trust-tint, #e6f4ec);
  color: var(--trust, #1a6b3e);
  border-color: var(--trust, #1a6b3e);
}

.claimed-badge {
  background: var(--primary-tint, #fbecd5);
  color: var(--primary-deep, #7a1120);
  border-color: var(--primary, #A6192E);
}

.tier-badge-free {
  background: var(--paper-2, #f7f1e3);
  color: var(--ink-soft, #6B5A3E);
  border-color: var(--line, #e2d8c8);
}

/* Compact trust chip for grid views */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.trust-chip-claimed {
  background: var(--trust-tint, #e6f4ec);
  color: var(--trust, #1a6b3e);
}

.trust-chip-claimed::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--trust, #1a6b3e);
}

@media (max-width: 640px) {
  .trust-widget {
    padding: 1rem;
  }
  
  .trust-score {
    width: 60px;
    height: 60px;
  }
  
  .trust-score-num {
    font-size: 1.3rem;
  }
}