/* SlimmeKids Verlanglijstje – donkerpaarse site-gradient, witte tekst, witte boxen alleen bij formulieren */
body.vl-page {
  --vl-pink: #ff6b9d;
  --vl-rose: #ff8fb5;
  --vl-purple: #5b21b6;
  --vl-indigo: #667eea;
  --vl-ink: #3b0764;
  --vl-muted: rgba(255, 255, 255, 0.82);
  --vl-text: #ffffff;
  --vl-glass: rgba(255, 255, 255, 0.1);
  --vl-glass-border: rgba(255, 255, 255, 0.22);
  font-family: 'Fredoka', sans-serif;
  color: var(--vl-text);
  overflow-x: clip;
  max-width: 100vw;
}

/* Laat de globale paarse body-gradient door (zoals Leuk voor Kids) */
body.vl-page .main-content {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  min-height: 70vh;
  padding: 1.25rem 0 3.5rem;
  background: transparent;
  color: var(--vl-text);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body.vl-page .main-content a:not(.vl-btn):not(.vl-mine-card) {
  color: #ffe4f1;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
body.vl-page .main-content a:not(.vl-btn):not(.vl-mine-card):hover {
  color: #fff;
}

@keyframes vl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes vl-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.vl-wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
  min-width: 0;
}

.vl-hero {
  text-align: center;
  margin: 0.5rem auto 1.75rem;
  animation: vl-fade-up 0.55s ease both;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.vl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 228, 241, 0.92);
  margin: 0 0 0.45rem;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.vl-eyebrow a {
  color: inherit;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.88rem;
}

.vl-title {
  font-size: clamp(1.55rem, 6.5vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.vl-lead {
  max-width: 36rem;
  width: 100%;
  margin: 0 auto 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.vl-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.vl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.vl-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.vl-btn:active { transform: translateY(0); }

.vl-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 45%, #7c3aed 100%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}
.vl-btn--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.vl-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.24);
}
.vl-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px dashed rgba(255, 255, 255, 0.45);
}
.vl-btn--sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}
.vl-btn--danger {
  background: rgba(185, 28, 28, 0.2);
  color: #fecaca;
  border: 1px solid rgba(254, 202, 202, 0.45);
}
.vl-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Standaard secties: géén witte box */
.vl-card {
  background: transparent;
  border-radius: 0;
  padding: 0.35rem 0 1.35rem;
  box-shadow: none;
  border: none;
  margin-bottom: 1rem;
  animation: vl-fade-up 0.5s ease both;
  color: var(--vl-text);
}

.vl-card h2,
.vl-card h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.vl-card h2 { font-size: 1.12rem; }
.vl-card h3 { font-size: 1rem; }

.vl-card p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
  margin: 0 0 0.7rem;
  font-size: 0.86rem;
  font-weight: 400;
}

/* Alleen formulieren: witte box + donkerpaarse tekst */
.vl-card--form {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 18px;
  padding: 1.35rem 1.4rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 40px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--vl-ink);
}
.vl-card--form h2,
.vl-card--form h3 {
  color: var(--vl-ink);
}
.vl-card--form h2 { font-size: 1.08rem; }
.vl-card--form h3 { font-size: 0.98rem; }
.vl-card--form p,
.vl-card--form .vl-hint {
  color: #5b21b6;
  font-size: 0.84rem;
  line-height: 1.5;
  opacity: 0.92;
}
.vl-card--form .vl-btn--ghost {
  color: var(--vl-ink);
  border-color: rgba(91, 33, 182, 0.35);
}
.vl-card--form .vl-btn--secondary {
  color: var(--vl-ink);
  background: rgba(91, 33, 182, 0.08);
  border-color: rgba(91, 33, 182, 0.2);
}

.vl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 0.5rem;
}
@media (max-width: 720px) {
  .vl-steps { grid-template-columns: 1fr; }
}

.vl-step {
  background: transparent;
  border-radius: 0;
  padding: 0.85rem 0.4rem;
  text-align: center;
  border: none;
  box-shadow: none;
  animation: vl-float 5.5s ease-in-out infinite;
}
.vl-step:nth-child(2) { animation-delay: 0.4s; }
.vl-step:nth-child(3) { animation-delay: 0.8s; }
.vl-step-icon {
  width: 2.1rem;
  height: 2.1rem;
  margin: 0 auto 0.55rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff6b9d, #7c3aed);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
/* FAQ – zelfde look als Leuk voor Kids: gecentreerd, altijd open, wit op paars */
.vl-faq {
  max-width: 42rem;
  margin: 1.75rem auto 1.25rem;
  padding: 1.1rem 0.75rem;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  animation: vl-fade-up 0.5s ease both;
}
.vl-faq-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 0.4rem;
  text-align: center;
  text-shadow: 0 1px 6px rgba(15, 23, 42, 0.28);
}
.vl-faq-lead {
  font-size: 0.84rem;
  line-height: 1.45;
  margin: 0 auto 0.85rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  text-shadow: 0 1px 6px rgba(15, 23, 42, 0.28);
}
.vl-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  max-width: 38rem;
  margin: 0 auto;
  padding: 0;
}
.vl-faq-item {
  margin: 0;
  padding: 0.7rem 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  text-align: center;
  box-shadow: none;
}
.vl-faq-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.vl-faq-q {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.28rem;
  padding: 0;
  text-align: center;
  text-shadow: 0 1px 6px rgba(15, 23, 42, 0.28);
  line-height: 1.3;
}
.vl-faq-item p {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  font-size: 0.8rem;
  text-align: center;
  text-shadow: 0 1px 6px rgba(15, 23, 42, 0.22);
}
@media (max-width: 768px) {
  .vl-faq {
    margin: 1.15rem 0 1rem;
    padding: 0.9rem 0.15rem;
    max-width: none;
    width: 100%;
  }
  .vl-faq-title { font-size: 1.02rem; }
  .vl-faq-lead { font-size: 0.8rem; max-width: none; }
  .vl-faq-grid { max-width: none; }
  .vl-faq-q { font-size: 0.86rem; }
  .vl-faq-item p { font-size: 0.78rem; }
}
.vl-story p {
  margin-bottom: 1rem;
}
.vl-step strong {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.vl-step span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  line-height: 1.45;
}

.vl-occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: 1.25rem 0 0.25rem;
}
.vl-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.vl-shops {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.75rem;
}
.vl-shop-pill {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 0.3rem 0.55rem;
}

.vl-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
}
@media (max-width: 640px) {
  .vl-form-grid { grid-template-columns: 1fr; }
}
.vl-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.vl-form-group--full { grid-column: 1 / -1; }
.vl-form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vl-ink);
}
.vl-form-group input,
.vl-form-group select,
.vl-form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(91, 33, 182, 0.22);
  font-family: inherit;
  font-size: 0.92rem;
  background: #fff;
  color: var(--vl-ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.vl-form-group input:focus,
.vl-form-group select:focus,
.vl-form-group textarea:focus {
  outline: none;
  border-color: #c44569;
  box-shadow: 0 0 0 3px rgba(196, 69, 105, 0.18);
}
.vl-form-group textarea { min-height: 90px; resize: vertical; }
.vl-hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
  line-height: 1.45;
}

.vl-alert {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.vl-alert--ok {
  background: rgba(72, 187, 120, 0.2);
  border: 1px solid rgba(134, 239, 172, 0.45);
  color: #dcfce7;
}
.vl-alert--err {
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(252, 165, 165, 0.45);
  color: #fecaca;
}
.vl-alert--info {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.vl-card--form .vl-alert--ok {
  background: rgba(72, 187, 120, 0.12);
  border-color: rgba(72, 187, 120, 0.35);
  color: #166534;
}
.vl-card--form .vl-alert--err {
  background: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.3);
  color: #b91c1c;
}
.vl-card--form .vl-alert--info {
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.28);
  color: #3730a3;
}

.vl-share-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.75rem;
}
.vl-share-url {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.vl-items {
  display: grid;
  gap: 0.9rem;
}
.vl-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 0.9rem;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.vl-item:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}
.vl-item.is-reserved {
  opacity: 0.72;
  filter: grayscale(0.15);
}
.vl-item-img {
  width: 96px;
  min-height: 96px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.vl-item-img img {
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
  display: block;
}
.vl-item-body {
  padding: 0.75rem 0.15rem 0.75rem 0;
  min-width: 0;
}
.vl-item-body h4 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.3;
}
.vl-item-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.3rem;
}
.vl-item-price {
  font-weight: 700;
  color: #fff;
  font-size: 0.98rem;
}
.vl-item-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.76);
  margin: 0.2rem 0 0;
}
.vl-item-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  justify-content: center;
  padding: 0.75rem 0.85rem 0.75rem 0;
  align-items: stretch;
}
.vl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 107, 157, 0.28);
  color: #ffe4f1;
  margin-bottom: 0.3rem;
}
.vl-badge--reserved {
  background: rgba(255, 255, 255, 0.18);
  color: #e0e7ff;
}
.vl-empty {
  text-align: center;
  padding: 1.5rem 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

@media (max-width: 560px) {
  .vl-item {
    grid-template-columns: 72px 1fr;
  }
  .vl-item-img { width: 72px; min-height: 72px; }
  .vl-item-img img { max-height: 72px; }
  .vl-item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0.75rem 0.85rem;
  }
}

.vl-dropdown {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
}
.vl-toolbar .vl-dropdown,
.vl-dropdown--inline {
  display: inline-block;
  width: auto;
  min-width: 11.5rem;
}
.vl-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
  padding: 0.7rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.vl-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
}
.vl-dropdown.is-open .vl-dropdown-toggle,
.vl-dropdown-toggle[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
.vl-dropdown-toggle [data-vl-label] {
  flex: 1;
  min-width: 0;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vl-dropdown-caret {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.8;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}
.vl-dropdown.is-open .vl-dropdown-caret,
.vl-dropdown-toggle[aria-expanded="true"] .vl-dropdown-caret {
  transform: rotate(-135deg) translateY(-1px);
}

.vl-card--form .vl-dropdown-toggle {
  border-color: rgba(91, 33, 182, 0.22);
  background: #fff;
  color: var(--vl-ink);
  box-shadow: 0 1px 2px rgba(91, 33, 182, 0.04);
}
.vl-card--form .vl-dropdown-toggle:hover {
  border-color: rgba(91, 33, 182, 0.4);
  background: #faf8ff;
}
.vl-card--form .vl-dropdown.is-open .vl-dropdown-toggle,
.vl-card--form .vl-dropdown-toggle[aria-expanded="true"] {
  border-color: #c44569;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(196, 69, 105, 0.16);
}

.vl-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  min-width: 100%;
  width: max-content;
  max-width: min(320px, 92vw);
  max-height: min(280px, 50vh);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(91, 33, 182, 0.1);
  box-shadow:
    0 4px 6px rgba(26, 26, 46, 0.04),
    0 18px 40px rgba(26, 26, 46, 0.18);
  padding: 0.4rem;
  z-index: 50;
  animation: vl-dropdown-in 0.16s ease;
}
@keyframes vl-dropdown-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.vl-dropdown-menu[hidden] { display: none; }
.vl-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.8rem;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: #3b0764;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}
.vl-dropdown-item::after {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 1.5px solid transparent;
  flex-shrink: 0;
  opacity: 0;
}
.vl-dropdown-item:hover {
  background: rgba(124, 58, 237, 0.08);
  color: #5b21b6;
}
.vl-dropdown-item.is-active {
  background: rgba(124, 58, 237, 0.12);
  color: #5b21b6;
  font-weight: 600;
}
.vl-dropdown-item.is-active::after {
  opacity: 1;
  background: #7c3aed;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.vl-dropdown-item:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(124, 58, 237, 0.35);
}

.vl-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.vl-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (max-width: 560px) {
  .vl-stats-row { grid-template-columns: 1fr; }
}
.vl-stat {
  background: transparent;
  border-radius: 0;
  padding: 0.65rem 0.25rem;
  text-align: center;
  border: none;
}
.vl-stat strong {
  display: block;
  font-size: 1.3rem;
  color: #fff;
}
.vl-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.76);
}

.vl-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.5rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 640px) {
  .vl-feature-grid { grid-template-columns: 1fr; }
}
.vl-feature-card {
  background: transparent;
  border-radius: 0;
  padding: 0.65rem 0;
  border: none;
  box-shadow: none;
  animation: vl-fade-up 0.55s ease both;
}
.vl-feature-icon {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}
.vl-feature-card strong {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.vl-feature-card span:last-child {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  line-height: 1.45;
}
.vl-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vl-tips-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.vl-tips-list li:last-child { border-bottom: none; }
.vl-tips-list li::before {
  content: '•';
  position: absolute;
  left: 0.35rem;
  color: #ffb6d5;
  font-weight: 700;
}
.vl-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vl-compare-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.vl-compare-list li:last-child { border-bottom: none; }
.vl-compare-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffb6d5;
  font-weight: 700;
}
.vl-compare-list strong { color: #fff; }

.vl-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  margin: 0.35rem 0 0.85rem;
}
.vl-progress--lg { height: 10px; margin: 0.75rem 0 1rem; }
.vl-progress > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6b9d, #c4b5fd);
  transition: width 0.45s ease;
}

.vl-mine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.9rem;
}
.vl-mine-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.vl-mine-card {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  transition: transform 0.18s ease, background 0.18s ease;
  color: #fff;
  flex: 1;
}
.vl-mine-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.vl-mine-delete {
  width: 100%;
}
.vl-mine-occ {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffb6d5;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vl-mine-card strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}
.vl-mine-meta {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.76);
}

.vl-guest-status {
  background: transparent;
  border-radius: 0;
  padding: 0.5rem 0 1rem;
  margin-bottom: 1rem;
  border: none;
  box-shadow: none;
  text-align: center;
}
.vl-guest-status-text {
  color: #fff;
  font-size: 0.88rem;
}
.vl-message-card {
  text-align: left;
  max-width: 40rem;
  margin: 1rem auto 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 1rem 0;
}
.vl-message-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}
.vl-reserve-sheet {
  border: none;
  box-shadow: none;
}
.vl-card--form.vl-reserve-sheet {
  border: 2px solid rgba(255, 107, 157, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

/* ===== GSM: volle breedte, geen overflow, geen smalle stroken ===== */
@media (max-width: 768px) {
  body.vl-page .main-content {
    padding: 0.85rem 0 4.5rem;
  }

  .vl-wrap {
    padding: 0 0.85rem;
    max-width: 100%;
  }

  .vl-hero {
    margin: 0.25rem auto 1.15rem;
  }

  .vl-lead {
    max-width: none;
    font-size: 0.88rem;
  }

  .vl-cta-row {
    gap: 0.55rem;
    width: 100%;
  }

  .vl-cta-row .vl-btn {
    flex: 1 1 100%;
    width: 100%;
  }

  .vl-card,
  .vl-card--form,
  .vl-feature-grid,
  .vl-steps,
  .vl-mine-grid,
  .vl-stats-row,
  .vl-items,
  .vl-share-bar,
  .vl-toolbar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .vl-card--form {
    padding: 1rem 0.9rem;
    border-radius: 16px;
  }

  .vl-faq {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }

  .vl-faq-grid,
  .vl-faq-lead {
    max-width: none;
  }

  .vl-form-group input,
  .vl-form-group select,
  .vl-form-group textarea,
  .vl-dropdown,
  .vl-dropdown-toggle,
  .vl-share-url {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .vl-share-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .vl-share-bar .vl-btn {
    width: 100%;
  }

  .vl-share-url {
    flex: 1 1 auto;
    font-size: 0.78rem;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .vl-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .vl-toolbar .vl-dropdown {
    width: 100%;
    max-width: none;
  }

  .vl-item-body h4,
  .vl-item-note,
  .vl-item-meta,
  .vl-mine-card strong,
  .vl-card h2,
  .vl-card h3 {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .vl-dropdown-menu {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .vl-message-card {
    max-width: none;
    width: 100%;
  }

  .vl-occasions,
  .vl-shops {
    justify-content: center;
    width: 100%;
  }

  .vl-chip,
  .vl-shop-pill {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .vl-step {
    padding-left: 0;
    padding-right: 0;
  }

  .vl-feature-card {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 400px) {
  .vl-wrap {
    padding: 0 0.7rem;
  }

  .vl-cta-row .vl-btn {
    flex: 1 1 100%;
  }

  .vl-card--form {
    padding: 0.9rem 0.75rem;
  }

  .vl-title {
    font-size: clamp(1.4rem, 7vw, 1.75rem);
  }
}
