/* Health & Wellness Styles */

.page-health {
  min-height: 100vh;
}

.health-hero {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.health-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.health-hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Health Categories Grid */
.health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.health-category-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.health-category-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.health-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.health-category-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.health-category-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 12px;
  min-height: 40px;
}

.product-count {
  display: block;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.btn-health {
  padding: 10px 20px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-health:hover {
  background: var(--color-primary-dark);
}

/* Health Category Page */
.page-health-category {
  min-height: 100vh;
}

.breadcrumb {
  padding: 20px 0;
  margin-bottom: 20px;
  color: #666;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.category-header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
  border-radius: 12px;
  margin-bottom: 40px;
}

.category-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.category-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.category-header p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

.product-count-large {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 1;
}

.category-filters {
  margin-bottom: 40px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  gap: 15px;
  flex: 1;
  min-width: 300px;
}

.filter-input,
.filter-select {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
}

.health-products {
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 160px;
  background-color: #f0f0f0;
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e74c3c;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
}

.product-content {
  padding: 15px;
}

.product-content h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #333;
}

.product-brand {
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.product-rating .stars {
  color: #f39c12;
  font-weight: 600;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.product-pricing .price {
  font-weight: 700;
  color: var(--color-primary);
}

.product-pricing .mrp {
  text-decoration: line-through;
  color: #999;
}

.btn-add-cart {
  width: 100%;
  padding: 8px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.btn-add-cart:hover {
  background: var(--color-primary-dark);
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .health-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .health-hero-content h1 {
    font-size: 1.8rem;
  }

  .category-header {
    padding: 30px 20px;
  }

  .category-header h1 {
    font-size: 1.5rem;
  }

  .category-icon {
    font-size: 2.5rem;
  }

  .category-filters {
    flex-direction: column;
  }

  .filter-group {
    flex-direction: column;
    min-width: auto;
  }

  .filter-input,
  .filter-select {
    flex: none;
    width: 100%;
  }

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