/* Website detail v3 — mockup 3 Haz 2026 birebir */
.wfd {
  --wfd-navy: #1e3a5f;
  --wfd-blue: #2563eb;
  --wfd-sky: #e8f4fc;
  --wfd-card: #ffffff;
  --wfd-border: #e8eef4;
  --wfd-muted: #64748b;
  --wfd-shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
  --wfd-radius: 20px;
  background: #f4f8fc;
  padding-bottom: 2rem;
}

.wfd-wrap {
  width: min(1140px, 94%);
  margin: 0 auto;
}

/* Breadcrumb */
.wfd-crumb {
  padding: 1rem 0 0.5rem;
  font-size: 0.88rem;
  color: var(--wfd-muted);
  font-weight: 600;
}

.wfd-crumb a {
  color: var(--wfd-blue);
  text-decoration: none;
}

.wfd-crumb a:hover {
  text-decoration: underline;
}

.wfd-crumb span {
  color: #94a3b8;
  margin: 0 0.35rem;
}

/* Hero card */
.wfd-hero {
  position: relative;
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 50%, #e0f2fe 100%);
  border-radius: var(--wfd-radius);
  box-shadow: var(--wfd-shadow);
  border: 1px solid var(--wfd-border);
  padding: 2rem 2rem 2rem 2.25rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 42%);
  gap: 1rem;
  align-items: center;
}

.wfd-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: 25%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
  pointer-events: none;
}

.wfd-hero-body {
  position: relative;
  z-index: 2;
}

.wfd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.wfd-badge-gold {
  background: linear-gradient(135deg, #fde047, #f59e0b);
  color: #422006;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wfd-badge-gold.silver {
  background: linear-gradient(135deg, #e2e8f0, #94a3b8);
  color: #1e293b;
}

.wfd-badge-gold.platinum {
  background: linear-gradient(135deg, #e0e7ff, #6366f1);
  color: #1e1b4b;
}

.wfd-badge-gold.bronze {
  background: linear-gradient(135deg, #fcd34d, #b45309);
}

.wfd-verify {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wfd-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.wfd-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--wfd-navy);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.wfd-hero-desc {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 1.1rem;
}

.wfd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.wfd-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.wfd-tag.t0 { background: #3b82f6; }
.wfd-tag.t1 { background: #8b5cf6; }
.wfd-tag.t2 { background: #22c55e; }
.wfd-tag.t3 { background: #eab308; color: #422006; }
.wfd-tag.t4 { background: #f43f5e; }
.wfd-tag.t5 { background: #06b6d4; }

.wfd-btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wfd-blue);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}

.wfd-btn-visit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.wfd-btn-visit svg {
  width: 16px;
  height: 16px;
}

.wfd-hero-art {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  pointer-events: none;
  line-height: 0;
}

.wfd-hero-art img {
  display: block;
  width: auto;
  max-width: 546px;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
}

/* Metrics row */
.wfd-metrics {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.wfd-card {
  background: var(--wfd-card);
  border-radius: var(--wfd-radius);
  border: 1px solid var(--wfd-border);
  box-shadow: var(--wfd-shadow);
  padding: 1.5rem 1.65rem;
}

.wfd-card h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--wfd-navy);
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.wfd-card h2 .wfd-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.wfd-safety-inner {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.wfd-ring-wrap {
  text-align: center;
}

.wfd-ring {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  position: relative;
}

.wfd-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.wfd-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--wfd-navy);
}

.wfd-ring-center .num {
  font-size: 1.75rem;
  line-height: 1;
}

.wfd-ring-center .of {
  font-size: 0.85rem;
  color: var(--wfd-muted);
  font-weight: 700;
}

.wfd-ring-label {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.wfd-ring-label.moderate { color: #ea580c; }
.wfd-ring-label.good { color: #16a34a; }
.wfd-ring-label.high { color: #15803d; }
.wfd-ring-label.low { color: #dc2626; }

.wfd-criteria {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wfd-criteria li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.wfd-criteria li:last-child {
  border-bottom: none;
}

.wfd-stars-sm {
  color: #fbbf24;
  font-size: 0.95rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.wfd-stars-sm .dim {
  color: #e2e8f0;
}

.wfd-ai-highlight {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 14px;
}

.wfd-ai-highlight-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 0.1rem;
}

.wfd-ai-highlight-text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: #334155;
  line-height: 1.7;
}

.wfd-side-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wfd-age-card {
  position: relative;
  min-height: 140px;
}

.wfd-age-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.wfd-age-pill {
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.wfd-age-pill.a0 { background: #22c55e; }
.wfd-age-pill.a1 { background: #3b82f6; }
.wfd-age-pill.a2 { background: #8b5cf6; }
.wfd-age-pill.a3 { background: #06b6d4; }

.wfd-age-note {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
  max-width: 85%;
}

.wfd-age-art {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  width: 72px;
  height: auto;
  opacity: 0.95;
}

.wfd-cert-mini {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: center;
}

.wfd-cert-img {
  width: 88px;
  height: auto;
  max-height: 96px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.12));
}

.wfd-cert-img--muted {
  opacity: 0.78;
  filter: grayscale(0.12) drop-shadow(0 4px 10px rgba(15, 23, 42, 0.08));
}

.wfd-cert-seal-lg {
  width: 72px;
  height: auto;
}

.wfd-cert-mini p {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.wfd-link-arrow {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--wfd-blue);
}

.wfd-hero-badge--eligible {
  margin-bottom: 0.5rem;
}

.wfd-badge-eligible {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.wfd-cert-card {
  min-height: 175px;
}

.wfd-cert-state {
  padding: 0.25rem 0;
}

.wfd-cert-state p {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 0.5rem;
}

.wfd-cert-sub {
  font-size: 0.8rem !important;
  color: #64748b !important;
}

.wfd-cert-state--revoked {
  border-left: 3px solid #ef4444;
  padding-left: 0.75rem;
}

.wfd-cert-state--suspended {
  border-left: 3px solid #f59e0b;
  padding-left: 0.75rem;
}

.wfd-cert-state--eligible .wfd-cert-mini {
  margin-top: 0.25rem;
}

.wfd-cert-seal-lg--muted {
  opacity: 0.85;
}

.wfd-cert-state--none {
  border-left: 3px solid #cbd5e1;
  padding-left: 0.75rem;
}

/* AI block */
.wfd-ai {
  margin-bottom: 1.25rem;
}

.wfd-ai-head {
  margin-bottom: 1rem;
}

.wfd-ai-head h2 {
  margin-bottom: 0.25rem;
}

.wfd-ai-engine {
  font-size: 0.8rem;
  color: var(--wfd-muted);
  font-weight: 600;
}

.wfd-ai-engine code {
  background: #f1f5f9;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.78rem;
}

.wfd-ai-engine .on {
  color: #166534;
}

.wfd-ai-body {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 1.5rem;
  align-items: start;
}

.wfd-ai-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.wfd-ai-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.5;
  font-weight: 600;
}

.wfd-ai-list .li-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.wfd-btn-rerun {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border: 2px solid var(--wfd-blue);
  background: #fff;
  color: var(--wfd-blue);
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}

.wfd-btn-rerun:hover {
  background: #eff6ff;
}

.wfd-ai-promo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--wfd-border);
  background: #fffbeb;
  text-align: center;
}

.wfd-ai-promo img {
  width: 100%;
  height: auto;
  display: block;
}

.wfd-ai-promo p {
  padding: 0.75rem 0.85rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #78350f;
  line-height: 1.45;
}

/* Social row */
.wfd-social {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  align-items: start;
}

.wfd-social .wfd-trust-card {
  margin: 0;
}

.wfd-trust-form-wrap {
  margin-bottom: 1rem;
}

.wfd-trust-vote-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.wfd-vote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0.65rem;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wfd-vote-btn span {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.wfd-vote-btn--positive {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25);
}

.wfd-vote-btn--negative {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.22);
}

.wfd-vote-btn:hover {
  transform: translateY(-1px);
}

.wfd-vote-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.wfd-trust-msg {
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.wfd-trust-msg--ok {
  background: #ecfdf5;
  color: #15803d;
}

.wfd-trust-msg--err {
  background: #fef2f2;
  color: #dc2626;
}

.wfd-trust-vote .wfd-checks {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.wfd-trust-vote label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #334155;
  cursor: pointer;
}

.wfd-btn-vote {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  margin-bottom: 1.15rem;
}

.wfd-recommend-bar {
  margin-bottom: 0.85rem;
}

.wfd-recommend-bar .top {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 800;
  color: #166534;
  margin-bottom: 0.35rem;
}

.wfd-bar-track {
  height: 8px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.wfd-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  border-radius: 999px;
}

.wfd-voters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wfd-muted);
}

.wfd-voter-avatars {
  display: flex;
}

.wfd-voter-avatars img,
.wfd-voter-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
  background: #93c5fd;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wfd-voter-avatars :first-child {
  margin-left: 0;
}

.wfd-reviews h2 {
  margin-bottom: 0;
}

.wfd-reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.wfd-btn-leave-comment {
  border: 1px solid var(--wfd-blue);
  background: #fff;
  color: var(--wfd-blue);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

.wfd-btn-leave-comment:hover {
  background: #eff6ff;
}

.wfd-review-body {
  min-width: 0;
}

.wfd-review-text-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wfd-review-meta .stars .on {
  color: #fbbf24;
}

.wfd-review-meta .stars .dim {
  color: #e2e8f0;
}

.wfd-reviews-empty,
.wfd-reviews-loading {
  font-size: 0.88rem;
  color: #64748b;
  padding: 0.5rem 0;
}

.wfd-see-all {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  text-align: left;
}

/* Modals */
body.wfd-modal-open {
  overflow: hidden;
}

.wfd-modal {
  --wfd-navy: #1e3a5f;
  --wfd-blue: #2563eb;
}

.wfd-modal[hidden] {
  display: none !important;
}

.wfd-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.wfd-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.wfd-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: min(90vh, 720px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wfd-modal-dialog--wide {
  width: min(100%, 640px);
}

.wfd-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #e2e8f0;
}

.wfd-modal-head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--wfd-navy);
}

.wfd-modal-close {
  border: none;
  background: #f1f5f9;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: #475569;
}

.wfd-modal-body {
  padding: 1rem 1.15rem 1.25rem;
  overflow-y: auto;
}

.wfd-modal-foot {
  padding: 0.85rem 1.15rem 1.15rem;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.wfd-comment-guest {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.wfd-comment-guest p {
  margin: 0;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.5;
}

.wfd-comment-auth-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.wfd-comment-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.wfd-comment-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--wfd-navy);
}

.wfd-star-picker {
  display: flex;
  gap: 0.25rem;
}

.wfd-star-btn {
  border: none;
  background: none;
  font-size: 1.65rem;
  line-height: 1;
  color: #cbd5e1;
  cursor: pointer;
  padding: 0.1rem;
}

.wfd-star-btn.is-active {
  color: #fbbf24;
}

.wfd-comment-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font-family: inherit;
  font-size: 0.88rem;
  resize: none;
  line-height: 1.45;
}

.wfd-comment-hint {
  margin: 0;
  font-size: 0.75rem;
  color: #94a3b8;
}

.wfd-comment-msg {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
}

.wfd-comment-msg--ok {
  color: #16a34a;
}

.wfd-comment-msg--err {
  color: #dc2626;
}

.wfd-btn-comment-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #2563eb;
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  min-width: 9rem;
}

.wfd-modal-foot .wfd-btn-comment-submit {
  width: 100%;
  min-width: 0;
}

.wfd-btn-comment-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #2563eb;
  background: #fff;
  color: #2563eb;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  min-width: 9rem;
}

.wfd-btn-comment-submit:hover {
  background: #1d4ed8;
}

.wfd-btn-comment-register:hover {
  background: #eff6ff;
}

.wfd-reviews-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.wfd-pager-btn {
  border: 1px solid #cbd5e1;
  background: #fff;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--wfd-blue);
}

.wfd-pager-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.wfd-pager-info {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
}

.wfd-review-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wfd-review-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #f1f5f9;
}

.wfd-review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.wfd-review-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.wfd-review-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--wfd-navy);
  margin-bottom: 0.2rem;
}

.wfd-review-item p {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.45;
}

.wfd-review-meta {
  text-align: right;
  font-size: 0.8rem;
}

.wfd-review-meta .stars {
  color: #fbbf24;
  display: block;
  margin-bottom: 0.2rem;
}

.wfd-review-meta time {
  color: #94a3b8;
  font-weight: 600;
}

.wfd-see-all {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--wfd-blue);
}

/* Why love section */
.wfd-why {
  background: var(--wfd-card);
  border-radius: var(--wfd-radius);
  border: 1px solid var(--wfd-border);
  box-shadow: var(--wfd-shadow);
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.wfd-why h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--wfd-navy);
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.wfd-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}

.wfd-feat {
  padding: 0 0.5rem;
}

.wfd-feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.wfd-feat-icon.c1 { background: #dbeafe; }
.wfd-feat-icon.c2 { background: #dcfce7; }
.wfd-feat-icon.c3 { background: #fef3c7; }
.wfd-feat-icon.c4 { background: #fce7f3; }
.wfd-feat-icon.c5 { background: #e0e7ff; }

.wfd-feat h3 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--wfd-navy);
  margin-bottom: 0.35rem;
}

.wfd-feat p {
  font-size: 0.72rem;
  color: var(--wfd-muted);
  line-height: 1.4;
}

.wfd-page-foot {
  text-align: center;
  font-size: 0.88rem;
  color: var(--wfd-muted);
  font-weight: 600;
  padding: 1rem 0 2rem;
  line-height: 1.5;
}

.wfd-ai-pending {
  color: #64748b;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 960px) {
  .wfd-hero {
    grid-template-columns: 1fr;
  }
  .wfd-hero-art {
    right: 0;
    bottom: 0;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .wfd-hero-art img {
    max-width: min(546px, 72vw);
  }
  .wfd-metrics,
  .wfd-ai-body,
  .wfd-social {
    grid-template-columns: 1fr;
  }
  .wfd-safety-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .wfd-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .wfd-features {
    grid-template-columns: 1fr;
  }
  .wfd-review-item {
    grid-template-columns: 40px 1fr;
  }
  .wfd-review-meta {
    grid-column: 2;
    text-align: left;
  }
}
