.wccp-overlay {
  position: fixed; inset: 0; z-index: 100000;
  background: rgba(15, 15, 20, .55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; box-sizing: border-box;
  opacity: 0; transition: opacity .25s ease;
}
.wccp-overlay.is-visible { opacity: 1; }
.wccp-overlay--bottom { align-items: flex-end; }
.wccp-box {
  position: relative; width: 100%; text-align: center;
  padding: 30px 28px 26px; box-sizing: border-box;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .3);
  transform: translateY(14px) scale(.97); transition: transform .25s ease;
}
.wccp-overlay.is-visible .wccp-box { transform: none; }
.wccp-box--sm { max-width: 340px; }
.wccp-box--md { max-width: 440px; }
.wccp-box--lg { max-width: 580px; }
.wccp-box--square { border-radius: 0; }
.wccp-box--rounded { border-radius: 16px; }
.wccp-box--soft { border-radius: 30px; }
.wccp-title { font-size: 21px; font-weight: 700; line-height: 1.25; margin: 0 0 10px; }
.wccp-message { font-size: 15px; line-height: 1.5; }
.wccp-message p { margin: 0 0 8px; }
.wccp-message p:last-child { margin-bottom: 0; }
.wccp-btn {
  display: inline-block; margin-top: 18px; padding: 12px 28px;
  color: #fff !important; font-weight: 600; font-size: 15px;
  border: 0; border-radius: 999px; cursor: pointer; text-decoration: none !important;
}
.wccp-box--square .wccp-btn { border-radius: 0; }
.wccp-btn:hover { filter: brightness(1.08); }
button.wccp-close, button.wccp-close:hover, button.wccp-close:focus {
  position: absolute; top: 10px; right: 12px;
  background: none !important; border: 0 !important; box-shadow: none !important;
  cursor: pointer; padding: 6px; margin: 0; min-height: 0;
  font-size: 22px; line-height: 1; opacity: .55;
}
button.wccp-close:hover { opacity: 1; }
