.customer-reviews {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    
    font-family: "Roboto", sans-serif;
    color: #111;

    box-sizing: border-box;
    
  }

  .reviews-heading {
    max-width: 620px;
    margin: 0 auto 32px;
    text-align: center;
  }

  .reviews-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #777;
  }

  .reviews-heading h2 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    color: #111;
  }

  .reviews-heading p {
    margin: 0;
    font-size: 15px;
    color: #666;
  }

  /* Review Grid */

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Review Card */

  .review-card {
    display: flex;
    flex-direction: column;
    padding: 26px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  }

  /* Top */

  .review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
  }

  .review-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f2f2f2;
    border-radius: 12px;

    font-size: 25px;
    color: #111;
  }

  .review-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .review-info strong {
    font-size: 17px;
    font-weight: 700;
    color: #111;
  }

  .review-info span {
    font-size: 13px;
    color: #777;
  }

  /* Review */

  .review-text {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.65;
    color: #222;
  }

  /* Source */

  .review-source {
    display: flex;
    align-items: center;
    gap: 6px;

    margin-top: auto;

    font-size: 12px;
    font-weight: 600;
    color: #777;
  }

  .review-source i {
    font-size: 11px;
    color: #198754;
  }

  /* Mobile */

  @media (max-width: 700px) {
    .customer-reviews {
      margin: 45px auto;
    }

    .reviews-grid {
      grid-template-columns: 1fr;
    }

    .reviews-heading h2 {
      font-size: 25px;
    }

    .review-card {
      padding: 22px;
    }

    .review-info strong {
      font-size: 16px;
    }

    .review-text {
      font-size: 15px;
    }
  }
  .review-extra {
    display: none;
  }

  .review-extra.is-visible {
    display: flex;
  }

  .reviews-more {
    margin-top: 28px;
    text-align: center;
  }

  .reviews-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 18px;

    background: #fff !important;
    color: #111 !important;

    border: 1px solid #ccc;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
  }

  .reviews-more-button:hover {
    background: #f5f5f5;
  }

  .reviews-more-button i {
    font-size: 12px;
    transition: transform 0.2s ease;
  }

  .reviews-more-button.is-open i {
    transform: rotate(180deg);
  }