.exposanten-wrapper {
  margin-bottom: 30px;
}

.exposanten-search {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.exposanten-search input {
  flex: 1 1 280px;
  min-width: 200px;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.exposanten-search input:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.exposanten-search input::placeholder {
  color: #999;
}

.exposanten-search select.exposanten-category-filter {
  flex: 0 0 200px;
  min-width: 180px;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.exposanten-search select.exposanten-category-filter:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.exposanten-search select.exposanten-category-filter:hover {
  border-color: #b0b0b0;
}

.exposanten-grid {
  display: grid;
  gap: var(--gap, 5px);
  justify-items: var(--justify, center);
}

/* Mobile first: 2 kolommen */
.exposanten-grid {
  grid-template-columns: repeat(var(--cols-mobile, 2), 1fr);
}

/* Tablet (≥768px): 3 kolommen standaard */
@media (min-width: 768px) {
  .exposanten-grid {
    grid-template-columns: repeat(var(--cols-tablet, 3), 1fr);
  }
}

/* Desktop (≥1024px): 5 kolommen standaard */
@media (min-width: 1024px) {
  .exposanten-grid {
    grid-template-columns: repeat(var(--cols-desktop, 5), 1fr);
  }
}

.exposanten-grid .exposanten-item img {
  width: var(--img-w, 300px);
  height: var(--img-h, 300px);
  object-fit: contain;
  background: #fff;
  border: 1px solid #eee;
  display: block;
}

.exposanten-item {
  position: relative;
  text-decoration: none;
  display: inline-block;
  overflow: visible;
}

.exposanten-category-labels {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 10;
  max-width: calc(100% - 20px);
  pointer-events: none;
}

.exposanten-category-labels > * {
  pointer-events: auto;
}

.exposanten-category-label,
.exposanten-stand-label {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--e-global-typography-primary-font-family, inherit);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
}

.exposanten-category-label {
  background: var(--e-global-color-primary, #ce3c8d);
  color: #fff;
}

.exposanten-stand-label {
  background: #F6F3EE;
  color: var(--e-global-color-primary, #ce3c8d);
}

/* Empty State - Binnenkort beschikbaar */
.exposanten-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border: 2px dashed #d0d5dd;
  margin: 40px 0;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.exposanten-empty-icon {
  margin: 0 auto 24px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2271b1 0%, #1e5a8e 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 12px rgba(34, 113, 177, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(34, 113, 177, 0.3);
  }
}

.exposanten-empty-icon svg {
  width: 40px;
  height: 40px;
}

.exposanten-empty-title {
  font-size: 28px;
  font-weight: 700;
  color: #1d2327;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.exposanten-empty-text {
  font-size: 16px;
  color: #646970;
  margin: 0;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments for empty state */
@media (max-width: 768px) {
  .exposanten-empty-state {
    padding: 40px 15px;
    margin: 30px 0;
  }
  
  .exposanten-empty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }
  
  .exposanten-empty-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .exposanten-empty-title {
    font-size: 24px;
  }
  
  .exposanten-empty-text {
    font-size: 14px;
  }
}
