:root{
  --nwhb-bg:#cdb39a;
  --nwhb-card:#ffffff;
  --nwhb-text:#1b1b1b;
  --nwhb-muted:#6d6d6d;
  --nwhb-line:#d7d7d7;
  --nwhb-accent:#1f2a32;
}

.nwhb{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  color: var(--nwhb-text);
  background: var(--nwhb-bg);
  padding: 40px 20px;
}

.nwhb-header{
  max-width: 1080px;
  margin: 0 auto 16px auto;
}

.nwhb-title{
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.nwhb-steps{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
}

.nwhb-step{
  display:flex;
  align-items:center;
  gap:8px;
  opacity:0.75;
}

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

.nwhb-dot{
  width:18px;height:18px;border-radius:999px;
  background:#121212; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:12px;
}

.nwhb-line{
  height:1px; flex: 1 1 auto;
  background: rgba(255,255,255,0.5);
}

.nwhb-card{
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(0,0,0,0);
}

.nwhb-screen h3{
  color:#fff;
  font-size: 20px;
  margin: 16px 0;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nwhb-grid{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items:start;
}

@media (max-width: 920px){
  .nwhb-grid{ grid-template-columns: 1fr; }
}

.nwhb-calendar, .nwhb-selected{
  background: var(--nwhb-card);
  border:1px solid rgba(0,0,0,0.08);
  border-radius: 2px;
}

.nwhb-calendar{ padding: 16px 18px; }
.nwhb-selected{ padding: 16px 18px; }

.nwhb-cal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 8px 6px 12px 6px;
}

.nwhb-cal-head--single{
  justify-content:center;
  position: relative;
}

.nwhb-cal-head--single .nwhb-iconbtn{
  position:absolute;
  left: 6px;
}

.nwhb-cal-title{
  font-size: 22px;
  letter-spacing: 0.5px;
  flex: 1 1 auto;
  text-align: center;
}

.nwhb-iconbtn{
  border: none;
  background: transparent;
  font-size: 22px;
  cursor:pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nwhb-cal-weekdays{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  color: var(--nwhb-muted);
  border-top:1px solid var(--nwhb-line);
  border-left:1px solid var(--nwhb-line);
}

.nwhb-cal-weekdays > div{
  padding:10px 0;
  text-align:center;
  border-right:1px solid var(--nwhb-line);
  border-bottom:1px solid var(--nwhb-line);
}

.nwhb-cal-grid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border-left:1px solid var(--nwhb-line);
  border-bottom:1px solid var(--nwhb-line);
}

.nwhb-day{
  height: 56px;
  border: none;
  background: #f4f4f4;
  border-right:1px solid var(--nwhb-line);
  border-top:1px solid var(--nwhb-line);
  margin: 0;
  padding: 0;
  cursor:pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color:#3a3a3a;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.nwhb-daynum{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.nwhb-day.is-empty{
  background: #fff;
  cursor: default;
}

.nwhb-day.is-booked{
  background:#e8e8e8;
  color:#b0b0b0;
  cursor:not-allowed;
}

.nwhb-day.is-past{
  background:#eeeeee;
  color:#b0b0b0;
  cursor:not-allowed;
}

.nwhb-day.is-selected{
  background: #f4f4f4;
}

.nwhb-day.is-selected .nwhb-daynum{
  background: var(--nwhb-accent);
  color:#fff;
}

.nwhb-actions{
  margin-top: 14px;
  display:flex;
  justify-content:flex-start;
}

.nwhb-btn{
  background:#f3f1ed;
  border:1px solid rgba(0,0,0,0.2);
  padding:10px 14px;
  border-radius: 2px;
  cursor:pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight:600;
}

.nwhb-btn:hover{ filter: brightness(0.98); }

.nwhb-selected-title{
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.nwhb-selrow{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 10px 8px;
  padding: 10px 0;
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.nwhb-seldate{
  grid-column: 1 / 2;
  font-weight:600;
}

.nwhb-x{
  grid-column: 2 / 3;
  justify-self:end;
  border:none;
  background:transparent;
  font-size:18px;
  cursor:pointer;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.nwhb-times{
  grid-column: 1 / 3;
  display:flex;
  gap: 12px;
}

.nwhb-timewrap{ display:flex; flex-direction:column; gap:6px; }
.nwhb-timelabel{ font-size:12px; color: var(--nwhb-muted); font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif; }

.nwhb-select{
  padding: 8px 10px;
  border:1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
  background:#fff;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.nwhb-hint{
  margin-top: 14px;
  color: var(--nwhb-muted);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.35;
}

.nwhb-hint--dark,
.nwhb-hint--black{
  color: #111;
}

.nwhb-hint--dark{ color:#111; }

.nwhb-back{
  margin-bottom: 8px;
}

.nwhb-link{
  border:none;
  background:transparent;
  color:#fff;
  cursor:pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  text-decoration: underline;
  padding:0;
}

.nwhb-sub{
  color:#fff;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  margin: 8px 0 14px 0;
}

.nwhb-mini{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: #fff;
  padding: 14px;
  border-radius: 2px;
}

.nwhb-mini strong{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--nwhb-muted);
}

.nwhb-choice{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nwhb-choicebtn{
  background:#fff;
  border:1px solid rgba(0,0,0,0.2);
  padding:10px 14px;
  border-radius: 2px;
  cursor:pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight:600;
}

.nwhb-choicebtn.is-active{
  background: var(--nwhb-accent);
  color:#fff;
  border-color: rgba(0,0,0,0.5);
}

/* Radio buttons (step 2) */
.nwhb-radio{
  margin-top: 8px;
}

.nwhb-radio-title{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  color: var(--nwhb-muted);
  margin: 2px 0 10px 0;
}

.nwhb-radioopt{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 2px 0;
  margin: 0 0 8px 0;
  border:none;
  background:transparent;
  cursor:pointer;
  user-select:none;
}

.nwhb-radioopt input{ margin: 0; }

.nwhb-radioopt span{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  color:#111;
}

/* Dates list (overview + pay) */
.nwhb-sumblock{ margin-bottom: 12px; }
.nwhb-sumlabel{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--nwhb-muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.nwhb-dates{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  display:flex;
  flex-direction:column;
  gap: 6px;
}

.nwhb-dateitem{ display:flex; justify-content:space-between; gap: 10px; }
.nwhb-dateitem strong{ font-weight: 600; }
.nwhb-dateitem span{ color: var(--nwhb-muted); }

/* Breakdown */
.nwhb-breakdown{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  color: var(--nwhb-muted);
  margin-bottom: 10px;
}

.nwhb-brow{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  padding: 4px 0;
}

.nwhb-brow strong{ color:#111; font-weight:600; }

.nwhb-sumrow--total span{ width: 120px; }

/* Pay box */
.nwhb-paybox{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
}

@media (max-width: 920px){
  .nwhb-paybox{ grid-template-columns: 1fr; }
}

.nwhb-paybox-left, .nwhb-paybox-right{
  background:#fff;
  padding: 16px;
  border-radius: 2px;
}

.nwhb-result{
  background:#fff;
  padding: 16px;
  border-radius: 2px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

.nwhb-form{
  background:#fff;
  padding: 16px;
  border-radius: 2px;
}

.nwhb-row{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

@media (max-width: 720px){
  .nwhb-row{ grid-template-columns: 1fr; }
}

.nwhb-form label{
  display:block;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  color: var(--nwhb-muted);
}

.nwhb-form label > input,
.nwhb-form label > select,
.nwhb-form label > textarea{
  display:block;
  width:100%;
  margin-top:6px;
}

.nwhb-req{
  color:#000;
  font-weight:700;
  margin-left:4px;
}

.nwhb-form input{
  padding: 10px 12px;
  border:1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
  font-size: 14px;
  color:#111;
}

.nwhb-checkgroup{
  margin-top: 12px;
}

.nwhb-check-title{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  color: var(--nwhb-muted);
  margin: 8px 0 6px 0;
}

.nwhb-form label.nwhb-checkopt{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap: 10px;
  margin: 6px 0;
  color:#111;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
}

.nwhb-form label.nwhb-checkopt > input{
  display:inline-block;
  width:auto;
  margin: 0;
  margin-top: 0;
}

.nwhb-check{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 6px 0 14px 0;
  color:#111;
}

.nwhb-summary{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
}

@media (max-width: 920px){
  .nwhb-summary{ grid-template-columns: 1fr; }
}

.nwhb-summary-left, .nwhb-summary-right{
  background:#fff;
  padding: 16px;
  border-radius: 2px;
}

.nwhb-summary h4{
  margin: 0 0 10px 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--nwhb-muted);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.nwhb-h4spaced{
  margin-top: 14px;
}

.nwhb-sumrow{
  display:flex;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.nwhb-sumrow span{
  width: 120px;
  color: var(--nwhb-muted);
}

.nwhb-pay{
  width:100%;
  justify-content:center;
}

.nwhb-small{
  margin-top: 8px;
  color: var(--nwhb-muted);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
}

.nwhb-error{
  margin-top: 12px;
  background:#fff;
  border:1px solid rgba(200,0,0,0.2);
  color:#b00020;
  padding: 10px 12px;
  border-radius: 2px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* H3 numbering to match steps */
.nwhb-screen h3.nwhb-h3{
  display:flex;
  align-items:center;
  gap: 12px;
}

.nwhb-h3badge{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* Steps: mobile friendly (scrollable, keep active visible) */
@media (max-width: 640px){
  .nwhb-steps{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
  }
  .nwhb-steps::-webkit-scrollbar{ display:none; }
  .nwhb-line{ display:none; }
  .nwhb-step{ white-space: nowrap; }
}

/* styling boekingsplugin */

/* .nwhb > .nwhb-header > .nwhb-title {
	display: none;
} */

.nwhb-header .nwhb-title {
	font-size: 32px;
}

.nwhb-card .nwhb-screen[data-screen="1"] h3 {
	margin: 50px 0 30px 0;
}

.nwhb-card .nwhb-screen[data-screen="2"] h3,
.nwhb-card .nwhb-screen[data-screen="3"] h3 {
	margin: 10px 0 10px 0;
}

.nwhb-card .nwhb-screen[data-screen="2"] .nwhb-form,
.nwhb-card .nwhb-screen[data-screen="3"] .nwhb-form{
   margin: 40px 0;
}

.nwhb-calendar .nwhb-cal-weekdays {
	border-top: 0px solid var(--nwhb-line);
    border-left: 0px solid var(--nwhb-line);
}

.nwhb-calendar .nwhb-cal-weekdays > div {
	    border-right: 0px solid var(--nwhb-line);
    border-bottom: 0px solid var(--nwhb-line);
}

.nwhb-hint.nwhb-hint--dark {
	margin-top: 50px;
	color: black;
}

.nwhb-selrow button.nwhb-x {
	min-height: 1.5em;
	margin-bottom: 0;
}

.nwhb-summary > .nwhb-summary-left, 
.nwhb-summary > .nwhb-summary-right {
	padding: 30px;
}

.nwhb-summary h4:nth-of-type(2) {
	margin-top: 40px !important;
}


.nwhb-card .nwhb-screen[data-screen="5"] h3 {
	margin-top: 50px;
}

.nwhb-card .nwhb-screen[data-screen="5"] .nwhb-actions {
	margin-top: 50px;
}

.nwhb-card .nwhb-actions .nwhb-btn {
	padding: 0px 20px;
}

.nwhb-form .nwhb-row label,
.nwhb-form .nwhb-radio label.nwhb-checkopt {
	display: block;
}

.nwhb-radio .nwhb-checkopt input {
	margin-right: 10px;
}
