.category-hero {
  padding: 64px 0 40px;
}

.category-title {
  font-size: 32px;
  margin: 0 0 12px;
}

.category-desc {
  max-width: 700px;
  color: #4B5563;
}

/* Grid */

.grid {
  display: grid;
  gap: 24px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Product Cards */

.product-card {
  background: white;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #E5E7EB;
}

.product-image {
  height: 150px;
  background: radial-gradient(circle, #fff, #E5E7EB);
  border-radius: 12px;
  margin-bottom: 12px;
}

.product-title {
  font-size: 18px;
  margin: 0 0 6px;
}

.product-text {
  color: #4B5563;
  font-size: 14px;
  margin: 0 0 12px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.rating {
  color: #F59E0B;
}

.price {
  font-weight: 600;
}

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

.btn {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.btn--primary {
  background: #2563EB;
  color: white;
}

.btn--primary:hover {
  background: #1D4ED8;
}

.btn--ghost {
  background: transparent;
  border: 1px solid #E5E7EB;
  color: #111827;
}

.btn--ghost:hover {
  background: #F3F4F6;
}

/* Guide section */

.category-guide {
  padding: 64px 0;
}

.section-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.guide-list {
  padding-left: 20px;
  color: #4B5563;
  line-height: 1.6;
}

/* FAQ */

.faq details {
  background: white;
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 12px;
  border: 1px solid #E5E7EB;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.faq p {
  font-size: 14px;
  color: #4B5563;
}


/* Responsive */

@media (max-width: 900px) {
  .grid--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
