/* Owner Onboarding Wizard CSS */
.oo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 99999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.oo-overlay *, .oo-overlay *::before, .oo-overlay *::after {
  box-sizing: border-box;
}
.oo-modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: oo-up .25s ease;
}
.oo-modal.oo-active {
  display: flex;
}
@keyframes oo-up {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
.oo-hdr {
  padding: 22px 24px 18px;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}
.oo-hdr h2 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 5px 0;
}
.oo-hdr p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
.oo-body {
  padding: 20px 24px;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}
.oo-ftr {
  padding: 14px 24px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.oo-btn {
  padding: 9px 22px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
}
.oo-btn-p {
  background: #3b82f6;
  color: #fff;
}
.oo-btn-p:hover:not(:disabled) {
  background: #2563eb;
}
.oo-btn-p:disabled {
  background: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
}
.oo-doc-wrap {
  position: relative;
  margin-bottom: 0;
}
.oo-offer-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13px;
  color: #374151;
  line-height: 1.65;
  height: 340px;
  overflow-y: scroll;
}
.oo-offer-box h3 {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin: 14px 0 6px 0;
}
.oo-offer-box h3:first-child {
  margin-top: 0;
}
.oo-offer-box p {
  margin: 0 0 10px 0;
}
.oo-scroll-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(249,250,251,0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 5px 16px;
  font-size: 12px;
  color: #6b7280;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .2s;
  white-space: nowrap;
  z-index: 2;
}
.oo-scroll-btn:hover {
  border-color: #9ca3af;
}
.oo-scroll-btn.oo-hidden {
  opacity: 0;
  pointer-events: none;
}
.oo-ico-ok {
  font-size: 52px;
  color: #22c55e;
  text-align: center;
  margin-bottom: 16px;
}
