.spices-hero {
  background-image: url("assets/img/Spices-Product-page.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.spices-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.spices-hero .hero-content {
  position: relative;
  z-index: 1;
}

.spices-hero .hero-title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 16px;
}

.spices-hero .hero-description {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 600px;
  margin: 0 auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 36px;
  color: #1b2b4d;
  text-align: center;
  margin-bottom: 40px;
}

.spice-categories {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.category-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.category-card h3 {
  font-size: 24px;
  color: #1b2b4d;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 16px;
}

.view-more {
  display: inline-block;
  padding: 8px 16px;
  background-color: #35419c;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.view-more:hover {
  background-color: #2a3479;
}

.featured-products {
  padding: 80px 0;
}

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

.product-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 24px;
  color: #1b2b4d;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 16px;
}

.view-details {
  display: inline-block;
  padding: 8px 16px;
  background-color: #4caf50;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.view-details:hover {
  background-color: #45a049;
}

.quality-assurance {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.quality-item {
  text-align: center;
}

.quality-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  color: #35419c;
}

.quality-item h3 {
  font-size: 24px;
  color: #1b2b4d;
  margin-bottom: 8px;
}

.quality-item p {
  font-size: 16px;
  color: #666;
}

@media (max-width: 768px) {
  .spices-hero {
    height: 300px;
  }

  .spices-hero .hero-title {
    font-size: 36px;
  }

  .spices-hero .hero-description {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .category-card h3,
  .product-card h3,
  .quality-item h3 {
    font-size: 20px;
  }

  .category-card p,
  .product-card p,
  .quality-item p {
    font-size: 14px;
  }
}

