/* Ana Sayfa Özel Stilleri */

.hero-section {
  background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary-light) 100%);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.hero-content h1 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.search-box {
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.search-box .form-control {
  border: none;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
}

.search-box .btn {
  border-radius: 50px;
  padding: 1rem 2rem;
  margin: 0.25rem;
}

.kategori-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.kategori-card {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.kategori-card:hover {
  text-decoration: none;
  color: inherit;
}

.kategori-card .card {
  height: 100%;
  text-align: center;
  padding: 2rem 1rem;
}

.kategori-card .card-body i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.featured-products {
  margin: 3rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  text-decoration: none;
  color: inherit;
}

.product-image {
  height: 200px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image i {
  font-size: 4rem;
  color: var(--primary-lighter);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

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

.product-rating {
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.stats-section {
  background: var(--white);
    padding: 2rem 0;
    margin: 1rem 0 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .kategori-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}