/*
Theme Name: RegalosParaNinos Blog
Theme URI: https://regalosparaninos.com
Author: RegalosParaNinos
Author URI: https://regalosparaninos.com
Description: Blog de resenas de juguetes con embudo a Amazon afiliados. Diseno calido y editorial, optimizado para conversion.
Version: 1.0.1
Requires at least: 6.0
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: regalosparaninos-blog
Tags: blog, custom-post-types, two-columns, featured-image
*/

/* ============================================
   DESIGN TOKENS — copied from regalosparaniños.com globals.css
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;0,9..144,800;1,9..144,400&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --coral: #E8785E;
  --coral-light: #F09A85;
  --coral-dark: #D4603F;
  --blush: #FFF0EB;
  --blush-deep: #FFE4DB;
  --teal: #2A9D8F;
  --teal-light: #3DB8A9;
  --teal-dark: #1F7A6F;
  --cream: #FFFAF7;
  --warm-white: #FEFCFA;
  --charcoal: #2D2926;
  --charcoal-light: #4A4541;
  --warm-gray: #8B8178;
  --light-gray: #F5F0EC;
  --gold: #E8B94E;
  --lavender: #C4A8E0;
  --sky: #7EC8E3;
  --mint: #A8E0C8;
  --peach: #FFD4B8;
  --font-heading: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(45,41,38,0.06);
  --shadow-md: 0 4px 16px rgba(45,41,38,0.08);
  --shadow-lg: 0 8px 32px rgba(45,41,38,0.12);
  --shadow-xl: 0 16px 48px rgba(45,41,38,0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--charcoal);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================
   HEADER (same as main site)
   ============================================ */
.site-header {
  border-bottom: 1px solid var(--blush-deep);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(254,252,250,0.92);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }

.logo-icon {
  width: 42px; height: 42px;
  background: var(--coral);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transform: rotate(-3deg);
  box-shadow: 0 3px 12px rgba(232,120,94,0.3);
}

.logo-text { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--charcoal); }
.logo-text span { color: var(--coral); }

nav ul { display: flex; list-style: none; gap: 8px; }

nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s ease;
  color: var(--charcoal-light);
  cursor: pointer;
}
nav a:hover { background: var(--blush); color: var(--coral-dark); }
nav a.active { background: var(--coral); color: white; }

/* ============================================
   BLOG INDEX — magazine layout
   ============================================ */
.blog-hero {
  background: linear-gradient(170deg, var(--blush) 0%, var(--cream) 100%);
  padding: 64px 24px 48px;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,120,94,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.blog-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

.blog-hero .section-badge {
  display: inline-block;
  background: white;
  color: var(--coral);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.blog-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 760px;
}

.blog-hero h1 .highlight {
  color: var(--coral);
  position: relative;
  display: inline-block;
}

.blog-hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 8px;
  background: rgba(232,120,94,0.2);
  border-radius: 4px;
  z-index: -1;
}

.blog-hero p {
  font-size: 1.15rem;
  color: var(--warm-gray);
  max-width: 560px;
  line-height: 1.7;
}

/* Filters bar */
.filters-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--blush-deep);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: white;
  border: 1.5px solid var(--blush-deep);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal-light);
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: var(--font-body);
}

.chip:hover {
  border-color: var(--coral-light);
  background: var(--blush);
}

.chip.active {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
  box-shadow: 0 2px 8px rgba(232,120,94,0.3);
}

.search-input {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  padding: 10px 16px 10px 40px;
  background: white url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B8178' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><path d='m21 21-4.3-4.3'/></svg>") no-repeat 14px center;
  border: 1.5px solid var(--blush-deep);
  border-radius: 100px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  margin-left: auto;
  color: var(--charcoal);
}

.search-input:focus {
  outline: none;
  border-color: var(--coral-light);
  box-shadow: 0 0 0 3px rgba(232,120,94,0.12);
}

/* Featured article (magazine hero) */
.blog-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.featured-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.featured-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.featured-card .featured-img {
  height: 360px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--peach) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
  overflow: hidden;
}

.featured-card .featured-img.alt-1 { background: linear-gradient(135deg, var(--mint) 0%, var(--teal-light) 100%); }
.featured-card .featured-img.alt-2 { background: linear-gradient(135deg, var(--lavender) 0%, var(--sky) 100%); }
.featured-card .featured-img.alt-3 { background: linear-gradient(135deg, var(--peach) 0%, var(--gold) 100%); }

.featured-card .featured-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: 20px; left: 20px;
  background: var(--coral);
  color: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(232,120,94,0.4);
}

.featured-body h2 {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.featured-body .excerpt {
  color: var(--warm-gray);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--warm-gray);
}

.featured-meta .dot {
  width: 3px; height: 3px;
  background: var(--warm-gray);
  border-radius: 50%;
}

/* Side column with secondary stories */
.featured-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 18px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
}

.side-card:hover {
  border-color: var(--blush-deep);
  transform: translateX(2px);
  box-shadow: var(--shadow-sm);
}

.side-img {
  width: 96px; height: 96px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
}

.side-img.c1 { background: var(--blush); }
.side-img.c2 { background: var(--mint); }
.side-img.c3 { background: var(--lavender); opacity: 0.7; }
.side-img.c4 { background: var(--peach); }
.side-img.c5 { background: var(--sky); opacity: 0.6; }

.side-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.side-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}

.side-card .meta {
  font-size: 0.78rem;
  color: var(--warm-gray);
}

/* Section heading inside list */
.list-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--blush-deep);
  padding-bottom: 14px;
}

.list-section-head h2 {
  font-size: 1.6rem;
  font-weight: 700;
}

.list-section-head .count {
  font-size: 0.9rem;
  color: var(--warm-gray);
}

/* Grid of reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1.5px solid transparent;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blush-deep);
}

.review-img-wrap {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.review-img-wrap.c1 { background: linear-gradient(135deg, var(--blush) 0%, var(--peach) 100%); }
.review-img-wrap.c2 { background: linear-gradient(135deg, var(--mint) 0%, #d5f0e2 100%); }
.review-img-wrap.c3 { background: linear-gradient(135deg, var(--lavender) 0%, #e0d2f0 100%); }
.review-img-wrap.c4 { background: linear-gradient(135deg, var(--sky) 0%, #b8e0f0 100%); }
.review-img-wrap.c5 { background: linear-gradient(135deg, var(--peach) 0%, #ffdfc0 100%); }
.review-img-wrap.c6 { background: linear-gradient(135deg, var(--gold) 0%, #f0d180 100%); }
.review-img-wrap.c7 { background: linear-gradient(135deg, var(--teal-light) 0%, var(--mint) 100%); }
.review-img-wrap.c8 { background: linear-gradient(135deg, var(--coral-light) 0%, var(--peach) 100%); }

.score-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: white;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

.score-badge .star { color: var(--gold); }
.score-badge .num { color: var(--charcoal); }
.score-badge .max { color: var(--warm-gray); font-size: 0.8em; font-weight: 500; }

.review-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-tag-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.tag-pill {
  display: inline-block;
  background: var(--blush);
  color: var(--coral-dark);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tag-pill.teal { background: rgba(42,157,143,0.12); color: var(--teal-dark); }
.tag-pill.gold { background: rgba(232,185,78,0.18); color: #997218; }
.tag-pill.lavender { background: rgba(196,168,224,0.22); color: #6b4d8c; }

.review-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.review-body .excerpt {
  color: var(--warm-gray);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.review-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--blush-deep);
}

.review-card-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--coral);
}

.review-card-price .from {
  font-size: 0.72rem;
  color: var(--warm-gray);
  font-weight: 500;
  font-family: var(--font-body);
  margin-right: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.review-card-link {
  color: var(--coral);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.review-card-link:hover { gap: 8px; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.page-btn {
  width: 42px;
  height: 42px;
  background: white;
  border: 1.5px solid var(--blush-deep);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--charcoal-light);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover { border-color: var(--coral-light); }
.page-btn.active { background: var(--coral); color: white; border-color: var(--coral); }
.page-btn.next { width: auto; padding: 0 18px; gap: 6px; }

/* ============================================
   REVIEW POST PAGE
   ============================================ */
.review-post {
  background: var(--cream);
}

.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px 0;
  font-size: 0.85rem;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumbs a { color: var(--warm-gray); cursor: pointer; }
.breadcrumbs a:hover { color: var(--coral); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: var(--charcoal); font-weight: 500; }

/* Hero of review */
.post-header {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 24px 28px;
  text-align: left;
}

.post-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.post-eyebrow .tag-pill { font-size: 0.78rem; padding: 5px 12px; }

.post-eyebrow .updated {
  font-size: 0.82rem;
  color: var(--warm-gray);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post-eyebrow .updated svg { opacity: 0.7; }

.post-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.post-header .deck {
  font-size: 1.15rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  max-width: 720px;
  text-wrap: pretty;
}

/* Author / meta row */
.author-row {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--blush-deep);
  border-bottom: 1px solid var(--blush-deep);
  flex-wrap: wrap;
}

.author-pic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
  min-width: 200px;
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.author-bio {
  font-size: 0.82rem;
  color: var(--warm-gray);
}

.post-stats {
  display: flex;
  gap: 18px;
  font-size: 0.85rem;
  color: var(--warm-gray);
}

.post-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* TL;DR verdict */
.verdict-box {
  max-width: 860px;
  margin: 36px auto;
  padding: 0 24px;
}

.verdict-inner {
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1.5px solid var(--blush-deep);
  position: relative;
  overflow: hidden;
}

.verdict-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--coral);
}

.verdict-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.verdict-inner h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.verdict-inner p {
  color: var(--charcoal-light);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 18px;
}

.verdict-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.verdict-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal-light);
  border: 1px solid var(--blush-deep);
}

.verdict-chip .label { color: var(--warm-gray); font-weight: 500; }
.verdict-chip strong { color: var(--charcoal); }

/* ============================================
   POST LAYOUT — content + sidebar
   ============================================ */
.post-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 60px;
  align-items: start;
}

.post-main {
  max-width: 720px;
}

.post-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Product card sticky */
.product-sticky {
  background: white;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--blush-deep);
  position: relative;
}

.product-sticky::before {
  content: 'Nuestra recomendación';
  position: absolute;
  top: -10px; left: 18px;
  background: var(--coral);
  color: white;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-sticky-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  margin-bottom: 16px;
}

.product-sticky h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-sticky .stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--warm-gray);
}

.product-sticky .stars .filled { color: var(--gold); }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.price-current {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--coral);
}

.price-was {
  font-size: 0.95rem;
  color: var(--warm-gray);
  text-decoration: line-through;
}

.price-save {
  background: rgba(42,157,143,0.12);
  color: var(--teal-dark);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
}

.btn-amazon-lg {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--coral);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(232,120,94,0.35);
  text-align: center;
}

.btn-amazon-lg:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,120,94,0.45);
}

.amazon-trust {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--warm-gray);
  align-items: center;
}

.amazon-trust-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.amazon-trust-row svg { color: var(--teal); flex-shrink: 0; }

.affiliate-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--blush-deep);
  font-size: 0.74rem;
  color: var(--warm-gray);
  line-height: 1.5;
  text-align: center;
}

/* Spec card in sidebar */
.spec-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.spec-card h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 14px;
}

.spec-list { list-style: none; }

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.88rem;
  border-bottom: 1px dashed var(--blush-deep);
}

.spec-list li:last-child { border-bottom: none; }

.spec-list .spec-key { color: var(--warm-gray); }
.spec-list .spec-val { font-weight: 600; color: var(--charcoal); text-align: right; }

/* Main content — long form */
.post-main h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 18px;
}

.post-main h2::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 24px;
  background: var(--coral);
  border-radius: 3px;
}

.post-main h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--charcoal);
}

.post-main > p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: 18px;
}

.post-main > p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  float: left;
  line-height: 1;
  padding: 4px 12px 0 0;
  color: var(--coral);
}

.post-main strong { color: var(--charcoal); font-weight: 600; }
.post-main a { color: var(--coral); font-weight: 500; border-bottom: 1px solid rgba(232,120,94,0.3); }
.post-main a:hover { border-bottom-color: var(--coral); }

/* Image with caption */
.post-figure {
  margin: 32px 0;
}

.post-figure .img-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--blush) 0%, var(--peach) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}

.post-figure figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--warm-gray);
  text-align: center;
  font-style: italic;
}

/* Pros / cons card */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.procon-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  border: 1.5px solid var(--blush-deep);
}

.procon-card.pros { border-color: rgba(42,157,143,0.25); background: rgba(42,157,143,0.04); }
.procon-card.cons { border-color: rgba(232,120,94,0.25); background: rgba(232,120,94,0.04); }

.procon-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.procon-card.pros h4 { color: var(--teal-dark); }
.procon-card.cons h4 { color: var(--coral-dark); }

.procon-card ul { list-style: none; }

.procon-card li {
  padding: 8px 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--charcoal-light);
  position: relative;
  padding-left: 24px;
}

.procon-card.pros li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--teal);
  border-bottom: 2.5px solid var(--teal);
  transform: rotate(-45deg);
}

.procon-card.cons li::before {
  content: '×';
  position: absolute;
  left: 4px; top: 7px;
  color: var(--coral);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Scoring breakdown */
.scoring {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 36px 0;
  border: 1.5px solid var(--blush-deep);
}

.scoring h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.scoring .scoring-sub {
  color: var(--warm-gray);
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.score-row {
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.score-row .label {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  font-weight: 500;
}

.score-row .bar {
  height: 8px;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.score-row .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral) 0%, var(--coral-light) 100%);
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.score-row .val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: right;
  color: var(--charcoal);
}

.score-total {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--blush-deep);
}

.score-total .score-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
}

.score-total .score-label {
  font-size: 1rem;
  font-weight: 600;
}

.score-total .score-desc {
  color: var(--warm-gray);
  font-size: 0.9rem;
}

/* Inline CTA mid-article */
.cta-inline {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  color: white;
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 28px rgba(232,120,94,0.3);
}

.cta-inline-text h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-inline-text p {
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.btn-amazon-white {
  background: white;
  color: var(--coral-dark);
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-amazon-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

/* Comparison table */
.compare {
  margin: 36px 0;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--blush-deep);
  background: white;
}

.compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 520px;
}

.compare th {
  text-align: left;
  padding: 16px 18px;
  background: var(--blush);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--charcoal);
  border-bottom: 1.5px solid var(--blush-deep);
}

.compare td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--blush-deep);
  color: var(--charcoal-light);
  vertical-align: middle;
}

.compare tr:last-child td { border-bottom: none; }

.compare .name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--charcoal);
}

.compare .name .icon {
  width: 36px; height: 36px;
  background: var(--blush);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.compare .pick-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--blush);
  color: var(--coral-dark);
}

.compare .pick-tag.best { background: var(--coral); color: white; }
.compare .pick-tag.cheap { background: rgba(42,157,143,0.12); color: var(--teal-dark); }
.compare .btn-mini {
  background: var(--coral);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
}

.compare .btn-mini:hover { background: var(--coral-dark); }

/* FAQ */
.faq {
  margin: 36px 0;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--blush-deep);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: background 0.15s ease;
}

.faq-q:hover { background: var(--blush); }

.faq-q .toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
  font-weight: 700;
}

.faq-item.open .faq-q .toggle {
  background: var(--coral);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 280px;
}

.faq-a-inner {
  padding: 0 22px 20px;
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  margin: 48px 0 24px;
  text-align: center;
  border: 2px solid var(--blush-deep);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(232,120,94,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta-inner { position: relative; z-index: 1; }

.final-cta .ribbon {
  display: inline-block;
  background: var(--coral);
  color: white;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.final-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.final-cta > p {
  color: var(--warm-gray);
  font-size: 1rem;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .final-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.final-cta .final-price .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--coral);
}

.final-cta .final-price .was {
  text-decoration: line-through;
  color: var(--warm-gray);
}

/* Mobile sticky bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--blush-deep);
  padding: 12px 16px;
  z-index: 80;
  box-shadow: 0 -4px 16px rgba(45,41,38,0.06);
}

.mobile-sticky-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.mobile-sticky-inner .thumb {
  width: 44px; height: 44px;
  background: var(--blush);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}

.mobile-sticky-inner .info { min-width: 0; }
.mobile-sticky-inner .info .t { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-sticky-inner .info .p { font-size: 0.85rem; color: var(--coral); font-weight: 700; font-family: var(--font-heading); }

.mobile-sticky-inner .btn-amazon-lg { padding: 10px 16px; font-size: 0.85rem; box-shadow: 0 2px 8px rgba(232,120,94,0.4); }

/* Related posts */
.related {
  background: white;
  padding: 60px 24px;
  border-top: 1px solid var(--blush-deep);
}

.related-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.related h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 56px 24px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 360px; height: 360px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.newsletter-inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

.newsletter h2 {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.newsletter p {
  opacity: 0.92;
  margin-bottom: 22px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: white;
  color: var(--charcoal);
}

.newsletter-form input:focus { outline: 3px solid rgba(255,255,255,0.4); }

.newsletter-form button {
  background: var(--coral);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.newsletter-form button:hover { background: var(--coral-dark); }

/* Footer simplified */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 50px 24px 24px;
}

.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer p { font-size: 0.85rem; }
.site-footer .disclaimer { font-size: 0.74rem; max-width: 540px; opacity: 0.6; line-height: 1.55; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .post-sidebar {
    position: static;
    order: -1;
  }
  .featured-row { grid-template-columns: 1fr; }
  .featured-card .featured-img { height: 280px; font-size: 5.5rem; }
}

@media (max-width: 720px) {
  nav ul { display: none; }
  .blog-hero { padding: 44px 20px 32px; }
  .proscons { grid-template-columns: 1fr; }
  .cta-inline { grid-template-columns: 1fr; text-align: center; }
  .btn-amazon-white { justify-content: center; }
  .side-card { grid-template-columns: 80px 1fr; }
  .side-img { width: 80px; height: 80px; font-size: 2rem; }
  .post-main h2 { font-size: 1.4rem; }
  .post-header h1 { line-height: 1.18; }
  .post-main > p:first-of-type::first-letter { font-size: 3rem; padding-right: 8px; }
  .author-row { gap: 12px; }
  .post-stats { width: 100%; }
  .final-cta { padding: 28px 20px; }
  .mobile-sticky-bar.show { display: block; }
  body.has-mobile-sticky { padding-bottom: 80px; }
  .score-row { grid-template-columns: 100px 1fr 36px; gap: 10px; font-size: 0.85rem; }
}

/* Scroll-to-top affordance & subtle entrance */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.post-header, .verdict-box, .post-layout, .related, .blog-hero-inner, .blog-body {
  animation: fadeInUp 0.5s ease-out;
}
