/* Shared WeChat Shop purchase entry. */
.shop-dialog {
  box-sizing: border-box;
  width: min(440px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 28px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: var(--ink, #222);
  text-align: center;
  overflow: auto;
  box-shadow: 0 24px 80px #0003;
}
.shop-dialog::backdrop { background: #0008; }
.shop-dialog h2 { margin: 4px 32px 10px; font-size: 24px; font-weight: 500; }
.shop-dialog p { font-size: 14px; line-height: 1.7; color: #555; }
.shop-close {
  position: absolute; top: 10px; right: 10px;
  width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: transparent; color: #555; font: 28px/1 sans-serif; cursor: pointer;
}
.shop-close:hover { background: #f3f7f6; }
.shop-code { display: block; width: min(250px, 100%); height: auto; margin: 12px auto; }
.shop-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 16px; }
.shop-actions .btn { min-height: 42px; height: auto; padding: 10px 18px; font-size: 14px; cursor: pointer; }
.shop-actions button { border: 0; font-family: inherit; }
.shop-status { margin: 12px 0 0; min-height: 24px; }
.shop-token { width: 100%; padding: 10px; margin-top: 10px; border: 1px solid #ccc; border-radius: 6px; font: 13px/1.5 inherit; }
.shop-token[hidden] { display: none; }
.shop-dialog :focus-visible { outline: 2px solid var(--green, #337a40); outline-offset: 3px; }
.hero--detail .shop-hero-buy { margin-top: 18px; }
