/* 🔗 KLEUREN */
:root {
  --primary-color: #7464f3;
  --secondary-color: #6C63AC;
  --light-blue: #9db9f5;
}

/* ✨ UITGELICHT PRODUCT */
.highlight-section {
  padding: 60px 20px;
  background-color: #fff5fb;
  text-align: center;
}

.highlight-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 30px auto 0;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.highlight-image {
  width: 300px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.highlight-info {
  max-width: 400px;
  text-align: left;
}

.highlight-info h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.highlight-info p {
  color: #444;
  font-size: 16px;
  margin-bottom: 15px;
}

/* 🔘 CTA-KNOP */
.cta-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 26px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--secondary-color);
}

/* 🔥 BESTSELLERS & 🆕 NIEUW IN ASSORTIMENT */
.bestsellers-section,
.new-arrivals-section {
  padding: 60px 20px;
  background-color: #f8f1fa;
  text-align: center;
}

.bestsellers-section h2,
.new-arrivals-section h2 {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

/* 📦 PRODUCTEN GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

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

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.product-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

/* 🟣 KNOP: FUN-BUTTON (meer info / bekijk) */
.fun-button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.fun-button:hover {
  background-color: var(--light-blue);
}

/* 🪪 PRODUCT-BADGE (optioneel) */
.product-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* 📱 MOBIEL */
@media (max-width: 768px) {
  .highlight-box {
    flex-direction: column;
    text-align: center;
  }

  .highlight-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .product-card {
    padding: 15px;
  }
}






.search-wrapper {
  text-align: center;
  margin: 40px 0 20px;
}

#searchInput {
  width: 90%;
  max-width: 400px;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.filter-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  margin: 0 5px 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--light-blue);
}