.review-item {
  background: #f8f9fa;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.review-item-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.review-item-row>div {
  flex: 1 1 18%;
  min-width: 180px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s ease;
}

.review-item-row>div:hover {
  background: #ffffff33;
  border-radius: 8px;
}

.review-col-logo img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 10px;
}

.review-col-rating ul {
  text-align: center;
  padding: 0;
}

.review-col-rating li {
  display: inline-block;
  font-size: 20px;
  color: #f5c518;
  transition: transform 0.2s;
}

.review-col-rating li:hover {
  transform: scale(1.1);
}

.review-col-rating .btn-read-more {
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
  color: #007bff;
}

.review-col-bonus h5 {
  font-size: 18px;
  color: #212529;
  text-align: center;
}

.review-col-features ul {
  list-style: none;
  padding-left: 0;
  font-size: 15px;
  color: #444;
}

.review-col-features li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.review-col-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
  font-weight: bold;
}

.review-col-btn {
  text-align: center;
}

.review-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff4e50, #f9d423);
  color: white !important;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.4s ease;
}

.review-btn:hover {
  background: linear-gradient(135deg, #f12711, #f5af19);
}

.review-col-btn p {
  font-size: 12px;
  margin-top: 8px;
  color: #888;
}

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

@media (max-width: 1024px) {
  .review-item-row>div {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .review-item-row>div {
    flex: 1 1 100%;
  }
}