.abonnementen__groups{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}

.abonnementen__groupbtn{
  display:inline-block;
  text-decoration:none;
  cursor:pointer;
  border:1px solid currentColor;
  background:transparent;
  padding:10px 12px;
  border-radius:10px;
  font:inherit;
  opacity:.9;
}

.abonnementen__groupbtn.is-active{
  opacity:1;
  font-weight:600;
}

.abonnementen__items{
  display:grid;
  gap:10px;
}

.abonnementen__itembtn,
.abonnementen__submit{
  padding:12px 14px;
  border:1px solid;
  border-radius:12px;
  cursor:pointer;
  font:inherit;
}

.abonnementen__itembtn{
  text-decoration:none;
  display:flex;
  justify-content:space-between;
  gap:12px;
  width:100%;
  text-align:left;
  position:relative;
  overflow:visible;
}

.abonnementen__itembtn[aria-disabled="true"]{
  opacity:.5;
  pointer-events:none;
}

.abonnementen__itemname{ font-weight:600; }
.abonnementen__itemprice{ white-space:nowrap; }

.abonnementen__checkout{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,.10);
}

.abonnementen__label{
  display:block;
  margin-bottom:6px;
  font-weight:600;
}

.abonnementen__input{
  width:100%;
  max-width:420px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.18);
  font:inherit;
}

.abonnementen__helptext{
  font-size:.9em;
  opacity:.8;
  margin:6px 0 10px;
  max-width:700px;
}

.abonnementen__notice{
  padding:10px 12px;
  border-radius:10px;
  background:rgba(0,0,0,.05);
}

.abonnementen__notice--error{ background:rgba(200,0,0,.08); }
.abonnementen__notice--warn{ background:rgba(200,140,0,.10); }

.abonnementen__loading{
  opacity:.8;
  padding:8px 0;
}

/* Selected option indicator: outline + corner bubble */
.abonnementen__itembtn.is-selected{
  outline:2px solid rgba(0,0,0,.45);
  outline-offset:2px;
}

.abonnementen__itembtn.is-selected::after{
  content:'✓';
  position:absolute;
  top:-10px;
  right:-10px;
  width:26px;
  height:26px;
  border-radius:999px;
  background:#2ecc71;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:14px;
  line-height:1;
  box-shadow:0 2px 6px rgba(0,0,0,.18);
}


/* Prevent underline on anchor buttons */
.abonnementen__groupbtn,
.abonnementen__itembtn{
  text-decoration: none;
}
.abonnementen__groupbtn:hover,
.abonnementen__groupbtn:focus,
.abonnementen__itembtn:hover,
.abonnementen__itembtn:focus{
  text-decoration: none;
}


.abonnementen__fielderror{
  margin-top:6px;
  font-size:.9em;
  color:#b00020;
}

.abonnementen__formerror{
  margin-bottom:10px;
}
