.main-category {
  background: linear-gradient(135deg, #71c3b5 0%, #71c3b5 100%);
  padding-top: 100px;
  padding-bottom: 20px;
  min-height: 400px;
}

.category-container {
  padding: 32px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-header {
  margin-bottom: 32px;
  text-align: center;
}

.category-header h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.product-count {
  color: var(--color-main);
  font-size: 0.9rem;
}

.no-products {
  text-align: center;
  padding: 64px 16px;
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.product-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.4;
}

.product-info .subtitle {
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 12px;
  line-height: 1.4;
}

.product-info .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2a9d8f;
  margin: 0;
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
