/* Category Page Styles - Simplified */
.category-hero-section {
  background-color: #f8f9fa !important;
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 0 20px;
}

.product-card {
  border-radius: 16px !important;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-image {
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.02);
}

.product-meta .badge {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
}

.product-title a {
  transition: color 0.3s ease;
  font-weight: 600;
  line-height: 1.4;
}

.product-title a:hover {
  color: #90c863 !important;
}

.product-actions .btn {
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.product-actions .btn-primary {
  background: #90c863;
  border-color: #90c863;
}

.product-actions .btn-primary:hover {
  background: #7ab55c;
  border-color: #7ab55c;
  transform: translateY(-1px);
}

.cta-section {
  background: #90c863 !important;
  position: relative;
}

.empty-state {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.empty-illustration i {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .category-hero-section {
    min-height: 220px;
  }

  .lead {
    font-size: 0.875rem;
  }

  .display-4 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .category-hero-section {
    min-height: 200px;
    text-align: center;
  }

  .display-4 {
    font-size: 1rem;
  }

  .product-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .category-hero-section {
    padding: 2rem 0;
  }

  .display-4 {
    font-size: 1.8rem;
  }

  .product-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-actions .btn {
    width: 100%;
  }
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.hover-primary:hover {
  color: #90c863 !important;
}

.transition-all {
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #90c863;
  border-color: #90c863;
}

.btn-primary:hover {
  background-color: #7ab55c;
  border-color: #7ab55c;
}

.btn-outline-primary {
  color: #90c863;
  border-color: #90c863;
}

.btn-outline-primary:hover {
  background-color: #90c863;
  border-color: #90c863;
}

.bg-primary {
  background-color: #90c863 !important;
}

.bg-primary-subtle {
  background-color: rgba(144, 200, 99, 0.1) !important;
}

.text-primary {
  color: #90c863 !important;
}
