#category-title {
  font-size: 34px;
  margin-bottom: 10px;
}

#category-description {
  max-width: 720px;
  margin: 0 auto 30px auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card-category {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-card-category .product-card-image {
  padding: 20px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
}

.product-card-category .product-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card-category:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-category .product-card-info {
  padding: 20px;
  text-align: center;
}

.product-card-category .product-card-info .product-category-badge {
  display: inline-block;
  background: rgba(42, 124, 95, 0.1);
  color: var(--clr-brand);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.product-card-category .product-card-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-dark-text);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .product-card-category .product-card-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card-category .product-card-image {
    height: 200px;
  }
}

