/* ─────────────────────────────────────────────
   THEME: MORANDI
   Avocado Green × Soft Mint × Warm Paper White
   莫兰迪风格：低饱和、高亮度、温润克制
   Best for: lifestyle, wellness, home goods, beauty,
             eco products, food, fashion accessories
───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;1,9..144,300;1,9..144,400&family=Outfit:wght@300;400;500&display=swap');

[data-theme="morandi"] {

  /* ── 核心色板 ── */
  --bg:           #F5F2EC;   /* 温暖纸白，带一点黄调 */
  --bg-2:         #EEE9E0;   /* 稍深的亚麻色，用于卡片 */
  --bg-3:         #E5DFD4;   /* 更深一档，用于 hover/header */
  --bg-mint:      #EAF2ED;   /* 浅薄荷底，用于强调区块 */
  --bg-avocado:   #E6EDE2;   /* 牛油果浅底 */

  /* ── 主色：牛油果绿（哑，不饱和）── */
  --accent:       #7A9E7E;   /* 主绿，低饱和牛油果 */
  --accent-hover: #6A8E6E;   /* hover 稍深 */
  --accent-dim:   rgba(122, 158, 126, 0.10);
  --accent-light: #B8D4BB;   /* 极浅绿，用于 badge 背景 */

  /* ── 副色：薄荷绿（比主色更冷更浅）── */
  --mint:         #8FBCB0;   /* 薄荷，带蓝调 */
  --mint-dim:     rgba(143, 188, 176, 0.12);

  /* ── 文字 ── */
  --text:         #4A4440;   /* 主文字：暖灰棕，不用纯黑 */
  --text-muted:   #8A8078;   /* 次要文字：更浅的暖灰 */
  --text-strong:  #2E2A26;   /* 标题：深暖棕 */

  /* ── 边框 ── */
  --border:       #D8D0C4;   /* 主边框：暖灰 */
  --border-hover: #C4BAB0;   /* hover 边框 */

  /* ── 功能色（同样降饱和）── */
  --green:        #7A9E7E;   /* 与主色一致 */
  --red:          #C4847A;   /* 莫兰迪红：不刺眼的砖红 */
  --gold:         #C4A87A;   /* 莫兰迪金：哑金 */

  /* ── 字体 ── */
  --font-display: 'Fraunces', serif;     /* 优雅衬线，带轻微复古气质 */
  --font-body:    'Outfit', sans-serif;  /* 干净现代无衬线 */

  /* ── 尺寸 ── */
  --hero-title-size:    clamp(46px, 6.5vw, 78px);
  --section-label-size: 11px;
  --card-name-size:     26px;

  /* ── 圆角（莫兰迪风偏向柔和圆角）── */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
}

/* ────────────────────────────────────────────
   BASE
──────────────────────────────────────────── */

[data-theme="morandi"] body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ────────────────────────────────────────────
   TOPBAR
──────────────────────────────────────────── */

[data-theme="morandi"] .topbar {
  background: var(--accent);
  color: rgba(255,255,255,0.92);
  padding: 10px 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────
   HERO
──────────────────────────────────────────── */

[data-theme="morandi"] .hero {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* 右上角大字水印 */
[data-theme="morandi"] .hero::after {
  content: attr(data-bg-word);
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 300;
  font-style: italic;
  color: rgba(122,158,126,0.07);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

[data-theme="morandi"] .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

[data-theme="morandi"] .eyebrow::before,
[data-theme="morandi"] .eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent-light);
}

[data-theme="morandi"] .hero-title {
  font-family: var(--font-display);
  font-size: var(--hero-title-size);
  line-height: 1.08;
  color: var(--text-strong);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

[data-theme="morandi"] .hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

[data-theme="morandi"] .hero-intro {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.9;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--bg-mint);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
}

[data-theme="morandi"] .hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

[data-theme="morandi"] .meta-pill {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 20px;
}

/* ────────────────────────────────────────────
   STICKY NAV
──────────────────────────────────────────── */

[data-theme="morandi"] .quick-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,242,236,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}

[data-theme="morandi"] .nav-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}

[data-theme="morandi"] .nav-inner::-webkit-scrollbar { display: none; }

[data-theme="morandi"] .nav-chip {
  flex-shrink: 0;
  padding: 6px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  transition: all 0.2s;
  white-space: nowrap;
  background: transparent;
}

[data-theme="morandi"] .nav-chip:hover,
[data-theme="morandi"] .nav-chip.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ────────────────────────────────────────────
   SECTIONS
──────────────────────────────────────────── */

[data-theme="morandi"] .section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

/* 交替浅绿底色，让页面有呼吸感 */
[data-theme="morandi"] .section:nth-of-type(even) {
  background: var(--bg-avocado);
}

[data-theme="morandi"] .section-label {
  font-size: var(--section-label-size);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}

[data-theme="morandi"] .section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ────────────────────────────────────────────
   SUMMARY TABLE
──────────────────────────────────────────── */

[data-theme="morandi"] .summary-grid {
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  gap: 1px;
}

[data-theme="morandi"] .summary-row {
  display: grid;
  grid-template-columns: 36px 1fr 90px 130px;
  gap: 16px;
  align-items: center;
  padding: 16px 22px;
  background: var(--bg);
  transition: background 0.2s;
}

[data-theme="morandi"] .summary-row:hover { background: var(--bg-2); }

[data-theme="morandi"] .summary-row.header {
  background: var(--bg-3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

[data-theme="morandi"] .rank-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
  text-align: center;
  font-weight: 300;
}

[data-theme="morandi"] .summary-name {
  font-weight: 500;
  color: var(--text-strong);
  font-size: 15px;
}

[data-theme="morandi"] .summary-tag {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

[data-theme="morandi"] .stars { color: var(--accent); }

[data-theme="morandi"] .btn-summary {
  display: block;
  text-align: center;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}

[data-theme="morandi"] .btn-summary:hover { background: var(--accent-hover); }

/* ────────────────────────────────────────────
   PRODUCT CARD
──────────────────────────────────────────── */

[data-theme="morandi"] .product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 28px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

[data-theme="morandi"] .product-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 40px rgba(122,158,126,0.10);
}

[data-theme="morandi"] .product-card.is-top-pick {
  border-color: var(--accent);
}

[data-theme="morandi"] .top-pick-banner {
  background: var(--accent);
  padding: 11px 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-theme="morandi"] .card-body {
  padding: 36px;
  position: relative;
}

[data-theme="morandi"] .card-bg-rank {
  font-family: var(--font-display);
  font-size: 110px;
  font-style: italic;
  font-weight: 300;
  color: rgba(122,158,126,0.06);
  position: absolute;
  right: 28px;
  top: 20px;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

[data-theme="morandi"] .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

[data-theme="morandi"] .card-name {
  font-family: var(--font-display);
  font-size: var(--card-name-size);
  color: var(--text-strong);
  line-height: 1.15;
  font-weight: 400;
}

[data-theme="morandi"] .card-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-hover);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 10px;
}

[data-theme="morandi"] .rating-block { text-align: right; flex-shrink: 0; }

[data-theme="morandi"] .rating-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--text-strong);
  line-height: 1;
  font-weight: 300;
}

[data-theme="morandi"] .rating-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── 图片占位 ── */
[data-theme="morandi"] .product-img-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  overflow: hidden;
}

[data-theme="morandi"] .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-theme="morandi"] .img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  opacity: 0.4;
}

[data-theme="morandi"] .img-placeholder span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Verdict bar ── */
[data-theme="morandi"] .verdict-bar {
  background: var(--bg-mint);
  border-left: 2px solid var(--accent);
  padding: 16px 22px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 24px;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  font-family: var(--font-display);
}

[data-theme="morandi"] .verdict-label {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 5px;
}

/* ── Spec pills ── */
[data-theme="morandi"] .spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

[data-theme="morandi"] .spec-pill {
  display: flex;
  gap: 6px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--text-muted);
}

[data-theme="morandi"] .spec-pill strong { color: var(--text-strong); }

/* ── Pros / Cons ── */
[data-theme="morandi"] .pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

[data-theme="morandi"] .pros-box,
[data-theme="morandi"] .cons-box {
  background: var(--bg-2);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1px solid var(--border);
}

[data-theme="morandi"] .pros-box { border-top: 2px solid var(--green); }
[data-theme="morandi"] .cons-box { border-top: 2px solid var(--red); }

[data-theme="morandi"] .box-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

[data-theme="morandi"] .pros-box .box-label { color: var(--green); }
[data-theme="morandi"] .cons-box .box-label { color: var(--red); }

[data-theme="morandi"] .pros-box li,
[data-theme="morandi"] .cons-box li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

[data-theme="morandi"] .pros-box li:last-child,
[data-theme="morandi"] .cons-box li:last-child { border-bottom: none; }

[data-theme="morandi"] .pros-box li::before { content: '✓'; color: var(--green); font-weight: 600; flex-shrink: 0; }
[data-theme="morandi"] .cons-box li::before { content: '–'; color: var(--red);   font-weight: 600; flex-shrink: 0; }

/* ── CTA button ── */
[data-theme="morandi"] .cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

[data-theme="morandi"] .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
}

[data-theme="morandi"] .btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

[data-theme="morandi"] .btn-arrow { transition: transform 0.2s; }
[data-theme="morandi"] .btn-primary:hover .btn-arrow { transform: translateX(4px); }

[data-theme="morandi"] .trust-note {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ────────────────────────────────────────────
   COMPARISON TABLE
──────────────────────────────────────────── */

[data-theme="morandi"] .compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
}

[data-theme="morandi"] .compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

[data-theme="morandi"] .compare-table th {
  background: var(--bg-3);
  padding: 14px 20px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

[data-theme="morandi"] .compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: middle;
}

[data-theme="morandi"] .compare-table tr:last-child td { border-bottom: none; }
[data-theme="morandi"] .compare-table tr.highlight td { background: var(--bg-mint); }
[data-theme="morandi"] .compare-table tr:hover td { background: var(--bg-2); }
[data-theme="morandi"] .compare-table td:first-child { font-weight: 500; color: var(--text-strong); }

[data-theme="morandi"] .badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}

[data-theme="morandi"] .badge-best  { background: var(--accent-light); color: var(--accent-hover); }
[data-theme="morandi"] .badge-pro   { background: rgba(143,188,176,0.2); color: var(--mint); }
[data-theme="morandi"] .badge-other { background: var(--bg-3); color: var(--text-muted); }

/* ────────────────────────────────────────────
   BUYING GUIDE
──────────────────────────────────────────── */

[data-theme="morandi"] .guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

[data-theme="morandi"] .guide-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

[data-theme="morandi"] .guide-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 4px 20px rgba(122,158,126,0.08);
}

[data-theme="morandi"] .guide-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-avocado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

[data-theme="morandi"] .guide-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-strong);
  margin-bottom: 8px;
}

[data-theme="morandi"] .guide-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ────────────────────────────────────────────
   FAQ
──────────────────────────────────────────── */

[data-theme="morandi"] .faq-item {
  border-bottom: 1px solid var(--border);
}

[data-theme="morandi"] .faq-q {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-strong);
  padding: 20px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

[data-theme="morandi"] .faq-q:hover,
[data-theme="morandi"] .faq-item.open .faq-q { color: var(--accent); }

[data-theme="morandi"] .faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

[data-theme="morandi"] .faq-item.open .faq-icon { transform: rotate(45deg); }

[data-theme="morandi"] .faq-a {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

[data-theme="morandi"] .faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 20px;
}

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */

[data-theme="morandi"] .site-footer {
  border-top: 1px solid var(--border);
  padding: 52px 0;
  background: var(--bg-2);
}

[data-theme="morandi"] .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

[data-theme="morandi"] .footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-strong);
}

[data-theme="morandi"] .footer-brand em {
  font-style: italic;
  color: var(--accent);
}

[data-theme="morandi"] .footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

[data-theme="morandi"] .disclosure {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.75;
}

[data-theme="morandi"] .disclosure-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

/* ────────────────────────────────────────────
   REVIEW PAGE ADDONS（single-review 专属）
──────────────────────────────────────────── */

/* ReviewHero */
[data-theme="morandi"] .rh-score-block {
  background: var(--bg-mint);
  border-color: var(--border);
}

[data-theme="morandi"] .rh-badge {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--accent-hover);
}

[data-theme="morandi"] .rh-score-num { color: var(--text-strong); }
[data-theme="morandi"] .rh-price-range { color: var(--accent); }

/* RatingBreakdown */
[data-theme="morandi"] .rb-wrap {
  background: var(--bg-mint);
  border-color: var(--border);
}

[data-theme="morandi"] .rb-overall-num { color: var(--accent); }
[data-theme="morandi"] .rb-fill { background: var(--accent); }
[data-theme="morandi"] .rb-track { background: var(--bg-3); }

/* TestingScenarios */
[data-theme="morandi"] .ts-card { background: var(--bg); border-color: var(--border); }
[data-theme="morandi"] .ts-pass    { border-top-color: var(--green) !important; }
[data-theme="morandi"] .ts-partial { border-top-color: var(--gold) !important; }
[data-theme="morandi"] .ts-fail    { border-top-color: var(--red) !important; }
[data-theme="morandi"] .ts-icon-wrap { background: var(--bg-2); }
[data-theme="morandi"] .ts-pass    .ts-result-badge { background: rgba(122,158,126,0.12); color: var(--green); }
[data-theme="morandi"] .ts-partial .ts-result-badge { background: rgba(196,168,122,0.12); color: var(--gold); }
[data-theme="morandi"] .ts-fail    .ts-result-badge { background: rgba(196,132,122,0.12); color: var(--red); }

/* WhoIsItFor */
[data-theme="morandi"] .wif-card { background: var(--bg); border-color: var(--border); }
[data-theme="morandi"] .wif-yes { border-top-color: var(--green) !important; }
[data-theme="morandi"] .wif-no  { border-top-color: var(--red) !important; }
[data-theme="morandi"] .wif-yes .wif-label { color: var(--green); }
[data-theme="morandi"] .wif-no  .wif-label { color: var(--red); }
[data-theme="morandi"] .wif-yes li::before { color: var(--green); }
[data-theme="morandi"] .wif-no  li::before { color: var(--red); }

/* FinalVerdict */
[data-theme="morandi"] .fv-wrap { background: var(--bg-mint); border-color: var(--border); }
[data-theme="morandi"] .fv-score-num { color: var(--accent); }
[data-theme="morandi"] .fv-verdict-label { color: var(--accent); }
[data-theme="morandi"] .fv-verdict-text { font-family: var(--font-display); font-size: 17px; }
[data-theme="morandi"] .fv-guidance { background: var(--border); }
[data-theme="morandi"] .fv-buy  { background: var(--bg-avocado); }
[data-theme="morandi"] .fv-skip { background: var(--bg-avocado); }
[data-theme="morandi"] .fv-buy  .fv-guide-label { color: var(--green); }
[data-theme="morandi"] .fv-skip .fv-guide-label { color: var(--red); }
[data-theme="morandi"] .fv-buy-icon  { background: rgba(122,158,126,0.15); color: var(--green); }
[data-theme="morandi"] .fv-skip-icon { background: rgba(196,132,122,0.15); color: var(--red); }
[data-theme="morandi"] .fv-cta-row { border-top-color: var(--border); }

/* AlternativesBar */
[data-theme="morandi"] .alt-bar { background: var(--bg-2); border-color: var(--border); }
[data-theme="morandi"] .alt-item::before { color: var(--accent); }
[data-theme="morandi"] .alt-name { color: var(--text-strong); }
[data-theme="morandi"] a.alt-name:hover { color: var(--accent); }

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */

@media (max-width: 640px) {
  [data-theme="morandi"] .summary-row { grid-template-columns: 28px 1fr 90px; }
  [data-theme="morandi"] .summary-row > *:nth-child(3) { display: none; }
  [data-theme="morandi"] .pros-cons { grid-template-columns: 1fr; }
  [data-theme="morandi"] .guide-grid { grid-template-columns: 1fr; }
  [data-theme="morandi"] .card-bg-rank { display: none; }
  [data-theme="morandi"] .footer-inner { flex-direction: column; }
  [data-theme="morandi"] .cta-wrap { flex-direction: column; align-items: flex-start; }
  [data-theme="morandi"] .hero::after { display: none; }
}
