/* Top picks page styles */
.top-picks-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 72px;
}

.top-picks-hero {
  margin-bottom: 28px;
}

.top-picks-hero h1 {
  margin: 6px 0 10px;
  font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
  color: #0f172a;
  letter-spacing: -0.02em;
}

.top-picks-hero p {
  margin: 6px 0 0;
  color: #475569;
  line-height: 1.6;
  max-width: 720px;
}

.top-picks-tag {
  display: inline-block;
  padding: 6px 10px;
  background: #eef2ff;
  color: #4338ca;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.top-picks-page {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.top-picks-bucket-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #0f172a;
}

.top-picks-bucket-subtitle {
  margin: 0 0 1.25rem;
  color: #6b7280;
  font-size: 0.95rem;
}

.top-picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.top-pick-card {
  background: #f5f7ff;
  border-radius: 1rem;
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: row;
  gap: 0.9rem;
  align-items: stretch;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

@media (max-width: 640px) {
  .top-pick-card {
    flex-direction: column;
  }
}

.top-pick-image-wrap {
  flex: 0 0 96px;
  max-width: 96px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-pick-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.top-pick-body {
  flex: 1 1 auto;
}

.top-pick-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: #0f172a;
}

.top-pick-description {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
}

.top-pick-meta {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.top-pick-dot {
  padding: 0 0.25rem;
}

.top-pick-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
}

.top-pick-button:hover {
  background: #1d4ed8;
}

/* Top picks layout */

.top-picks-bucket {
  margin-bottom: 40px;
}

.top-picks-bucket-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.top-picks-bucket-tagline {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 16px;
}

.top-picks-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Card itself: horizontal layout */

.top-picks-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f9fafb;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.top-picks-card-image {
  flex: 0 0 80px;
  height: 80px;
  border-radius: 12px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.top-picks-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.top-picks-card-content {
  flex: 1 1 auto;
  min-width: 0;
}

.top-picks-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.top-picks-card-tagline {
  font-size: 0.9rem;
  color: #4b5563;
  margin: 0 0 6px;
}

.top-picks-card-meta {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0 0 10px;
}

.top-picks-card-price {
  font-weight: 600;
  color: #111827;
}

.top-picks-card-dot {
  margin: 0 6px;
}

.top-picks-card-reviews {
  white-space: nowrap;
}

.top-picks-card-btn {
  font-size: 0.88rem;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: none;
}

/* Responsive tweaks */

@media (max-width: 640px) {
  .top-picks-card {
    padding: 14px 14px;
  }

  .top-picks-card-image {
    flex: 0 0 70px;
    height: 70px;
  }
}
