.cancork-exit-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px 0; overflow-y: auto; box-sizing: border-box; }
.cancork-exit-modal[hidden] { display: none; }
.cancork-exit-backdrop { position: absolute; inset: 0; background: rgba(11,47,75,0.6); }
.cancork-exit-card { position: relative; background: #fff; max-width: 440px; width: 92%; max-height: calc(100vh - 40px); overflow-y: auto; border-radius: 8px; padding: 28px; box-shadow: 0 16px 48px rgba(0,0,0,0.25); }
.cancork-exit-card h2 { margin: 0 0 8px; color: #0b2f4b; font-size: 22px; padding-right: 48px; box-sizing: border-box; }
.cancork-exit-card p { color: #333; line-height: 1.5; }
.cancork-exit-form label { display: block; margin: 10px 0; font-size: 14px; }
.cancork-exit-form label span { display: block; margin-bottom: 4px; color: #0b2f4b; font-weight: 600; }
.cancork-exit-form input, .cancork-exit-form select { width: 100%; padding: 8px 10px; border: 1px solid #c3c4c7; border-radius: 4px; font-size: 15px; }
.cancork-exit-card .cancork-exit-form button.primary { margin-top: 12px; width: 100%; background: #0b2f4b !important; color: #fff !important; font-weight: 600; border: 0; padding: 12px; border-radius: 4px; cursor: pointer; font-size: 15px; letter-spacing: .01em; text-shadow: none; box-shadow: none; }
.cancork-exit-card .cancork-exit-form button.primary:hover, .cancork-exit-card .cancork-exit-form button.primary:focus { background: #0f3d61 !important; color: #fff !important; }
.cancork-exit-close { position: absolute; top: 10px; right: 12px; display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; min-height: 0; padding: 0; background: none; border: 0; font-size: 28px; line-height: 1; color: #666; cursor: pointer; text-shadow: none; box-shadow: none; appearance: none; }
.cancork-exit-privacy { font-size: 11px; color: #666; margin-top: 10px; }
.cancork-exit-result { margin-top: 10px; font-size: 13px; color: #0b2f4b; }
.cancork-exit-result.is-error { color: #b32d2e; }
@media (max-width: 600px) {
  .cancork-exit-modal { align-items: flex-end; padding: 12px 0 0; }
  .cancork-exit-card { border-radius: 12px 12px 0 0; padding: 20px; max-height: calc(100vh - 12px); }
}

/* Persistent bottom-right callback button on cart/checkout */
.cancork-callback-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #0b2f4b;
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(11,47,75,0.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.cancork-callback-fab:hover, .cancork-callback-fab:focus {
  background: #0f3d61;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(11,47,75,0.4);
  outline: none;
}
.cancork-callback-fab:focus-visible {
  box-shadow: 0 0 0 3px rgba(197,160,101,0.6), 0 12px 28px rgba(11,47,75,0.4);
}
.cancork-callback-fab__icon {
  flex: 0 0 auto;
  color: #C5A065;
}
.cancork-callback-fab__label {
  white-space: nowrap;
}
.cancork-callback-fab[hidden] {
  display: none;
}
@media (max-width: 600px) {
  .cancork-callback-fab {
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
    font-size: 13px;
  }
}
