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

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2c2c2c;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .hidden { display: none !important; }

  /* ---- Global Nav ---- */
  .global-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #e4ded5;
  }

  .global-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .global-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }

  .global-nav-logo-img {
    height: 24px;
    width: auto;
  }

  .global-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
  }

  .global-nav-link {
    font-size: 13px;
    font-weight: 500;
    color: #6b6560;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
  }

  .global-nav-link:hover {
    background: #f0ede6;
    color: #2c2c2c;
  }

  .global-nav-link.active {
    background: #2c2c2c;
    color: #fff;
  }

  .global-nav-cta {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #2c2c2c;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
    flex-shrink: 0;
  }

  .global-nav-cta:hover {
    background: #4a4540;
  }

  .global-nav-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .global-nav-menu span {
    display: block;
    width: 18px;
    height: 2px;
    background: #2c2c2c;
    border-radius: 1px;
  }

  .global-nav-mobile {
    padding: 8px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid #f0ede6;
  }

  .global-nav-mobile .global-nav-link {
    padding: 10px 12px;
    font-size: 15px;
  }

  /* Category nav dropdown */
  .nav-cat-dropdown {
    position: relative;
  }

  .nav-cat-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-cat-chevron {
    font-size: 12px;
    color: #8a8478;
  }

  .nav-cat-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e4ded5;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 6px;
    min-width: 220px;
    z-index: 200;
  }

  .nav-cat-option {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 6px;
    transition: background 0.1s;
  }

  .nav-cat-option:hover {
    background: #f0ede6;
  }

  .nav-cat-option.active {
    background: #2c2c2c;
    color: #fff;
  }

  @media (max-width: 768px) {
    .global-nav-links {
      display: none;
    }
    .global-nav-cta {
      display: none;
    }
    .global-nav-menu {
      display: flex;
      margin-left: auto;
    }
  }

  [id^="section-"] {
    scroll-margin-top: 64px;
  }

  /* ---- Hero ---- */
  .hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: 480px;
  }

  .hero::before {
    display: none;
  }

  .hero-bg {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 480px;
  }

  .hero-content {
    background: rgba(255,255,255,0.95);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }

  .hero-version {
    font-size: 12px;
    font-weight: 500;
    color: #8a8478;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .hero-logo {
    display: block;
    margin: 0 auto 20px;
    height: 56px;
    width: auto;
    max-width: 100%;
  }

  .hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .hero-stars {
    font-size: 22px;
    color: #d4a017;
    letter-spacing: 1px;
  }

  .hero-rating-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
  }

  .hero-rating-count {
    font-size: 14px;
    color: #8a8478;
    font-weight: 400;
    margin-bottom: 16px;
  }

  .hero-button {
    margin-top: 24px;
    align-self: center;
  }

  .hero-tagline {
    font-size: 17px;
    color: #5a5549;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
  }

  .hero-subtext {
    font-size: 14px;
    color: #9e978d;
    margin-top: 8px;
    margin-bottom: 0;
  }

  @media (max-width: 768px) {
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .hero-bg {
      min-height: 280px;
    }
    .hero-content {
      padding: 32px 24px;
    }
  }

  /* ---- Section shared ---- */
  section {
    padding: 80px 0;
  }

  .section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8a8478;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 48px;
  }

  .divider {
    border: none;
    border-top: 1px solid #ddd6cb;
    margin: 0;
  }

  /* ---- Hero additions ---- */
  .hero-subtext {
    font-size: 14px;
    color: #9e978d;
    margin-top: 8px;
    margin-bottom: 24px;
  }

  /* ---- Personal Comparison ---- */
  .comparison {
    background: #fafaf7;
    border-top: 1px solid #e4ded5;
    border-bottom: 1px solid #e4ded5;
  }

  .comp-header {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 28px;
  }

  .comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
  }

  .comp-system-label, .comp-personal-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9e978d;
    margin-bottom: 8px;
  }

  .comp-system-score, .comp-personal-score {
    font-size: 18px;
    color: #d4a017;
    letter-spacing: 1px;
  }

  .comp-ages {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .comp-age {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .comp-age-range {
    font-size: 13px;
    font-weight: 500;
    color: #6b6560;
    min-width: 80px;
  }

  .comp-age-stars {
    font-size: 14px;
    color: #d4a017;
    letter-spacing: 1px;
  }

  .comp-age-val {
    font-size: 13px;
    color: #8a8478;
  }

  .comp-personal-prompt {
    font-size: 15px;
    color: #6b6560;
    margin-bottom: 12px;
  }

  .comp-personal-diff {
    font-size: 13px;
    color: #8a8478;
    margin-top: 6px;
  }

  .comp-cta {
    font-size: 14px;
    font-weight: 600;
    color: #47432A;
    background: none;
    border: 2px solid #47432A;
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }

  .comp-cta:hover {
    background: #47432A;
    color: #fff;
  }

  @media (max-width: 768px) {
    .comp-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }

  /* ---- Insights ---- */
  .insights-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .insight-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 16px 20px;
    background: #fafaf7;
    border: 1px solid #e4ded5;
    border-radius: 10px;
  }

  .insight-icon {
    font-size: 16px;
    color: #d4a017;
    flex-shrink: 0;
    font-weight: 700;
  }

  .insight-text {
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.5;
  }

  /* ---- Featured Reviews ---- */
  .featured-reviews {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 20px 0;
  }

  .featured-quote {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }

  .featured-quote-text {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.4;
    letter-spacing: -0.5px;
  }

  .featured-quote-attr {
    font-size: 14px;
    color: #8a8478;
    margin-top: 12px;
  }

  /* ---- CTA updates ---- */
  .cta-desc {
    font-size: 18px;
    color: #6b6560;
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .cta-sub {
    font-size: 13px;
    color: #9e978d;
    margin-top: 16px;
    font-style: italic;
  }

  /* ---- Category link insight ---- */
  .cat-link-insight {
    font-size: 11px;
    color: #9e978d;
    font-style: italic;
  }

  /* ---- Categories ---- */
  .categories {
    background: #fafaf7;
    border-top: 1px solid #ddd6cb;
    border-bottom: 1px solid #ddd6cb;
  }

  .category-grid {
    display: grid;
    gap: 0;
  }

  .category-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid #e4ded5;
    cursor: pointer;
    transition: background 0.15s;
  }

  .category-row:hover {
    background: rgba(0,0,0,0.015);
  }

  .category-row.expanded {
    border-bottom-color: transparent;
  }

  .category-name {
    font-size: 18px;
    font-weight: 600;
  }

  .category-stars {
    font-size: 18px;
    color: #d4a017;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .category-quip {
    font-size: 14px;
    color: #8a8478;
    font-style: italic;
    min-width: 0;
    text-align: right;
  }

  .category-chevron {
    font-size: 20px;
    color: #8a8478;
    transition: transform 0.25s;
    transform: rotate(0deg);
  }

  .category-row.expanded .category-chevron {
    transform: rotate(90deg);
  }

  /* Accordion panel */
  .category-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-bottom: 1px solid #e4ded5;
  }

  .category-panel.open {
    overflow: hidden;
  }

  /* Reviews panel inside accordion */
  .cat-reviews-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 0 28px;
  }

  .cat-scroll-arrows {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
  }

  .cat-scroll-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd6cb;
    background: #fff;
    font-size: 18px;
    color: #6b6560;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
  }

  .cat-scroll-btn:hover {
    background: #f5f3ef;
  }

  .cat-reviews-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #ddd6cb transparent;
  }

  .cat-review-card {
    flex: 0 0 calc((100% - 42px) / 3.5);
    background: #fff;
    border: 1px solid #e4ded5;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-snap-align: start;
  }

  .cat-review-name {
    font-size: 16px;
    font-weight: 700;
    color: #2c2c2c;
  }

  .cat-review-contributions {
    font-size: 12px;
    color: #8a8478;
  }

  .cat-review-sentiment {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .cat-sentiment-badge strong {
    font-weight: 600;
  }

  .cat-sentiment-pos .cat-sentiment-badge { color: #2c6e49; }
  .cat-sentiment-mid .cat-sentiment-badge { color: #6b6560; }
  .cat-sentiment-neg .cat-sentiment-badge { color: #9b4d4d; }

  .cat-sentiment-meta {
    font-size: 12px;
    color: #8a8478;
    font-weight: 400;
  }

  .cat-review-quote {
    font-size: 14px;
    color: #3a3632;
    line-height: 1.55;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cat-review-attr {
    font-size: 12px;
    color: #8a8478;
    margin-top: auto;
  }

  @media (max-width: 640px) {
    .category-row {
      grid-template-columns: 1fr auto;
      gap: 8px;
    }
    .category-quip {
      display: none;
    }
    .cat-review-card {
      flex: 0 0 calc((100% - 14px) / 1.5);
    }
  }

  /* ---- Reviews ---- */
  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  @media (max-width: 640px) {
    .reviews-grid {
      grid-template-columns: 1fr;
    }
  }

  .review-card {
    background: #fafaf7;
    border: 1px solid #ddd6cb;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .review-meta {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
  }

  .review-location {
    font-weight: 400;
    color: #8a8478;
  }

  .review-stars {
    font-size: 16px;
    color: #d4a017;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .review-tag {
    font-size: 11px;
    font-weight: 500;
    background: #f0ede6;
    color: #6b6560;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: lowercase;
  }

  .review-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #9e978d;
  }

  .review-quote {
    font-size: 15px;
    color: #3a3632;
    line-height: 1.55;
  }

  .reviews-toggle-wrap {
    text-align: center;
    padding-top: 8px;
  }

  .reviews-toggle {
    font-size: 14px;
    font-weight: 600;
    color: #47432A;
    background: none;
    border: 2px solid #47432A;
    padding: 10px 28px;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }

  .reviews-toggle:hover {
    background: #47432A;
    color: #fff;
  }

  /* ---- Age Breakdown ---- */
  .age-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  @media (max-width: 640px) {
    .age-grid {
      grid-template-columns: 1fr;
    }
  }

  .age-card {
    background: #fafaf7;
    border: 1px solid #ddd6cb;
    border-radius: 12px;
    padding: 28px;
  }

  .age-range {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .age-subtitle {
    font-size: 13px;
    color: #8a8478;
    margin-bottom: 20px;
  }

  .age-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e4ded5;
  }

  .age-stat:last-child {
    border-bottom: none;
  }

  .age-stat-label {
    font-size: 14px;
    color: #5a5549;
  }

  .age-stat-value {
    font-size: 14px;
    font-weight: 600;
    color: #d4a017;
  }

  /* ---- CTA ---- */
  .cta {
    text-align: center;
    padding: 100px 24px;
  }

  .cta h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .cta-sub {
    font-size: 17px;
    color: #8a8478;
    margin-bottom: 40px;
    font-style: italic;
  }

  .cta-button {
    display: inline-block;
    background: #47432A;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
  }

  .cta-button:hover {
    background: #3a3720;
  }

  .cta-button:active {
    transform: scale(0.98);
  }

  /* ---- Footer ---- */
  footer {
    background: #47432A;
    text-align: center;
    padding: 48px 24px 56px;
  }

  .footer-inner {
    max-width: 920px;
    margin: 0 auto;
  }

  .footer-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
  }

  .footer-text {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
  }

  /* ---- Map ---- */
  .map-section {
    padding: 80px 0;
  }

  .map-container {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .map-svg-wrap {
    position: relative;
    width: 100%;
    margin-top: 32px;
  }

  .map-svg-wrap svg {
    width: 100%;
    height: auto;
  }

  .map-svg-wrap path {
    fill: #eae6dc;
    stroke: #ffffff;
    stroke-width: 1.5;
    transition: fill 0.2s, opacity 0.2s;
    cursor: pointer;
  }

  .map-svg-wrap path:hover {
    opacity: 0.8;
  }

  .map-svg-wrap path.has-reviews {
    fill: #c8c1a8;
  }

  .map-svg-wrap path.heat-1 { fill: #c8c1a8; }
  .map-svg-wrap path.heat-2 { fill: #a89e7e; }
  .map-svg-wrap path.heat-3 { fill: #8a7f5e; }
  .map-svg-wrap path.heat-4 { fill: #6b6540; }
  .map-svg-wrap path.heat-5 { fill: #47432A; }

  .map-svg-wrap path.selected {
    stroke: #47432A;
    stroke-width: 2.5;
  }

  .map-tooltip {
    position: absolute;
    background: #2c2c2c;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    white-space: nowrap;
    z-index: 10;
    transform: translate(-50%, -100%);
    margin-top: -8px;
  }

  .map-tooltip.visible {
    opacity: 1;
  }

  .map-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    min-height: 36px;
  }

  .map-filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
  }

  .map-filter-clear {
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: #8a8478;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s;
  }

  .map-filter-clear:hover {
    color: #2c2c2c;
  }

  .map-legend {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    justify-content: flex-end;
  }

  .map-legend-label {
    font-size: 11px;
    color: #9e978d;
    margin: 0 4px;
  }

  .map-legend-swatch {
    width: 20px;
    height: 10px;
    border-radius: 2px;
  }

  /* ---- Empty State ---- */
  .empty-state {
    text-align: center;
    padding: 60px 24px;
    color: #9e978d;
  }

  .empty-state-title {
    font-size: 18px;
    font-weight: 600;
    color: #5a5549;
    margin-bottom: 8px;
  }

  .empty-state-sub {
    font-size: 15px;
    color: #9e978d;
    margin-bottom: 24px;
  }

  /* ---- Banner ---- */
  .banner {
    background: #f5f5ef;
    text-align: center;
    padding: 16px 24px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #e8e6d9;
  }

  .banner:hover {
    background: #eeeddf;
  }

  .banner-inner {
    display: inline-flex;
    align-items: center;
    background: #e8e6d9;
    padding: 8px 20px;
    border-radius: 100px;
    gap: 6px;
    transition: background 0.2s;
  }

  .banner:hover .banner-inner {
    background: #dddbc9;
  }

  .banner-text {
    font-size: 13px;
    font-weight: 500;
    color: #3a3632;
    letter-spacing: 0.2px;
  }

  .banner-arrow {
    font-size: 13px;
    color: #3a3632;
  }

  /* ---- About Page ---- */
  #about-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 80px 24px 120px;
  }

  .about-back {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: #8a8478;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 48px;
    display: inline-block;
    transition: color 0.2s;
  }

  .about-back:hover {
    color: #2c2c2c;
  }

  .about-logo {
    height: 48px;
    width: auto;
    max-width: 90%;
    margin-bottom: 40px;
  }

  .about-headline {
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #4a4540;
  }

  .about-body p {
    font-size: 17px;
    color: #4a4540;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .about-body strong {
    color: #2c2c2c;
  }

  .about-patterns {
    font-size: 17px;
    color: #4a4540;
    line-height: 1.7;
    margin: 0 0 20px 24px;
  }

  .about-patterns li {
    margin-bottom: 4px;
  }

  .about-divider {
    border: none;
    border-top: 1px solid #ddd6cb;
    margin: 48px 0;
  }

  .about-section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8a8478;
    margin-bottom: 20px;
  }

  .about-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .about-cat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid #e4ded5;
  }

  .about-cat:last-child {
    border-bottom: none;
  }

  .about-cat-name {
    font-size: 16px;
    font-weight: 600;
  }

  .about-cat-desc {
    font-size: 14px;
    color: #8a8478;
  }

  .about-cta {
    text-align: center;
    margin-top: 64px;
  }

  .about-cta p {
    font-size: 17px;
    color: #5a5549;
    font-style: italic;
    margin-bottom: 24px;
  }

  /* ============================================
     REVIEW FLOW
     ============================================ */
  #review-flow {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 24px 80px;
  }

  .flow-container {
    max-width: 560px;
    width: 100%;
  }

  /* Progress bar */
  .flow-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 60px;
  }

  .flow-progress-dot {
    flex: 1;
    height: 3px;
    background: #ddd6cb;
    border-radius: 3px;
    transition: background 0.3s;
  }

  .flow-progress-dot.active {
    background: #47432A;
  }

  /* Step shared */
  .flow-step {
    display: none;
    animation: fadeUp 0.35s ease;
  }

  .flow-step.active {
    display: block;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .flow-step-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8a8478;
    margin-bottom: 12px;
  }

  .flow-step-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    line-height: 1.15;
  }

  .flow-step-subtitle {
    font-size: 16px;
    color: #8a8478;
    margin-bottom: 40px;
  }

  /* Star picker */
  .star-picker {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
  }

  .star-picker .star {
    font-size: 36px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s, transform 0.1s;
    user-select: none;
    line-height: 1;
  }

  .star-picker .star:hover,
  .star-picker .star.hovered {
    color: #d4a017;
    transform: scale(1.1);
  }

  .star-picker .star.selected {
    color: #d4a017;
  }

  .star-picker-label {
    font-size: 14px;
    color: #9e978d;
    min-height: 21px;
    margin-bottom: 4px;
  }

  /* Category rating rows */
  .category-rating-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .category-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #e4ded5;
  }

  .category-rating-row:last-child {
    border-bottom: none;
  }

  .category-rating-name {
    font-size: 16px;
    font-weight: 600;
  }

  .category-rating-row .star-picker {
    margin-bottom: 0;
  }

  .category-rating-row .star-picker .star {
    font-size: 22px;
  }

  /* Textarea */
  .flow-textarea {
    width: 100%;
    font-family: inherit;
    font-size: 16px;
    padding: 16px;
    border: 1px solid #ddd6cb;
    border-radius: 10px;
    background: #fafaf7;
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
    transition: border-color 0.2s;
    color: #2c2c2c;
  }

  .flow-textarea:focus {
    outline: none;
    border-color: #bbb;
  }

  .flow-textarea::placeholder {
    color: #bbb;
  }

  .flow-field {
    margin-bottom: 28px;
  }

  .flow-field-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
  }

  /* Input */
  .flow-input {
    width: 100%;
    font-family: inherit;
    font-size: 16px;
    padding: 14px 16px;
    border: 1px solid #ddd6cb;
    border-radius: 10px;
    background: #fafaf7;
    transition: border-color 0.2s;
    color: #2c2c2c;
  }

  .flow-input:focus {
    outline: none;
    border-color: #bbb;
  }

  .flow-input::placeholder {
    color: #bbb;
  }

  .flow-input-short {
    max-width: 200px;
  }

  .flow-input-row {
    display: flex;
    gap: 16px;
  }

  @media (max-width: 480px) {
    .flow-input-row {
      flex-direction: column;
    }
    .flow-input-short {
      max-width: 100%;
    }
  }

  /* Tags */
  .flow-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }

  .flow-tag {
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid #ddd6cb;
    background: #fafaf7;
    color: #5a5549;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
  }

  .flow-tag:hover {
    border-color: #ccc;
  }

  .flow-tag.selected {
    background: #47432A;
    color: #fff;
    border-color: #47432A;
  }

  /* Navigation */
  .flow-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
  }

  .flow-back {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: #8a8478;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s;
  }

  .flow-back:hover {
    color: #2c2c2c;
  }

  .flow-next {
    display: inline-block;
    background: #47432A;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
  }

  .flow-next:hover {
    background: #3a3720;
  }

  .flow-next:active {
    transform: scale(0.98);
  }

  .flow-next:disabled {
    background: #ccc;
    cursor: default;
  }

  .flow-skip {
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: #9e978d;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    margin-left: 16px;
    transition: color 0.2s;
  }

  .flow-skip:hover {
    color: #6b6560;
  }

  /* ---- Results page ---- */
  .results-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .results-overall {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 4px;
  }

  .results-overall-stars {
    font-size: 32px;
    color: #d4a017;
    letter-spacing: 3px;
    margin-bottom: 8px;
  }

  .results-overall-label {
    font-size: 14px;
    color: #8a8478;
  }

  .results-categories {
    background: #fafaf7;
    border: 1px solid #ddd6cb;
    border-radius: 12px;
    padding: 8px 28px;
    margin-bottom: 32px;
  }

  .results-cat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e4ded5;
  }

  .results-cat-row:last-child {
    border-bottom: none;
  }

  .results-cat-name {
    font-size: 15px;
    font-weight: 600;
  }

  .results-cat-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .results-cat-stars {
    font-size: 16px;
    color: #d4a017;
    letter-spacing: 1px;
  }

  .results-cat-vs {
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 100px;
  }

  .results-cat-vs.above {
    background: #e8f5e9;
    color: #2e7d32;
  }

  .results-cat-vs.below {
    background: #fce4ec;
    color: #c62828;
  }

  .results-cat-vs.same {
    background: #f5f5f5;
    color: #8a8478;
  }

  .results-reflection {
    background: #fafaf7;
    border: 1px solid #ddd6cb;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 32px;
  }

  .results-reflection-item {
    margin-bottom: 20px;
  }

  .results-reflection-item:last-child {
    margin-bottom: 0;
  }

  .results-reflection-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #9e978d;
    margin-bottom: 4px;
  }

  .results-reflection-text {
    font-size: 15px;
    color: #3a3632;
    line-height: 1.55;
  }

  .results-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 48px;
  }

  .flow-secondary-btn {
    display: inline-block;
    background: #fafaf7;
    color: #2c2c2c;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 100px;
    border: 1px solid #ddd6cb;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
  }

  .flow-secondary-btn:hover {
    background: #f5f5f5;
  }

  /* ---- Category Links ---- */
  .category-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
  }

  .cat-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    background: #fafaf7;
    border: 1px solid #e4ded5;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s, border-color 0.15s;
  }

  .cat-link:hover {
    border-color: #d4a017;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .cat-link-name {
    font-size: 15px;
    font-weight: 700;
    color: #2c2c2c;
  }

  .cat-link-tagline {
    font-size: 12px;
    color: #8a8478;
    flex: 1;
  }

  .cat-link-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
  }

  .cat-link-stars {
    font-size: 14px;
    color: #d4a017;
    letter-spacing: 1px;
  }

  .cat-link-avg {
    font-size: 13px;
    color: #6b6560;
    font-weight: 500;
  }

  /* ---- Category Detail Page ---- */
  .cp-back-row {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 24px 0;
  }

  .cp-back-row .about-back {
    margin-bottom: 8px;
  }

  .cp-layout {
    display: grid;
    grid-template-columns: 300px 500px;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px 80px;
  }

  .cp-left {
    position: relative;
    align-self: stretch;
  }

  .cp-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 72px;
  }

  .cp-image {
    width: 100%;
    border-radius: 12px;
  }

  .cp-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: #f0ede6;
    border: 1px solid #e4ded5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .cp-image-icon {
    font-size: 18px;
    font-weight: 700;
    color: #9e978d;
    text-align: center;
    padding: 16px;
    line-height: 1.3;
  }

  .cp-rating-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
  }

  .cp-rating-big {
    font-size: 64px;
    font-weight: 800;
    color: #2c2c2c;
    line-height: 1;
    letter-spacing: -2px;
  }

  .cp-rating-stars {
    font-size: 24px;
    color: #d4a017;
    letter-spacing: 2px;
    margin-top: 8px;
  }

  .cp-rating-count {
    font-size: 14px;
    color: #8a8478;
    margin-top: 8px;
  }

  .cp-distribution {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .cp-dist-row {
    display: grid;
    grid-template-columns: 16px 1fr 28px;
    align-items: center;
    gap: 10px;
  }

  .cp-dist-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b6560;
    text-align: right;
  }

  .cp-dist-bar {
    height: 8px;
    background: #ebe7e0;
    border-radius: 4px;
    overflow: hidden;
  }

  .cp-dist-fill {
    height: 100%;
    background: #d4a017;
    border-radius: 4px;
  }

  .cp-dist-count {
    font-size: 12px;
    color: #8a8478;
    text-align: right;
  }

  .cp-right {
    min-width: 0;
  }

  .cp-header {
    margin-bottom: 8px;
  }

  .cp-tagline {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9e978d;
    margin-bottom: 8px;
  }

  .cp-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    color: #2c2c2c;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .cp-desc {
    font-size: 17px;
    color: #4a4540;
    line-height: 1.65;
  }

  .cp-divider {
    border: none;
    border-top: 1px solid #e4ded5;
    margin: 32px 0;
  }

  .cp-section-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #9e978d;
    margin-bottom: 16px;
  }

  .cp-product-desc-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .cp-product-desc-title {
    font-size: 16px;
    font-weight: 700;
    color: #2c2c2c;
  }

  .cp-product-desc-chevron {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid #8a8478;
    border-bottom: 2px solid #8a8478;
    transform: rotate(45deg);
    transition: transform 0.25s;
    flex-shrink: 0;
  }

  .cp-product-desc.open .cp-product-desc-chevron {
    transform: rotate(-135deg);
  }

  .cp-product-desc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .cp-product-desc.open .cp-product-desc-body {
    max-height: 600px;
  }

  .cp-product-desc-body p {
    font-size: 16px;
    color: #4a4540;
    line-height: 1.7;
    padding-top: 16px;
  }

  .cp-effects {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .cp-effect {
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
    padding: 8px 18px;
    border: 1px solid #ddd6cb;
    border-radius: 100px;
  }

  .cp-details {
    display: flex;
    flex-direction: column;
  }

  .cp-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid #f0ede6;
  }

  .cp-detail-row:last-child {
    border-bottom: none;
  }

  .cp-detail-label {
    font-size: 15px;
    font-weight: 500;
    color: #2c2c2c;
  }

  .cp-detail-value {
    font-size: 15px;
    color: #6b6560;
    text-align: right;
  }

  .cp-age-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .cp-age-row {
    display: grid;
    grid-template-columns: 70px auto auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f0ede6;
  }

  .cp-age-row:last-child {
    border-bottom: none;
  }

  .cp-age-range {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
  }

  .cp-age-stars {
    font-size: 15px;
    color: #d4a017;
    letter-spacing: 1px;
  }

  .cp-age-avg {
    font-size: 14px;
    color: #6b6560;
    font-weight: 500;
  }

  .cp-age-count {
    font-size: 12px;
    color: #8a8478;
    text-align: right;
  }

  .cp-reviews-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cp-review-card {
    background: #fff;
    border: 1px solid #e4ded5;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.15s;
  }

  .cp-review-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .cp-review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cp-review-name {
    font-size: 15px;
    font-weight: 700;
    color: #2c2c2c;
  }

  .cp-review-tags {
    font-size: 12px;
    color: #8a8478;
    margin-top: 2px;
  }

  .cp-review-stars {
    font-size: 14px;
    color: #d4a017;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .cp-review-ref {
    margin-top: 4px;
  }

  .cp-review-ref-label {
    font-size: 11px;
    font-weight: 600;
    color: #9e978d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }

  .cp-review-ref-text {
    font-size: 14px;
    color: #3a3632;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cp-related-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .cp-related-cat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    border-bottom: 1px solid #f0ede6;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
  }

  .cp-related-cat:last-child {
    border-bottom: none;
  }

  .cp-related-cat:hover {
    background: rgba(0,0,0,0.015);
  }

  .cp-related-img {
    width: 48px;
    height: 48px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .cp-related-img-placeholder {
    background: #f0ede6;
  }

  .cp-related-name {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    margin-left: 0;
    flex: 1;
  }

  .cp-related-stars {
    font-size: 14px;
    color: #d4a017;
    letter-spacing: 1px;
  }

  /* Age group inline within rating section */
  .cp-age-inline {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f0ede6;
  }

  /* Two-column layout for Details + Product Description */
  .cp-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  /* Instagram feed */
  .cp-instagram {
    margin-top: 24px;
  }

  .cp-instagram-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #8a8478;
    text-decoration: none;
    margin-bottom: 12px;
  }
  .cp-instagram-tag:hover { color: #2c2c2c; }

  .cp-instagram-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .cp-instagram-post {
    display: block;
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    background: #ede9e3;
    text-decoration: none;
  }

  .cp-instagram-iframe-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
  }

  .cp-instagram-iframe-wrap iframe {
    width: 100%;
    height: 600px;
    border: none;
    margin-top: -56px;
    transform-origin: top left;
  }

  /* Share button row */
  .cp-share-row {
    margin-top: 20px;
    margin-bottom: 8px;
  }

  .cp-share-btn {
    font-size: 13px;
    font-weight: 600;
    color: #6b6560;
    background: none;
    border: 1px solid #ddd6cb;
    border-radius: 100px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.15s;
    letter-spacing: 0.3px;
  }

  .cp-share-btn:hover {
    background: #2c2c2c;
    color: #faf9f6;
    border-color: #2c2c2c;
  }

  /* CTA row between reviews and other categories */
  .cp-cta-row {
    margin: 32px 0;
    text-align: center;
  }

  .cp-cta-btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #faf9f6;
    background: #2c2c2c;
    border-radius: 100px;
    padding: 14px 36px;
    text-decoration: none;
    transition: all 0.15s;
    letter-spacing: 0.3px;
  }

  .cp-cta-btn:hover {
    background: #4a4540;
  }

  /* Inline flowing review text */
  .cp-review-flow {
    font-size: 14px;
    color: #3a3632;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cp-review-inline-label {
    font-weight: 700;
    color: #6b6560;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .cp-review-readmore {
    font-size: 13px;
    font-weight: 600;
    color: #9e978d;
    margin-top: 4px;
    transition: color 0.15s;
  }

  .cp-review-card:hover .cp-review-readmore {
    color: #2c2c2c;
  }

  /* Other Categories — horizontal card grid */
  .cp-related-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .cp-related-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e4ded5;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s, transform 0.15s;
  }

  .cp-related-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
  }

  .cp-related-card .cp-related-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0;
  }

  .cp-related-card .cp-related-img-placeholder {
    width: 100%;
    height: 120px;
    border-radius: 0;
  }

  .cp-related-card-info {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .cp-related-card-info .cp-related-name {
    font-size: 14px;
  }

  .cp-related-card-info .cp-related-stars {
    font-size: 13px;
  }

  @media (max-width: 768px) {
    .cp-layout {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 24px 16px 60px;
    }
    .cp-sticky {
      position: static;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 12px;
    }
    .cp-distribution {
      width: 100%;
      margin-top: 16px;
    }
    .cp-reviews-list {
      grid-template-columns: 1fr;
    }
    .cp-age-row {
      grid-template-columns: 60px auto 1fr;
    }
    .cp-age-count {
      display: none;
    }
    .cp-two-col {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .cp-related-cards {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
  }

  @media (max-width: 480px) {
    .cp-related-cards {
      grid-template-columns: 1fr;
    }
  }

  /* ---- Review Detail Modal ---- */
  .review-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 24px;
  }

  .review-modal-overlay.open {
    display: flex;
  }

  .review-modal {
    background: #faf9f6;
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
  }

  .review-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #8a8478;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 8px;
  }

  .review-modal-close:hover {
    background: #f0ede6;
    color: #2c2c2c;
  }

  .rm-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }

  .rm-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
  }

  .rm-name {
    font-size: 18px;
    font-weight: 700;
  }

  .rm-meta {
    font-size: 13px;
    color: #8a8478;
  }

  .rm-overall {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4ded5;
  }

  .rm-overall-stars {
    font-size: 20px;
    color: #d4a017;
    letter-spacing: 1px;
  }

  .rm-overall-label {
    font-size: 14px;
    color: #8a8478;
  }

  .rm-section {
    margin-bottom: 20px;
  }

  .rm-section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #9e978d;
    margin-bottom: 6px;
  }

  .rm-categories {
    display: grid;
    gap: 0;
  }

  .rm-cat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0ede6;
  }

  .rm-cat-row:last-child {
    border-bottom: none;
  }

  .rm-cat-name {
    font-size: 14px;
    font-weight: 500;
  }

  .rm-cat-stars {
    font-size: 14px;
    color: #d4a017;
    letter-spacing: 1px;
  }

  .rm-reflection {
    margin-bottom: 16px;
  }

  .rm-reflection:last-child {
    margin-bottom: 0;
  }

  .rm-ref-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b6560;
    margin-bottom: 4px;
  }

  .rm-ref-text {
    font-size: 15px;
    color: #3a3632;
    line-height: 1.55;
  }

  .rm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
  }

  .rm-tag {
    font-size: 11px;
    font-weight: 500;
    background: #f0ede6;
    color: #6b6560;
    padding: 4px 12px;
    border-radius: 100px;
  }
</style>
