.nhb-admin {
  max-width: 1440px;
}

.nhb-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 18px 20px;
  background: #06385f;
  color: #fff;
}

.nhb-hero h2 {
  margin: 0 0 5px;
  color: #fff;
}

.nhb-hero p {
  margin: 0;
  color: #dcecff;
}

.nhb-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.nhb-stats div {
  background: #fff;
  border: 1px solid #dbe6f3;
  padding: 14px;
}

.nhb-stats strong {
  display: block;
  font-size: 24px;
  color: #06101f;
}

.nhb-stats span {
  color: #526271;
}

.nhb-form .row {
  margin-bottom: 12px;
}

.nhb-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
}

.nhb-pill {
  display: inline-block;
  min-width: 44px;
  padding: 3px 8px;
  border-radius: 999px;
  text-align: center;
  font-size: 12px;
}

.nhb-pill.ok {
  background: #e4f8ee;
  color: #10783d;
}

.nhb-pill.off {
  background: #f3f5f7;
  color: #667085;
}

.nhb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nhb-cashback-panel {
  border-top: 4px solid #1687d9;
}

.nhb-home {
  display: grid;
  gap: 22px;
  width: 100%;
  margin: 22px 0;
}

.nhb-home-section {
  width: 100%;
}

.nhb-home-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.nhb-home-head span {
  display: inline-block;
  margin-bottom: 4px;
  color: #0a7a35;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nhb-home-head h3 {
  margin: 0;
  color: #05070b;
  font-size: 22px;
  line-height: 1.1;
}

.nhb-home-head p {
  margin: 4px 0 0;
  color: #596372;
}

.nhb-home-head a {
  color: #006fbd;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nhb-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 190px);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.nhb-card {
  background: #fff;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  overflow: hidden;
}

.nhb-card a {
  display: grid;
  grid-template-rows: 132px auto auto auto;
  min-height: 245px;
  padding: 10px;
  color: #06101f;
  text-decoration: none;
}

.nhb-card img {
  width: 100%;
  height: 132px;
  object-fit: contain;
}

.nhb-card strong {
  color: #06101f;
  font-size: 14px;
  line-height: 1.25;
}

.nhb-card small {
  color: #667085;
  font-size: 12px;
}

.nhb-card .nhb-price {
  margin-top: 8px;
  color: #000 !important;
  font-size: 15px;
  font-weight: 400;
}

.nhb-card em {
  margin-top: 8px;
  color: #0a7a35;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

.nhb-cashback-badge {
  align-items: flex-start;
  background: #fff8df;
  border: 1px solid #f0d175;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(128, 96, 0, 0.08);
  color: #111827;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  margin: 7px 0 11px;
  max-width: 100%;
  padding: 8px 12px 8px 34px;
  position: relative;
  vertical-align: top;
}

.nhb-cashback-badge::before {
  align-items: center;
  background: #f2b705;
  border-radius: 999px;
  color: #111827;
  content: "EUR";
  display: inline-flex;
  font-size: 9px;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  left: 9px;
  line-height: 1;
  position: absolute;
  top: 9px;
  width: 20px;
}

.nhb-cashback-badge strong {
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.nhb-cashback-badge span {
  color: #111827;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.nhb-cashback-badge small {
  color: #6b5600;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 700px) {
  .nhb-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nhb-hero,
  .nhb-home-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .nhb-rail {
    grid-auto-columns: minmax(138px, 44vw);
  }

  .nhb-cashback-badge {
    border-radius: 8px;
    margin: 5px 0 9px;
    padding: 6px 9px 6px 29px;
  }

  .nhb-cashback-badge::before {
    font-size: 8px;
    height: 17px;
    left: 8px;
    top: 7px;
    width: 17px;
  }

  .nhb-cashback-badge strong {
    font-size: 11.5px;
  }

  .nhb-cashback-badge span {
    font-size: 10.5px;
  }

  .nhb-cashback-badge small {
    font-size: 10px;
  }
}
