/* Prebuilt PCs page */
.prebuilt-hero {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-dark) 100%);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
}

.prebuilt-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.prebuilt-hero p {
  color: var(--text-muted-light);
  max-width: 36rem;
  margin: 0 auto;
}

.prebuilt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.prebuilt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.prebuilt-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.prebuilt-card.highlight {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.prebuilt-card-image {
  height: 200px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.prebuilt-card-image img {
  max-height: 160px;
  object-fit: contain;
}

.prebuilt-card-body {
  padding: 1.5rem;
}

.prebuilt-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--surface);
}

.prebuilt-tagline {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.prebuilt-specs {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.prebuilt-specs li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border);
}

.prebuilt-specs li:last-child {
  border-bottom: none;
}

.prebuilt-specs strong {
  color: var(--surface);
  font-weight: 600;
}

.prebuilt-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.prebuilt-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

.prebuilt-empty i {
  font-size: 3rem;
  color: var(--border);
  margin-bottom: 1rem;
}

.prebuilt-empty h3 {
  color: var(--surface);
  margin-bottom: 0.5rem;
}

.prebuilt-cta-section {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--bg);
}

.prebuilt-cta-section h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 0.75rem;
  color: var(--surface);
}

.prebuilt-cta-section p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.prebuilt-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .prebuilt-hero {
    padding: 3rem 1rem;
  }

  .prebuilt-grid {
    grid-template-columns: 1fr;
  }

  .prebuilt-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .prebuilt-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
