.wa-chooser-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wa-chooser-overlay.is-open {
  display: flex;
}
body.wa-chooser-lock {
  overflow: hidden;
}
.wa-chooser-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  font-family: "FilsonPro", Sans-serif;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}
.wa-chooser-card h3 {
  margin: 0 0 8px;
  color: #ED6A2B;
  font-size: 22px;
  font-weight: 600;
}
.wa-chooser-card p {
  margin: 0 0 24px;
  color: #4D4D4D;
  font-size: 15px;
}
.wa-chooser-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 4px;
}
.wa-chooser-close:hover {
  color: #333;
}
.wa-chooser-stores {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wa-chooser-store {
  display: block;
  width: 100%;
  background: #ED6A2B;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s;
}
.wa-chooser-store:hover {
  background: #d45a1e;
}
