/* scoped: si-ReviewsSection */

  .reviews-section:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 100%;
    height: 882px;
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    background: linear-gradient(1.39deg, #FFFFFF 73.61%, #999999 203.51%);
    box-sizing: border-box;
  }

  /* ── Heading ── */
  .heading-group:where(.si-ReviewsSection, .si-ReviewsSection *){
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .section-title:where(.si-ReviewsSection, .si-ReviewsSection *){
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 35px;
    letter-spacing: 0;
    text-align: center;
    color: #272727;
    margin: 0;
  }

  .title-underline:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 60px;
    height: 4px;
    background: #D62121;
  }

  /* ── Google bar ── */
  .google-bar:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 1180px;
    height: 89px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0px 2px 12px 0px rgba(0,0,0,0.08);
    box-sizing: border-box;
  }

  .bar-left:where(.si-ReviewsSection, .si-ReviewsSection *){
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .bar-text:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 209px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .bar-title:where(.si-ReviewsSection, .si-ReviewsSection *){
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    text-transform: uppercase;
    color: #272727;
    margin: 0;
  }

  .bar-rating:where(.si-ReviewsSection, .si-ReviewsSection *){
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .bar-score:where(.si-ReviewsSection, .si-ReviewsSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 28.5px;
    color: #272727;
  }

  .stars:where(.si-ReviewsSection, .si-ReviewsSection *){
    display: flex;
    gap: 2px;
  }

  .star:where(.si-ReviewsSection, .si-ReviewsSection *){
    color: #FFDC00;
    font-size: 20px;
    line-height: 1;
  }

  .bar-count:where(.si-ReviewsSection, .si-ReviewsSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #272727;
  }

  .review-us-btn:where(.si-ReviewsSection, .si-ReviewsSection *){
    padding: 15px 22px;
    border-radius: 4px;
    background: linear-gradient(90deg, #D62121 0%, #701111 100%);
    box-shadow: 0px 4px 20.4px 0px #D62121C2;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
  }

  .review-us-btn:hover:where(.si-ReviewsSection, .si-ReviewsSection *){ opacity: 0.9; }

  /* ── Cards row ── */
  .cards-row:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 1179px;
    display: flex;
    gap: 48px;
  }

  .review-card:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 361px;
    min-height: 284px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0px 2px 12px 0px rgba(0,0,0,0.06);
    box-sizing: border-box;
  }

  /* ── Reviewer ── */
  .reviewer:where(.si-ReviewsSection, .si-ReviewsSection *){
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .avatar:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
  }

  .avatar--img img:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .avatar-initial:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #9E9E9E;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    align-items: center;
    justify-content: center;
  }

  .avatar--green:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2E7D52;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .reviewer-info:where(.si-ReviewsSection, .si-ReviewsSection *){
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .reviewer-name:where(.si-ReviewsSection, .si-ReviewsSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #272727;
  }

  .reviewer-time:where(.si-ReviewsSection, .si-ReviewsSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #888888;
  }

  /* ── Card stars ── */
  .card-stars:where(.si-ReviewsSection, .si-ReviewsSection *){
    display: flex;
    gap: 2px;
  }

  /* ── Review text ── */
  .review-text:where(.si-ReviewsSection, .si-ReviewsSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #272727;
    margin: 0;
    flex: 1;
  }

  .read-more:where(.si-ReviewsSection, .si-ReviewsSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #272727;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .read-more:hover:where(.si-ReviewsSection, .si-ReviewsSection *){ color: #D62121; }

  /* ── Card footer ── */
  .card-footer:where(.si-ReviewsSection, .si-ReviewsSection *){
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid #F0F0F0;
  }

  .posted-on:where(.si-ReviewsSection, .si-ReviewsSection *){
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .posted-label:where(.si-ReviewsSection, .si-ReviewsSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: #272727;
  }

  .posted-google:where(.si-ReviewsSection, .si-ReviewsSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #BFBFBF;
  }

  /* ── Bottom button ── */
  .more-reviews-btn:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 184px;
    padding: 15px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: linear-gradient(90deg, #D62121 0%, #701111 100%);
    box-shadow: 0px 4px 20.4px 0px #FFFFFF57;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .more-reviews-btn:hover:where(.si-ReviewsSection, .si-ReviewsSection *){ opacity: 0.9; }



  html.is-mobile .reviews-section:where(.si-ReviewsSection, .si-ReviewsSection *){
    height: auto;
    padding: 60px 20px 60px;
    gap: 28px;
  }

  html.is-mobile .reviews-section .heading-group:where(.si-ReviewsSection, .si-ReviewsSection *){
    margin-bottom: 24px;
  }

  html.is-mobile .reviews-section .section-title:where(.si-ReviewsSection, .si-ReviewsSection *){
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
  }

  html.is-mobile .reviews-section .title-underline:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 60px;
    height: 4px;
    margin-top: 10px;
  }

  html.is-mobile .reviews-section .google-bar:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  html.is-mobile .reviews-section .bar-left:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 291px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  html.is-mobile .reviews-section .review-us-btn:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 291px;
    height: 46px;
    padding: 15px 22px;
    gap: 10px;
    border-radius: 4px;
    justify-content: center;
    margin: 0 auto;
    display: flex;
  }

  html.is-mobile .reviews-section .cards-row:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  html.is-mobile .reviews-section .review-card:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 100%;
  }

  html.is-mobile .reviews-section .more-reviews-btn:where(.si-ReviewsSection, .si-ReviewsSection *){
    width: 186px;
    margin: 0 auto;
  }
