.reviews__container {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #f2f3f5f3, #fffffff5);
  max-width: 100%;
  margin: 0 auto;
}

.reviews__header {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.platform-rating-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-rating-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.platform-rating {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.platform-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.rating-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.rating-text {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.stars-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.rating-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}

.stars {
  display: flex;
  gap: 0.2rem;
}

.stars i {
  color: #fbbf24;
  font-size: 1.2rem;
}

.review-count {
  font-size: 0.85rem;
  color: #888;
}

.platform-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
  flex-shrink: 0;
}

.platform-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.platform-name-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.google-text span {
  color: #4285F4;
}

.tripadvisor-text span {
  color: #00AF87;
}

.write-review-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid;
}

.google-btn {
  background: #4285F4;
  color: white;
  border-color: #4285F4;
}

.google-btn:hover {
  background: #357ae8;
  border-color: #357ae8;
  transform: scale(1.05);
}

.tripadvisor-btn {
  background: #00AF87;
  color: white;
  border-color: #00AF87;
}

.tripadvisor-btn:hover {
  background: #009874;
  border-color: #009874;
  transform: scale(1.05);
}

.reviews__slider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.reviewsSwiper {
  width: 100%;
  padding-bottom: 1rem;
}

.review__card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: auto;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.review__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #e0e0e0;
  padding: 2px;
}

.review__user-info {
  flex: 1;
  min-width: 0;
}

.review__name {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.3rem;
}

.review__stars i {
  color: #fbbf24;
  font-size: 0.95rem;
}

.review__date {
  font-size: 0.8rem;
  color: #888;
}

.review__platform-badge {
  width: 35px;
  height: 35px;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: auto;
}

.review__text {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.read-more-btn {
  display: inline-block;
  color: #4285F4;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #357ae8;
  text-decoration: underline;
}

.reviewsSwiper .swiper-pagination {
  display: none;
}

/* Responsive Design */
@media (max-width: 1160px) {
  .platform-logo {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 1024px) {
  .reviews__header {
    flex-direction: column;
    gap: 1.5rem;
  }

  .platform-rating-wrapper {
    width: 100%;
    min-width: unset;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }

  .platform-logo {
    width: 100px;
    height: 100px;
  }

  .rating-number {
    font-size: 1.5rem;
  }

  .stars i {
    font-size: 1rem;
  }

  .review__card {
    padding: 1.5rem;
  }

  .review__avatar {
    width: 55px;
    height: 55px;
    border: 2.5px solid #e0e0e0;
  }

  .review__platform-badge {
    width: 32px;
    height: 32px;
  }

  .review__name {
    font-size: 0.95rem;
  }

  .review__text {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .platform-logo {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .platform-rating-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .platform-actions {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.5rem;
  }

  .write-review-btn {
    width: auto;
    text-align: center;
    padding: 0.5rem 1.2rem;
  }

  .platform-logo {
    width: 80px;
    height: 80px;
  }
}