/* Floating phone button */
.cbp-phone-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  cursor: pointer;
  z-index: 10000;
  transition: transform .2s ease;
}
.cbp-phone-fab:hover { transform: scale(1.05); }
.cbp-phone-icon { font-size: 24px; }

/* Overlay + Modal */
.cbp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 10000;
}

.cbp-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(720px, 92vw);
  max-height: 92vh;
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  z-index: 10001;
  overflow: auto;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cbp-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.cbp-title {
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
  margin: 10px 10px 20px;
}

/* Form */
.cbp-form {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin: 8px auto 16px;
}
.cbp-label { display: grid; gap: 6px; }
.cbp-label span { font-size: 13px; color: #333; }
.cbp-label .cbp-input {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
}

/* Action buttons */
.cbp-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto 8px;
}
.cbp-btn {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  text-align: left;
}
.cbp-btn-ico { font-size: 20px; }
.cbp-btn-title { font-weight: 700; }
.cbp-btn-sub { font-size: 18px; font-weight: 800; }

.cbp-btn-now {
  background: #eaffea;
}
.cbp-btn-later {
  background: #e9efff;
}

/* Privacy */
.cbp-privacy {
  font-size: 12px;
  color: #555;
  margin: 14px auto;
  max-width: 600px;
}

/* "Powered by" */
.cbp-powered {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: #666;
  font-size: 12px;
  margin-top: 8px;
}
.cbp-powered-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #111;
  display: inline-block;
}