/* Encapsulated styling ensures no interference with your WordPress main theme styles */
.vt-amazon-find-card {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 24px;
}
.vt-amazon-find-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: #e2e8f0;
}
.vt-card-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Modern 16:9 widescreen ratio */
  overflow: hidden;
  background-color: #f8fafc;
}
.vt-card-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vt-amazon-find-card:hover .vt-card-image-wrapper img {
  transform: scale(1.05);
}
.vt-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vt-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.vt-stars-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}
.vt-stars-rating .star {
  color: #fbbf24;
  font-size: 14px;
}
.vt-stars-rating .star.half {
  background: linear-gradient(90deg, #fbbf24 50%, #e2e8f0 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vt-stars-rating .rating-num {
  font-size: 11px;
  color: #64748b;
  margin-left: 6px;
  font-weight: 500;
}
.vt-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vt-card-description {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 16px 0;
}
.vt-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.vt-features-list li {
  font-size: 12px;
  color: #475569;
  margin-bottom: 8px;
  display: flex;
  align-items: start;
  gap: 8px;
}
.vt-features-list .check-icon {
  color: #10b981;
  font-weight: bold;
}
.vt-pros-cons-accordion {
  border-top: 1px solid #f1f5f9;
  padding-top: 10px;
  margin-bottom: 15px;
}
.vt-accordion-summary {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vt-accordion-summary::-webkit-details-marker {
  display: none;
}
.vt-accordion-summary::after {
  content: "+";
  font-size: 14px;
}
details[open] .vt-accordion-summary::after {
  content: "\2212";
}
.vt-accordion-content {
  background: #f8fafc;
  border-radius: 8px;
  padding: 10px;
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 11px;
}
.vt-pro-label {
  font-weight: 700;
  color: #10b981;
  display: block;
  margin-bottom: 4px;
}
.vt-con-label {
  font-weight: 700;
  color: #ef4444;
  display: block;
  margin-bottom: 4px;
}
.vt-accordion-content p {
  margin: 0 0 4px 0;
  color: #475569;
}
.vt-card-footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.vt-price-section {
  display: flex;
  flex-direction: column;
}
.vt-price-section .price-label {
  font-size: 9px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
.vt-price-section .price-val {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}
.vt-amazon-btn {
  flex-grow: 1;
  background: #fbbf24;
  color: #0f172a;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s ease;
  box-shadow: 0 2px 4px rgba(251, 191, 36, 0.2);
}
.vt-amazon-btn:hover {
  background: #f59e0b;
}