.pl-rsp-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  padding: 20px;
  box-sizing: border-box;
}

.pl-rsp-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pl-rsp-modal {
  width: min(600px, 100%);
  background: #fff;
  border: 3px solid #b3121b;
  border-top-width: 14px;
  color: #111;
  padding: 24px 26px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.pl-rsp-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
}

.pl-rsp-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b3121b;
  margin: 0 0 10px 0;
}

.pl-rsp-title {
  margin: 0 0 12px 0;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  color: #b3121b;
}

.pl-rsp-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.pl-rsp-body strong {
  color: #111;
}

.pl-rsp-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pl-rsp-btn {
  border: 2px solid #111;
  background: #111 !important;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  cursor: pointer;
  line-height: 1.2;
  transition: background-color 120ms ease, color 120ms ease;
}

.pl-rsp-btn:hover,
.pl-rsp-btn:focus {
  background: #fff !important;
  color: #111 !important;
}

.pl-rsp-btn-primary {
  border-color: #b3121b;
  background: #b3121b !important;
  font-size: 16px;
  padding: 12px 18px;
}

.pl-rsp-btn-primary:hover,
.pl-rsp-btn-primary:focus {
  background: #fff !important;
  color: #b3121b !important;
}

.pl-rsp-btn-secondary {
  background: #fff !important;
  color: #111 !important;
}

.pl-rsp-btn-secondary:hover,
.pl-rsp-btn-secondary:focus {
  background: #111 !important;
  color: #fff !important;
}

.pl-rsp-btn-link {
  border-color: transparent;
  background: transparent !important;
  color: #666 !important;
  font-weight: 400;
  text-decoration: underline;
  padding-left: 4px;
  padding-right: 4px;
}

.pl-rsp-btn-link:hover,
.pl-rsp-btn-link:focus {
  background: transparent !important;
  color: #111 !important;
}

@media (max-width: 580px) {
  .pl-rsp-modal {
    padding: 18px;
  }

  .pl-rsp-title {
    font-size: 20px;
  }

  .pl-rsp-btn {
    width: 100%;
    text-align: center;
  }
}
