#srcw-button {
  position: absolute;
  right: 0;          /* 👈 no margin from right */
  top: 60px;
  background: #ed1c24;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px 0 0 30px; /* optional: nicer edge */
  cursor: pointer;
  display: none;
  z-index: 9999;
      margin-top: 20px;
}


/* Overlay */
#srcw-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.25s ease;
}

/* Popup box */
.srcw-popup-inner {
  background: #ffffff;
  width: 100%;
  max-width: 380px;
  padding: 28px 26px 26px;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
  animation: slideUp 0.3s ease;
}

/* Close button */
#srcw-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: #666;
}
#srcw-close:hover {
  color: #000;
}

/* Title */
.srcw-title {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.srcw-subtitle {
  margin: 0 0 18px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* Form */
.srcw-form input,
.srcw-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: border 0.2s, box-shadow 0.2s;
}

.srcw-form input:focus,
.srcw-form textarea:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 2px rgba(0,115,170,0.15);
}

/* Button */
.srcw-form button {
  width: 100%;
  padding: 12px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
}

.srcw-form button:hover {
  background: #005f8d;
  transform: translateY(-1px);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

