.boeremark-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
}
.carousel-slide {
  min-width: 200px;
  flex-shrink: 0;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
}
.carousel-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.category-card {
    display: inline-block;
    background: #f5f5f5;
    padding: 1rem;
    margin: 0.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}
.category-card a {
    color: #222;
    text-decoration: none;
    font-weight: bold;
}
.category-card:hover {
    transform: translateY(-3px);
    background: #fff9e6;
}

.product-thumbnail {
  width: 100%;
  max-width: 150px;
  border-radius: 8px;
}