      .reviews-section {
        position: relative;
        overflow: hidden;
      }

      .reviews {
        display: flex;
        overflow-x: auto;
        direction: rtl;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }

      .reviews::-webkit-scrollbar {
        display: none;
      }

      .review {
        flex: 0 0 100%;
        scroll-snap-align: center;
        padding: 22px;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.18);
        border: 1px solid var(--line);
        color: var(--muted);
        line-height: 1.7;
        text-align: center;
      }

      .stars {
        color: var(--gold);
        margin-bottom: 8px;
        letter-spacing: 1px;
      }

      .review-author {
        margin-top: 14px;
        color: var(--text);
        font-weight: 800;
      }

      .review-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
      }

      .review-dot {
        width: 8px;
        height: 8px;
        border: 0;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.25);
        cursor: pointer;
        transition: 0.25s;
      }

      .review-dot.active {
        width: 24px;
        background: var(--pink);
      }

      .review-arrow {
        position: absolute;
        top: 50%;
        z-index: 5;
        width: 44px;
        height: 44px;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: rgba(5, 9, 20, 0.82);
        color: var(--text);
        font-size: 34px;
        line-height: 1;
        cursor: pointer;
        transform: translateY(-50%);
        transition: 0.25s;
      }

      .review-arrow:hover {
        background: rgba(216, 11, 108, 0.16);
        border-color: rgba(216, 11, 108, 0.45);
      }

      .review-next {
        right: 14px;
      }

      .review-prev {
        left: 14px;
      }


    @media (max-width: 820px) {
        .review-arrow {
          display: none;
        }

       .review {
          flex-basis: 82%;
          min-width: 245px;
        }
      }