.nwab-box {
  --nwab-orange: #ff9900;
  --nwab-orange-dark: #e47911;
  --nwab-ink: #17212b;
  position: relative;
  max-width: 780px;
  margin: 28px auto;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #e3e7eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(16, 24, 40, .08);
  color: var(--nwab-ink);
  font-family: inherit;
}

.nwab-badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 14px;
  border-radius: 0 0 10px 0;
  background: var(--nwab-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nwab-main {
  display: grid;
  grid-template-columns: minmax(150px, 210px) 1fr;
  gap: 26px;
  align-items: center;
  padding-top: 12px;
}

.nwab-image-link { display: block; }
.nwab-image {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.nwab-title {
  margin: 0 0 12px;
  color: var(--nwab-ink);
  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.25;
}

.nwab-features {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}

.nwab-features li {
  position: relative;
  margin: 7px 0;
  padding-left: 23px;
  line-height: 1.45;
}

.nwab-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16844b;
  font-weight: 800;
}

.nwab-description { margin-bottom: 15px; }
.nwab-description p { margin: 0 0 10px; }
.nwab-price { margin: 0 0 12px; font-size: 21px; font-weight: 800; }

.nwab-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid var(--nwab-orange-dark);
  border-radius: 999px;
  background: linear-gradient(#ffb84d, var(--nwab-orange));
  box-shadow: inset 0 1px rgba(255,255,255,.45);
  color: #111 !important;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none !important;
  transition: transform .15s ease, filter .15s ease;
}

.nwab-button:hover { filter: brightness(.97); transform: translateY(-1px); }
.nwab-button:focus-visible { outline: 3px solid rgba(255,153,0,.35); outline-offset: 3px; }

.nwab-disclosure {
  margin: 18px 0 0;
  padding-top: 12px;
  border-top: 1px solid #edf0f2;
  color: #69727d;
  font-size: 11px;
  line-height: 1.45;
}

.nwab-error { color: #b42318; font-weight: 700; }

@media (max-width: 600px) {
  .nwab-box { padding: 22px 18px 18px; border-radius: 13px; }
  .nwab-main { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .nwab-image { height: 210px; }
  .nwab-button { display: flex; width: 100%; box-sizing: border-box; }
}

