/* ============================================================
   Deep Insight — Styles
   ============================================================ */

/* ── Container ── */
.di-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* ── Hub Page ── */
.di-hub-hero {
  text-align: center;
  padding: 60px 20px 40px;
}
.di-hub-hero h1 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 12px;
}
.di-hub-hero .di-hub-sub {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.di-hub-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.di-hub-card {
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}
.di-hub-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.di-hub-card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.di-hub-card h2 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 8px;
}
.di-hub-card p {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.6;
}
.di-hub-coming {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  margin-top: 40px;
  padding: 20px;
  border-top: 1px solid #eee;
}

/* ── Category Overview ── */
.di-cat-hero {
  text-align: center;
  padding: 50px 20px 30px;
}
.di-cat-hero h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}
.di-cat-hero p {
  color: #666;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto;
}
.di-cat-entry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.di-cat-entry-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 24px 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
  background: #fff;
}
.di-cat-entry-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.di-cat-entry-card h3 {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 6px;
}
.di-cat-entry-card p {
  color: #888;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ── Filter Bar ── */
.di-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 24px;
  border-bottom: 2px solid #e8e8e8;
}
.di-filter-bar-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-right: 6px;
  white-space: nowrap;
}

/* ── Filter Dropdown ── */
.di-filter-dropdown {
  position: relative;
}
.di-filter-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  font-size: 0.88rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  user-select: none;
}
.di-filter-trigger:hover {
  border-color: #7c3aed;
  background: #faf8ff;
  box-shadow: 0 1px 4px rgba(124, 58, 237, 0.08);
}
.di-filter-trigger.active {
  border-color: #7c3aed;
  background: #f5f0ff;
  color: #7c3aed;
  font-weight: 600;
}
.di-filter-trigger .active-val {
  color: #7c3aed;
  font-weight: 700;
}
.di-filter-arrow {
  font-size: 0.7rem;
  color: #aaa;
  transition: transform 0.2s;
}
.di-filter-dropdown:hover .di-filter-arrow {
  transform: rotate(180deg);
}

/* ── Dropdown Menu ── */
.di-filter-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  z-index: 50;
  padding: 6px 0;
}
.di-filter-dropdown:hover .di-filter-menu {
  display: block;
}
.di-filter-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 16px;
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  transition: background 0.12s;
}
.di-filter-option:hover {
  background: #f7f5ff;
  color: #222;
}
.di-filter-option.active {
  background: #f5f0ff;
  color: #7c3aed;
  font-weight: 600;
}
.di-filter-option.clear {
  color: #999;
  font-size: 0.82rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 4px;
  padding-bottom: 10px;
}
.di-filter-option.clear:hover {
  color: #c62828;
  background: #fef5f5;
}
.di-filter-count {
  font-size: 0.78rem;
  color: #aaa;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 28px;
  text-align: center;
}
.di-filter-option.active .di-filter-count {
  background: #e8dcfc;
  color: #7c3aed;
}

/* ── Active Filters Row ── */
.di-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 0 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  align-items: center;
}
.di-active-label {
  font-size: 0.8rem;
  color: #999;
  margin-right: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.di-active-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  padding: 5px 12px;
  background: #f5f0ff;
  border: 1px solid #d4c4f0;
  border-radius: 18px;
  color: #7c3aed;
  font-weight: 500;
}
.di-active-tag .di-tag-remove {
  cursor: pointer;
  font-weight: 700;
  margin-left: 2px;
  color: #a78bfa;
  font-size: 1rem;
  line-height: 1;
}
.di-active-tag .di-tag-remove:hover {
  color: #c62828;
}

/* ── Reset ── */
.di-filter-reset {
  font-size: 0.82rem;
  color: #999;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 4px;
  white-space: nowrap;
  padding: 4px 0;
}
.di-filter-reset:hover {
  color: #c62828;
}

/* ── Product Card ── */
.di-product-card {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.di-product-card:hover {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  border-color: #d0c0f0;
}

.di-product-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  min-width: 52px;
  flex-shrink: 0;
  text-align: center;
  padding: 0 14px;
}

.di-product-main {
  flex: 1;
  min-width: 0;
  padding: 20px 24px;
}

/* ── Header ── */
.di-product-header {
  margin-bottom: 14px;
}
.di-product-title {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 4px 0;
}
.di-product-title a {
  color: #222;
  text-decoration: none;
}
.di-product-title a:hover {
  color: #7c3aed;
}
.di-product-brand {
  display: inline-block;
  font-size: 0.78rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
}

/* ── Score Bars ── */
.di-product-scores {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 14px 16px;
  margin-bottom: 14px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}
.di-score-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 170px;
}
.di-score-label {
  color: #777;
  min-width: 90px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}
.di-score-track {
  width: 72px;
  height: 6px;
  background: #e8e8e8;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.di-score-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s;
}
.di-score-fill.score-high { background: linear-gradient(90deg, #43a047, #66bb6a); }
.di-score-fill.score-mid  { background: linear-gradient(90deg, #ff9800, #ffb74d); }
.di-score-fill.score-low  { background: linear-gradient(90deg, #e53935, #ef5350); }
.di-score-val {
  font-weight: 700;
  color: #444;
  min-width: 28px;
  text-align: right;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}

/* ── Meta ── */
.di-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  padding-top: 2px;
}
.di-product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #222;
  letter-spacing: -0.3px;
}
.di-product-meta-divider {
  width: 1px;
  height: 18px;
  background: #ddd;
  margin: 0 2px;
}
.di-product-subtype {
  color: #777;
  font-size: 0.8rem;
  background: #f5f5f5;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 500;
}
.di-product-reviews {
  color: #aaa;
  font-size: 0.8rem;
}

/* ── Actions ── */
.di-product-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}
.di-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1.3;
}
.di-btn-secondary {
  background: #fff;
  color: #555;
  border: 1px solid #ddd;
}
.di-btn-secondary:hover {
  background: #f5f5f5;
  border-color: #ccc;
  color: #333;
}
.di-btn-primary {
  background: linear-gradient(180deg, #ff9900, #e68a00);
  color: #fff;
  border: 1px solid #d67800;
  box-shadow: 0 1px 3px rgba(230, 138, 0, 0.25);
}
.di-btn-primary:hover {
  background: linear-gradient(180deg, #ffa726, #f57c00);
  color: #fff;
}

/* ── Brand Ranking ── */
.brand-ranking {
  margin: 40px 0;
}
.brand-ranking h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #333;
}
.brand-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #eee;
  border-radius: 8px;
}
.brand-rank {
  font-size: 1.1rem;
  font-weight: 700;
  color: #888;
  width: 28px;
  text-align: center;
}
.brand-name {
  font-weight: 600;
  min-width: 120px;
}
.brand-stats {
  font-size: 0.85rem;
  color: #888;
  flex: 1;
}
.brand-positive-rate {
  font-weight: 600;
  color: #2e7d32;
  min-width: 60px;
  text-align: right;
}

/* ── Sentiment Bar ── */
.sentiment-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.sentiment-bar-track {
  width: 100px;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}
.sentiment-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s;
}
.sentiment-bar-fill.positive { background: #4caf50; }
.sentiment-bar-fill.neutral  { background: #ff9800; }
.sentiment-bar-fill.negative { background: #f44336; }

/* ── Country Badge ── */
.country-badges {
  display: flex;
  gap: 4px;
}
.country-badge {
  font-size: 0.7rem;
  padding: 2px 6px;
  background: #f0f0f0;
  border-radius: 4px;
  color: #888;
  text-transform: uppercase;
}

/* ── How to Choose ── */
.how-to-choose {
  margin: 40px 0;
  padding: 28px 24px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #eee;
}
.how-to-choose h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: #333;
}
.how-to-choose .htc-section {
  margin-bottom: 16px;
}
.how-to-choose .htc-label {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.how-to-choose .htc-label.prio { color: #2e7d32; }
.how-to-choose .htc-label.deprio { color: #c62828; }
.how-to-choose .htc-items {
  padding-left: 20px;
  color: #555;
  font-size: 0.9rem;
}
.how-to-choose .htc-items li {
  margin-bottom: 4px;
}

/* ── Related Filters ── */
.related-filters {
  margin: 40px 0;
}
.related-filters h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #333;
}
.related-filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.related-filter-card {
  display: block;
  padding: 16px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s;
}
.related-filter-card:hover {
  background: #faf8ff;
  border-color: #d4c4f0;
}

/* ── Photo Carousel ── */
.photo-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.photo-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.photo-carousel-track::-webkit-scrollbar { display: none; }
.photo-carousel-track img {
  scroll-snap-align: start;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.photo-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
}
.photo-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.2s;
}
.photo-carousel-dot.active {
  background: #7c3aed;
}

/* ── Promise vs Reality ── */
.promise-reality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.promise-box, .reality-box {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #eee;
}
.promise-box {
  background: #f0faf0;
  border-color: #c8e6c9;
}
.promise-box h4 { color: #2e7d32; }
.reality-box {
  background: #fef5f5;
  border-color: #ffcdd2;
}
.reality-box h4 { color: #c62828; }
.promise-box h4, .reality-box h4 {
  font-size: 1rem;
  margin-bottom: 12px;
}
.promise-photos, .reality-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.promise-photos img, .reality-photos img {
  border-radius: 6px;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

/* ── Model Single Page ── */
.di-model-header {
  text-align: center;
  padding: 40px 20px 20px;
}
.di-model-header h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.di-model-header .brand {
  font-size: 1rem;
  color: #888;
  text-transform: uppercase;
}
.di-model-header .key-specs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  font-size: 0.95rem;
  color: #555;
}
.di-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 30px 0;
}
.di-panel {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px;
}
.di-panel h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.di-panel.reddit { border-top: 3px solid #ff4500; }
.di-panel.amazon { border-top: 3px solid #ff9900; }
.di-photo-gallery {
  margin: 30px 0;
}
.di-photo-gallery h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.photo-grid img {
  border-radius: 8px;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}
.photo-section-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  margin: 16px 0 8px;
}
.photo-section-label.positive { color: #2e7d32; }
.photo-section-label.negative { color: #c62828; }

/* ── Pain Point Photos (Model Page) ── */
.di-pain-point-photos {
  margin: 12px 0;
}
.di-pain-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.di-pain-point-item:hover {
  border-color: #ddd;
}
.di-pain-point-body {
  flex: 1;
  min-width: 0;
}
.di-pain-point-label {
  font-weight: 700;
  color: #c62828;
  margin-bottom: 4px;
}
.di-pain-point-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
}
.di-pain-point-rate {
  font-size: 0.8rem;
  color: #999;
  margin-top: 4px;
}
.di-pain-point-photo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

/* ── Promise vs Reality Section ── */
.di-promise-reality-section {
  margin: 40px 0;
  padding: 24px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
}
.di-promise-reality-section h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 4px;
}
.di-promise-reality-subtitle {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 20px;
}

/* ── Sentiment Meta (Model Page) ── */
.di-sentiment-meta {
  margin-top: 8px;
  font-size: 0.88rem;
  color: #888;
}

/* ── Top Pros Tags (Model Page) ── */
.di-top-pros {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.di-pro-tag {
  display: inline-block;
  padding: 3px 10px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── Product Card Thumbnail (Filter Pages) ── */
.di-product-card {
  position: relative;
}
.di-product-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  margin-right: 16px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.di-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.di-product-photo-count {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.7rem;
  padding: 1px 6px;
  border-radius: 10px;
}

/* ── Guide Single Page ── */
.di-guide-header {
  text-align: center;
  padding: 50px 20px 30px;
}
.di-guide-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.di-guide-header .guide-meta {
  font-size: 0.9rem;
  color: #888;
}
.di-guide-body {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}
.di-guide-body h2 {
  font-size: 1.4rem;
  color: #333;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #eee;
}
.di-guide-body h3 {
  font-size: 1.15rem;
  color: #444;
  margin-top: 24px;
  margin-bottom: 8px;
}
.di-guide-body ul, .di-guide-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.di-guide-body li { margin-bottom: 6px; }
.di-guide-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.92rem;
}
.di-guide-body th {
  background: #f8f9fa;
  padding: 10px 12px;
  text-align: left;
  border-bottom: 2px solid #dee2e6;
  font-weight: 600;
}
.di-guide-body td {
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
}
.di-guide-body blockquote {
  background: #f8f9fa;
  border-left: 4px solid #7c3aed;
  padding: 14px 18px;
  margin: 16px 0;
  font-style: italic;
  color: #555;
  border-radius: 0 6px 6px 0;
}

/* ── Wizard ── */
.wizard-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px;
}
.wizard-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 30px;
}
.wizard-step-dot {
  flex: 1;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  transition: background 0.3s;
}
.wizard-step-dot.done { background: #7c3aed; }
.wizard-step-dot.current { background: #a78bfa; }
.wizard-step-content {
  min-height: 200px;
}
.wizard-step-content h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #333;
}
.wizard-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wizard-option {
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
}
.wizard-option:hover {
  border-color: #a78bfa;
  background: #faf8ff;
}
.wizard-option.selected {
  border-color: #7c3aed;
  background: #f5f0ff;
  font-weight: 600;
}
.wizard-options.multi .wizard-option.selected::before {
  content: "✓ ";
  color: #7c3aed;
}
.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
}
.wizard-btn {
  padding: 10px 28px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}
.wizard-btn.back {
  background: #f0f0f0;
  color: #666;
}
.wizard-btn.back:hover { background: #e0e0e0; }
.wizard-btn.next {
  background: #7c3aed;
  color: #fff;
}
.wizard-btn.next:hover { background: #6d28d9; }
.wizard-btn.next:disabled {
  background: #d4c4f0;
  cursor: not-allowed;
}
.wizard-result {
  text-align: center;
}
.wizard-result h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #333;
}
.wizard-result-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── FAQ ── */
.di-faq {
  margin: 40px 0;
}
.di-faq h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.di-faq-item {
  margin-bottom: 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}
.di-faq-q {
  padding: 14px 18px;
  font-weight: 600;
  cursor: pointer;
  background: #fafafa;
  font-size: 0.95rem;
  user-select: none;
}
.di-faq-q:hover { background: #f5f5f5; }
.di-faq-a {
  padding: 14px 18px;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 1px solid #eee;
}

/* ── Data Source Badge ── */
.data-source-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
  padding: 10px 16px;
  background: #fafafa;
  border-radius: 8px;
}
.data-source-badge .count {
  font-weight: 600;
  color: #555;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .di-hub-cards {
    grid-template-columns: 1fr;
  }
  .di-product-card {
    flex-direction: column;
  }
  .di-product-rank {
    min-width: auto;
    text-align: left;
    font-size: 1.2rem;
  }
  .promise-reality {
    grid-template-columns: 1fr;
  }
  .di-two-col {
    grid-template-columns: 1fr;
  }
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-item {
    flex-wrap: wrap;
  }
  .filter-bar {
    gap: 6px;
  }
  .filter-btn {
    font-size: 0.82rem;
    padding: 6px 10px;
  }
  .di-hub-hero h1 {
    font-size: 1.6rem;
  }
  .di-cat-hero h1 {
    font-size: 1.5rem;
  }
  .related-filters-grid {
    grid-template-columns: 1fr;
  }
}
