/* Store choice modal */
.header-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-right .header-btn {
  border: 0;
}

.store-choice-open {
  overflow: hidden;
}

.store-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.store-choice-modal.is-open {
  display: flex;
}

.store-choice-modal__panel {
  position: relative;
  width: min(94vw, 560px);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.store-choice-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f2f2f2;
  color: #111;
  cursor: pointer;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.store-choice-modal__head {
  padding-right: 48px;
  margin-bottom: 16px;
}

.store-choice-modal__head h2 {
  margin: 0 0 6px;
  font-size: 2.6rem;
  line-height: 1.1;
}

.store-choice-modal__head p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.45;
  opacity: 0.75;
}

.store-choice-modal__list {
  display: grid;
  gap: 12px;
}

.store-choice-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.store-choice-card h3 {
  margin: 0 0 4px;
  font-size: 2rem;
  line-height: 1.2;
}

.store-choice-card p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.45;
  opacity: 0.75;
}

.store-choice-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.store-choice-action {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.store-choice-action i {
  font-size: 1.8rem;
}

.store-choice-action span {
  font-size: 1.8rem;
}

.store-choice-action small {
  margin-left: auto;
  font-size: 1.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.store-choice-action--call {
  background: #5b946c;
}

.store-choice-action--location {
  background: #1f1f1f;
}

.sticky-mobile-cta-button {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

@media (max-width: 544px) {
  .store-choice-modal {
    align-items: flex-end;
    padding: 0;
  }

  .store-choice-modal__panel {
    width: 100%;
    max-height: 88vh;
    border-radius: 24px 24px 0 0;
    padding: 20px 14px 18px;
  }

  .store-choice-modal__head h2 {
    font-size: 2.3rem;
  }

  .store-choice-card {
    padding: 13px;
  }

  .store-choice-action {
    min-height: 58px;
  }
}
