/* ZBI unified monetization — cookie banner + ad zones (Phase 1 staging) */

.zbi-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 0.85rem 1rem;
  background: rgba(19, 32, 27, 0.97);
  color: #e9f3ec;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.zbi-cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.zbi-cookie-text {
  flex: 1 1 320px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #d2ded6;
}

.zbi-cookie-text a {
  color: #fff;
  text-decoration: underline;
  font-weight: 800;
}

.zbi-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.zbi-cookie-banner .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  background: #2f6b4f;
  color: #fff;
}

.zbi-cookie-banner .btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.zbi-ad-zone {
  max-width: 728px;
  margin: 2rem auto 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.zbi-ad-label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7c72;
  text-align: center;
}

.zbi-ad-unit {
  margin: 0 auto;
}

@media (max-width: 640px) {
  .zbi-cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .zbi-cookie-actions {
    justify-content: stretch;
  }

  .zbi-cookie-banner .btn {
    flex: 1;
  }
}
