:root {
    --bg-page: #E7DBDB;
    --card-bg: #ffffff;
    --star: #A86E78;
    --name: #000000;
    --text: rgb(74, 63, 66);
    --muted: rgba(74, 63, 66, 0.65);
    --line: rgba(74, 63, 66, 0.15);
    --radius: 14px;
    --review-font: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  }
  * { box-sizing: border-box; }
  
  .reviews-section {
    padding: 48px 0 80px;
  }
  .reviews-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 32px;
    color: var(--name);
  }

  .reviews-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 36px;
  }
  .summary-score {
    text-align: center;
    min-width: 140px;
  }
  .summary-score .score {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    color: var(--name);
  }
  .summary-score .stars { margin: 8px 0 6px; }
  .summary-score .based-on { font-size: 13px; color: var(--muted); }
  .summary-bars {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .bar-row {
    display: grid;
    grid-template-columns: 46px 1fr 34px;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
  }
  .bar-track {
    display: block;
    background: var(--bg-page);
    border-radius: 20px;
    height: 8px;
    overflow: hidden;
  }
  .bar-fill {
    display: block;
    background: var(--star);
    height: 100%;
    border-radius: 20px;
  }

  .star { fill: #d9cdcd; }
  .star.filled { fill: var(--star); }

  .customer-images-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    margin: 0 0 14px;
  }
  .gallery-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 40px;
    scrollbar-width: thin;
  }
  .gallery-thumb {
    flex: 0 0 auto;
    width: 84px;
    height: 84px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    border: 1px solid var(--line);
  }
  .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
  }
  .gallery-thumb:hover img { transform: scale(1.06); }

  .reviews-grid {
    column-count: 4;
    column-gap: 22px;
  }
  .review-card {
    font-family: var(--review-font);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 20px 22px;
    background: var(--card-bg);
    display: inline-block;
    width: 100%;
    break-inside: avoid;
    margin-bottom: 22px;
  }
  .review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }
  .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--star);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
  }
  .reviewer-name {
    font-weight: 700;
    font-size: 17px;
    color: var(--name);
  }
  .verified {
    font-weight: 400;
    font-size: 13px;
    color: var(--muted);
    margin-left: 4px;
  }
  .review-date {
    font-size: 14px;
    color: var(--muted);
    margin-top: 1px;
  }
  .review-stars { margin-bottom: 10px; }
  .review-stars svg { margin-right: 2px; }
  .review-body {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 14px;
  }
  .review-photo {
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .review-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .reviews-grid .review-card:nth-child(n+11) { display: none; }
  .reviews-grid.expanded .review-card:nth-child(n+11) { display: inline-block; }

  .show-more-wrap {
    text-align: center;
    margin-top: 8px;
  }
  .show-more-btn {
    font-family: var(--review-font);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 34px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--card-bg);
    color: var(--name);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
  }
  .show-more-btn:hover {
    background: var(--star);
    color: #fff;
    border-color: var(--star);
  }

  @media (max-width: 980px) {
    .reviews-grid { column-count: 2; }
  }
  @media (max-width: 720px) {
    .reviews-grid { column-count: 1; }
    .summary-score { min-width: 100%; }
    .reviews-summary { padding: 24px 18px; }
  }
