/* Review Cards Styles */
.mb-reviews-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.mb-review-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.mb-review-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(249, 199, 25, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mb-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.mb-review-author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mb-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(249, 199, 25, 0.3);
}

.mb-review-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mb-review-author {
  color: #f9c719;
  font-size: 16px;
  font-weight: 600;
}

.mb-review-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #cccccc;
}

.mb-review-country img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.mb-review-date {
  font-size: 12px;
  color: #999999;
}

.mb-review-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.mb-rating-display {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mb-rating-value {
  font-size: 24px;
  font-weight: 700;
  color: #f9c719;
}

.mb-stars {
  display: flex;
  gap: 2px;
}

.mb-star {
  font-size: 18px;
  color: #666666;
}

.mb-star.mb-star-filled {
  color: #f9c719;
}

.mb-rating-details-btn {
  background: none;
  border: 1px solid rgba(249, 199, 25, 0.5);
  color: #f9c719;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-rating-details-btn:hover {
  background-color: rgba(249, 199, 25, 0.1);
  border-color: #f9c719;
}

.mb-review-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.mb-review-source {
  margin-bottom: 15px;
  padding: 8px 12px;
  background-color: rgba(2, 80, 75, 0.3);
  border-radius: 8px;
  border-left: 3px solid #02504b;
}

.source-label {
  color: #cccccc;
  font-size: 12px;
}

.source-link {
  color: #f9c719;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

.source-link:hover {
  text-decoration: underline;
}

.source-name {
  color: #f9c719;
  font-size: 12px;
  font-weight: 500;
}

.mb-review-body {
  margin-bottom: 20px;
}

.mb-review-text {
  color: #cccccc;
  line-height: 1.7;
  font-size: 15px;
}

.mb-review-text p {
  margin-bottom: 12px;
}

.mb-review-expand {
  background: none;
  border: none;
  color: #f9c719;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.mb-review-expand:hover {
  color: #ffffff;
}

.mb-review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mb-review-pros,
.mb-review-cons {
  display: flex;
  flex-direction: column;
}

.pros-title,
.cons-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pros-title {
  color: #4ade80;
}

.cons-title {
  color: #f87171;
}

.pros-list,
.cons-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mb-pro-item,
.mb-con-item {
  font-size: 13px;
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.mb-pro-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
}

.mb-con-item::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: bold;
}

.mb-pro-item {
  color: #e6f7e6;
}

.mb-con-item {
  color: #fde8e8;
}

.mb-review-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-review-votes {
  display: flex;
  gap: 15px;
}

.mb-vote-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cccccc;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
}

.mb-vote-btn:hover {
  border-color: #f9c719;
  color: #f9c719;
  background-color: rgba(249, 199, 25, 0.1);
}

.mb-vote-btn.voted {
  border-color: #f9c719;
  color: #f9c719;
  background-color: rgba(249, 199, 25, 0.2);
}

.vote-icon {
  font-size: 14px;
}

.vote-count {
  font-weight: 500;
}

.mb-reply-btn {
  background: none;
  border: 1px solid rgba(2, 80, 75, 0.5);
  color: #02504b;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mb-reply-btn:hover {
  background-color: rgba(2, 80, 75, 0.1);
  border-color: #02504b;
  color: #ffffff;
}

.mb-reply-form {
  margin-top: 20px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reply-form-header h5 {
  color: #f9c719;
  margin-bottom: 15px;
  font-size: 14px;
}

.reply-input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.reply-name-input,
.reply-email-input,
.reply-text-input {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
}

.reply-name-input:focus,
.reply-email-input:focus,
.reply-text-input:focus {
  outline: none;
  border-color: #f9c719;
  box-shadow: 0 0 0 2px rgba(249, 199, 25, 0.2);
}

.reply-text-input {
  resize: vertical;
  min-height: 80px;
}

.mb-reply-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.mb-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mb-btn-primary {
  background-color: #02504b;
  color: #ffffff;
}

.mb-btn-primary:hover {
  background-color: #034540;
}

.mb-btn-secondary {
  background-color: transparent;
  color: #cccccc;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mb-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.mb-rating-breakdown {
  margin-top: 20px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-rating-breakdown h5 {
  color: #f9c719;
  margin-bottom: 15px;
  font-size: 14px;
}

.rating-breakdown-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rating-breakdown-item span {
  color: #cccccc;
  font-size: 13px;
}

.breakdown-stars {
  display: flex;
  gap: 2px;
}

.breakdown-star {
  font-size: 14px;
  color: #666666;
}

.breakdown-star.filled {
  color: #f9c719;
}

.load-more-reviews {
  text-align: center;
  padding: 40px 0;
}

.load-more-btn {
  margin-bottom: 20px;
}

.reviews-pagination {
  color: #cccccc;
  font-size: 14px;
}

.pagination-info {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
  .mb-review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .mb-review-rating {
    align-items: flex-start;
  }

  .mb-review-pros-cons {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .mb-review-actions {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .mb-review-votes {
    justify-content: center;
  }

  .reply-input-group {
    grid-template-columns: 1fr;
  }

  .mb-reply-actions {
    justify-content: stretch;
  }

  .mb-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .mb-review-card {
    padding: 20px;
  }

  .mb-review-author-info {
    gap: 10px;
  }

  .mb-review-avatar {
    width: 40px;
    height: 40px;
  }

  .mb-rating-display {
    flex-direction: column;
    gap: 5px;
  }

  .mb-rating-value {
    font-size: 20px;
  }

  .mb-stars {
    justify-content: center;
  }
}
