.acq-popup {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: min(360px, calc(100vw - 32px));
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  padding: 18px 16px 14px;
  z-index: 10020;
  opacity: 0;
  transform: translateX(120%);
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.2, 0.85, 0.25, 1), opacity 0.3s ease;
}

.acq-popup.is-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.acq-popup.is-closing {
  opacity: 0;
  transform: translateX(110%);
}

.acq-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #717171;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.acq-popup-close:hover {
  color: #222;
}

.acq-popup-header h3 {
  margin: 0 20px 6px 0;
  font-size: 1rem;
  color: #1f1f1f;
}

.acq-popup-header p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: #5f5f5f;
}

.acq-popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acq-popup-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2a2a2a;
}

.acq-popup-form select,
.acq-popup-form input {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.9rem;
  color: #262626;
  background: #fff;
}

.acq-popup-form select:focus,
.acq-popup-form input:focus {
  outline: none;
  border-color: #a3a3a3;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.acq-popup-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.acq-btn {
  flex: 1;
  border: 0;
  border-radius: 10px;
  padding: 9px 12px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
}

.acq-btn-primary {
  background: #111;
  color: #fff;
}

.acq-btn-primary:hover {
  background: #2b2b2b;
}

.acq-btn-secondary {
  background: #f2f2f2;
  color: #4d4d4d;
}

.acq-btn-secondary:hover {
  background: #e8e8e8;
}

.acq-popup-feedback {
  min-height: 18px;
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: #6a6a6a;
}

.acq-popup-feedback.error {
  color: #b42318;
}

.acq-popup-feedback.success {
  color: #067647;
}

@media (max-width: 768px) {
  .acq-popup {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}
