/* Product Review Card Styles */
.product-review-card {
  max-width: 400px;
  margin: 20px auto;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow for better depth */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Added hover animation */
}

.product-review-card:hover {
  transform: translateY(-2px); /* Added subtle hover lift effect */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.product-review-header {
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

.product-review-header.legit {
  background-color: #22c55e;
  color: white;
}

.product-review-header.scam {
  background-color: #ef4444;
  color: white;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.status-icon {
  width: 20px;
  height: 20px;
}

.product-review-content {
  padding: 20px;
}

.product-image {
  text-align: center;
  margin-bottom: 16px;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  max-height: 200px;
  object-fit: cover;
}

.product-name {
  font-size: 22px; /* Increased from 20px for better hierarchy */
  font-weight: 700; /* Increased from 600 for stronger presence */
  margin: 0 0 12px 0; /* Increased bottom margin */
  color: #1f2937;
  line-height: 1.3; /* Added line-height for better readability */
}

.product-rating {
  margin-bottom: 8px;
}

.star {
  color: #fbbf24;
  font-size: 18px;
  margin-right: 2px;
}

.star.filled {
  color: #f59e0b;
}

.star.half {
  background: linear-gradient(90deg, #f59e0b 50%, #d1d5db 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-price {
  font-size: 26px; /* Increased from 24px */
  font-weight: 800; /* Increased from 700 for stronger emphasis */
  color: #1f2937;
  margin-bottom: 18px; /* Increased margin */
  letter-spacing: -0.5px; /* Added letter spacing for better appearance */
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0; /* Increased bottom margin */
}

.product-features li {
  padding: 6px 0; /* Increased from 4px */
  color: #4b5563;
  position: relative;
  padding-left: 20px; /* Increased from 16px */
  font-size: 15px; /* Added explicit font size */
  line-height: 1.5; /* Added line-height for readability */
}

.product-features li:before {
  content: "✓"; /* Changed from bullet to checkmark */
  color: #22c55e; /* Changed to green color */
  position: absolute;
  left: 0;
  font-weight: 600; /* Made checkmark bold */
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px; /* Increased from 12px 24px for better touch targets */
  border-radius: 10px; /* Increased from 8px for more modern look */
  text-decoration: none;
  font-weight: 700; /* Increased from 600 for stronger text */
  text-align: center;
  transition: all 0.3s ease; /* Increased duration from 0.2s */
  border: none;
  cursor: pointer;
  flex: 1;
  min-width: 130px; /* Increased from 120px */
  font-size: 15px; /* Added explicit font size */
  letter-spacing: 0.3px; /* Added letter spacing */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Added shadow to buttons */
}

.btn-primary.legit {
  background-color: #22c55e;
  color: white;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3); /* Added colored shadow */
}

.btn-primary.legit:hover {
  background-color: #16a34a;
  transform: translateY(-1px); /* Added hover lift effect */
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4); /* Enhanced hover shadow */
}

.btn-primary.scam {
  background-color: #ef4444;
  color: white;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3); /* Added colored shadow */
}

.btn-primary.scam:hover {
  background-color: #dc2626;
  transform: translateY(-1px); /* Added hover lift effect */
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4); /* Enhanced hover shadow */
}

.btn-secondary {
  background-color: transparent;
  color: #22c55e;
  border: 2px solid #22c55e;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1); /* Added subtle shadow */
}

.btn-secondary:hover {
  background-color: #22c55e;
  color: white;
  transform: translateY(-1px); /* Added hover lift effect */
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3); /* Enhanced hover shadow */
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-review-card {
    margin: 20px 16px;
    max-width: none;
  }

  .product-actions {
    flex-direction: column;
  }

  .btn {
    flex: none;
  }
}
