/*
Theme Name: Pfannenguru
Theme URI: https://pfannenguru.de
Author: Pfannenguru Team
Description: Premium Affiliate-Theme für Pfannen-Tests und Vergleiche. Optimiert für Conversions und SEO.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: pfannenguru
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --clr-bg:          #f8f7f4;
  --clr-bg-card:     #ffffff;
  --clr-text:        #1c1917;
  --clr-text-muted:  #78716c;
  --clr-heading:     #0f0f0f;
  --clr-accent:      #e85d04;
  --clr-accent-dark: #c44d02;
  --clr-accent-light:#fff0e8;
  --clr-gold:        #f59e0b;
  --clr-green:       #16a34a;
  --clr-border:      #e7e5e0;
  --clr-header-bg:   #111827;
  --clr-header-text: #f9fafb;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Lora', Georgia, serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Layout */
  --max-w-content: 780px;
  --max-w-wide:    1200px;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.13);
  --shadow-accent: 0 4px 20px rgba(232,93,4,.35);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--clr-accent-dark); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  color: var(--clr-heading);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}
.container--narrow {
  max-width: var(--max-w-content);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }

.text-center { text-align: center; }
.text-muted { color: var(--clr-text-muted); }
.text-accent { color: var(--clr-accent); }

section { padding-block: var(--space-3xl); }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-header-bg);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}
.site-logo__icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.site-logo__text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.site-logo__text span { color: var(--clr-gold); }

.main-nav { display: flex; align-items: center; gap: var(--space-xs); }
.main-nav a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all .2s;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.main-nav .nav-cta {
  background: var(--clr-accent);
  color: #fff !important;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
}
.main-nav .nav-cta:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #111827 0%, #1e2a3a 50%, #0f1923 100%);
  padding-block: var(--space-3xl) 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,93,4,.15) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  max-width: 700px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(232,93,4,.15);
  border: 1px solid rgba(232,93,4,.3);
  color: var(--clr-gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}
.hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: var(--clr-gold);
}
.hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  max-width: 550px;
}
.hero__cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--clr-accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--clr-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.btn--secondary {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
}
.btn--secondary:hover {
  border-color: rgba(255,255,255,.7);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.btn--outline {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: transparent;
}
.btn--outline:hover {
  background: var(--clr-accent);
  color: #fff;
}
.btn--amazon {
  background: #ff9900;
  color: #111;
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 1.75rem;
}
.btn--amazon:hover {
  background: #e68900;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,153,0,.4);
}
.btn--amazon::before { content: '🛒 '; }
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
.btn--sm {
  padding: .5rem 1rem;
  font-size: .85rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: all .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,93,4,.2);
}
.card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--clr-bg);
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: var(--space-lg); }
.card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: .8rem;
  color: var(--clr-text-muted);
}
.card__category {
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 100px;
}
.card h3 { margin-bottom: var(--space-sm); font-size: 1.1rem; }
.card h3 a { color: var(--clr-heading); }
.card h3 a:hover { color: var(--clr-accent); }
.card p { color: var(--clr-text-muted); font-size: .9rem; margin-bottom: 0; }

/* ============================================================
   PRODUCT / REVIEW CARDS
   ============================================================ */
.product-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  padding: var(--space-lg);
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: var(--space-lg);
  align-items: start;
  transition: all .25s;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,93,4,.25);
}
.product-card--winner {
  border-color: var(--clr-gold);
  background: linear-gradient(to right, #fffbf0, #ffffff);
}
.product-card__badge {
  position: absolute;
  top: -1px;
  left: var(--space-lg);
  background: var(--clr-gold);
  color: #111;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.product-card__badge--red { background: var(--clr-accent); color: #fff; }
.product-card__badge--green { background: var(--clr-green); color: #fff; }
.product-card__img {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__img img { object-fit: contain; width: 100%; height: 100%; padding: 8px; }
.product-card__content h3 { font-size: 1.1rem; margin-bottom: var(--space-xs); }
.product-card__content h3 a { color: var(--clr-heading); }
.product-card__content h3 a:hover { color: var(--clr-accent); }
.product-card__subtitle { color: var(--clr-text-muted); font-size: .875rem; margin-bottom: var(--space-md); }
.product-card__rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.stars { color: var(--clr-gold); font-size: 1rem; letter-spacing: 2px; }
.rating-score {
  font-weight: 700;
  font-size: .95rem;
  color: var(--clr-heading);
}
.rating-count { font-size: .8rem; color: var(--clr-text-muted); }
.product-card__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.pros li, .cons li {
  font-size: .8rem;
  padding: 2px 0 2px 18px;
  position: relative;
  color: var(--clr-text-muted);
}
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--clr-green); font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }
.pros-label, .cons-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.pros-label { color: var(--clr-green); }
.cons-label { color: #dc2626; }
.product-card__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  min-width: 170px;
}
.product-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-accent);
  font-family: var(--font-serif);
}
.product-card__price small {
  font-size: .75rem;
  color: var(--clr-text-muted);
  font-family: var(--font-sans);
  font-weight: 400;
  display: block;
  text-align: center;
}
.product-card__note {
  font-size: .75rem;
  color: var(--clr-text-muted);
  text-align: center;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-header {
  margin-bottom: var(--space-xl);
}
.section-header--center { text-align: center; }
.section-label {
  display: inline-block;
  color: var(--clr-accent);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--space-sm);
}
.section-header h2 { margin-bottom: var(--space-sm); }
.section-header p { color: var(--clr-text-muted); max-width: 600px; }

/* ============================================================
   CATEGORY CARDS (homepage quick links)
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.cat-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}
.cat-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--clr-accent-light);
}
.cat-card__icon {
  font-size: 2.5rem;
  line-height: 1;
}
.cat-card__title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--clr-heading);
}
.cat-card__sub {
  font-size: .78rem;
  color: var(--clr-text-muted);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-bg-card);
  font-size: .9rem;
}
.comparison-table thead {
  background: var(--clr-header-bg);
  color: #fff;
}
.comparison-table th {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.comparison-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--clr-border);
  vertical-align: middle;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--clr-bg); }
.comparison-table .winner-row { background: #fffbf0; }
.comparison-table .winner-row td:first-child { border-left: 3px solid var(--clr-gold); }

/* ============================================================
   QUICK FACTS BOX (article sidebar)
   ============================================================ */
.quick-facts {
  background: var(--clr-accent-light);
  border: 1px solid rgba(232,93,4,.2);
  border-left: 4px solid var(--clr-accent);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.quick-facts h4 {
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}
.quick-facts ul { display: flex; flex-direction: column; gap: var(--space-xs); }
.quick-facts li {
  font-size: .9rem;
  padding-left: 1.25rem;
  position: relative;
}
.quick-facts li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
}

/* ============================================================
   ARTICLE CONTENT (single.php)
   ============================================================ */
.article-header {
  padding-block: var(--space-2xl) var(--space-xl);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--space-2xl);
}
.article-header .post-category {
  display: inline-block;
  background: var(--clr-accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: var(--space-md);
  text-decoration: none;
}
.article-header h1 { margin-bottom: var(--space-md); }
.article-header .post-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  color: var(--clr-text-muted);
  font-size: .875rem;
}
.post-meta__author { display: flex; align-items: center; gap: var(--space-sm); }
.post-meta__author img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-2xl);
  align-items: start;
}
.article-content {
  min-width: 0;
}
.article-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--clr-border);
}
.article-content h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}
.article-content p { margin-bottom: var(--space-md); }
.article-content ul, .article-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: var(--space-xs); }
.article-content blockquote {
  border-left: 4px solid var(--clr-accent);
  padding: var(--space-md) var(--space-lg);
  background: var(--clr-accent-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  margin-block: var(--space-xl);
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin-block: var(--space-xl);
  font-size: .9rem;
}
.article-content th {
  background: var(--clr-header-bg);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  text-align: left;
}
.article-content td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--clr-border);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.article-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.sidebar-widget {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.sidebar-widget__header {
  background: var(--clr-header-bg);
  color: #fff;
  padding: var(--space-md) var(--space-lg);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sidebar-widget__body { padding: var(--space-lg); }
.toc-list { display: flex; flex-direction: column; gap: 6px; }
.toc-list a {
  font-size: .875rem;
  color: var(--clr-text-muted);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: block;
  transition: all .2s;
}
.toc-list a:hover {
  color: var(--clr-accent);
  background: var(--clr-accent-light);
}

/* ============================================================
   TRUST SIGNALS / STATS
   ============================================================ */
.stats-bar {
  background: var(--clr-header-bg);
  padding: var(--space-xl) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}
.stat__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-gold);
  font-family: var(--font-serif);
  display: block;
}
.stat__label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

/* ============================================================
   NEWSLETTER / CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-header-bg), #1e2a3a);
  color: #fff;
  padding: var(--space-3xl) 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: var(--space-md); }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: var(--space-xl); }
.newsletter-form {
  display: flex;
  max-width: 460px;
  margin-inline: auto;
  gap: var(--space-sm);
}
.newsletter-form input {
  flex: 1;
  padding: .8rem 1.1rem;
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--clr-accent); }
.newsletter-form button {
  background: var(--clr-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: .8rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--clr-accent-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0d1117;
  color: rgba(255,255,255,.6);
  padding: var(--space-3xl) 0 var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: var(--space-md); }
.footer-col h4 {
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: var(--space-md);
  font-family: var(--font-sans);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--clr-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--clr-gold); }
.affiliate-disclaimer {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: var(--space-md) var(--space-lg);
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: .8rem;
  color: var(--clr-text-muted);
  padding: var(--space-md) 0;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--clr-text-muted); }
.breadcrumbs a:hover { color: var(--clr-accent); }
.breadcrumbs .separator { color: var(--clr-border); }

/* ============================================================
   TAGS
   ============================================================ */
.tag {
  display: inline-block;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: .75rem;
  color: var(--clr-text-muted);
  transition: all .2s;
}
.tag:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: var(--clr-accent-light);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  font-size: .875rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: all .2s;
}
.pagination a:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.pagination .current {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}

/* ============================================================
   SCORE BADGE
   ============================================================ */
.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  background: conic-gradient(var(--clr-green) calc(var(--pct, 88) * 1%), #e5e7eb 0);
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--clr-green);
  position: relative;
}
.score-badge::after {
  content: attr(data-score);
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--clr-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 800;
}

/* ============================================================
   NOTICE BOXES
   ============================================================ */
.notice {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm);
  margin-block: var(--space-lg);
  font-size: .9rem;
  border-left: 4px solid;
}
.notice--tip {
  background: #f0fdf4;
  border-color: var(--clr-green);
  color: #166534;
}
.notice--warning {
  background: #fffbeb;
  border-color: var(--clr-gold);
  color: #92400e;
}
.notice--info {
  background: #eff6ff;
  border-color: #3b82f6;
  color: #1e40af;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --space-3xl: 3rem; }
  .main-nav { display: none; flex-direction: column; }
  .main-nav.open { display: flex; position: fixed; inset: 68px 0 0; background: var(--clr-header-bg); padding: var(--space-lg); z-index: 99; overflow-y: auto; }
  .main-nav a { width: 100%; padding: var(--space-md); font-size: 1rem; }
  .nav-toggle { display: flex; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .product-card__img { width: 100%; height: 200px; }
  .product-card__cta { flex-direction: row; justify-content: space-between; }
  .product-card__pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
  .newsletter-form { flex-direction: column; }
  .hero__cta { flex-direction: column; }
  .comparison-table { font-size: .8rem; }
  .comparison-table th, .comparison-table td { padding: var(--space-sm); }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-0  { margin-top: 0; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* WordPress Core Alignment */
.alignleft { float: left; margin-right: var(--space-lg); margin-bottom: var(--space-md); }
.alignright { float: right; margin-left: var(--space-lg); margin-bottom: var(--space-md); }
.aligncenter { margin-inline: auto; display: block; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: var(--clr-text-muted); text-align: center; margin-top: 4px; }
