.review-content {
  margin: 0 auto;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  background: #f4f7fb;
}

.table-s2 {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow-x: auto;
  max-width: 100%;
}

.table-s2:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.review-item-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 40px;
  flex-wrap: nowrap;
  min-width: 1100px;
}

.review-col-logo {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-col-logo img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.review-col-logo img:hover {
  transform: scale(1.05);
}

.review-col-rating {
  flex: 0 0 140px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  color: #ffc107;
  text-shadow: 0 0 5px #cc9a00;
}

.review-rating {
  padding: 0;
  margin: 0 0 15px 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 26px;
}

.review-rating li {
  color: #ffc107;
  text-shadow: 0 0 5px #cc9a00;
}

.review-rating li.empty {
  color: #ccc;
  text-shadow: none;
}

.review-col-bonus {
  flex: 0 0 200px;
  font-weight: 800;
  font-size: 14px;
  color: #00c2cb;
  padding: 0 10px;
  text-align: center;
  word-break: break-word;
  white-space: normal;
}

.review-col-features {
  flex: 1 1 280px;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  padding-left: 15px;
}

.review-col-features ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.review-col-features ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.review-col-features ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00c2cb;
  font-size: 24px;
  line-height: 1;
  top: 2px;
}

.review-col-btn {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-left: 15px;
}

.review-btn {
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  background-color: #eda902;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 6px 10px rgba(92, 51, 255, 0.4);
  transition: background 0.3s ease;
  width: 100%;
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-btn:hover {
  background-color: #209ecc;
  color: #fff;
}

.review-btn-p1 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.review-btn-p2 {
  font-size: 14px;
  opacity: 0.85;
  font-weight: 600;
}

.review-col-btn p {
  font-size: 13px;
  color: #555;
  text-align: center;
  max-width: 240px;
  font-weight: 600;
}

/* Адаптивность */

@media (max-width: 1400px) {
  .review-item-row {
    min-width: 950px;
    gap: 18px;
    padding: 25px 30px;
  }

  .review-col-logo {
    flex: 0 0 180px;
  }

  .review-col-logo img {
    max-height: 120px;
  }

  .review-col-bonus {
    font-size: 13px;
    flex: 0 0 180px;
  }

  .review-col-features {
    font-size: 14px;
    flex: 1 1 240px;
  }

  .review-col-btn {
    flex: 0 0 220px;
  }

  .review-btn {
    font-size: 16px;
    padding: 12px 28px;
    max-width: 220px;
  }
}

@media (max-width: 900px) {
  .table-s2 {
    overflow-x: scroll;
  }

  .review-item-row {
    min-width: 700px;
  }

  .review-col-bonus {
    font-size: 13px;
    flex: 0 0 160px;
  }

  .review-col-features {
    font-size: 13px;
    flex: 1 1 200px;
  }

  .review-col-btn {
    flex: 0 0 180px;
  }

  .review-btn {
    font-size: 15px;
    padding: 10px 22px;
    max-width: 180px;
  }
}

@media (max-width: 1200px) {
  .table-s2 {
    overflow: visible;
  }

  .review-item-row {
    flex-direction: column;
    align-items: stretch;
    min-width: auto;
    gap: 16px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
  }

  .review-col-logo,
  .review-col-rating,
  .review-col-bonus,
  .review-col-features,
  .review-col-btn {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    text-align: center;
    padding: 10px 0;
  }

  .review-col-features {
    text-align: left;
    padding-left: 20px;
  }

  .review-col-features ul {
    padding-left: 20px;
  }

  .review-btn {
    width: 100%;
    max-width: none;
  }

  .review-col-btn p {
    max-width: 100%;
  }
}