#cb-overlay {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
#cb-overlay.show { display: flex; }
#cb-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  max-width: 400px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  animation: cbIn 0.3s ease;
}
@keyframes cbIn {
  from { opacity:0; transform:translateY(-20px); }
  to { opacity:1; transform:translateY(0); }
}
#cb-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none;
  font-size: 22px; cursor: pointer; color: #999;
  line-height: 1; padding: 0;
}
#cb-close:hover { color: #333; }
#cb-box h3 { margin: 0 0 6px; font-size: 20px; color: #1a1a1a; }
#cb-box p { margin: 0 0 20px; font-size: 14px; color: #666; line-height: 1.5; }
.cb-inp {
  width: 100%; border: 1px solid #ddd; border-radius: 8px;
  padding: 12px 14px; font-size: 15px; margin-bottom: 12px;
  box-sizing: border-box; outline: none; display: block;
}
.cb-inp:focus { border-color: #2d6a4f; }
#cb-btn {
  width: 100%; background: #2d6a4f; color: #fff;
  border: none; border-radius: 8px; padding: 14px;
  font-size: 16px; font-weight: bold; cursor: pointer;
  box-sizing: border-box; display: block;
}
#cb-btn:hover { background: #1b4332; }
#cb-ok { display:none; text-align:center; color:#2d6a4f; padding:10px 0; font-size:15px; }
#cb-skip { text-align:center; margin-top:12px; font-size:13px; color:#aaa; cursor:pointer; }
#cb-skip:hover { color:#666; }
@media(max-width:480px){
  #cb-box { padding: 28px 16px 20px; }
  #cb-box h3 { font-size: 17px; }
}
#cb-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 99998;
  display: none;
  cursor: pointer;
  animation: cbWidgetIn 0.4s ease;
}
#cb-widget.show { display: block; }
@keyframes cbWidgetIn {
  from { opacity:0; transform: scale(0.7) translateY(20px); }
  to { opacity:1; transform: scale(1) translateY(0); }
}
#cb-widget-inner {
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#cb-widget { position:fixed; bottom:28px; right:20px; z-index:99998; display:none; cursor:pointer; }
#cb-widget.show { display:block; }
#cb-widget-inner {
  background:#2563eb;
  color:#fff;
  border-radius:50%;
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  box-shadow:0 4px 20px rgba(37,99,235,0.45);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
#cb-widget-inner:hover {
  transform:scale(1.1);
  box-shadow:0 6px 24px rgba(37,99,235,0.6);
}


