/*
Theme Name: UncensoredReviews Editorial Hub
Description: Light silk editorial design system for evidence-led adult platform reviews.
Version: 6.1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,500;8..60,650;8..60,750&display=swap');

:root {
  --ink: #f6eadc;
  --ink-soft: #ead7c3;
  --muted: #d8c4af;
  --line: rgba(246, 220, 190, 0.34);
  --line-strong: rgba(246, 220, 190, 0.52);
  --paper: rgba(36, 18, 20, 0.86);
  --canvas: #14090c;
  --panel: rgba(255, 226, 196, 0.1);
  --glass: rgba(34, 16, 18, 0.82);
  --glass-strong: rgba(44, 20, 22, 0.9);
  --accent: #f0b089;
  --accent-soft: rgba(240, 176, 137, 0.2);
  --teal: #e0c09a;
  --teal-soft: rgba(224, 192, 154, 0.18);
  --amber: #f0c48a;
  --serif: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
  --shell: 1100px;
  --header: 58px;
  --radius: 22px;
  --shadow: 0 22px 56px rgba(0, 0, 0, 0.42);
  --inset: clamp(20px, 3.4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--canvas);
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body,
.fc-body-light,
.fc-body-dark {
  margin: 0;
  min-width: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  background-color: var(--canvas) !important;
  background-image:
    linear-gradient(180deg, rgba(18, 9, 11, 0.62) 0%, rgba(18, 9, 11, 0.78) 40%, rgba(18, 9, 11, 0.88) 100%),
    url("assets/images/atmosphere/bg-velvet.jpg") !important;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
::selection { background: rgba(212, 139, 106, 0.35); color: #1a0e0c; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

h1, h2, h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: -0.03em;
  text-wrap: balance;
  line-height: 1.18;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

h1 { font-size: clamp(1.75rem, 7vw, 4rem); }
h2 { font-size: clamp(1.45rem, 5vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p { margin-top: 0; color: var(--ink-soft); }

.fc-shell {
  width: min(var(--shell), calc(100% - 28px));
  margin-inline: auto;
  min-width: 0;
}

.fc-glass,
.fc-hero-spotlight-card,
.fc-promise-card,
.fc-reality-sidebar,
.fc-service-card,
.fc-guide-card,
.fc-journal-card,
.fc-card,
.fc-archive-header,
.fc-review-rubric,
.fc-review-evidence-deck,
.fc-editorial-note,
.fc-sources,
.fc-article-rail,
.fc-note,
.fc-archive-review-desk,
.fc-archive-standard {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

/* ── Header: glass bar, full width on mobile ────────────────────────── */

.fc-header,
.fc-header-editorial {
  position: sticky;
  top: 8px;
  z-index: 40;
  height: auto !important;
  width: min(var(--shell), calc(100% - 16px)) !important;
  max-width: none !important;
  margin: 8px auto 0 !important;
  background: rgba(16, 16, 20, 0.62) !important;
  border: 1px solid var(--line) !important;
  border-radius: 20px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
}

.fc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: var(--header);
  padding: 0 12px;
}

.fc-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  text-decoration: none;
  color: var(--ink);
}

.fc-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff;
}
.fc-brand-wordmark {
  font: 650 1rem/1 var(--serif);
  letter-spacing: -0.03em;
}

.fc-nav {
  display: none;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.fc-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 560;
}

.fc-nav a:hover,
.fc-nav a[aria-current="page"],
.fc-nav a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.fc-language-switcher {
  position: relative;
  display: inline-block;
}

.fc-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.fc-geo-search-trigger,
.fc-lang-toggle,
.fc-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  min-width: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: inherit !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fc-lang-toggle:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

.fc-lang-arrow {
  transition: transform 0.2s ease;
}

.fc-language-switcher.is-open .fc-lang-arrow {
  transform: rotate(180deg);
}

.fc-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  padding: 8px;
  background: #181114;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  z-index: 1000;
  flex-direction: column;
  gap: 4px;
}

.fc-language-switcher.is-open .fc-lang-dropdown {
  display: flex;
}

.fc-language {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s ease;
}

.fc-language:hover {
  background: rgba(255, 255, 255, 0.08);
}

.fc-language.is-active {
  background: rgba(244, 63, 94, 0.15);
  color: #f43f5e !important;
  font-weight: 700;
}

.fc-lang-check {
  font-size: 12px;
  color: #f43f5e;
}

/* Mobile language navigation */
.fc-nav-mobile-lang {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.fc-nav-mobile-lang-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 700;
}

.fc-nav-mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.fc-mobile-lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.fc-mobile-lang-opt.is-active {
  background: #f43f5e;
  color: #fff !important;
}

@media (min-width: 768px) {
  .fc-nav-mobile-lang {
    display: none;
  }
}

.fc-geo-label { display: none; }
.fc-menu-button {
  display: inline-flex !important;
  flex-shrink: 0;
  width: 40px;
  padding: 0 !important;
  background: #e7d3bf !important;
  color: #2a1612 !important;
  border-color: #e7d3bf !important;
}
.fc-menu-button span { display: none; }
.fc-menu-button b { font-size: 16px; font-weight: 700; }
.fc-header-actions .fc-geo-search-trigger { display: none; }

@media (max-width: 767px) {
  body,
  .fc-body-light,
  .fc-body-dark { background-attachment: scroll !important; }
  .fc-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(16, 16, 20, 0.92);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(28px);
  }
  .fc-nav.is-open { display: flex; }
  .fc-nav a { min-height: 48px; border-radius: 12px; }
}

/* ── Home ───────────────────────────────────────────────────────────── */

.fc-hero-editorial {
  position: relative;
  padding: 0 0 16px;
  overflow: hidden;
}

.fc-hero-stage {
  position: relative;
  margin: 16px auto 0;
  width: min(var(--shell), calc(100% - 16px));
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(18, 9, 11, 0.45);
}

.fc-hero-stage img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.fc-hero-stage-shade { display: none; }

.fc-hero-stage .fc-shell {
  position: relative;
  padding: 18px 0 22px;
}

.fc-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

.fc-editorial-badge,
.fc-editorial-kicker,
.fc-spotlight-kicker,
.fc-journal-kicker,
.fc-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fc-hero-lead-title { margin-bottom: 14px; }
.fc-hero-lead-subtitle { font-size: 1.05rem; max-width: 40rem; color: var(--ink-soft); }
.fc-hero-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 4px 0 2px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #e7d3bf;
  color: #2a1612;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.fc-hero-primary-action:hover { background: #fff0df; }
.fc-hero-lead-meta { display: grid; gap: 14px; margin-top: 8px; }
.fc-hero-author { display: flex; align-items: center; gap: 10px; }
.fc-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
}
.fc-hero-author strong { display: block; color: var(--ink); font-size: 0.95rem; }
.fc-hero-author span { color: var(--muted); font-size: 13px; }
.fc-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.fc-tag {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink-soft);
  font-size: 13px;
}

.fc-hero-spotlight-card,
.fc-promise-card,
.fc-reality-sidebar,
.fc-service-card,
.fc-guide-card,
.fc-journal-card,
.fc-card,
.fc-glass,
.fc-archive-header,
.fc-review-rubric,
.fc-editorial-note,
.fc-sources,
.fc-article-rail,
.fc-archive-review-desk,
.fc-archive-standard,
.fc-note { padding: var(--inset); }

.fc-hero-spotlight-card {
  background: rgba(31, 14, 16, 0.78);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}
.fc-hero-spotlight-card h3 { font-size: 1.12rem; line-height: 1.28; }
.fc-spotlight-desc { font-size: 0.95rem; line-height: 1.55; }

.fc-card-cover {
  display: block;
  margin: calc(var(--inset) * -1) calc(var(--inset) * -1) 16px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.fc-card-cover img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  filter: saturate(0.9);
}

.fc-spotlight-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
}

.fc-metric-val { display: block; font: 650 1.5rem var(--serif); color: var(--ink); }
.fc-gold-text {
  color: #fff;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.fc-metric-lbl { font-size: 12px; color: var(--muted); }
.fc-spotlight-desc { color: var(--ink-soft); }

.fc-spotlight-btn,
.fc-review-card-offer,
.fc-guide-link,
.fc-service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  background: #e7d3bf;
  color: #2a1612;
  text-decoration: none;
  font-weight: 700;
}

.fc-section-audits,
.fc-section-journal,
.fc-section-guides,
.fc-section-promise,
.fc-section-tools { padding: 28px 0; }

.fc-section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.fc-audits-layout { display: grid; grid-template-columns: 1fr; gap: 16px; }
.fc-article-layout { display: block; max-width: 860px; margin-inline: auto; }
.fc-reviews-main, .fc-reality-sidebar, .fc-article-layout > article { min-width: 0; }

.fc-grid,
.fc-recent-grid,
.fc-guides-grid,
.fc-journal-grid,
.fc-grid-three,
.fc-grid-services,
.fc-grid-news,
.fc-grid-review-library {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.fc-service-card,
.fc-guide-card,
.fc-journal-card,
.fc-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.fc-service-card h3,
.fc-guide-card h3,
.fc-journal-title { margin: 0 0 8px; color: var(--ink); }
.fc-service-card-index,
.fc-guide-number {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.fc-review-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: calc(var(--inset) * -1) calc(var(--inset) * -1) 16px;
  padding: 12px var(--inset);
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
}

.fc-card-media { margin: 0 0 12px; border-radius: 16px; overflow: hidden; }
.fc-card-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.fc-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.fc-card-stamp { color: var(--teal); font-size: 12px; font-weight: 700; }
.fc-text-link { margin-top: auto; color: var(--ink); font-weight: 700; text-decoration: none; }
.fc-review-card-coverage ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 0; padding: 0; list-style: none; }
.fc-review-card-coverage li {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  color: var(--ink-soft);
}

.fc-view-all-link { font-weight: 700; color: var(--ink); text-decoration: none; }

/* ── Article / archive ──────────────────────────────────────────────── */

.fc-page, .fc-article { padding: 28px 0 88px; }
.fc-article-header h1 { margin-bottom: 10px; }
.fc-byline { color: var(--muted); font-size: 14px; }
.fc-prose, .fc-article article {
  font-size: 1.0625rem;
  line-height: 1.75;
}
.fc-prose p, .fc-article p { color: var(--ink-soft); }
.fc-prose a { color: var(--accent); }
.fc-prose table { display: block; overflow-x: auto; }
.fc-featured-hero-image {
  width: 100%;
  border-radius: var(--radius);
  margin: 0 0 18px;
}

.fc-review-evidence-deck { padding: 20px; }
.fc-review-evidence-deck ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fc-review-evidence-deck li {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}

/* The evidence deck ships a definition list. Without a reset the browser
   indents every value by 40px and the deck reads as broken copy. */
.fc-review-evidence-deck dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.fc-review-evidence-deck dl > div { min-width: 0; }
.fc-review-evidence-deck dt {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fc-review-evidence-deck dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 650;
}

/* The rail CTA ships <small>, <strong> and an arrow <span>. They are inline
   elements, so without an explicit layout the label and the headline collide
   on one line. */
.fc-rail-cta-card,
.fc-article-rail a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
  padding: 16px;
  background: #e7d3bf;
  color: #2a1612;
  border-radius: var(--radius);
  text-decoration: none;
}
.fc-rail-cta-card small,
.fc-article-rail a small {
  grid-column: 1;
  display: block;
  color: rgba(0, 0, 0, 0.55);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fc-rail-cta-card strong,
.fc-article-rail a strong {
  grid-column: 1;
  display: block;
  margin-top: 4px;
  line-height: 1.3;
}
.fc-rail-cta-card > span,
.fc-article-rail a > span {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 20px;
  line-height: 1;
}

.fc-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 12px;
}
.fc-filter-bar button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.fc-footer {
  padding: 36px 0;
  background: rgba(0, 0, 0, 0.45);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  backdrop-filter: blur(20px);
}
.fc-footer p, .fc-footer-disclosure { color: var(--muted); }
.fc-footer .fc-brand-wordmark { color: var(--ink); }
.fc-footer-grid { display: grid; gap: 20px; }
.fc-footer nav { display: grid; gap: 8px; }
.fc-footer nav a { color: var(--ink-soft); text-decoration: none; min-height: 36px; display: inline-flex; align-items: center; }

@keyframes fc-taptic-vibe {
  0%, 72%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  74% {
    transform: translate3d(-1.5px, 0.5px, 0) scale(1.02);
  }
  76% {
    transform: translate3d(1.5px, -0.5px, 0) scale(1.03);
  }
  78% {
    transform: translate3d(-1px, -0.5px, 0) scale(1.02);
  }
  80% {
    transform: translate3d(1px, 0.5px, 0) scale(1.02);
  }
  82% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  86% {
    transform: translate3d(-1.5px, 0.5px, 0) scale(1.02);
  }
  88% {
    transform: translate3d(1.5px, -0.5px, 0) scale(1.03);
  }
  90% {
    transform: translate3d(-1px, 0, 0) scale(1.02);
  }
  92% {
    transform: translate3d(0.5px, 0, 0) scale(1);
  }
  94% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.fc-floating-cta {
  position: fixed;
  z-index: 30;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: auto;
  max-width: 520px;
  margin-inline: auto;
  pointer-events: auto;
}
.fc-floating-cta-card {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(22, 12, 16, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  padding: 8px 12px;
}
.fc-floating-cta-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  padding: 4px 6px;
}
.fc-floating-cta-offer-single {
  color: #fff;
}
.fc-floating-cta-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.fc-floating-cta-kicker {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.fc-floating-cta-action,
.fp-floating-cta-button,
.fc-floating-cta-button {
  background: linear-gradient(135deg, #ff7a36 0%, #ea580c 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  padding: 8px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: fc-taptic-vibe 4.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.fc-floating-cta-action:hover,
.fp-floating-cta-button:hover,
.fc-floating-cta-button:hover {
  background: linear-gradient(135deg, #ff8a4a 0%, #f97316 100%);
  color: #ffffff !important;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation-play-state: paused;
}
.fc-floating-cta-dual .fc-floating-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.fc-floating-cta-vs {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

body { padding-bottom: 88px; }

@media (min-width: 768px) {
  body { font-size: 16px; padding-bottom: 28px; }
  .fc-header,
  .fc-header-editorial {
    top: 14px;
    width: min(960px, calc(100% - 32px)) !important;
    border-radius: 999px !important;
  }
  .fc-nav { display: flex; }
  .fc-menu-button { display: none !important; }
  .fc-header-actions .fc-lang-toggle,
  .fc-header-actions .fc-geo-search-trigger { display: inline-flex; }
  .fc-geo-label { display: inline; }
  .fc-hero-stage { min-height: 560px; }
  .fc-hero-stage img {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 560px;
  }
  .fc-hero-stage-shade {
    display: block;
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(18, 9, 11, 0.18) 0%, rgba(18, 9, 11, 0.42) 45%, rgba(18, 9, 11, 0.82) 100%),
      linear-gradient(90deg, rgba(18, 9, 11, 0.45) 0%, transparent 55%);
  }
  .fc-hero-stage .fc-shell {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 28px 0 32px;
  }
  .fc-hero-grid { grid-template-columns: minmax(0, 1fr) 300px; align-items: end; }
  .fc-recent-grid,
  .fc-guides-grid,
  .fc-journal-grid,
  .fc-grid-review-library { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fc-audits-layout { grid-template-columns: minmax(0, 1fr) 280px; }
  .fc-footer-grid { grid-template-columns: 1.4fr 1fr; }
  .fc-floating-cta { left: auto; right: 20px; bottom: 20px; width: min(380px, calc(100vw - 40px)); }
}

@media (min-width: 1024px) {
  .fc-guides-grid,
  .fc-journal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ── Full-surface card anchors ──────────────────────────────────────── */

/* A review card is rendered as a single <a> wrapping the whole surface, so it
   needs the card's own affordances — nothing else was giving it a hover or
   focus state. */
.fc-grid-review-library > a.fc-card-review,
a.fc-card-review {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.fc-grid-review-library > a.fc-card-review:hover,
a.fc-card-review:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.fc-grid-review-library > a.fc-card-review:focus-visible,
a.fc-card-review:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.fc-service-card:hover,
.fc-guide-card:hover,
.fc-journal-card:hover,
.fc-card:hover { border-color: var(--line-strong); }

a.fc-card-review > p { margin-bottom: 14px; }
a.fc-card-review .fc-text-link { margin-top: auto; }

/* Non-review cards keep their semantic per-element links. The heading anchor
   stretches an invisible layer over the card so the whole surface is
   clickable without nesting anchors inside one another. */
.fc-card,
.fc-service-card,
.fc-guide-card,
.fc-journal-card { position: relative; }

.fc-card h2 a::after,
.fc-card h3 a::after,
.fc-journal-title a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.fc-card h2 a,
.fc-card h3 a,
.fc-journal-title a { text-decoration: none; }

/* Keep the media link and the text CTA above that layer so their own hover
   states still work. */
.fc-card .fc-card-media,
.fc-card a.fc-text-link,
.fc-journal-card .fc-card-media { position: relative; z-index: 1; }

/* ── Components that shipped without declarations ───────────────────── */

/* These wrappers carry inline children only. Without an explicit layout the
   label and the headline ran together on one line — most visibly the 404
   actions, which rendered as "Back homeBrowse all reviews". */

.fc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.fc-button-primary {
  background: #e7d3bf;
  border-color: #e7d3bf;
  color: #2a1612;
}

.fc-button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.fc-button-secondary:hover { border-color: var(--accent); }

.fc-page-header {
  display: grid;
  gap: 10px;
  padding: 28px 0;
}

.fc-archive-header,
.fc-page-header.fc-archive-header {
  padding: var(--inset);
  margin-bottom: 24px;
}

.fc-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.fc-article-deck {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.fc-journal-card-body { display: grid; }
.fc-journal-card-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fc-journal-snippet { margin: 0; }

.fc-spotlight-header,
.fc-reality-sidebar-head { display: grid; gap: 2px; }
.fc-reality-sidebar-head > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fc-reality-sidebar-head h3 { margin: 0 0 12px; }

.fc-metric-item { display: grid; gap: 2px; min-width: 0; }

.fc-top-list { display: grid; gap: 12px; }
.fc-top-list p { margin: 0; }

.fc-promise-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}
.fc-promise-icon { font-size: 28px; line-height: 1; }
.fc-promise-content h3 { margin: 0 0 8px; }
.fc-promise-content p { margin: 0; }

.fc-creator-terms { display: grid; gap: 10px; }
.fc-affiliate-label {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* The rail stacks two CTAs on a service review. */
.fc-article-rail { display: grid; gap: 12px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Member Desk 2.0: contrast, locale wrapping, compare strip ───────── */

.fc-hero-lead-title,
.fc-service-card h3,
.fc-guide-card h3,
.fc-journal-title,
.fc-archive-header h1 {
  padding-inline: 0;
  overflow-wrap: anywhere;
}

.fc-hero-spotlight-card h3,
.fc-archive-review-desk h2,
.fc-promise-content h3 {
  overflow-wrap: anywhere;
}

.fc-service-card p,
.fc-guide-card p,
.fc-journal-snippet,
.fc-archive-header p,
.fc-spotlight-desc {
  color: var(--ink-soft);
}

.fc-footer p,
.fc-footer-disclosure,
.fc-byline,
.fc-journal-card-footer,
.fc-metric-lbl {
  color: var(--muted);
}

.fc-review-card-coverage li,
.fc-tag,
.fc-filter-bar button,
.fc-mobile-lang-opt {
  padding: 7px 12px;
  line-height: 1.35;
}

.fc-member-desk {
  display: grid;
  gap: 18px;
  padding: var(--inset);
}

.fc-member-desk-head {
  display: grid;
  gap: 8px;
}

.fc-check-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.fc-check-chip {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--ink);
}

.fc-check-chip b {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.fc-check-chip span {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.fc-compare-desk {
  display: grid;
  gap: 14px;
}

.fc-compare-table {
  display: grid;
  gap: 10px;
}

.fc-compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(5, minmax(0, 0.8fr));
  gap: 10px;
  align-items: stretch;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: inherit;
}

.fc-compare-row strong {
  display: block;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.fc-compare-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.fc-compare-mark {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 8px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  overflow-wrap: anywhere;
}

.fc-start-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fc-start-step {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.fc-start-step b {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.fc-start-step p {
  margin: 0;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .fc-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .fc-check-strip,
  .fc-start-path {
    grid-template-columns: 1fr 1fr;
  }
  .fc-compare-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .fc-journal-grid {
    grid-template-columns: 1fr !important;
  }
  .fc-header-inner,
  .fc-hero-stage .fc-shell,
  .fc-section-header {
    padding-inline: 4px;
  }
}

@media (max-width: 480px) {
  .fc-spotlight-metrics {
    grid-template-columns: 1fr !important;
  }
  .fc-check-strip,
  .fc-start-path {
    grid-template-columns: 1fr;
  }
  .fc-nav a {
    padding-inline: 14px;
  }
}

/* ── Toy reviews hub & Lovense styling ─────────────────────────────────── */
.fc-toys-hub {
  padding-block: 28px 72px;
  background: radial-gradient(ellipse 80% 40% at 50% -10%, rgba(255, 45, 117, 0.12), transparent 70%);
}
.fc-toys-byline { margin: 0 0 10px; color: #ff75a0; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.fc-toys-partner-block {
  margin: 40px 0 20px;
}
.fc-toys-article-block {
  margin: 40px 0 28px;
}
.fc-toys-partner-card {
  padding: 28px 32px;
  border: 1px solid rgba(255, 45, 117, 0.45);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(88, 12, 40, 0.72), rgba(30, 5, 15, 0.88));
  box-shadow: 0 16px 40px rgba(255, 45, 117, 0.12), inset 0 1px 0 rgba(255, 182, 206, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.fc-toys-partner-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2d75, #e11d48);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255, 45, 117, 0.35);
}
.fc-toys-partner-card h2,
.fc-toys-partner-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
}
.fc-toys-partner-card p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #ffe4ec;
  max-width: 720px;
}
.fc-toys-partner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fc-btn-lovense {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2d75, #e11d48);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 45, 117, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.fc-btn-lovense:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 12px 28px rgba(255, 45, 117, 0.6);
  color: #fff;
}
.fc-toys-bench {
  padding: var(--inset);
  margin: 0 0 28px;
  border: 1px solid rgba(255, 45, 117, 0.25);
  background: rgba(30, 8, 18, 0.65);
}
.fc-toys-bench h2 { margin: 0 0 16px; font-size: 1.35rem; color: #ffb6ce; }
.fc-toys-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.fc-toys-metric {
  padding: 14px 16px;
  border: 1px solid rgba(255, 45, 117, 0.22);
  border-radius: 16px;
  background: rgba(255, 45, 117, 0.06);
}
.fc-toys-metric strong {
  display: block;
  font: 700 1.35rem var(--serif);
  color: #ff75a0;
}
.fc-toys-metric span { color: #ffe4ec; font-size: 13px; }
.fc-toys-cons h3 { margin: 0 0 8px; font-size: 1.05rem; color: #ffb6ce; }
.fc-toys-cons p { margin: 0 0 8px; font-size: 14px; color: #ffe4ec; }
.fc-toys-cons ul { margin: 0; padding-left: 18px; color: #ffe4ec; }
.fc-toys-cons li { margin-bottom: 6px; }
.fc-toys-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.fc-toys-empty { color: var(--muted); }
.fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2d75, #e11d48);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 45, 117, 0.3);
}
.fc-btn:hover { filter: brightness(1.1); }
.fc-winner-card {
  margin: 24px 0;
  padding: var(--inset);
  border: 1px solid rgba(255, 45, 117, 0.4);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 45, 117, 0.14), rgba(45, 8, 22, 0.7));
  box-shadow: 0 8px 24px rgba(255, 45, 117, 0.1);
}
.fc-winner-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2d75, #e11d48);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fc-compare-desk,
.fc-compare-table,
.matrix-table {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.fc-compare-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 15px; }
.fc-compare-table th,
.fc-compare-table td { padding: 12px 14px; border-bottom: 1px solid rgba(255, 45, 117, 0.2); text-align: left; vertical-align: top; }
.fc-compare-table th { color: #ffb6ce; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.fc-faq-block {
  display: grid;
  gap: 12px;
  margin: 16px 0 28px;
}
.fc-faq-item {
  padding: 16px 18px;
  border: 1px solid rgba(255, 45, 117, 0.22);
  border-radius: 14px;
  background: rgba(255, 45, 117, 0.05);
}
.fc-faq-item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: #ffb6ce;
}

/* ── Silk Editorial v6: light, intimate and evidence-led ─────────────── */
:root {
  --ink: #4d2834;
  --ink-soft: #6d5960;
  --muted: #8d777d;
  --line: rgba(91, 50, 62, 0.15);
  --line-strong: rgba(91, 50, 62, 0.3);
  --paper: #fffdf9;
  --canvas: #faf5ef;
  --panel: #fff8f3;
  --glass: rgba(255, 253, 249, 0.92);
  --glass-strong: #fffdf9;
  --accent: #b6506b;
  --accent-soft: rgba(182, 80, 107, 0.11);
  --teal: #557c78;
  --teal-soft: rgba(85, 124, 120, 0.12);
  --amber: #a47742;
  --shadow: 0 18px 48px rgba(88, 47, 57, 0.1);
}

html { color-scheme: light; background: var(--canvas); }
body,
.fc-body-light,
.fc-body-dark {
  color: var(--ink);
  background: var(--canvas) !important;
  background-image:
    radial-gradient(circle at 92% 4%, rgba(235, 183, 181, 0.22), transparent 29rem),
    linear-gradient(180deg, #fffaf5 0, #faf5ef 42rem, #f8f1ea 100%) !important;
  background-attachment: scroll;
  padding-bottom: 0;
}

p { color: var(--ink-soft); }
::selection { background: #efcfd5; color: var(--ink); }

.fc-glass,
.fc-hero-spotlight-card,
.fc-promise-card,
.fc-reality-sidebar,
.fc-service-card,
.fc-guide-card,
.fc-journal-card,
.fc-card,
.fc-archive-header,
.fc-review-rubric,
.fc-review-evidence-deck,
.fc-editorial-note,
.fc-sources,
.fc-article-rail,
.fc-note,
.fc-archive-review-desk,
.fc-archive-standard {
  background: var(--glass);
  border-color: var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
}

.fc-header,
.fc-header-editorial {
  background: rgba(255, 251, 246, 0.9) !important;
  border-color: var(--line) !important;
  box-shadow: 0 12px 34px rgba(88, 47, 57, 0.09) !important;
}
.fc-nav a { color: var(--ink-soft); }
.fc-nav a:hover,
.fc-nav a[aria-current="page"],
.fc-nav a.is-active { background: var(--accent-soft); color: var(--accent); }
.fc-geo-search-trigger,
.fc-menu-button { color: var(--ink); }

.fc-hero-stage {
  min-height: 610px;
  background: #f6e7de;
  border-color: rgba(91, 50, 62, 0.12);
  box-shadow: 0 28px 72px rgba(88, 47, 57, 0.12);
}
.fc-hero-stage img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}
.fc-hero-stage-shade {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(252, 245, 238, 0.98) 0%, rgba(252, 245, 238, 0.94) 32%, rgba(252, 245, 238, 0.45) 53%, transparent 72%);
}
.fc-hero-stage .fc-shell {
  min-height: 610px;
  display: flex;
  align-items: center;
  padding-block: 56px;
}
.fc-hero-grid { grid-template-columns: minmax(0, 590px); align-items: center; }
.fc-hero-lead-title { max-width: 13ch; font-size: clamp(2.65rem, 5.5vw, 5.25rem); line-height: 0.99; }
.fc-hero-lead-subtitle { max-width: 36rem; font-size: 1.08rem; }
.fc-editorial-badge {
  padding: 7px 12px;
  border: 1px solid rgba(182, 80, 107, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.66);
}
.fc-hero-primary-action,
.fc-spotlight-btn,
.fc-review-card-offer,
.fc-guide-link,
.fc-service-card-link {
  background: var(--ink);
  color: #fffaf6;
}
.fc-hero-primary-action:hover { background: var(--accent); }
.fc-author-avatar { background: var(--accent-soft); color: var(--accent); }
.fc-hero-author strong { color: var(--ink); }
.fc-tag { background: rgba(255, 253, 249, 0.65); color: var(--ink-soft); }

.fc-section-audits { padding-top: 34px; }
.fc-member-desk { background: #fffdf9; }
.fc-member-desk-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.fc-desk-step { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff9f5; }
.fc-step-num { color: var(--accent); font: 700 0.78rem var(--sans); letter-spacing: 0.09em; }
.fc-desk-step h4,
.fc-desk-step h3 { margin: 8px 0 6px; color: var(--ink); font-size: 1.15rem; font-weight: 700; }
.fc-desk-step p { margin: 0; font-size: 0.93rem; }

.fc-editorial-bar { margin: 22px 0 0; padding: 30px 0; background: #5a303c; }
.fc-editorial-bar p,
.fc-editorial-pillars span { color: #f9e9e6; }
.fc-editorial-pillars b { color: #efb7b7; }
.fc-editorial-bar-inner { display: grid; gap: 22px; }
.fc-editorial-pillars { display: flex; flex-wrap: wrap; gap: 12px 26px; }

.fc-section-reviews { padding: 70px 0; }
.fc-section-head-bar { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.fc-filter-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 14px; }
.fc-tab-btn {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf9;
  color: var(--ink-soft);
}
.fc-tab-btn.active,
.fc-tab-btn:hover { background: var(--ink); color: #fff; }
.fc-service-grid-v2 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.fc-service-card-v2 {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffdf9;
  box-shadow: 0 12px 34px rgba(88, 47, 57, 0.07);
}
.fc-service-card-v2 > :not(.fc-service-card-cover) { margin-inline: 22px; }
.fc-service-card-cover { display: block; overflow: hidden; aspect-ratio: 3 / 2; }
.fc-service-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.fc-service-card-v2:hover .fc-service-card-cover img { transform: scale(1.025); }
.fc-service-card-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: 18px; }
.fc-category-badge,
.fc-source-badge { color: var(--accent); font-size: 0.7rem; font-weight: 750; letter-spacing: 0.05em; text-transform: uppercase; }
.fc-source-badge { color: var(--teal); text-align: right; }
.fc-service-card-v2 h3 { margin-top: 12px; margin-bottom: 8px; }
.fc-service-excerpt { font-size: 0.92rem; }
.fc-service-meta-row { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 0.76rem; }
.fc-service-actions { margin-top: 18px; margin-bottom: 22px; }
.fc-btn-read-review { color: var(--ink); font-weight: 750; text-decoration: none; }

.fc-platform-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffdf9;
  box-shadow: var(--shadow);
}
.fc-platform-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.fc-platform-table th,
.fc-platform-table td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: left; font-size: 0.86rem; }
.fc-platform-table thead th { color: var(--accent); background: #fff7f3; font-size: 0.69rem; letter-spacing: 0.08em; text-transform: uppercase; }
.fc-platform-table tbody tr:last-child > * { border-bottom: 0; }
.fc-platform-table a { color: var(--ink); font-weight: 750; text-decoration: none; }

.fc-section-recent,
.fc-section-guides,
.fc-section-journal { padding: 64px 0; }
.fc-section-recent { background: rgba(255, 253, 249, 0.6); }
.fc-card-cover img { height: 210px; filter: none; }
.fc-service-card-index,
.fc-guide-number { color: var(--accent); background: var(--accent-soft); }
.fc-journal-card-footer { border-top-color: var(--line); }

.fc-footer { background: #542d39; border-top-color: transparent; color: #fff8f3; }
.fc-footer p,
.fc-footer-disclosure,
.fc-footer nav a { color: #ead7d8; }
.fc-footer .fc-brand-wordmark { color: #fff; }

.fc-page,
.fc-article { padding-top: 46px; }
.fc-article-layout { max-width: 920px; }
.fc-featured-hero { margin: 22px 0 32px; }
.fc-featured-hero-image { max-height: 590px; object-fit: cover; box-shadow: var(--shadow); }
.fc-prose a { color: var(--accent); }
.fc-review-evidence-deck li,
.fc-review-card-coverage li { background: var(--accent-soft); }
.fc-filter-bar button { background: #fffdf9; color: var(--ink); }
.fc-rail-cta-card,
.fc-article-rail a { background: var(--ink); color: #fff8f3; }
.fc-rail-cta-card small,
.fc-article-rail a small { color: rgba(255, 248, 243, 0.68); }

/* Toys keep the same light brand, with a pearl hardware-lab accent. */
.fc-toys-hub {
  padding-block: 34px 82px;
  background:
    linear-gradient(rgba(91, 50, 62, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 50, 62, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 85% 0, rgba(241, 164, 171, 0.25), transparent 31rem);
  background-size: 32px 32px, 32px 32px, auto;
}
.fc-toys-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: center; overflow: hidden; padding: 0; }
.fc-toys-hero-copy { padding: clamp(28px, 5vw, 58px); }
.fc-toys-hero-copy h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); }
.fc-toys-hero-media { height: 100%; min-height: 420px; margin: 0; background: #f4dedc; }
.fc-toys-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.fc-toys-byline { color: var(--accent); }
.fc-toys-bench { margin: 24px 0 34px; border-color: rgba(182, 80, 107, 0.18); background: rgba(255, 253, 249, 0.94); }
.fc-toys-bench h2,
.fc-toys-cons h3 { color: var(--ink); }
.fc-toys-metric { border-color: var(--line); background: #fff6f3; }
.fc-toys-metric strong { color: var(--accent); }
.fc-toys-metric span,
.fc-toys-cons p,
.fc-toys-cons ul { color: var(--ink-soft); }
.fc-toys-grid .fc-card { background: #fffdf9; }
.fc-toys-partner-card { border-color: rgba(182, 80, 107, 0.24); background: linear-gradient(135deg, #fff0ed, #fffaf7); box-shadow: var(--shadow); }
.fc-toys-partner-card h2,
.fc-toys-partner-card h3 { color: var(--ink); }
.fc-toys-partner-card p { color: var(--ink-soft); }
.fc-toys-partner-tag,
.fc-btn-lovense,
.fc-btn { background: var(--accent); box-shadow: none; }
.fc-winner-card { border-color: var(--line); background: #fff4f1; box-shadow: var(--shadow); }
.fc-compare-table th { color: var(--accent); }
.fc-compare-table th,
.fc-compare-table td { border-bottom-color: var(--line); }
.fc-faq-item { border-color: var(--line); background: #fff9f5; }
.fc-faq-item h3 { color: var(--ink); }

@media (max-width: 980px) {
  .fc-service-grid-v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fc-hero-stage-shade { background: linear-gradient(90deg, rgba(252, 245, 238, 0.98) 0%, rgba(252, 245, 238, 0.86) 52%, rgba(252, 245, 238, 0.18) 100%); }
}

@media (max-width: 767px) {
  .fc-header,
  .fc-header-editorial { top: 6px; }
  .fc-hero-stage { min-height: 0; }
  .fc-hero-stage img { position: relative; height: auto; aspect-ratio: 16 / 10; object-position: 69% center; }
  .fc-hero-stage-shade { display: none; }
  .fc-hero-stage .fc-shell { min-height: 0; padding: 28px 8px 34px; }
  .fc-hero-lead-title { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .fc-hero-lead-meta { margin-top: 22px; }
  .fc-member-desk-steps,
  .fc-service-grid-v2,
  .fc-toys-hero { grid-template-columns: 1fr; }
  .fc-section-head-bar { align-items: start; flex-direction: column; }
  .fc-service-card-v2 > :not(.fc-service-card-cover) { margin-inline: 18px; }
  .fc-toys-hero-media { grid-row: 1; min-height: 280px; }
  .fc-toys-hero-copy { padding: 26px 22px 34px; }
  .fc-toys-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fc-toys-partner-card { padding: 24px 20px; }
}
.fc-faq-item p {
  margin: 0;
  font-size: 14px;
  color: #ffe4ec;
  line-height: 1.5;
}
.fc-toys-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(320px, calc(100vw - 32px));
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 45, 117, 0.55);
  border-radius: 999px;
  background: rgba(88, 12, 40, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 45, 117, 0.35);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  text-decoration: none;
  color: #ffe4ec;
}
.fc-toys-float:hover { border-color: #ff75a0; }
.fc-toys-float-media {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 45, 117, 0.5);
}
.fc-toys-float-media img { width: 100%; height: 100%; object-fit: cover; }
.fc-toys-float-copy { display: grid; gap: 2px; min-width: 0; }
.fc-toys-float-copy strong { font-size: 14px; }
.fc-toys-float-copy small { color: #ff75a0; font-size: 12px; }
@media (max-width: 860px) {
  .fc-toys-metrics,
  .fc-toys-grid { grid-template-columns: 1fr; }
  .fc-toys-partner-content { flex-direction: column; align-items: flex-start; }
  .fc-toys-float-copy small { display: none; }
}

/* Defensive fallback for cached HTML from the retired promotional widgets. */
.fc-floating-cta,
.fc-toys-float,
#foxy-float-banner { display: none !important; }
.fc-faq-item p { color: var(--ink-soft); }
.fc-header-actions .fc-geo-search-trigger {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: #fffaf6 !important;
}
@media (max-width: 767px) {
  .fc-nav {
    background: rgba(255, 251, 246, 0.98);
    border-color: var(--line);
  }
}

/* fc_article directory and single */
.fc-archive-articles,
.fc-single-article { padding-top: 4.5rem; padding-bottom: 4rem; }
.article-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.article-breadcrumbs a { color: var(--ink-soft); }
.article-breadcrumbs a:hover { color: var(--accent); text-decoration: underline; }
.article-breadcrumbs .breadcrumb-sep { color: var(--muted); font-size: 0.75rem; }
.fc-article-header .article-category-wrap { margin-bottom: 0.75rem; }
.article-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.article-deck {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
  max-width: 860px;
}
.article-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.article-author-badge { display: flex; align-items: center; gap: 0.85rem; }
.article-author-badge .author-icon { color: var(--accent); display: flex; align-items: center; }
.article-author-badge strong { font-size: 0.9rem; color: var(--ink); display: block; font-weight: 600; }
.meta-sub { display: flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; color: var(--muted); margin-top: 0.2rem; }
.meta-sep { color: var(--muted); }
.mini-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--panel);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-blue { background: var(--accent-soft); border-color: var(--line); color: var(--accent); }
.article-tag-list { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
}
.article-toc-sidebar { position: sticky; top: 96px; max-height: calc(100vh - 120px); overflow-y: auto; }
@media (max-width: 1024px) {
  .article-toc-sidebar { position: static; max-height: none; margin-bottom: 2rem; }
}
.toc-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.toc-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.toc-nav { display: flex; flex-direction: column; gap: 0.35rem; }
.toc-link {
  font-size: 0.84rem;
  color: var(--ink-soft);
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  line-height: 1.45;
  text-decoration: none;
  border-left: 2px solid transparent;
}
.toc-link:hover,
.toc-link.is-active { background: var(--glass); color: var(--accent); border-left-color: var(--accent); }
.toc-cta {
  margin-top: 0.75rem;
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.toc-cta h4 { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.toc-cta p { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 0.85rem; line-height: 1.45; }
.article-content-column { min-width: 0; }
.article-prose { font-size: 1.0625rem; line-height: 1.8; color: var(--ink); }
.article-prose h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  scroll-margin-top: 100px;
  line-height: 1.25;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
}
.article-prose h3 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  scroll-margin-top: 100px;
}
.article-prose p { margin-bottom: 1.4rem; }
.article-prose ul,
.article-prose ol { margin: 1rem 0 1.5rem 1.75rem; }
.article-prose li { margin-bottom: 0.5rem; line-height: 1.65; }
.article-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article-prose a:hover { color: var(--teal); }
.article-prose blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ink-soft);
}
.code-block-wrap {
  border: 1px solid #1e293b;
  border-radius: 12px;
  overflow: hidden;
  background: #0b1c30;
  margin: 2rem 0;
}
.code-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1.25rem;
  background: #060e1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--mono);
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
}
.copy-btn-snippet {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #f1f5f9;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
}
.copy-btn-snippet.copied { background: #15803d; border-color: #22c55e; color: #fff; }
.code-block-wrap pre {
  padding: 1.25rem;
  margin: 0;
  overflow-x: auto;
  background: transparent;
  border: none;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.65;
  color: #e2e8f0;
}
.article-callout {
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  background: var(--glass);
  border-radius: 12px;
  margin: 2rem 0;
}
.article-callout strong { display: block; font-size: 0.96rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--ink); }
.article-callout p { font-size: 0.92rem; margin: 0; line-height: 1.6; color: var(--ink-soft); }
.article-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
table.article-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; text-align: left; }
table.article-table th {
  padding: 0.85rem 1.2rem;
  background: var(--panel);
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
table.article-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}
.article-footer-cta { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 2px solid var(--line); }
.footer-cta-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.footer-cta-card .feature-icon {
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.footer-cta-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.footer-cta-card p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }
@media (max-width: 768px) {
  .footer-cta-card { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}
.articles-grid { display: grid; gap: 2rem; margin-top: 2.5rem; }
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.article-card:hover { border-color: var(--accent); }
.article-card-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.article-card h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ink);
  line-height: 1.25;
}
.article-card h2 a { color: inherit; text-decoration: none; }
.article-card h2 a:hover { color: var(--accent); }
.article-card-summary { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.article-card-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.5rem; }
.article-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.articles-toolkit-banner {
  margin-top: 3.5rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.articles-toolkit-banner .banner-content { display: flex; align-items: center; gap: 1.5rem; max-width: 720px; }
.articles-toolkit-banner .banner-content .feature-icon {
  color: var(--accent);
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.articles-toolkit-banner .banner-content h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.articles-toolkit-banner .banner-content p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.articles-toolkit-banner .banner-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}
.btn-primary { background: #e7d3bf; border-color: #e7d3bf; color: #2a1612; }
.btn-ghost { background: rgba(255, 255, 255, 0.06); color: var(--ink); }
.btn-sm { min-height: 40px; font-size: 0.75rem; padding: 0.45rem 1rem; }
@media (max-width: 768px) {
  .articles-toolkit-banner { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .articles-toolkit-banner .banner-content { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
