/* NP Simple Variation Waitlist - frontend */
.np-wl-wrap {
  margin-top: .6rem;
  display: block;
  width: 100%;
  clear: both; /* zorg dat het blok altijd onder prijs/voorraad valt */
}

.np-wl-label {
  font-size: .9em;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

.np-wl-form {
  display: flex;
  gap: .4rem;
  align-items: stretch;
  width: 100%;
  flex-wrap: nowrap; /* nooit wrappen */
}

.np-wl-form input[type="email"],
.np-wl-form .np-wl-btn {
  margin: 0;
  height: auto;        /* laat flexbox ze gelijk trekken */
  line-height: normal; /* reset eventuele afwijkende thema-styling */
  box-sizing: border-box;
}

.np-wl-form input[type="email"],
.np-wl-form .np-wl-btn {
  height: 40px;              /* zelfde vaste hoogte */
  line-height: 40px;         /* tekst verticaal centreren */
  padding: 0 .75rem;         /* horizontale padding */
  box-sizing: border-box;    /* inclusief border en padding */
}

.np-wl-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;          /* i.p.v. 180px zodat hij kan krimpen */
  border: 1px solid #ccc;
  border-radius: 6px;
  height: 40px;
  line-height: 40px;
  padding: 0 .75rem;
  box-sizing: border-box;
}

.np-wl-form .np-wl-btn {
  flex: 0 0 auto;
  border-radius: 6px;
  height: 40px;
  line-height: 40px;
  padding: 0 .9rem;
  box-sizing: border-box;
  white-space: nowrap;    /* tekst niet afbreken */
}


.np-wl-msg {
  margin-top: .3rem;
  font-size: .9em;
}

@media (max-width: 480px) {
  .np-wl-form { flex-wrap: nowrap; gap: .35rem; }
  .np-wl-form input[type="email"] { min-width: 0; }
  .np-wl-form .np-wl-btn { width: auto; }
}

@media (max-width: 360px) {
  .np-wl-form input[type="email"],
  .np-wl-form .np-wl-btn {
    height: 36px;
    line-height: 36px;
    padding: 0 .6rem;
  }
  .np-wl-label { font-size: .85em; }
}

