.boeken {
  background: var(--color-beige);
}

/* Info + trust items naast elkaar boven de widget */
.boeken-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.boeken-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.boeken-info-tekst {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.boeken-info-tekst p {
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.8;
}

.boeken-trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
}

.trust-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-olive);
  color: white;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Widget full-width onder de info */
.boeken-widget {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  box-shadow: var(--shadow-md);
  width: 100%;
}

#lodgify-search-bar,
#lodgify-widget {
  width: 100%;
}

@media (max-width: 768px) {
  .boeken-info {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .boeken-widget {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-4);
  }
}
