:root{
  --brand: #1bae70;
  --brand-dark: #0f7a52;

  --bg: #fdfbf7;
  --text: #1d1d1d;
  --text-muted: rgba(29, 29, 29, 0.62);

  --border: rgba(0, 0, 0, 0.15);
  --card-border: #e1e1e1;

  --radius-card: 10px;
  --radius-btn: 30px;
  --radius-form: 6px;

  --container-max: 1360px;
}

/* start Basic settings */
  html {position: relative;min-height: 100%;}
  body {margin-bottom: 56px;padding-top: 101px;padding-bottom: 43px;}
  .center-block {display: table;margin-right:auto;margin-left:auto;}
  .center-text {text-align: center;}
    .lagere_text {max-width: 200px;}
/* end basic settings */

html, body{
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container{ max-width: var(--container-max); }

.section-pad{ padding: 64px 0; }

.text-muted, .text-secondary{ color: var(--text-muted) !important; }

a{ color: var(--brand); }
a:hover{ color: var(--brand-dark); }

/* Navbar */
.navbar{ background:#fff !important; }
.nav-link{ font-weight: 500; }

/* Cards */
.card{
  border-radius: var(--radius-card);
  border: 1px solid var(--card-border);
}
.card-hover{
  transition: transform .15s ease, box-shadow .15s ease;
}
.card-hover:hover{
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1.25rem rgba(0,0,0,.08);
}

/* Buttons */
.btn{ border-radius: var(--radius-btn); font-weight: 500; }
.btn-success{
  background: var(--brand);
  border-color: var(--brand);
}
.btn-success:hover{
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
.btn-outline-success{
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-success:hover{
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Forms */
.form-control, .form-select{
  border-radius: var(--radius-form);
  border-color: rgba(29, 29, 29, 0.30);
}
.form-control:focus, .form-select:focus{
  border-color: var(--brand);
  box-shadow: 0 0 0 .2rem rgba(27, 174, 112, 0.18);
}

/* Hero */
.hero{
  background: linear-gradient(135deg, rgba(27,174,112,.08), rgba(15,122,82,.06));
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.badge-soft{
  background: rgba(27,174,112,.10);
  color: var(--brand-dark);
  border: 1px solid rgba(27,174,112,.18);
}












/* Category slider */
.category-slider {
  position: relative;
}

.category-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3); /* desktop: 3 zichtbaar */
  gap: 1rem;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: .5rem;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 991.98px) {
  .category-track { grid-auto-columns: calc((100% - 1rem) / 2); } /* tablet: 2 zichtbaar */
}
@media (max-width: 575.98px) {
  .category-track { grid-auto-columns: 85%; } /* mobiel: bijna 1 kaart */
}

.category-track::-webkit-scrollbar { height: 10px; }
.category-track::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 999px; }
.category-track::-webkit-scrollbar-track { background: transparent; }

.category-slide {
  scroll-snap-align: start;
}

.category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1rem;
}

.category-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-arrow:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.category-dots {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
}

.category-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.25);
  background: transparent;
  padding: 0;
}

.category-dot.is-active {
  width: 26px;
  background: rgba(0,0,0,.75);
  border-color: rgba(0,0,0,.75);
}









