.fsp-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.fsp-overlay.is-open {
  display: block;
}

.fsp-backdrop {
  position: absolute;
  inset: 0;
}

.fsp-stage {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 20px;
  box-sizing: border-box;
}

.fsp-shell {
  width: var(--fsp-box-width);
  max-width: 100%;
}

.fsp-inset-wrap {
  width: 100%;
  min-height: 140px;
  display: flex;
}

.fsp-inset {
  width: 100%;
  box-sizing: border-box;
}

.fsp-heading {
  margin: 0 0 10px;
  line-height: 1.2;
}

.fsp-content {
  line-height: 1.5;
}

.fsp-cta-wrap {
  margin-top: 16px;
}

.fsp-cta {
  --fsp-cta-hover: #444444;
  display: inline-block;
  text-decoration: none;
  border: 0;
  padding: 10px 14px;
  border-radius: 8px;
  background: #5d433c;
  color: #fff;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.fsp-cta:hover {
  background: var(--fsp-cta-hover);
}

.fsp-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.fsp-open-btn {
  appearance: none;
  border: 1px solid #5d433c;
  border-radius: 8px;
  background: #5d433c;
  color: #fff;
  padding: 10px 14px;
  cursor: pointer;
}

.fsp-trigger-wrap {
  display: inline-block;
}

.fsp-pos-top-left { justify-content: flex-start; align-items: flex-start; }
.fsp-pos-top-right { justify-content: flex-end; align-items: flex-start; }
.fsp-pos-bottom-left { justify-content: flex-start; align-items: flex-end; }
.fsp-pos-bottom-right { justify-content: flex-end; align-items: flex-end; }
.fsp-pos-centered-top { justify-content: center; align-items: flex-start; }
.fsp-pos-centered-left { justify-content: flex-start; align-items: center; }
.fsp-pos-centered { justify-content: center; align-items: center; }
.fsp-pos-centered-right { justify-content: flex-end; align-items: center; }
.fsp-pos-centered-bottom { justify-content: center; align-items: flex-end; }
