@charset "UTF-8";
:root {
  --scan-bg: #f5f7fb;
  --scan-surface: #ffffff;
  --scan-surface-soft: #eef3f8;
  --scan-text: #152232;
  --scan-muted: #627285;
  --scan-border: #d7e0ea;
  --scan-primary: #0f2740;
  --scan-secondary: #4d7c36;
  --scan-accent: #d8a63b;
  --scan-shadow: 0 20px 45px rgba(18, 34, 52, 0.08);
  --scan-radius: 22px;
  --scan-radius-sm: 14px;
  --scan-font: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--scan-font);
  background: radial-gradient(circle at top right, rgba(216, 166, 59, 0.14), transparent 28%), linear-gradient(180deg, #fbfcfe 0%, var(--scan-bg) 100%);
  color: var(--scan-text);
  scroll-behavior: smooth;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.spot-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #D85A30;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.9);
  animation: spot-badge-in 180ms ease-out forwards;
}

.spot-badges {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spot-badges .spot-badge {
  position: static;
}

.spot-badge--game {
  background: #344255;
}

.spot-badge .material-symbols-outlined {
  font-size: 17px;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}

@keyframes spot-badge-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .spot-badge {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.scan-page {
  min-height: 100vh;
  padding: 0 0 36px;
}

.scan-page--hero-only {
  padding-bottom: 0;
}

.scan-page--promotions-fullscreen {
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  padding-bottom: 0;
  overflow: hidden;
}

html:has(.scan-page--promotions-fullscreen),
body:has(.scan-page--promotions-fullscreen) {
  height: 100%;
  overflow: hidden;
}

.scan-page--game-result {
  padding-bottom: 0;
}

.scan-shell {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.scan-shell--hero-only {
  gap: 0;
}

.scan-pwa-install {
  width: min(100% - 24px, 720px);
  margin: 12px auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--scan-border);
  border-radius: var(--scan-radius-sm);
  background: var(--scan-surface);
  box-shadow: var(--scan-shadow);
}

.scan-pwa-install[hidden] {
  display: none;
}

@media (display-mode: standalone) {
  .scan-page--campaign .scan-campaign-intro__back {
    display: none;
  }
}
.scan-pwa-install__copy {
  min-width: 0;
}

.scan-pwa-install__title,
.scan-pwa-install__help {
  margin: 0;
}

.scan-pwa-install__title {
  color: var(--scan-primary);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.scan-pwa-install__help {
  margin-top: 5px;
  color: var(--scan-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.scan-pwa-install__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scan-pwa-install__install,
.scan-pwa-install__dismiss {
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.scan-pwa-install__install {
  padding: 11px 15px;
  background: var(--scan-primary);
  color: #fff;
}

.scan-pwa-install__dismiss {
  padding: 10px 0;
  background: transparent;
  color: var(--scan-muted);
}

.scan-pwa-install__install:focus-visible,
.scan-pwa-install__dismiss:focus-visible {
  outline: 3px solid rgba(216, 166, 59, 0.48);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .scan-pwa-install {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .scan-pwa-install__actions {
    justify-content: flex-start;
  }
}
.scan-pwa-push {
  width: min(100% - 24px, 720px);
  margin: 12px auto;
  padding: 14px 16px;
  display: grid;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--scan-secondary, #d85a30) 28%, var(--scan-border));
  border-radius: var(--scan-radius-sm);
  background: var(--scan-surface);
  box-shadow: var(--scan-shadow);
}

.scan-pwa-push[hidden] {
  display: none;
}

.scan-pwa-push__copy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.scan-pwa-push__icon {
  color: var(--scan-secondary, #d85a30);
}

.scan-pwa-push h2 {
  margin: 0;
  color: var(--scan-primary, #344255);
  font-size: 0.95rem;
}

.scan-pwa-push p {
  margin: 4px 0 0;
  color: var(--scan-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.scan-pwa-push__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scan-pwa-push button {
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.scan-pwa-push__enable {
  padding: 11px 15px;
  background: var(--scan-primary, #344255);
  color: #fff;
}

.scan-pwa-push__dismiss {
  padding: 10px 0;
  background: transparent;
  color: var(--scan-muted);
}

.scan-pwa-push button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.scan-pwa-push button:focus-visible {
  outline: 3px solid rgba(216, 166, 59, 0.48);
  outline-offset: 3px;
}

.scan-pwa-push__status:empty {
  display: none;
}

.scan-pwa-push__status[data-state=error] {
  color: var(--scan-secondary, #d85a30);
}

@media (min-width: 561px) {
  .scan-pwa-push {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .scan-pwa-push__status {
    grid-column: 1/-1;
  }
}
.scan-pwa-push-preferences {
  width: min(100% - 44px, 720px);
  margin: 0 auto;
  text-align: center;
}

.scan-pwa-push-preferences__trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--scan-primary, #344255);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.scan-pwa-push-preferences__trigger .material-symbols-outlined {
  font-size: 18px;
}

.scan-pwa-push-preferences__trigger:focus-visible {
  outline: 3px solid rgba(216, 166, 59, 0.48);
  outline-offset: 3px;
  border-radius: 6px;
}

.scan-pwa-push-preferences__content {
  padding-bottom: 20px;
}

.scan-pwa-push-preferences__content h2 {
  margin: 0;
  color: var(--scan-primary, #344255);
  font-size: 1.35rem;
}

.scan-pwa-push-preferences__content > p {
  margin: 8px 0 20px;
  color: #586875;
  font-size: 0.92rem;
  line-height: 1.45;
}

.scan-pwa-push-preferences__option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  color: var(--scan-primary, #344255);
  cursor: pointer;
}

.scan-pwa-push-preferences__option input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--scan-primary, #344255);
}

.scan-pwa-push-preferences__option span {
  display: grid;
  gap: 3px;
}

.scan-pwa-push-preferences__option strong {
  font-size: 0.92rem;
}

.scan-pwa-push-preferences__option small {
  color: #586875;
  font-size: 0.82rem;
  line-height: 1.4;
}

.scan-pwa-push-preferences__actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.scan-pwa-push-preferences__actions .scan-action {
  width: 100%;
  margin: 0;
}

.scan-pwa-push-preferences__unsubscribe {
  min-height: 44px;
  border: 1px solid rgba(194, 65, 12, 0.3);
  border-radius: 999px;
  background: transparent;
  color: #b45309;
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}

.scan-pwa-push-preferences__unsubscribe:disabled {
  cursor: wait;
  opacity: 0.65;
}

.scan-pwa-push-preferences__unsubscribe:focus-visible {
  outline: 3px solid rgba(216, 90, 48, 0.35);
  outline-offset: 3px;
}

.scan-pwa-push-preferences__status {
  min-height: 1.4em;
  margin: 12px 0 0;
}

.scan-pwa-push-preferences .spotcard-bottom-sheet--pwa-preferences {
  position: fixed;
  z-index: 40;
  inset: 0;
}

.spotcard-bottom-sheet--pwa-preferences .spotcard-bottom-sheet__panel {
  max-width: 620px;
}

.spotcard-bottom-sheet--pwa-preferences .spotcard-bottom-sheet__panel {
  width: min(100%, 760px);
  border-radius: 30px 30px 0 0;
}

.scan-shell--promotions-fullscreen {
  width: 100%;
  height: 100%;
  min-height: 0;
  gap: 0;
}

.scan-game-result-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  padding: 24px 16px;
  background: radial-gradient(circle at top, rgba(216, 166, 59, 0.2), transparent 30%), linear-gradient(180deg, #10243b 0%, #1f3f2b 100%);
}

.scan-game-result-page--image {
  background: var(--scan-game-result-image) center/cover no-repeat;
}

.scan-game-result-page__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 10, 18, 0.28) 0%, rgba(3, 10, 18, 0.68) 100%);
}

.scan-game-result-page__inner {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  margin: auto;
  display: flex;
}

.scan-game-result-page--top .scan-game-result-page__inner {
  margin-top: 0;
  margin-bottom: auto;
}

.scan-game-result-page--bottom .scan-game-result-page__inner {
  margin-top: auto;
  margin-bottom: 0;
}

.scan-game-result-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.scan-game-result-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.scan-game-result-card__content h1,
.scan-game-result-card__content h2,
.scan-game-result-card__content p {
  margin: 0;
}

.scan-game-result-card__content h2 {
  font-size: 1.05rem;
  color: var(--scan-muted);
  font-weight: 600;
}

.scan-game-result-card__reward {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.scan-game-result-card__reward strong {
  color: var(--scan-primary);
  font-size: 1.05rem;
}

.scan-game-result-card__reward small,
.scan-game-result-card__reward span {
  color: var(--scan-muted);
}

.scan-game-result-card__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scan-game-result-card__qr img {
  width: min(220px, 100%);
  border-radius: 18px;
  background: #fff;
  padding: 10px;
}

.scan-game-result-card__qr code {
  font-size: 0.86rem;
  color: #334155;
  word-break: break-word;
}

.scan-game-result-card__actions {
  display: flex;
  justify-content: center;
}

.scan-card,
.scan-empty,
.scan-section--muted {
  background: var(--scan-surface);
  border: 1px solid var(--scan-border);
  border-radius: var(--scan-radius);
  box-shadow: var(--scan-shadow);
}

.scan-hero h1,
.scan-section__heading h2,
.scan-card h3,
.scan-empty h1 {
  margin: 0;
}

.scan-section__heading h2 {
  font-size: inherit;
}

.scan-hero p,
.scan-section__heading p,
.scan-card p,
.scan-empty p,
.scan-meta,
.scan-socials a,
.scan-merchant {
  color: var(--scan-muted);
}

.scan-merchant {
  font-size: 0.7rem;
}

.scan-meta.offer {
  color: #8a4b00;
  margin-top: 5px;
}

.scan-pill,
.scan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.scan-pill {
  text-transform: uppercase;
  font-weight: 400;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  letter-spacing: 1.5px;
  background-color: #eadfd2 !important;
}

.scan-pill {
  background: rgba(15, 39, 64, 0.08);
  color: var(--scan-primary);
}

.scan-pill--hero {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.scan-badge {
  background: rgba(77, 124, 54, 0.11);
  color: var(--scan-secondary);
}

.scan-badge--promo {
  background: rgba(216, 166, 59, 0.16);
  color: #805c08;
  position: absolute;
  right: 20px;
  top: 12px;
}

.scan-badge--promo-announcement {
  background: rgba(15, 39, 64, 0.12);
  color: var(--scan-primary);
}

.scan-badge--hero {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.scan-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 28px 18px 40px;
  color: #fff;
  background: radial-gradient(circle at top, rgba(216, 166, 59, 0.28), transparent 36%), linear-gradient(160deg, #091521 0%, #123150 54%, #23482d 100%);
}

.scan-hero--media {
  background: #000;
}

.scan-hero__media-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.scan-hero__media {
  width: 100%;
  height: 100%;
  display: block;
}

.scan-hero__media--image,
.scan-hero__media--video {
  object-fit: cover;
}

.scan-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(4, 10, 18, 0.18) 0%, rgba(4, 10, 18, 0.66) 100%);
}

.scan-hero__content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}

.scan-hero__text-anchor {
  position: absolute;
  inset: 18px;
  z-index: 1;
  display: flex;
  pointer-events: none;
}

.scan-hero__text-anchor--top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.scan-hero__text-anchor--top-center {
  align-items: flex-start;
  justify-content: center;
}

.scan-hero__text-anchor--top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.scan-hero__text-anchor--middle-left {
  align-items: center;
  justify-content: flex-start;
}

.scan-hero__text-anchor--middle-center {
  align-items: center;
  justify-content: center;
}

.scan-hero__text-anchor--middle-right {
  align-items: center;
  justify-content: flex-end;
}

.scan-hero__text-anchor--bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.scan-hero__text-anchor--bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.scan-hero__text-anchor--bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.scan-hero__text-anchor--bottom-left,
.scan-hero__text-anchor--bottom-center,
.scan-hero__text-anchor--bottom-right {
  inset: 18px 18px calc(110px + env(safe-area-inset-bottom, 0px)) 18px;
}

.scan-hero__text {
  width: min(640px, 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--scan-hero-text-color, #fff);
}

.scan-hero__text-anchor--top-center .scan-hero__text,
.scan-hero__text-anchor--middle-center .scan-hero__text,
.scan-hero__text-anchor--bottom-center .scan-hero__text {
  align-items: center;
  text-align: center;
}

.scan-hero__text-anchor--top-right .scan-hero__text,
.scan-hero__text-anchor--middle-right .scan-hero__text,
.scan-hero__text-anchor--bottom-right .scan-hero__text {
  align-items: flex-end;
  text-align: right;
}

.scan-hero__actions {
  position: absolute;
  inset: 18px;
  z-index: 1;
  display: flex;
  pointer-events: none;
}

.scan-hero__actions--top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.scan-hero__actions--top-center {
  align-items: flex-start;
  justify-content: center;
}

.scan-hero__actions--top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.scan-hero__actions--middle-left {
  align-items: center;
  justify-content: flex-start;
}

.scan-hero__actions--middle-center {
  align-items: center;
  justify-content: center;
}

.scan-hero__actions--middle-right {
  align-items: center;
  justify-content: flex-end;
}

.scan-hero__actions--bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.scan-hero__actions--bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.scan-hero__actions--bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.scan-hero__actions--bottom-left,
.scan-hero__actions--bottom-center,
.scan-hero__actions--bottom-right {
  inset: 18px 18px calc(24px + env(safe-area-inset-bottom, 0px)) 18px;
}

.scan-hero__logo {
  max-width: 140px;
  padding: 12px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.scan-hero__logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.scan-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scan-hero h1 {
  font-size: clamp(40px, 10vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  white-space: pre-line;
  text-wrap: balance;
  color: var(--scan-hero-text-color, #fff);
}

.scan-hero p {
  margin: 0;
  max-width: 38ch;
  color: var(--scan-hero-text-color, #fff);
  opacity: 0.84;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.scan-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--scan-hero-cta-bg, #fff);
  color: var(--scan-hero-cta-color, var(--scan-primary));
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(6, 18, 32, 0.22);
  pointer-events: auto;
}

.scan-hero--campaign-features .scan-hero__actions--bottom-left,
.scan-hero--campaign-features .scan-hero__actions--bottom-center,
.scan-hero--campaign-features .scan-hero__actions--bottom-right {
  bottom: calc(126px + env(safe-area-inset-bottom, 0px));
}

.scan-hero--campaign-features .scan-hero__text-anchor--bottom-left,
.scan-hero--campaign-features .scan-hero__text-anchor--bottom-center,
.scan-hero--campaign-features .scan-hero__text-anchor--bottom-right {
  bottom: calc(204px + env(safe-area-inset-bottom, 0px));
}

.scan-hero__features {
  position: absolute;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  left: 18px;
  z-index: 2;
  display: grid;
  justify-content: center;
  gap: clamp(10px, 4vw, 26px);
  pointer-events: none;
}

.scan-hero__features--1 {
  grid-template-columns: repeat(1, minmax(58px, 78px));
}

.scan-hero__features--2 {
  grid-template-columns: repeat(2, minmax(58px, 78px));
}

.scan-hero__features--3 {
  grid-template-columns: repeat(3, minmax(58px, 78px));
}

.scan-hero__features--4 {
  grid-template-columns: repeat(4, minmax(58px, 78px));
}

.scan-hero__feature {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  pointer-events: auto;
}

.scan-hero__feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(7, 18, 30, 0.42);
  box-shadow: 0 12px 26px rgba(4, 12, 22, 0.22);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease;
}

.scan-hero__feature:hover .scan-hero__feature-icon,
.scan-hero__feature:focus-visible .scan-hero__feature-icon {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.scan-hero__feature:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  border-radius: 12px;
}

.scan-hero__feature-label {
  max-width: 10ch;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  text-overflow: ellipsis;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.52);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.scan-hero__campaign-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 8, 12, 0.28) 0%, rgba(3, 8, 12, 0.04) 30%, rgba(3, 8, 12, 0.42) 54%, rgba(3, 8, 12, 0.92) 100%), linear-gradient(90deg, rgba(3, 8, 12, 0.2), transparent 45%, rgba(3, 8, 12, 0.12));
}

.scan-hero__campaign-badge {
  justify-self: start;
  width: fit-content;
  margin-bottom: 2px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(5, 10, 9, 0.56);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.scan-hero--campaign .scan-hero__content {
  position: absolute;
  top: calc(26px + env(safe-area-inset-top, 0px));
  right: 24px;
  left: 24px;
  z-index: 2;
  width: auto;
  align-items: center;
  pointer-events: none;
}

.scan-hero--campaign .scan-hero__logo {
  width: min(148px, 34vw);
  max-width: none;
  pointer-events: auto;
}

.scan-hero--campaign .scan-hero__text-anchor {
  top: clamp(150px, 24vh, 250px);
  right: clamp(24px, 8vw, 90px);
  bottom: auto;
  left: clamp(24px, 8vw, 90px);
  height: auto;
  align-items: flex-start;
  justify-content: center;
}

.scan-hero--campaign .scan-hero__text {
  width: min(700px, 100%);
  align-items: center;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.52);
}

.scan-hero--campaign .scan-hero__text h1 {
  font-size: clamp(38px, 8vw, 68px);
}

.scan-hero--campaign .scan-hero__text p {
  max-width: 34ch;
  font-size: clamp(13px, 2.8vw, 17px);
}

.scan-hero__campaign-stack {
  position: absolute;
  right: clamp(16px, 5vw, 48px);
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  left: clamp(16px, 5vw, 48px);
  z-index: 3;
  width: min(650px, 100% - 32px);
  margin-inline: auto;
  display: grid;
  gap: clamp(12px, 2.2vh, 20px);
}

.scan-hero__campaign-summary {
  min-height: 72px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(5, 10, 9, 0.72);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.scan-hero__campaign-summary-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--scan-hero-cta-bg, #fff);
}

.scan-hero__campaign-summary-icon .material-symbols-outlined {
  font-size: 34px;
}

.scan-hero__campaign-summary-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.scan-hero__campaign-summary-copy strong,
.scan-hero__campaign-summary-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scan-hero__campaign-summary-copy strong {
  font-size: clamp(14px, 3.5vw, 18px);
  line-height: 1.2;
}

.scan-hero__campaign-summary-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(11px, 2.8vw, 14px);
}

.scan-hero__campaign-summary-arrow {
  justify-self: end;
  font-size: 30px;
}

.scan-hero--campaign .scan-hero__features {
  position: static;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  padding-inline: 2px;
}

.scan-hero--campaign .scan-hero__feature-label {
  font-size: clamp(10px, 2.6vw, 13px);
}

.scan-hero__campaign-cta {
  width: min(520px, 100%);
  min-height: 68px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: var(--scan-hero-cta-bg, #fff);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  color: var(--scan-hero-cta-color, var(--scan-primary));
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.scan-hero__campaign-cta > span:first-child {
  grid-column: 2;
  font-size: clamp(14px, 3.5vw, 18px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.scan-hero__campaign-cta > .material-symbols-outlined {
  grid-column: 3;
  justify-self: end;
  font-size: 30px;
}

.scan-hero__campaign-summary:hover,
.scan-hero__campaign-summary:focus-visible,
.scan-hero__campaign-cta:hover,
.scan-hero__campaign-cta:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.scan-hero__campaign-summary:focus-visible,
.scan-hero__campaign-cta:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.72), 0 20px 42px rgba(0, 0, 0, 0.28);
}

@media (max-height: 700px) {
  .scan-hero--campaign .scan-hero__content {
    top: calc(14px + env(safe-area-inset-top, 0px));
  }
  .scan-hero--campaign .scan-hero__logo {
    width: min(108px, 28vw);
  }
  .scan-hero--campaign .scan-hero__text-anchor {
    top: clamp(100px, 18vh, 145px);
  }
  .scan-hero--campaign .scan-hero__text h1 {
    font-size: clamp(30px, 7vw, 48px);
  }
  .scan-hero__campaign-stack {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    gap: 9px;
  }
  .scan-hero__campaign-summary {
    min-height: 60px;
    padding-block: 8px;
  }
  .scan-hero__campaign-cta {
    min-height: 58px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scan-hero__campaign-summary,
  .scan-hero__campaign-cta {
    transition: none;
  }
}
.scan-page--campaign {
  min-height: 100dvh;
  padding: 0 0 calc(36px + env(safe-area-inset-bottom, 0px));
  background: radial-gradient(circle at 90% 8%, rgba(216, 166, 59, 0.17), transparent 30%), #f5f2eb;
}

.scan-shell--campaign {
  width: min(100%, 980px);
  margin-inline: auto;
  overflow: hidden;
}

.scan-campaign-intro {
  position: relative;
  min-height: clamp(330px, 58vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(92px, 14vw, 140px) clamp(20px, 6vw, 64px) clamp(34px, 8vw, 72px);
  background: linear-gradient(145deg, #0c2633, #31583f);
  color: #fff;
}

.scan-campaign-intro__media,
.scan-campaign-intro__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scan-campaign-intro__media {
  object-fit: cover;
  object-position: top;
}

.scan-campaign-intro__overlay {
  background: linear-gradient(180deg, rgba(4, 12, 18, 0.14), rgba(4, 12, 18, 0.82)), linear-gradient(90deg, rgba(4, 12, 18, 0.48), transparent 70%);
}

.scan-campaign-intro__back {
  position: absolute;
  top: calc(18px + env(safe-area-inset-top, 0px));
  left: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(5, 16, 24, 0.34);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.scan-campaign-intro__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.scan-campaign-intro__eyebrow,
.scan-campaign-section__heading > span,
.scan-campaign-application span {
  color: #d9b35c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scan-campaign-intro h1 {
  max-width: 13ch;
  margin: 10px 0 16px;
  font-size: clamp(42px, 9vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.scan-campaign-intro p,
.scan-campaign-intro__content > span:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.scan-campaign-intro__content > span:last-child {
  display: inline-block;
  margin-top: 8px;
}

.scan-campaign-section,
.scan-campaign-upcoming,
.scan-campaign-application {
  margin: clamp(42px, 8vw, 76px) clamp(18px, 5vw, 52px) 0;
}

.scan-campaign-section__heading {
  margin-bottom: 20px;
}

.scan-campaign-badge-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin: 0 0 24px;
  color: #627285;
  font-size: 0.72rem;
}

.scan-campaign-badge-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.scan-campaign-badge-legend .spot-badge {
  position: static;
  width: 24px;
  height: 24px;
  opacity: 1;
  transform: none;
  animation: none;
}

.scan-campaign-badge-legend .spot-badge .material-symbols-outlined {
  font-size: 14px;
}

.scan-campaign-section__heading h2,
.scan-campaign-upcoming h2 {
  margin: 6px 0 0;
  color: #172932;
  font-size: clamp(25px, 5vw, 40px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.scan-campaign-announcement {
  position: relative;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 28px;
  background: #183643;
  box-shadow: 0 24px 55px rgba(22, 39, 48, 0.14);
  color: #fff;
}

.scan-campaign-announcement--layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 8px;
}
.scan-campaign-announcement--layout .scan-campaign-announcement__media {
  position: relative;
  min-width: 0;
  min-height: 0;
  /* Taille contrôlée */
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
}
.scan-campaign-announcement--layout .scan-campaign-announcement__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.scan-campaign-announcement > img,
.scan-campaign-announcement__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scan-campaign-announcement > img {
  object-fit: cover;
}

.scan-campaign-announcement__overlay {
  background: linear-gradient(180deg, transparent 18%, rgba(4, 13, 19, 0.88));
}

.scan-campaign-announcement__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: clamp(24px, 6vw, 46px);
}

.scan-campaign-announcement__content--url {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--scan-campaign-accent) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0 !important;
  margin-bottom: 18px;
  align-self: flex-end;
}
.scan-campaign-announcement__content--url > span {
  font-size: 14px;
}

.scan-campaign-announcement__content > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.scan-campaign-announcement h3 {
  margin: 7px 0;
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.scan-campaign-announcement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.scan-campaign-announcement a {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-weight: 750;
  text-underline-offset: 4px;
}

.scan-campaign-featured-merchants {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 5px;
}

.scan-campaign-featured-merchant {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, #345f49, #172e38);
  color: #fff;
  text-decoration: none;
}

.scan-campaign-featured-merchant:first-child {
  grid-row: 1/3;
}

.scan-campaign-featured-merchant > img,
.scan-campaign-featured-merchant__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scan-campaign-featured-merchant > img {
  object-fit: cover;
  transition: transform 420ms ease;
}

.scan-campaign-featured-merchant:hover > img {
  transform: scale(1.035);
}

.scan-campaign-featured-merchant__overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(4, 13, 19, 0.86));
}

.scan-campaign-featured-merchant__content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.scan-campaign-featured-merchant__content > span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: start;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
}

.scan-campaign-featured-merchant h3 {
  margin: 10px 0 4px;
  font-size: clamp(20px, 4vw, 32px);
  line-height: 1;
}

.scan-campaign-featured-merchant p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.scan-campaign-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scan-campaign-offer {
  padding: 22px;
  border: 1px solid rgba(35, 60, 69, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.scan-campaign-offer > span {
  color: #697b81;
  font-size: 11px;
  font-weight: 700;
}

.scan-campaign-offer h3 {
  margin: 7px 0;
  color: #17303b;
  font-size: 20px;
}

.scan-campaign-offer p {
  margin: 0;
  color: #65767d;
  font-size: 13px;
  line-height: 1.45;
}

.scan-campaign-section--advertiser {
  margin-block: 18px 28px;
}

.scan-campaign-advertiser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 132px;
  padding: 22px 24px;
  border: 1px solid rgba(52, 66, 85, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, #344255 0%, #263548 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(52, 66, 85, 0.16);
  text-decoration: none;
}

.scan-campaign-advertiser__copy {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.scan-campaign-advertiser__eyebrow {
  color: #f4a080;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scan-campaign-advertiser strong {
  overflow: hidden;
  font-size: clamp(20px, 4vw, 28px);
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scan-campaign-advertiser small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.scan-campaign-advertiser small .material-symbols-outlined {
  color: #d85a30;
  font-size: 20px;
}

.scan-campaign-advertiser__logo {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  color: #344255;
  font-size: 24px;
  font-weight: 800;
}

.scan-campaign-advertiser__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 520px) {
  .scan-campaign-advertiser {
    min-height: 116px;
    padding: 18px;
  }
  .scan-campaign-advertiser__logo {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }
}
.scan-campaign-merchants {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.scan-campaign-merchant {
  flex: 0 0 150px;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 18px 12px;
  border: 1px solid rgba(35, 60, 69, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  color: #17303b;
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
}

.scan-campaign-merchant__visual {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #e5ece8;
  color: #315b47;
  font-size: 20px;
}
.scan-campaign-merchant__visual .spot-badges {
  top: 5px;
  right: 5px;
}

.scan-campaign-merchant__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scan-campaign-merchant strong {
  max-width: 100%;
  font-size: 13px;
  line-height: 1.2;
}

.scan-campaign-merchant small {
  color: #718087;
  font-size: 11px;
}

.scan-campaign-upcoming,
.scan-campaign-application {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: clamp(22px, 5vw, 36px);
  border: 1px solid rgba(35, 60, 69, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.scan-campaign-upcoming > .material-symbols-outlined {
  color: #b48528;
  font-size: 42px;
}

.scan-campaign-upcoming p,
.scan-campaign-application p {
  margin: 7px 0 0;
  color: #66777e;
  line-height: 1.5;
}

.scan-campaign-application {
  justify-content: space-between;
}

.scan-campaign-application a {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: #17303b;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 560px) {
  .scan-campaign-featured-merchants {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 260px 180px;
  }
  .scan-campaign-featured-merchant:first-child {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .scan-campaign-offers {
    grid-template-columns: 1fr;
  }
  .scan-campaign-application {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 340px) {
  .scan-hero__features--4 {
    width: 178px;
    margin-inline: auto;
    grid-template-columns: repeat(2, 78px);
  }
  .scan-hero--campaign-features .scan-hero__actions--bottom-left,
  .scan-hero--campaign-features .scan-hero__actions--bottom-center,
  .scan-hero--campaign-features .scan-hero__actions--bottom-right {
    bottom: calc(206px + env(safe-area-inset-bottom, 0px));
  }
  .scan-hero--campaign-features .scan-hero__text-anchor--bottom-left,
  .scan-hero--campaign-features .scan-hero__text-anchor--bottom-center,
  .scan-hero--campaign-features .scan-hero__text-anchor--bottom-right {
    bottom: calc(282px + env(safe-area-inset-bottom, 0px));
  }
}
/* Public campaign page: editorial merchant directory. */
.scan-page--campaign {
  --scan-campaign-accent: #e43b32;
  background: #f8f8f7;
  color: #171918;
}

.scan-shell--campaign {
  width: min(100%, 1040px);
  overflow: visible;
  background: #f8f8f7;
}

.scan-campaign-intro {
  min-height: clamp(480px, 62vh, 620px);
  align-items: initial;
  padding: 0;
  border-radius: 0 0 42px 42px;
  isolation: isolate;
}

.scan-campaign-intro__overlay {
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.06) 34%, rgba(0, 0, 0, 0.42) 65%, rgba(0, 0, 0, 0.92) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 46%, rgba(0, 0, 0, 0.18));
}

.scan-campaign-intro__back,
.scan-campaign-intro__menu {
  top: calc(22px + env(safe-area-inset-top, 0px));
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(4, 8, 8, 0.34);
  backdrop-filter: blur(14px);
}

.scan-campaign-intro__back {
  left: clamp(18px, 4vw, 38px);
  width: 52px;
  height: 52px;
}

.scan-campaign-intro__menu {
  position: absolute;
  right: clamp(18px, 4vw, 38px);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.scan-campaign-intro__logo {
  position: absolute;
  top: calc(26px + env(safe-area-inset-top, 0px));
  left: 50%;
  z-index: 2;
  width: clamp(92px, 16vw, 148px);
  height: clamp(92px, 16vw, 148px);
  display: grid;
  place-items: center;
  transform: translateX(-50%);
}

.scan-campaign-intro__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.36));
}

.scan-campaign-intro__content {
  position: absolute;
  top: clamp(154px, 27%, 190px);
  right: 24px;
  left: 24px;
  z-index: 2;
  max-width: none;
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
}

.scan-campaign-intro__eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.scan-campaign-intro h1 {
  max-width: 18ch;
  margin: 8px auto 10px;
  font-size: clamp(42px, 8vw, 78px);
}

.scan-campaign-intro__content p {
  max-width: 44ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 2.8vw, 21px);
}

.scan-campaign-intro__context-name {
  display: block;
  max-width: 32ch;
  margin: 0 auto 8px;
  color: #fff;
  font-size: clamp(18px, 3.4vw, 28px);
  line-height: 1.2;
}

.scan-campaign-intro__date {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(5, 10, 9, 0.42);
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.025em;
  backdrop-filter: blur(12px);
}

.scan-campaign-intro--prelaunch h1,
.scan-campaign-intro--archive h1 {
  max-width: 22ch;
  font-size: clamp(32px, 6vw, 58px);
}

.scan-campaign-intro__campaign-name {
  position: absolute;
  top: clamp(132px, 22%, 158px);
  right: 20px;
  left: 20px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.scan-campaign-intro__facts {
  position: absolute;
  right: clamp(22px, 5vw, 58px);
  bottom: 36px;
  left: clamp(22px, 5vw, 58px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  color: #fff;
}

.scan-campaign-intro__fact {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 4px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.scan-campaign-intro__fact:first-child {
  padding-left: 0;
}

.scan-campaign-intro__fact:last-child {
  padding-right: 0;
  border-right: 0;
}

.scan-campaign-intro__fact > .material-symbols-outlined {
  color: var(--scan-campaign-accent);
  font-size: 32px;
}

.scan-campaign-intro__fact > span:last-child {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.scan-campaign-intro__fact strong,
.scan-campaign-intro__fact small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scan-campaign-intro__fact strong {
  font-size: 13px;
}

.scan-campaign-intro__fact small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.scan-campaign-section,
.scan-campaign-upcoming,
.scan-campaign-application {
  margin-right: clamp(16px, 3vw, 28px);
  margin-left: clamp(16px, 3vw, 28px);
}

.scan-campaign-upcoming {
  position: relative;
  z-index: 4;
  margin-top: -34px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(25, 48, 70, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(25, 48, 70, 0.1);
  backdrop-filter: blur(16px);
}

.scan-campaign-upcoming > .material-symbols-outlined {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: color-mix(in srgb, var(--scan-campaign-accent) 12%, white);
  color: var(--scan-campaign-accent);
  font-size: 28px;
}

.scan-campaign-upcoming h2 {
  margin: 0 0 7px;
  color: #193046;
  font-size: clamp(20px, 3.4vw, 28px);
  line-height: 1.15;
}

.scan-campaign-upcoming p {
  max-width: 58ch;
  margin: 0;
  color: #59656f;
  line-height: 1.55;
}

.scan-campaign-upcoming strong {
  display: block;
  margin-top: 10px;
  color: #193046;
  font-size: 13px;
}

.scan-campaign-upcoming__cta {
  width: fit-content;
  min-height: 44px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 14px;
  background: var(--scan-campaign-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.scan-campaign-upcoming__cta:hover,
.scan-campaign-upcoming__cta:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--scan-campaign-accent) 24%, transparent);
}

.scan-campaign-upcoming__cta:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--scan-campaign-accent) 22%, transparent);
}

.scan-campaign-upcoming--archive > .material-symbols-outlined {
  background: rgba(25, 48, 70, 0.08);
  color: #59656f;
}

.scan-campaign-section {
  margin-top: clamp(16px, 4vw, 32px);
}

.scan-campaign-section--announcement {
  position: relative;
  z-index: 4;
  margin-top: -56px;
}

.scan-campaign-section__heading--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.scan-campaign-section__heading--row h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: clamp(20px, 3.2vw, 29px);
  letter-spacing: -0.025em;
}

.scan-campaign-section__heading--row h2 > .material-symbols-outlined {
  color: var(--scan-campaign-accent);
  font-size: 28px;
}

.scan-campaign-section__heading--row h2 small {
  color: #696d6b;
  font-size: 0.6em;
  font-weight: 500;
}

.scan-campaign-section__heading--row > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--scan-campaign-accent);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.scan-campaign-section__heading--row > a .material-symbols-outlined,
.scan-campaign-announcement__topline > a .material-symbols-outlined {
  font-size: 19px;
}

.scan-campaign-announcement {
  grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(23, 25, 24, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 50px rgba(22, 28, 25, 0.12);
  color: #171918;
}

.scan-campaign-announcement:not(.scan-campaign-announcement--media) {
  grid-template-columns: 1fr;
}

.scan-campaign-announcement__featured {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--scan-campaign-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scan-campaign-announcement > img {
  position: static;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1/1;
  align-self: center;
  border-radius: 20px;
  object-fit: cover;
}

.scan-campaign-announcement__content {
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: clamp(20px, 4vw, 40px);
  padding-right: 10px;
}

.scan-campaign-announcement__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.scan-campaign-announcement__type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4e5350;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scan-campaign-announcement__type .material-symbols-outlined {
  color: var(--scan-campaign-accent);
  font-size: 27px;
}

.scan-campaign-announcement__period {
  color: #777c79;
  font-size: 11px;
}

.scan-campaign-announcement h3 {
  color: #171918;
  font-size: clamp(24px, 4.5vw, 38px);
  line-height: 1.08;
}

.scan-campaign-announcement p {
  max-width: 48ch;
  color: #4d524f;
  line-height: 1.55;
}

.scan-campaign-announcement__action {
  width: 52px;
  height: 52px;
  margin: 18px 0 0 auto !important;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(24, 30, 27, 0.14);
  color: #171918 !important;
  text-decoration: none;
}

.scan-campaign-featured-merchants {
  height: clamp(380px, 52vw, 500px);
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  grid-template-rows: minmax(0, 3fr) minmax(0, 2fr);
  gap: 5px;
}

.scan-campaign-featured-merchant {
  min-height: 0;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(25, 30, 28, 0.12);
}

.scan-campaign-featured-merchant__content {
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.scan-campaign-featured-merchant__logo {
  flex: 0 0 auto;
  width: clamp(58px, 9vw, 88px) !important;
  height: clamp(58px, 9vw, 88px) !important;
  display: grid !important;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50% !important;
  background: rgba(5, 8, 7, 0.76) !important;
}

.scan-campaign-featured-merchant__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scan-campaign-featured-merchant__copy {
  min-width: 0;
  width: auto !important;
  height: auto !important;
  flex: 1 1 auto;
  display: block !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.scan-campaign-featured-merchant h3 {
  overflow: hidden;
  margin: 0 0 5px;
  font-size: clamp(18px, 3vw, 28px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scan-campaign-featured-merchant__arrow {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #171918;
}

.scan-campaign-featured-merchant--placeholder,
.scan-campaign-merchant--placeholder {
  border: 2px dashed #c9d3d0;
  background: #f3f6f4;
  color: #64736f;
  box-shadow: none;
}

.scan-campaign-featured-merchant--placeholder {
  display: flex;
  align-items: flex-end;
}

.scan-campaign-featured-merchant--placeholder .scan-campaign-featured-merchant__content {
  position: static;
}

.scan-campaign-participation-intro,
.scan-campaign-participation-action {
  margin: 24px auto;
  text-align: center;
}

.scan-campaign-participation-intro p {
  color: #53635f;
  line-height: 1.6;
  margin: 0 25px;
}

.scan-campaign-section--all {
  scroll-margin-top: 20px;
}

.scan-campaign-merchants {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
  margin-inline: 0;
  overflow: visible;
  padding: 6px 0 18px;
}

.scan-campaign-merchant {
  min-width: 0;
  width: 100%;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.scan-campaign-merchant__visual {
  position: relative;
  width: min(100%, 124px);
  height: auto;
  aspect-ratio: 1;
  overflow: visible;
  background: #e8ebe9;
}

.scan-campaign-merchant__visual > img {
  overflow: hidden;
  border-radius: 20px;
}

.scan-campaign-merchant__arrow {
  position: absolute;
  right: -5px;
  bottom: 2px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 16px rgba(24, 30, 27, 0.16);
  color: #171918;
  font-size: 18px;
}

.scan-campaign-merchant strong {
  font-size: 13px;
  line-height: 1.25;
}

.scan-campaign-merchant small {
  display: -webkit-box;
  overflow: hidden;
  color: #757a77;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.scan-campaign-application {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 18px;
  margin-top: clamp(36px, 6vw, 58px);
  padding: clamp(18px, 3vw, 26px);
  border-color: rgba(23, 25, 24, 0.08);
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 30, 28, 0.08);
}

.scan-campaign-application__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(228, 59, 50, 0.1);
  color: var(--scan-campaign-accent) !important;
  font-size: 34px !important;
}

.scan-campaign-application strong {
  display: block;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.15;
}

.scan-campaign-application p {
  max-width: 55ch;
  font-size: 13px;
}

.scan-campaign-application > a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  color: var(--scan-campaign-accent);
}

.scan-campaign-application--participation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.scan-campaign-participation-copy h2 {
  margin: 0;
  color: #193046;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.15;
}

.scan-campaign-participation-copy p {
  margin-bottom: 0;
}

.scan-campaign-participation-toggle {
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: #d85a30;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 160ms ease, background-color 160ms ease;
}

.scan-campaign-participation-toggle:hover,
.scan-campaign-participation-toggle:focus-visible {
  background: #b94722;
  transform: translateY(-1px);
}

.scan-campaign-participation-toggle:focus-visible {
  outline: 3px solid rgba(216, 90, 48, 0.28);
  outline-offset: 3px;
}

.scan-campaign-participation-form {
  --spot-join-ink: #344255;
  --spot-join-muted: #667587;
  --spot-join-accent: #d85a30;
  width: min(100%, 620px);
  margin: 20px auto 0;
}

.scan-campaign-participation-form[hidden] {
  display: none;
}

.scan-campaign-participation-form__intro {
  margin: -3px 0 5px;
  color: var(--spot-join-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.scan-campaign-participation-form .spot-join__form > h2 {
  margin: 0 0 2px;
  color: var(--spot-join-ink);
  font-size: clamp(1.45rem, 4vw, 2rem);
  letter-spacing: -0.035em;
}

@media (max-width: 560px) {
  .scan-campaign-application--participation {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .scan-campaign-participation-toggle {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scan-campaign-participation-toggle {
    transition: none;
  }
}
.scan-campaign-footer {
  padding: 34px 20px 8px;
  text-align: center;
}

.spotcard-join-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #59656f;
  font-size: 13px;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
  align-items: flex-start;
}

.spotcard-join-link strong {
  color: #193046;
  font-size: 14px;
}

.spotcard-join-link > .material-symbols-outlined {
  color: var(--scan-secondary, #4d7c36);
  font-size: 18px;
}

.spotcard-join-link:hover,
.spotcard-join-link:focus-visible {
  color: #193046;
  transform: translateY(-1px);
}

.spotcard-join-link:focus-visible {
  outline: 2px solid var(--scan-secondary, #4d7c36);
  outline-offset: 5px;
  border-radius: 6px;
}

@media (max-width: 640px) {
  .scan-campaign-intro {
    min-height: 250px;
  }
  .scan-campaign-intro__menu {
    width: 52px;
    justify-content: center;
    padding: 0;
  }
  .scan-campaign-intro__menu > span:last-child {
    display: none;
  }
  .scan-campaign-intro__logo {
    top: calc(22px + env(safe-area-inset-top, 0px));
    width: 100px;
    height: 100px;
  }
  .scan-campaign-intro__content {
    top: 20px;
  }
  .scan-campaign-intro--prelaunch,
  .scan-campaign-intro--archive {
    min-height: 440px;
  }
  .scan-campaign-intro--prelaunch .scan-campaign-intro__content,
  .scan-campaign-intro--archive .scan-campaign-intro__content {
    top: 142px;
  }
  .scan-campaign-intro--prelaunch .scan-campaign-intro__logo,
  .scan-campaign-intro--archive .scan-campaign-intro__logo {
    width: 86px;
    height: 86px;
  }
  .scan-campaign-upcoming {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: -24px;
    border-radius: 22px;
  }
  .scan-campaign-intro__facts {
    right: 18px;
    bottom: 26px;
    left: 18px;
  }
  .scan-campaign-intro__fact {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 6px;
    padding-inline: 10px;
  }
  .scan-campaign-intro__fact > .material-symbols-outlined {
    font-size: 25px;
  }
  .scan-campaign-intro__fact strong {
    font-size: 10px;
  }
  .scan-campaign-intro__fact small {
    font-size: 9px;
  }
  .scan-campaign-announcement {
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
    padding: 10px;
    border-radius: 22px;
  }
  .scan-campaign-announcement > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1/1;
    border-radius: 16px;
  }
  .scan-campaign-announcement__content {
    padding: 0px;
    padding-right: 10px;
  }
  .scan-campaign-announcement__topline {
    margin-bottom: 10px;
  }
  .scan-campaign-announcement__topline > a {
    display: none;
  }
  .scan-campaign-announcement h3 {
    font-size: clamp(18px, 5vw, 24px);
  }
  .scan-campaign-announcement p {
    font-size: 12px;
  }
  .scan-campaign-announcement__action {
    width: 40px;
    height: 40px;
    margin-top: 10px !important;
  }
  .scan-campaign-section__heading--row > a {
    max-width: 130px;
    justify-content: flex-end;
    font-size: 11px;
    text-align: right;
  }
  .scan-campaign-featured-merchants {
    height: clamp(300px, 82vw, 390px);
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    grid-template-rows: minmax(0, 3fr) minmax(0, 2fr);
  }
  .scan-campaign-featured-merchant:first-child {
    grid-column: 1;
    grid-row: 1/3;
  }
  .scan-campaign-featured-merchant:nth-child(n+2) .scan-campaign-featured-merchant__content {
    gap: 7px;
    padding: 11px;
  }
  .scan-campaign-featured-merchant:nth-child(n+2) .scan-campaign-featured-merchant__logo {
    width: 44px !important;
    height: 44px !important;
  }
  .scan-campaign-featured-merchant:nth-child(n+2) h3 {
    margin-bottom: 2px;
    font-size: 15px;
  }
  .scan-campaign-featured-merchant:nth-child(n+2) p {
    font-size: 10px;
  }
  .scan-campaign-featured-merchant:nth-child(n+2) .scan-campaign-featured-merchant__arrow {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
  .scan-campaign-application {
    grid-template-columns: 52px minmax(0, 1fr) 38px;
    gap: 12px;
  }
  .scan-campaign-application__icon {
    width: 52px;
    height: 52px;
  }
  .scan-campaign-application > a {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 380px) {
  .scan-campaign-intro__fact {
    display: block;
    text-align: center;
  }
  .scan-campaign-intro__fact > .material-symbols-outlined {
    margin-bottom: 5px;
  }
  .scan-campaign-intro__fact strong {
    display: none;
  }
  .scan-campaign-announcement {
    grid-template-columns: minmax(96px, 34%) minmax(0, 1fr);
  }
  .scan-campaign-announcement > img {
    height: auto;
    min-height: 0;
  }
  .scan-campaign-announcement__featured {
    top: 20px;
    left: 20px;
  }
  .scan-campaign-featured-merchants {
    height: 290px;
  }
  .scan-campaign-featured-merchant:first-child .scan-campaign-featured-merchant__content {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
    padding: 12px;
  }
  .scan-campaign-featured-merchant:first-child .scan-campaign-featured-merchant__logo {
    width: 48px !important;
    height: 48px !important;
  }
  .scan-campaign-featured-merchant:first-child .scan-campaign-featured-merchant__arrow {
    display: none;
  }
}
.scan-backlink {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-weight: 600;
}

.scan-subhero {
  padding: 26px 18px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scan-subhero h1 {
  margin: 0;
  font-size: clamp(30px, 8vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.scan-subhero p {
  margin: 0;
  color: var(--scan-muted);
}

.scan-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 14px;
  margin-top: 10px;
}

.scan-section__heading {
  padding: 0 4px;
}

.scan-section__heading--with-link {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.scan-section__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #0f2740;
  font-size: 0.7rem;
  white-space: nowrap;
}

.scan-section__link .material-symbols-outlined {
  font-size: 0.7rem;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.scan-grid {
  display: grid;
  gap: 14px;
}

.scan-grid--promotions,
.scan-grid--merchants {
  grid-template-columns: 1fr;
}

.scan-grid--story,
.scan-grid--merchants-list,
.scan-grid--merchant-promotions {
  grid-template-columns: 1fr;
  padding: 0 14px;
}

.scan-merchant-promo-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(292px, 82vw);
  gap: 12px;
  overflow-x: auto;
  padding: 0 14px 6px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scan-merchant-promo-rail::-webkit-scrollbar {
  display: none;
}

.scan-merchant-gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(132px, 34vw);
  gap: 12px;
  overflow-x: auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 14px 6px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scan-merchant-gallery-rail--albums {
  display: block;
  width: 100%;
  max-width: none;
  overflow-x: visible;
  padding-inline: 0;
}

.scan-merchant-gallery-rail::-webkit-scrollbar {
  display: none;
}

.scan-merchant-gallery-card {
  position: relative;
  aspect-ratio: 1/1;
  min-width: 132px;
  min-height: 132px;
  height: auto;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(15, 39, 64, 0.08);
  scroll-snap-align: start;
  cursor: zoom-in;
}

.scan-gallery-album > .scan-merchant-gallery-card {
  align-self: start;
}

.scan-merchant-gallery-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scan-merchant-gallery-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  box-sizing: border-box;
  padding: 14px;
  color: #fff;
  pointer-events: none;
}

.scan-merchant-gallery-card img,
.scan-merchant-gallery-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.scan-merchant-promo-card {
  display: grid;
  grid-template-columns: minmax(120px, 44%) minmax(0, 1fr);
  min-height: 168px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 39, 64, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 39, 64, 0.08);
  scroll-snap-align: start;
  text-decoration: none;
}

.scan-merchant-promo-card__media {
  min-height: 100%;
  background: var(--scan-surface-soft);
}

.scan-merchant-promo-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.scan-merchant-promo-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
}

.scan-merchant-promo-card__topline {
  display: flex;
  align-items: center;
}

.scan-merchant-promo-card__content h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
  color: #0f2740;
}

.scan-merchant-promo-card__excerpt {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #5f738b;
}

.scan-merchant-promo-card__meta {
  margin: auto 0 0;
  font-size: 0.9rem;
  line-height: 1.3;
  color: #c4463c;
}

.scan-story-card {
  min-height: min(100svh - 120px, 860px);
  display: grid;
  overflow: hidden;
  background: var(--scan-surface);
  border: 1px solid var(--scan-border);
  border-radius: var(--scan-radius);
  box-shadow: var(--scan-shadow);
}

.scan-story-card__media {
  aspect-ratio: 4/5;
  background: var(--scan-surface-soft);
}

.scan-story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scan-story-card__content {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scan-story-card__content h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 7vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.scan-card {
  overflow: hidden;
}

.scan-card__media {
  aspect-ratio: 16/9;
  background: var(--scan-surface-soft);
}

.scan-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scan-card__media--merchant {
  aspect-ratio: 4/3;
}

.scan-card__placeholder {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(15, 39, 64, 0.09);
  color: var(--scan-primary);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 20px 0;
}

.scan-card__content {
  padding: 18px 18px 20px;
}

.scan-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.scan-offer {
  font-weight: 700;
  color: var(--scan-primary);
}

.scan-conditions {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--scan-border);
  font-size: 14px;
}

.scan-actions,
.scan-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.scan-action,
.scan-socials a {
  text-decoration: none;
}

.scan-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--scan-border);
  color: var(--scan-primary);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
}

.scan-action--icon {
  gap: 10px;
}

.scan-action--icon .material-symbols-outlined {
  font-size: 1.1rem;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.scan-action--full {
  width: 100%;
}

.scan-action--primary {
  background: var(--scan-primary);
  border-color: var(--scan-primary);
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scan-socials a {
  color: var(--scan-secondary);
  font-size: 14px;
  font-weight: 600;
}

.scan-empty {
  padding: 28px 22px;
  text-align: center;
}

.scan-empty--inline {
  text-align: left;
  position: relative;
  margin-bottom: 18px;
  padding: 18px 18px 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-left: 5px solid #f59e0b;
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.98) 0%, rgba(255, 243, 214, 0.94) 100%);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.12);
}

.scan-empty--inline h1 {
  margin-bottom: 8px;
  font-size: clamp(20px, 4vw, 24px);
  color: #8a4b00;
}

.scan-empty--inline p {
  color: rgba(84, 46, 0, 0.9);
}

.scan-empty--inline::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f59e0b;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.14);
}

.scan-empty--receive {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}
.scan-empty--receive > h2, .scan-empty--receive p {
  padding-left: 56px;
}
.scan-empty--receive > p {
  font-size: 0.8rem;
  margin: 0;
}

.scan-section__heading--icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.98) 0%, rgba(255, 243, 214, 0.94) 100%);
  border-radius: 50%;
}
.scan-section__heading--icon > span {
  color: #f59e0b;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}

.scan-page--merchant-list {
  padding-bottom: 26px;
}

.scan-shell--merchant-list {
  width: min(900px, 100%);
  gap: 16px;
  padding: 0 14px;
}

.scan-list-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: calc(18px + env(safe-area-inset-top, 0px)) 0 0;
}

.scan-list-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scan-backlink--surface {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 39, 64, 0.08);
  color: var(--scan-primary);
  box-shadow: 0 10px 24px rgba(13, 25, 38, 0.08);
}

.scan-backlink--round {
  justify-content: center;
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 999px;
  font-size: 36px;
  line-height: 1;
}

.scan-backlink--round span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.scan-backlink--round svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(calc(-50% - 1px), -50%);
  display: block;
}

.scan-list-header__content h1 {
  margin: 0;
  font-size: clamp(30px, 8vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.scan-list-header__content p {
  margin: 10px 0 0;
  color: var(--scan-muted);
}

.scan-merchant-list-announcement {
  --scan-campaign-accent: #e43b32;
  margin: 2px 0 8px;
}

.scan-merchant-list-announcement .scan-campaign-announcement {
  min-height: 230px;
}

.scan-merchant-list-announcement .scan-campaign-announcement h2 {
  margin: 8px 0;
  color: #171918;
  font-size: clamp(22px, 4.5vw, 34px);
  line-height: 1.08;
}

/* Support directories reuse the validated public campaign card composition. */
.scan-support-establishment-directory {
  --scan-campaign-accent: #e43b32;
  margin-inline: -14px;
}

.scan-support-establishment-directory__featured--2 {
  height: clamp(260px, 42vw, 360px);
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  grid-template-rows: minmax(0, 1fr);
}

.scan-support-establishment-directory__featured--2 .scan-campaign-featured-merchant:first-child {
  grid-row: auto;
}

.scan-establishment-featured--1 {
  height: clamp(300px, 48vw, 440px);
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
}

.scan-establishment-featured--1 .scan-campaign-featured-merchant:first-child,
.scan-establishment-featured--2 .scan-campaign-featured-merchant:first-child {
  grid-row: auto;
}

.scan-establishment-featured--2 {
  height: clamp(280px, 42vw, 380px);
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  grid-template-rows: minmax(0, 1fr);
}

.scan-establishment-empty {
  margin: clamp(42px, 8vw, 76px) clamp(18px, 5vw, 52px) 0;
}

.scan-support-establishment-directory__featured-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.2), transparent 28%), linear-gradient(145deg, #345f49, #172e38);
  color: rgba(255, 255, 255, 0.3);
  font-size: clamp(64px, 13vw, 128px);
  font-weight: 800;
  letter-spacing: -0.08em;
}

@media (max-width: 640px) {
  .scan-support-establishment-directory__featured--2 {
    height: clamp(240px, 70vw, 320px);
  }
  .scan-establishment-featured--1,
  .scan-establishment-featured--2 {
    height: clamp(260px, 76vw, 340px);
  }
}
.scan-floating-phone {
  position: fixed;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 12;
  pointer-events: none;
}

.scan-floating-phone__button {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--scan-primary);
  box-shadow: 0 18px 32px rgba(6, 18, 32, 0.22);
  pointer-events: auto;
}

.scan-floating-phone__button svg {
  width: 26px;
  height: 26px;
  display: block;
}

.scan-category-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.scan-category-pills::-webkit-scrollbar {
  display: none;
}

.scan-category-pill {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--scan-border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--scan-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(13, 25, 38, 0.04);
}

.scan-category-pill.is-active {
  background: var(--scan-primary);
  border-color: var(--scan-primary);
  color: #fff;
}

.scan-merchant-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scan-merchant-list-card {
  background: #fff;
  border: 1px solid rgba(15, 39, 64, 0.06);
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(16, 28, 42, 0.08);
  overflow: hidden;
}

.scan-merchant-list-card__link {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 14px;
  position: relative;
  min-height: 100px;
  text-decoration: none;
  color: inherit;
}
.scan-merchant-list-card__link h2 {
  margin: 0;
  font-size: 1rem;
}
.scan-merchant-list-card__link p {
  font-size: 0.8rem;
}

.scan-merchant-list-card__media {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(216, 166, 59, 0.22), transparent 38%), linear-gradient(160deg, #0b1a2a 0%, #123150 64%, #23482d 100%);
  min-height: 0;
  align-self: center;
}

.scan-merchant-list-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
}

.scan-merchant-list-card__media--product img {
  object-fit: cover;
}

.scan-merchant-list-card__fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-merchant-list-card__fallback span {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.scan-merchant-list-card__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  padding: 4px 0;
}

.scan-merchant-list-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  order: 2;
}
.scan-merchant-list-card__meta h2 {
  font-size: 1rem;
}
.scan-merchant-list-card__meta p {
  font-size: 0.8rem;
}

.scan-merchant-list-card__city {
  font-size: 13px;
  color: var(--scan-muted);
  font-weight: 600;
}

.scan-merchant-list-card__content h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.03em;
  order: 0;
}

.scan-merchant-list-card__content p {
  margin: 0;
  color: var(--scan-muted);
  font-size: 0.8rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  order: 1;
}

.scan-merchant-list-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-merchant-list-card__arrow span {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 39, 64, 0.06);
  color: var(--scan-primary);
}

.scan-merchant-list-card__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(calc(-50% + 1px), -50%);
  display: block;
}

.scan-promotions-fullscreen {
  position: relative;
  height: 100%;
  min-height: 0;
  background: #08131f;
}

.scan-promotions-chrome {
  position: fixed;
  top: calc(16px + env(safe-area-inset-top, 0px));
  left: 16px;
  z-index: 4;
}

.scan-promotions-chrome__heading {
  margin-top: 12px;
  max-width: min(320px, 100vw - 40px);
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(6, 16, 28, 0.42);
  color: #fff;
  backdrop-filter: blur(10px);
}

.scan-promotions-chrome__heading h1,
.scan-promotions-chrome__heading p {
  margin: 0;
}

.scan-promotions-chrome__heading h1 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.scan-promotions-chrome__heading p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.scan-backlink--dark {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(6, 16, 28, 0.44);
  color: #fff;
  backdrop-filter: blur(10px);
}

.scan-promotions-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  height: 100%;
  min-height: 0;
}

.scan-promotions-track::-webkit-scrollbar {
  display: none;
}

.scan-promo-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100vw;
  min-width: 100vw;
  height: 100%;
  min-height: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  color: var(--scan-promo-text-color, #fff);
}

.scan-promo-slide__media,
.scan-promo-slide__overlay {
  position: absolute;
  inset: 0;
}

.scan-promo-slide__media {
  background: var(--scan-promo-image) center/cover no-repeat;
}

.scan-promo-slide__overlay {
  background: linear-gradient(180deg, rgba(3, 8, 14, 0.16) 0%, rgba(3, 8, 14, 0.28) 24%, rgba(3, 8, 14, 0.68) 72%, rgba(3, 8, 14, 0.9) 100%);
}

.scan-promo-slide__content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  padding: calc(72px + env(safe-area-inset-top, 0px)) 22px calc(126px + env(safe-area-inset-bottom, 0px)) 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  color: var(--scan-promo-text-color, #fff);
}

.scan-promo-slide__content--transition {
  justify-content: flex-end;
}

.scan-promo-slide__content--top-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.scan-promo-slide__content--top-center {
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.scan-promo-slide__content--top-right {
  justify-content: flex-start;
  align-items: flex-end;
  text-align: right;
}

.scan-promo-slide__content--upper-left,
.scan-promo-slide__content--lower-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.scan-promo-slide__content--upper-center,
.scan-promo-slide__content--lower-center {
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.scan-promo-slide__content--upper-right,
.scan-promo-slide__content--lower-right {
  justify-content: flex-start;
  align-items: flex-end;
  text-align: right;
}

.scan-promo-slide__content--upper-left .scan-promo-slide__body,
.scan-promo-slide__content--upper-center .scan-promo-slide__body,
.scan-promo-slide__content--upper-right .scan-promo-slide__body,
.scan-promo-slide__content--lower-left .scan-promo-slide__body,
.scan-promo-slide__content--lower-center .scan-promo-slide__body,
.scan-promo-slide__content--lower-right .scan-promo-slide__body {
  position: absolute;
  right: 22px;
  left: 22px;
  transform: translateY(-50%);
}

.scan-promo-slide__content--upper-left .scan-promo-slide__body,
.scan-promo-slide__content--upper-center .scan-promo-slide__body,
.scan-promo-slide__content--upper-right .scan-promo-slide__body {
  top: 30%;
}

.scan-promo-slide__content--lower-left .scan-promo-slide__body,
.scan-promo-slide__content--lower-center .scan-promo-slide__body,
.scan-promo-slide__content--lower-right .scan-promo-slide__body {
  top: 70%;
}

.scan-promo-slide__content--middle-left {
  justify-content: center;
  align-items: flex-start;
}

.scan-promo-slide__content--middle-center {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.scan-promo-slide__content--middle-right {
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

.scan-promo-slide__content--bottom-left {
  justify-content: flex-end;
  align-items: flex-start;
}

.scan-promo-slide__content--bottom-center {
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.scan-promo-slide__content--bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}

.scan-promo-slide__top {
  position: absolute;
  top: calc(16px + env(safe-area-inset-top, 0px));
  right: 16px;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.scan-promo-slide__merchant-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.scan-promo-slide__expiry-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.92);
  color: #3f2400;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.scan-promo-slide__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 38rem;
}

.scan-promo-slide__lead,
.scan-promo-slide__meta {
  margin: 0;
  color: color-mix(in srgb, var(--scan-promo-text-color, #fff) 90%, transparent);
}

.scan-promo-slide__headline {
  margin: 0;
  font-size: clamp(32px, 8vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--scan-promo-text-color, #fff);
  text-wrap: balance;
}

.scan-promo-slide__lead {
  font-size: clamp(18px, 4.5vw, 24px);
  line-height: 1.4;
  font-weight: 600;
  text-wrap: balance;
}

.scan-promo-slide__eyebrow {
  margin: 0 0 8px;
  color: color-mix(in srgb, var(--scan-promo-text-color, #fff) 82%, transparent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scan-promo-slide__meta {
  font-size: 14px;
  line-height: 1.45;
}

.scan-promo-slide__conditions {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: color-mix(in srgb, var(--scan-promo-text-color, #fff) 88%, transparent);
  font-size: 13px;
  line-height: 1.55;
  backdrop-filter: blur(10px);
}

.scan-promo-slide__overlay--transition {
  background: linear-gradient(180deg, rgba(3, 8, 14, 0.12) 0%, rgba(3, 8, 14, 0.24) 30%, rgba(0, 0, 0, 0.35) 56%, rgba(0, 0, 0, 0.78) 100%);
}

.scan-promo-slide--establishment-announcement .scan-promo-slide__conditions {
  max-width: 34rem;
}

.scan-promo-slide--establishment-announcement,
.scan-promo-slide--merchant-announcement {
  touch-action: pan-x;
}

.scan-promo-slide--establishment-announcement .scan-promo-slide__lead,
.scan-merchant-announcement__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.scan-establishment-announcement__footer {
  gap: 8px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.scan-establishment-announcement__details-trigger {
  display: inline-flex;
  gap: 8px;
}

.scan-establishment-announcement__details-trigger .material-symbols-outlined {
  font-size: 1.3rem;
}

.scan-establishment-announcement__swipe-hint {
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.scan-establishment-announcement__swipe-hint--standalone {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(3, 8, 14, 0.34);
  backdrop-filter: blur(10px);
}

.scan-establishment-announcement__swipe-hint--standalone .material-symbols-outlined {
  font-size: 1.05rem;
}

.scan-promo-slide--establishment-announcement.is-bottom-sheet-open .scan-establishment-announcement__footer,
.scan-promo-slide--merchant-announcement.is-bottom-sheet-open .scan-establishment-announcement__footer {
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
}

.spotcard-bottom-sheet {
  --spotcard-bottom-sheet-offset: 100%;
  --spotcard-bottom-sheet-drag-offset: var(--spotcard-bottom-sheet-offset);
  --spotcard-bottom-sheet-openness: 0;
  position: absolute;
  z-index: 8;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease;
}

.is-bottom-sheet-open .spotcard-bottom-sheet {
  pointer-events: auto;
  opacity: 1;
}

.spotcard-bottom-sheet__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: rgba(3, 8, 14, calc(0.24 + var(--spotcard-bottom-sheet-openness) * 0.34));
  cursor: pointer;
  backdrop-filter: blur(calc(var(--spotcard-bottom-sheet-openness) * 4px));
  touch-action: pan-x;
  transition: background-color 260ms ease, backdrop-filter 260ms ease;
}

.spotcard-bottom-sheet__panel {
  position: absolute;
  right: 0;
  bottom: env(safe-area-inset-bottom, 0px);
  left: 0;
  display: flex;
  flex-direction: column;
  height: min(92dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px), 820px);
  max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  max-width: 760px;
  margin: 0 auto;
  border-radius: 30px 30px 0 0;
  background: rgba(255, 255, 255, 0.98);
  color: #102235;
  box-shadow: 0 -24px 64px rgba(0, 0, 0, 0.3);
  outline: none;
  transform: translate3d(0, calc(100% + 16px), 0);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.is-bottom-sheet-open .spotcard-bottom-sheet__panel {
  transform: translate3d(0, var(--spotcard-bottom-sheet-offset), 0);
}

.spotcard-bottom-sheet.is-dragging .spotcard-bottom-sheet__panel {
  transform: translate3d(0, var(--spotcard-bottom-sheet-drag-offset), 0);
  transition: none;
}

.spotcard-bottom-sheet__header {
  position: relative;
  flex: 0 0 46px;
}
.spotcard-bottom-sheet__header button:focus {
  outline: none;
}
.spotcard-bottom-sheet__header button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.spotcard-bottom-sheet__handle-button {
  position: absolute;
  inset: 0 52px 0 52px;
  display: flex;
  justify-content: center;
  padding: 14px 0 0;
  border: 0;
  background: transparent;
  cursor: grab;
  touch-action: none;
}

.spotcard-bottom-sheet__handle-button:active {
  cursor: grabbing;
}

.spotcard-bottom-sheet__handle {
  display: block;
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: #c8d0d7;
}

.spotcard-bottom-sheet__close {
  position: absolute;
  top: 8px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 34, 53, 0.07);
  color: #102235;
  cursor: pointer;
}

.spotcard-bottom-sheet__close .material-symbols-outlined {
  font-size: 1.25rem;
}

.spotcard-bottom-sheet__close:focus-visible,
.spotcard-bottom-sheet__handle-button:focus-visible,
.spotcard-bottom-sheet__backdrop:focus-visible,
.spotcard-bottom-sheet__cta:focus-visible {
  outline: 3px solid var(--scan-secondary, #d85a30);
  outline-offset: 3px;
}

.spotcard-bottom-sheet__content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 0 22px 24px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.spotcard-bottom-sheet__summary {
  padding-bottom: 18px;
}

.spotcard-bottom-sheet__eyebrow,
.spotcard-bottom-sheet__summary h2,
.spotcard-bottom-sheet__summary-copy {
  margin: 0;
}

.spotcard-bottom-sheet__eyebrow {
  color: var(--scan-secondary, #d85a30);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotcard-bottom-sheet__summary h2 {
  margin-top: 7px;
  font-size: clamp(1.4rem, 6vw, 2.15rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.spotcard-bottom-sheet__summary-copy {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 9px;
  color: #586875;
  font-size: 0.94rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.spotcard-bottom-sheet__details {
  display: grid;
  gap: 14px;
  padding: 18px 0 8px;
  border-top: 1px solid rgba(16, 34, 53, 0.1);
}

.spotcard-bottom-sheet[data-bottom-sheet-level="0"] .spotcard-bottom-sheet__details {
  display: none;
}

.spotcard-bottom-sheet__info {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(16, 34, 53, 0.055);
}

.spotcard-bottom-sheet__info > .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(216, 90, 48, 0.12);
  color: var(--scan-secondary, #d85a30);
  font-size: 1.2rem;
}

.spotcard-bottom-sheet__info div {
  display: grid;
  gap: 3px;
}

.spotcard-bottom-sheet__info strong {
  font-size: 0.82rem;
}

.spotcard-bottom-sheet__info span:not(.material-symbols-outlined) {
  color: #5d6b78;
  font-size: 0.9rem;
  line-height: 1.4;
}

.spotcard-bottom-sheet__description {
  color: #40515f;
  font-size: 1rem;
  line-height: 1.7;
  white-space: pre-line;
}

.spotcard-bottom-sheet__conditions {
  padding: 14px;
  border-radius: 16px;
  background: rgba(16, 34, 53, 0.06);
  color: #334452;
  font-size: 0.92rem;
  line-height: 1.55;
  white-space: pre-line;
}

.spotcard-bottom-sheet__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.spotcard-bottom-sheet__actions--1 {
  grid-template-columns: 1fr;
}

.spotcard-bottom-sheet__actions .spotcard-bottom-sheet__cta {
  min-width: 0;
  margin: 0;
  padding-inline: 12px;
  font-size: 0.86rem;
}

.spotcard-bottom-sheet__cta--profile {
  border-color: rgba(52, 66, 85, 0.24);
  color: var(--scan-primary, #344255);
}

.spotcard-bottom-sheet__cta--phone,
.spotcard-bottom-sheet__cta--booking {
  background: var(--scan-success, #16803d);
  border-color: var(--scan-success, #16803d);
  color: #fff;
}

.spotcard-bottom-sheet__cta--directions {
  background: var(--scan-primary, #344255);
  border-color: var(--scan-primary, #344255);
  color: #fff;
}

.spotcard-bottom-sheet__cta--website,
.spotcard-bottom-sheet__cta--social {
  background: var(--scan-secondary, #d85a30);
  border-color: var(--scan-secondary, #d85a30);
  color: #fff;
}

.spotcard-bottom-sheet__cta {
  display: flex;
  width: 100%;
  min-height: 52px;
  margin: 16px 0 0;
}

@media (min-width: 760px) {
  .spotcard-bottom-sheet__panel {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: min(620px, 100vw - 48px);
    height: min(86dvh, 760px);
    border-radius: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .spotcard-bottom-sheet,
  .spotcard-bottom-sheet__panel,
  .scan-establishment-announcement__footer {
    transition-duration: 1ms;
  }
}
.scan-promo-slide--merchant-announcement.is-merchant-announcement-sheet-open .merchant-announcement__details-trigger {
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
}

.merchant-announcement__details-trigger {
  transition: opacity 180ms ease, transform 180ms ease;
}

.merchant-announcement-sheet {
  position: absolute;
  z-index: 6;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.scan-promo-slide--merchant-announcement.is-merchant-announcement-sheet-open .merchant-announcement-sheet {
  pointer-events: auto;
  opacity: 1;
}

.merchant-announcement-sheet__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: rgba(3, 8, 14, 0.48);
  cursor: pointer;
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: opacity 220ms ease;
}

.scan-promo-slide--merchant-announcement.is-merchant-announcement-sheet-open .merchant-announcement-sheet__backdrop {
  opacity: 1;
}

.merchant-announcement-sheet__panel {
  --merchant-announcement-sheet-drag: 0px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  min-height: min(52dvh, 440px);
  max-height: min(82dvh, 680px);
  border-radius: 28px 28px 0 0;
  background: #fff;
  color: #102235;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.26);
  transform: translate3d(0, calc(100% + var(--merchant-announcement-sheet-drag)), 0);
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scan-promo-slide--merchant-announcement.is-merchant-announcement-sheet-open .merchant-announcement-sheet__panel {
  transform: translate3d(0, var(--merchant-announcement-sheet-drag), 0);
}

.merchant-announcement-sheet.is-dragging .merchant-announcement-sheet__panel {
  transition: none;
}

.merchant-announcement-sheet__header {
  position: relative;
  flex: 0 0 auto;
  min-height: 48px;
  touch-action: none;
}

.merchant-announcement-sheet__handle {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: #cbd3da;
  transform: translateX(-50%);
}

.merchant-announcement-sheet__close {
  position: absolute;
  top: 8px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 34, 53, 0.07);
  color: #102235;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.merchant-announcement-sheet__close:focus-visible,
.merchant-announcement-sheet__backdrop:focus-visible {
  outline: 2px solid var(--scan-secondary, #d85a30);
  outline-offset: 2px;
}

.merchant-announcement-sheet__content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 4px 22px calc(24px + env(safe-area-inset-bottom, 0px));
  overscroll-behavior: contain;
}

.merchant-announcement-sheet__merchant,
.merchant-announcement-sheet__meta,
.merchant-announcement-sheet__description,
.merchant-announcement-sheet__conditions {
  margin: 0;
}

.merchant-announcement-sheet__merchant {
  color: var(--scan-secondary, #d85a30);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.merchant-announcement-sheet__content h2 {
  margin: 8px 0 0;
  font-size: clamp(1.55rem, 6vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.merchant-announcement-sheet__meta {
  margin-top: 12px;
  color: #5d6b78;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.merchant-announcement-sheet__description {
  margin-top: 20px;
  color: #40515f;
  font-size: 1rem;
  line-height: 1.7;
  white-space: pre-line;
}

.merchant-announcement-sheet__conditions {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(16, 34, 53, 0.06);
  color: #334452;
  font-size: 0.92rem;
  line-height: 1.55;
  white-space: pre-line;
}

.merchant-announcement-sheet__actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.merchant-announcement-sheet__action {
  width: 100%;
  min-height: 52px;
  margin-top: 0;
}

.merchant-announcement-sheet__action--profile {
  border-color: rgba(52, 66, 85, 0.24);
  color: var(--scan-primary, #344255);
}

.merchant-announcement-sheet__action--phone,
.merchant-announcement-sheet__action--booking {
  background: var(--scan-success, #16803d);
  color: #fff;
}

.merchant-announcement-sheet__action--directions {
  background: var(--scan-primary, #344255);
  color: #fff;
}

.merchant-announcement-sheet__action--website,
.merchant-announcement-sheet__action--social {
  background: var(--scan-secondary, #d85a30);
  color: #fff;
}

.scan-promo-slide__footer {
  position: absolute;
  left: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: calc(100% - 44px);
  z-index: 2;
}
.scan-promo-slide__footer.scan-promo-slide__footer--transition {
  position: relative;
  align-items: center;
}

.scan-promo-slide__footer--top-left,
.scan-promo-slide__footer--upper-left,
.scan-promo-slide__footer--middle-left,
.scan-promo-slide__footer--lower-left,
.scan-promo-slide__footer--bottom-left {
  align-items: flex-start;
}

.scan-promo-slide__footer--top-center,
.scan-promo-slide__footer--upper-center,
.scan-promo-slide__footer--middle-center,
.scan-promo-slide__footer--lower-center,
.scan-promo-slide__footer--bottom-center,
.scan-promo-slide__footer--center {
  align-items: center;
}

.scan-promo-slide__footer--top-right,
.scan-promo-slide__footer--upper-right,
.scan-promo-slide__footer--middle-right,
.scan-promo-slide__footer--lower-right,
.scan-promo-slide__footer--bottom-right {
  align-items: flex-end;
}

.scan-promo-slide__footer--top-left,
.scan-promo-slide__footer--top-center,
.scan-promo-slide__footer--top-right {
  top: calc(48px + env(safe-area-inset-top, 0px));
}

.scan-promo-slide__footer--upper-left,
.scan-promo-slide__footer--upper-center,
.scan-promo-slide__footer--upper-right {
  top: 30%;
  transform: translateY(-50%);
}

.scan-promo-slide__footer--middle-left,
.scan-promo-slide__footer--middle-center,
.scan-promo-slide__footer--middle-right {
  top: 50%;
  transform: translateY(-50%);
}

.scan-promo-slide__footer--lower-left,
.scan-promo-slide__footer--lower-center,
.scan-promo-slide__footer--lower-right {
  top: 70%;
  transform: translateY(-50%);
}

.scan-promo-slide__footer--bottom-left,
.scan-promo-slide__footer--bottom-center,
.scan-promo-slide__footer--bottom-right,
.scan-promo-slide__footer--center {
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

.scan-action--light {
  min-height: 56px;
  padding: 0 22px;
  background: #fff;
  border-color: #fff;
  color: #0d2238;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.scan-action--promo-layout {
  background: var(--scan-promo-cta-bg, #fff);
  border-color: var(--scan-promo-cta-bg, #fff);
  color: var(--scan-promo-cta-color, #0f172a);
}

.scan-action--ghost-light {
  min-height: 54px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  backdrop-filter: blur(8px);
}

.scan-promo-slide__continue {
  flex: 0 0 auto;
}

.scan-promo-slide__footer:has(.scan-promo-slide__continue) {
  left: auto;
  right: 22px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  align-items: flex-end;
  max-width: none;
  transform: none;
}

.scan-promotions-dots {
  position: fixed;
  left: 50%;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(4, 10, 18, 0.42);
  backdrop-filter: blur(12px);
}

.scan-promotions-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, opacity 160ms ease;
}

.scan-promotions-dot.is-active {
  background: #fff;
  transform: scale(1.42);
}

.scan-section--muted {
  padding: 20px 18px;
  background: color-mix(in srgb, var(--scan-surface-soft) 76%, white);
}

.scan-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 14px 0;
}

.scan-page--merchant-detail {
  padding-bottom: 28px;
}

.scan-shell--merchant-detail {
  width: min(920px, 100%);
  gap: 18px;
}

.scan-merchant-page {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.scan-merchant-page__hero {
  position: relative;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.scan-merchant-page__hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52svh, 480px);
  object-fit: cover;
  object-position: center;
  clip-path: polygon(100% 0, 100% 95%, 68% 100%, 0 95%, 0 0);
}

.scan-merchant-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 18, 0.12) 0%, rgba(4, 10, 18, 0.26) 46%, rgba(4, 10, 18, 0.74) 100%);
  clip-path: polygon(100% 0, 100% 95%, 68% 100%, 0 95%, 0 0);
}

.scan-merchant-page__hero-top {
  position: fixed;
  top: calc(16px + env(safe-area-inset-top, 0px));
  left: 16px;
  z-index: 3;
}

.scan-merchant-page__back {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(8, 15, 20, 0.38);
  box-shadow: 0 10px 28px rgba(3, 10, 16, 0.2);
  color: #fff;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, transform 180ms ease;
}

.scan-merchant-page__back > .material-symbols-outlined {
  width: auto;
  height: auto;
  display: block;
  font-size: 26px;
}

.scan-merchant-page__back:hover,
.scan-merchant-page__back:focus-visible {
  background: rgba(8, 15, 20, 0.58);
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
  transform: translateY(-1px);
}

.scan-fullscreen-back {
  position: fixed;
  top: calc(16px + env(safe-area-inset-top, 0px));
  left: 16px;
  z-index: 7;
}

.scan-merchant-page__logo {
  position: absolute;
  left: 18px;
  top: 0;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 18px 34px rgba(6, 18, 32, 0.24);
  overflow: hidden;
  transform: translateY(-70%);
  background-color: #FFF;
}

.scan-merchant-page__logo img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scan-merchant-page__identity,
.scan-merchant-page__actions,
.scan-loyalty-section,
.scan-section--merchant-detail {
  padding: 0 14px;
}

.scan-merchant-page__identity {
  position: relative;
  padding-left: 110px;
}

.scan-loyalty-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scan-loyalty-section__header h2 {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--scan-muted);
  font-weight: 700;
}

.scan-merchant-page__heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.scan-merchant-page__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.scan-merchant-page__heading h1 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.scan-merchant-page__lead {
  margin: 0;
  font-size: 0.8rem;
  color: var(--scan-muted);
}

.scan-merchant-page__address p,
.scan-merchant-page__description p {
  margin: 0;
  color: var(--scan-muted);
}

.scan-merchant-page__address p {
  font-size: 0.8rem;
}

.scan-merchant-page__description p {
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 1.45em;
}

.scan-merchant-page__description p.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.scan-merchant-page__description-toggle {
  display: inline-flex;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--scan-primary);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.scan-merchant-page__description-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 3px;
}

.scan-merchant-page__actions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
}

.scan-recruitment-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  margin: 8px 14px 0;
  padding: 18px;
  border: 1px solid color-mix(in srgb, #d85a30 20%, var(--scan-border));
  border-radius: var(--scan-radius);
  background: linear-gradient(135deg, #fffaf6 0%, #fff 100%);
  box-shadow: 0 12px 28px rgba(18, 34, 52, 0.07);
}

.scan-recruitment-cta__head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-width: 0;
}

.scan-recruitment-cta__icon {
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 90, 48, 0.16);
  border-radius: 50%;
  background: rgba(216, 90, 48, 0.08);
  color: #d85a30;
}

.scan-recruitment-cta__icon .material-symbols-outlined {
  font-size: 23px;
}

.scan-recruitment-cta__content {
  min-width: 0;
}

.scan-recruitment-cta__title {
  margin: 0;
  color: var(--scan-primary);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.scan-recruitment-cta__subtitle {
  margin: 4px 0 0;
  color: var(--scan-muted);
  font-size: 0.84rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.scan-recruitment-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid #d85a30;
  border-radius: var(--scan-radius-sm);
  background: #d85a30;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.scan-recruitment-cta__button:hover {
  background: #bf4824;
  color: #fff;
  transform: translateY(-1px);
}

.scan-recruitment-cta__button:focus-visible {
  outline: 3px solid rgba(216, 90, 48, 0.38);
  outline-offset: 3px;
}

.scan-recruitment-cta__button .material-symbols-outlined {
  font-size: 19px;
}

.public-recruitment {
  min-height: 100vh;
  padding: 24px 16px 48px;
  background: var(--scan-surface, #f5f7fb);
  color: var(--scan-text, #182338);
}

.public-recruitment__container {
  width: min(100%, 760px);
  margin: 0 auto;
}

.public-recruitment__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--scan-primary, #174ea6);
  font-weight: 700;
  text-decoration: none;
}

.public-recruitment__heading {
  padding: 28px 0 20px;
}

.public-recruitment__eyebrow {
  color: var(--scan-muted, #657187);
  font-size: 0.9rem;
  font-weight: 700;
}

.public-recruitment__heading h1 {
  margin: 8px 0 10px;
  color: var(--scan-primary, #174ea6);
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  line-height: 1.15;
}

.public-recruitment__heading p {
  margin: 5px 0;
  color: var(--scan-muted, #657187);
}

.public-recruitment__heading .public-recruitment__lead {
  color: var(--scan-text, #182338);
  font-size: 1.1rem;
  font-weight: 750;
}

.public-recruitment__offers {
  display: grid;
  gap: 14px;
}

.public-recruitment__card {
  padding: 20px;
  border: 1px solid var(--scan-border, #e3e8f0);
  border-radius: var(--scan-radius, 16px);
  background: #fff;
  box-shadow: 0 8px 26px rgba(20, 42, 75, 0.05);
}

.public-recruitment__badge {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(216, 90, 48, 0.09);
  color: #a53d1e;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.public-recruitment__card h2 {
  margin: 12px 0 10px;
  color: var(--scan-text, #182338);
  font-size: 1.25rem;
  line-height: 1.3;
}

.public-recruitment__location {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 6px;
  color: var(--scan-muted, #657187);
}

.public-recruitment__dates {
  margin: 0 0 12px;
  color: var(--scan-muted, #657187);
  font-size: 0.9rem;
}

.public-recruitment__description {
  margin: 14px 0 0;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.public-recruitment__apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 10px 18px;
  border: 0;
  border-radius: 12px;
  background: var(--scan-accent, #ed6a35);
  color: #fff;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.public-recruitment__apply:hover {
  filter: brightness(0.95);
}

.public-recruitment__apply:focus-visible, .public-recruitment__back:focus-visible {
  outline: 3px solid var(--scan-primary, #174ea6);
  outline-offset: 3px;
}

.public-recruitment--immersive {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  padding: 22px 16px 40px;
  overflow: clip;
  background: linear-gradient(145deg, #344255 0%, #526478 52%, #d85a30 150%);
  color: #fff;
}

.public-recruitment--immersive .public-recruitment__background {
  position: fixed;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-recruitment--immersive .public-recruitment__backdrop {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13, 25, 40, 0.44) 0%, rgba(20, 33, 49, 0.14) 38%, rgba(20, 33, 49, 0.28) 100%), rgba(18, 31, 47, 0.12);
}

.public-recruitment--immersive .public-recruitment__container {
  position: relative;
  z-index: 1;
}

.public-recruitment--immersive .public-recruitment__back {
  min-height: 48px;
  color: #fff;
}

.public-recruitment--immersive .public-recruitment__heading {
  padding: 28px 0 19px;
}

.public-recruitment--immersive .public-recruitment__heading h1 {
  position: relative;
  display: inline-block;
  margin: 0 0 11px;
  color: #fff;
  font-size: clamp(2rem, 8vw, 3.1rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 16px rgba(15, 28, 44, 0.24);
}

.public-recruitment--immersive .public-recruitment__heading h1::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  width: 42px;
  height: 4px;
  border-radius: 99px;
  background: #d85a30;
  content: "";
}

.public-recruitment--immersive .public-recruitment__merchant-name {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1rem, 4vw, 1.15rem);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 10px rgba(15, 28, 44, 0.35);
}

.public-recruitment__intro, .public-recruitment--immersive .public-recruitment__card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 12px 34px rgba(16, 31, 48, 0.14);
  color: #344255;
}

.public-recruitment__intro {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0 0 16px;
  padding: 19px 20px;
}

.public-recruitment__intro-icon {
  flex: 0 0 auto;
  margin-top: 1px;
  color: #d85a30;
  font-size: 25px;
}

.public-recruitment__intro-content {
  min-width: 0;
}

.public-recruitment__intro h2 {
  margin: 0;
  color: #344255;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.public-recruitment__intro p {
  margin: 6px 0 0;
  color: #526174;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.public-recruitment--immersive .public-recruitment__offers {
  gap: 14px;
}

.public-recruitment--immersive .public-recruitment__card {
  padding: 19px 20px 20px;
}

.public-recruitment--immersive .public-recruitment__card h2 {
  margin: 10px 0 9px;
  color: #344255;
  font-size: clamp(1.12rem, 4.6vw, 1.32rem);
}

.public-recruitment__metadata {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 17px;
  color: #5d6878;
  font-size: 0.9rem;
}

.public-recruitment__metadata > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.public-recruitment__metadata .material-symbols-outlined {
  flex: 0 0 auto;
  color: #d85a30;
  font-size: 18px;
}

.public-recruitment--immersive .public-recruitment__description {
  display: -webkit-box;
  max-height: 4.95em;
  margin: 12px 0 0;
  overflow: hidden;
  color: #465366;
  line-height: 1.65;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.public-recruitment--immersive .public-recruitment__apply {
  gap: 9px;
  min-height: 46px;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #d85a30;
  color: #fff;
}

.public-recruitment--immersive .public-recruitment__apply:hover {
  background: #bf4824;
  filter: none;
}

.public-recruitment--immersive .public-recruitment__apply .material-symbols-outlined {
  font-size: 18px;
}

.public-recruitment--immersive .public-recruitment__apply:focus-visible {
  outline-color: #d85a30;
}

.public-recruitment--offer-detail {
  padding-bottom: 56px;
}

.public-recruitment--offer-detail .public-recruitment__backdrop {
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.74) 0%, rgba(10, 14, 20, 0.48) 38%, rgba(10, 14, 20, 0.32) 66%, rgba(10, 14, 20, 0.22) 100%);
}

.public-recruitment-offer {
  margin-top: 25px;
}

.public-recruitment-offer__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.public-recruitment--offer-detail .public-recruitment-offer__heading .public-recruitment__badge {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.24);
  color: #873519;
}

.public-recruitment--offer-detail .public-recruitment-offer__heading h1 {
  max-width: 100%;
  margin: 2px 0 0;
  color: #fff;
  font-size: clamp(2rem, 7.5vw, 3.15rem);
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 18px rgba(13, 25, 40, 0.28);
}

.public-recruitment-offer__merchant {
  margin: 0;
  color: rgba(255, 255, 255, 0.99);
  font-size: clamp(1rem, 4vw, 1.12rem);
  font-weight: 750;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.68);
}

.public-recruitment--offer-detail .public-recruitment__metadata {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.99);
  font-size: 0.96rem;
  font-weight: 650;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
}

.public-recruitment--offer-detail .public-recruitment__metadata .material-symbols-outlined {
  color: #ffae88;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.62));
}

.public-recruitment--offer-detail .public-recruitment__detail-content {
  margin-top: 24px;
  padding: clamp(22px, 5vw, 32px);
  border-color: rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 14px 38px rgba(16, 31, 48, 0.17);
  color: #344255;
}

.public-recruitment--offer-detail .public-recruitment__detail-description {
  margin: 0;
  color: #3f4c60;
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.public-recruitment--offer-detail .public-recruitment__apply--primary {
  display: flex;
  width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 13px 18px;
  border: 1px solid #d85a30;
  border-radius: 16px;
  background: #d85a30;
  box-shadow: 0 8px 18px rgba(176, 66, 32, 0.2);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
}

.public-recruitment--offer-detail .public-recruitment__detail-content--with-description .public-recruitment__apply--primary {
  margin-top: 24px;
}

.public-recruitment--offer-detail .public-recruitment__apply--primary:hover {
  background: #bf4824;
  box-shadow: 0 10px 22px rgba(176, 66, 32, 0.24);
}

.public-recruitment--offer-detail .public-recruitment__apply--primary:focus-visible {
  outline: 3px solid #344255;
  outline-offset: 3px;
}

.public-recruitment--offer-detail .public-recruitment__apply--primary > .material-symbols-outlined {
  flex: 0 0 auto;
  font-size: 21px;
}

.public-recruitment--offer-detail .public-recruitment__apply--primary .public-recruitment__apply-arrow {
  margin-left: auto;
  font-size: 20px;
}

@supports (backdrop-filter: blur(1px)) {
  .public-recruitment__intro, .public-recruitment--immersive .public-recruitment__card {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
}
@media (max-width: 360px) {
  .public-recruitment--immersive {
    padding-right: 14px;
    padding-left: 14px;
  }
  .public-recruitment__intro {
    gap: 9px;
    padding: 16px;
  }
  .public-recruitment--immersive .public-recruitment__card {
    padding: 17px 16px;
  }
  .public-recruitment__metadata {
    gap: 6px 12px;
    font-size: 0.86rem;
  }
  .public-recruitment--offer-detail .public-recruitment__detail-content {
    padding: 19px 16px;
  }
  .public-recruitment--offer-detail .public-recruitment__apply--primary {
    padding-right: 14px;
    padding-left: 14px;
  }
}
.scan-merchant-game-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 126px;
  margin: 8px 14px 7px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(216, 90, 48, 0.45);
  border-radius: 20px;
  background: linear-gradient(120deg, #344255 0%, #253447 100%);
  box-shadow: 0 16px 32px rgba(18, 34, 52, 0.2);
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.scan-merchant-game-banner:hover,
.scan-merchant-game-banner:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(18, 34, 52, 0.28);
}

.scan-merchant-game-banner:focus-visible {
  outline: 3px solid rgba(216, 90, 48, 0.7);
  outline-offset: 3px;
}

.scan-merchant-game-banner__decoration {
  position: absolute;
  z-index: -1;
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.scan-merchant-game-banner__decoration::before,
.scan-merchant-game-banner__decoration::after {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d85a30;
  content: "";
}

.scan-merchant-game-banner__decoration--one {
  top: -22px;
  right: 62px;
}

.scan-merchant-game-banner__decoration--one::before {
  top: 46px;
  left: -14px;
}

.scan-merchant-game-banner__decoration--one::after {
  top: 18px;
  right: -10px;
}

.scan-merchant-game-banner__decoration--two {
  right: -22px;
  bottom: -28px;
  width: 78px;
  height: 78px;
  border-color: rgba(216, 90, 48, 0.45);
}

.scan-merchant-game-banner__decoration--two::before {
  top: 11px;
  left: 7px;
  background: #fff;
}

.scan-merchant-game-banner__decoration--two::after {
  right: 16px;
  bottom: 8px;
}

.scan-merchant-game-banner__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: #d85a30;
  color: #fff;
  box-shadow: 0 10px 20px rgba(8, 15, 24, 0.24);
}

.scan-merchant-game-banner__icon .material-symbols-outlined {
  font-size: 1.65rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 32;
}

.scan-merchant-game-banner__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.scan-merchant-game-banner__eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.scan-merchant-game-banner__title {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.scan-merchant-game-banner__description {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  line-height: 1.35;
}

.scan-merchant-game-banner__cta {
  grid-column: 1/-1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: #344255;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.scan-merchant-game-banner__cta .material-symbols-outlined {
  font-size: 1rem;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .scan-merchant-game-banner {
    transition: none;
  }
}
.scan-merchant-page__actions .scan-action {
  min-height: 48px;
}

.merchant-hours-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 14px 0;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 39, 64, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(15, 39, 64, 0.08);
}

.merchant-hours-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.merchant-hours-card__header h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.merchant-hours-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.merchant-hours-card__badge--open {
  background: rgba(34, 197, 94, 0.14);
  color: #1f7a45;
}

.merchant-hours-card__badge--closed {
  background: rgba(148, 163, 184, 0.16);
  color: #475569;
}

.merchant-hours-card__badge--special {
  background: rgba(216, 90, 48, 0.14);
  color: #b44924;
}

.merchant-hours-card__message,
.merchant-hours-card__special-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--scan-muted);
}

.merchant-hours-card__today {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.merchant-hours-card__today strong {
  font-size: 0.82rem;
}

.merchant-hours-card__today-ranges {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--scan-text);
}

.merchant-hours-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--scan-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.merchant-hours-card__toggle-icon {
  font-size: 1rem;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.merchant-hours-card__week {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.merchant-hours-card__week[hidden] {
  display: none !important;
}

.merchant-hours-card__row {
  display: grid;
  grid-template-columns: minmax(84px, 96px) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 0.8rem;
  color: var(--scan-muted);
}

.merchant-hours-card__row--today {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(15, 39, 64, 0.05);
  color: var(--scan-text);
}

.merchant-hours-card__day {
  font-weight: 700;
}

.merchant-hours-card__ranges {
  text-align: right;
}

.scan-merchant-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 12px 8px;
  text-align: center;
  text-decoration: none;
  color: var(--scan-text);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 39, 64, 0.08);
  border-radius: 9px;
  box-shadow: 0 10px 28px rgba(15, 39, 64, 0.08);
}

.scan-merchant-cta-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 40px;
  border-radius: 9px;
  background: #0f2740;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 39, 64, 0.18);
}

.scan-merchant-cta-card__icon .material-symbols-outlined {
  font-size: 1rem;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.scan-merchant-cta-card__icon--social {
  background: #fff;
  box-shadow: none;
}

.scan-merchant-cta-card__icon--social img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.scan-merchant-cta-card__label {
  font-size: 0.7rem;
}

.scan-merchant-page__secondary-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 14px;
}

.scan-merchant-page__secondary-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--scan-primary);
}

.scan-merchant-page__actions--socials {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.scan-merchant-cta-card--social {
  gap: 8px;
  aspect-ratio: 1/1;
  min-height: 0;
  padding: 10px 6px 8px;
  justify-content: center;
}

.scan-wallet-cta-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 39, 64, 0.08);
  background: #000;
  box-shadow: 0 12px 28px rgba(15, 39, 64, 0.08);
  text-decoration: none;
  color: #FFF;
}

.scan-wallet-cta-card__media {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.scan-wallet-cta-card__image {
  display: block;
  width: auto;
  width: 48px;
  height: auto;
}

.scan-wallet-cta-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.scan-wallet-cta-card__title {
  font-size: 0.8rem;
  line-height: 1.2;
  color: inherit;
}

.scan-wallet-cta-card__subtitle {
  font-size: 0.7rem;
  line-height: 1.35;
  color: inherit;
}

.scan-loyalty-section--premium {
  margin-top: 6px;
}

.loyalty-wallet-card {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--scan-primary, #344255) 16%, transparent);
  border-radius: 24px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--scan-primary, #344255) 8%, #fff) 0%, #fff 56%, color-mix(in srgb, var(--scan-secondary, #d85a30) 7%, #fff) 100%);
  box-shadow: 0 18px 42px rgba(15, 39, 64, 0.1);
}

.loyalty-wallet-card__decoration,
.loyalty-wallet-card__decoration::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.loyalty-wallet-card__decoration {
  top: -24px;
  right: -100px;
  width: 244px;
  height: 164px;
  background: url("/assets/images/carte_fidelite.png") center/contain no-repeat;
  filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.18));
  transform: rotate(-4deg);
}

.loyalty-wallet-card__decoration::after {
  top: 52px;
  right: 54px;
  z-index: 0;
  width: 84px;
  height: 84px;
  background: color-mix(in srgb, var(--scan-secondary, #d85a30) 22%, transparent);
  filter: blur(18px);
  opacity: 0.5;
}

.loyalty-wallet-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.loyalty-wallet-card__eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  color: var(--scan-primary, #344255);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.loyalty-wallet-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--scan-primary, #344255) 12%, #fff);
  font-size: 1.05rem;
}

.loyalty-wallet-card h2 {
  max-width: 15rem;
  margin: 16px 0 0;
  color: #102235;
  font-size: clamp(1.4rem, 6vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.loyalty-wallet-card__description {
  max-width: 32rem;
  margin: 12px 0 0;
  color: #526477;
  font-size: 0.94rem;
  line-height: 1.55;
}

.loyalty-wallet-card__cta {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 16px;
  background: #18242e;
  box-shadow: 0 10px 20px rgba(16, 34, 53, 0.22);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.loyalty-wallet-card__cta:focus-visible {
  outline: 3px solid var(--scan-secondary, #d85a30);
  outline-offset: 3px;
}

.loyalty-wallet-card__cta:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 6px 14px rgba(16, 34, 53, 0.2);
}

.loyalty-wallet-card__wallet-logo {
  display: block;
  width: 34px;
  max-height: 30px;
  object-fit: contain;
}

.loyalty-wallet-card__cta-label {
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.2;
}

.loyalty-wallet-card__cta-arrow {
  justify-self: end;
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.loyalty-wallet-card__reassurance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px 0 0;
  color: #647487;
  font-size: 0.75rem;
  line-height: 1.35;
  text-align: center;
}

.loyalty-wallet-card__reassurance .material-symbols-outlined {
  font-size: 0.95rem;
}

@media (hover: hover) and (pointer: fine) {
  .loyalty-wallet-card__cta:hover {
    background: #0f1921;
    box-shadow: 0 14px 24px rgba(16, 34, 53, 0.28);
    transform: translateY(-1px);
  }
  .loyalty-wallet-card__cta:hover .loyalty-wallet-card__cta-arrow {
    transform: translateX(3px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .loyalty-wallet-card__cta,
  .loyalty-wallet-card__cta-arrow {
    transition: none;
  }
}
@media (min-width: 640px) {
  .loyalty-wallet-card__decoration {
    top: -20px;
    right: -16px;
    width: 300px;
    height: 200px;
    opacity: 0.42;
  }
}
.scan-merchant-page__action-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 2px auto 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(216, 166, 59, 0.18), rgba(216, 166, 59, 0.08)), rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 166, 59, 0.24);
  color: #7a5a10;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-align: center;
  width: fit-content;
  max-width: min(100%, 320px);
  box-shadow: 0 10px 22px rgba(216, 166, 59, 0.08);
}

.scan-merchant-page__action-note::before {
  content: "🎁";
  font-size: 0.9rem;
  line-height: 1;
  flex: 0 0 auto;
}

.scan-google-review-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  margin: 0 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.98));
  border: 1px solid rgba(15, 39, 64, 0.08);
  border-radius: 24px;
  box-shadow: var(--scan-shadow);
}

.scan-google-review-card__content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.scan-google-review-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--scan-primary);
  font-size: 22px;
}
.scan-google-review-card__icon > img {
  width: 46px;
  height: 46px;
}

.scan-google-review-card h2,
.scan-google-review-card h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.scan-google-review-card p {
  margin: 0;
  color: var(--scan-muted);
}

.scan-google-review-card__button.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.scan-card--merchant-products-list {
  padding: 0;
  overflow: hidden;
}

.scan-products-simple-list {
  display: flex;
  flex-direction: column;
}

.scan-products-simple-list__item {
  padding: 0;
}

.scan-products-simple-list__item + .scan-products-simple-list__item {
  border-top: 1px solid rgba(15, 39, 64, 0.08);
}

.scan-products-simple-list__main {
  display: block;
}

.scan-products-simple-list__thumb {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 0;
  background: var(--scan-surface-soft);
}

.scan-products-simple-list__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.scan-products-simple-list__body {
  min-width: 0;
  flex: 1 1 auto;
  padding: 16px 18px 18px;
}

.scan-products-simple-list__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.scan-products-simple-list__title-group {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scan-products-simple-list__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--scan-text);
  line-height: 1.25;
}

.scan-products-simple-list__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 39, 64, 0.26);
  flex: 0 0 auto;
}

.scan-products-simple-list__price {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  color: var(--scan-text);
  text-align: right;
}

.scan-products-simple-list__description {
  margin: 6px 0 0;
  color: var(--scan-muted);
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-line;
}

.scan-products-simple-list__description.is-collapsed,
.scan-product-card__description.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.scan-products-simple-list__description-toggle,
.scan-product-card__description-toggle {
  display: inline-flex;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--scan-primary);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.scan-products-simple-list__description-toggle:focus-visible,
.scan-product-card__description-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 3px;
}

.scan-page--products {
  padding-bottom: 28px;
  background: #f7f9fc;
}

.scan-shell--products {
  width: min(920px, 100%);
  gap: 18px;
  padding: 0 18px 28px;
}

.scan-products-header {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
  padding-top: calc(18px + env(safe-area-inset-top, 0px));
}

.scan-products-header h1 {
  margin: 0;
  color: var(--scan-primary);
  font-size: clamp(30px, 8vw, 46px);
  line-height: 1;
  letter-spacing: -0.045em;
  text-align: center;
}

.scan-products-header__spacer {
  width: 48px;
  height: 48px;
}

.scan-products-merchant-card,
.scan-products-contact,
.scan-product-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 39, 64, 0.07);
  box-shadow: 0 18px 36px rgba(16, 28, 42, 0.07);
}

.scan-products-merchant-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 164px;
  padding: 20px 28px;
  border-radius: 30px;
}

.scan-products-merchant-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  overflow: hidden;
  border-radius: 50%;
  background: #f3f5f7;
  color: var(--scan-primary);
}

.scan-products-merchant-card__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.scan-products-merchant-card__logo .material-symbols-outlined {
  font-size: 52px;
}

.scan-products-merchant-card__identity {
  min-width: 0;
}

.scan-products-merchant-card__identity h2 {
  margin: 0 0 14px;
  color: var(--scan-primary);
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.scan-products-merchant-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #52709a;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
}

.scan-products-merchant-card__meta span:first-child {
  padding: 8px 18px;
  border-radius: 999px;
  background: #e4f4e9;
  color: #20894c;
  font-weight: 700;
}

.scan-products-intro {
  padding: 24px 18px 8px;
}

.scan-products-intro h2 {
  margin: 0 0 12px;
  color: var(--scan-primary);
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.scan-products-intro p {
  max-width: 740px;
  margin: 0;
  color: #52709a;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  line-height: 1.45;
}

.scan-products-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scan-product-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  border-radius: 26px;
}

.scan-product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  min-height: 128px;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: radial-gradient(circle at top right, rgba(216, 166, 59, 0.2), transparent 42%), linear-gradient(145deg, #172b43, #31516b);
  color: #fff;
}

.scan-product-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.scan-product-card__media .material-symbols-outlined {
  font-size: 42px;
}

.scan-product-card__content {
  min-width: 0;
  padding: 20px;
}

.scan-product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.scan-product-card__content h2 {
  min-width: 0;
  margin: 0;
  color: var(--scan-primary);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.scan-product-card__content p {
  margin: 0;
  color: #52709a;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  line-height: 1.35;
  white-space: pre-line;
}

.scan-product-card__description-toggle {
  margin-top: 10px;
}

.scan-product-card__price {
  flex: 0 0 auto;
  color: var(--scan-primary);
  font-size: clamp(1.15rem, 3.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  text-align: right;
}

.scan-products-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 10px;
  padding: 24px;
  border-radius: 28px;
}

.scan-products-contact__intro {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.scan-products-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: var(--scan-primary);
  color: #fff;
  font-size: 34px;
}

.scan-products-contact h2 {
  margin: 0 0 5px;
  color: var(--scan-primary);
  font-size: 1.2rem;
}

.scan-products-contact p {
  margin: 0;
  color: #52709a;
  line-height: 1.4;
}

.scan-products-contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.scan-products-contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  background: var(--scan-primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 760px) {
  .scan-shell--products {
    padding-inline: 28px;
  }
  .scan-products-header {
    padding-top: calc(24px + env(safe-area-inset-top, 0px));
  }
  .scan-products-merchant-card {
    grid-template-columns: 156px minmax(0, 1fr);
    min-height: 210px;
    padding: 28px 38px;
  }
  .scan-products-merchant-card__logo {
    width: 156px;
    height: 156px;
  }
  .scan-product-card__content {
    padding: 24px;
  }
  .scan-product-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .scan-product-card__media {
    width: 180px;
    min-height: 180px;
  }
}
@media (max-width: 640px) {
  .scan-products-contact {
    grid-template-columns: 1fr;
  }
  .scan-products-contact__actions {
    justify-content: stretch;
  }
  .scan-products-contact__button {
    flex: 1 1 150px;
  }
}
@media (max-width: 480px) {
  .scan-shell--products {
    padding-inline: 12px;
  }
  .scan-products-merchant-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    min-height: 112px;
    padding: 16px;
    border-radius: 24px;
  }
  .scan-products-merchant-card__logo {
    width: 76px;
    height: 76px;
  }
  .scan-products-merchant-card__identity h2 {
    margin-bottom: 8px;
    font-size: 1.3rem;
  }
  .scan-products-merchant-card__meta {
    gap: 8px;
    font-size: 0.9rem;
  }
  .scan-products-merchant-card__meta span:first-child {
    padding: 6px 10px;
  }
  .scan-product-card {
    border-radius: 22px;
  }
  .scan-product-card__content h2 {
    font-size: 1.05rem;
  }
  .scan-product-card__content p {
    font-size: 0.88rem;
  }
  .scan-product-card__content {
    padding: 16px;
  }
  .scan-product-card__price {
    font-size: 1rem;
  }
  .scan-products-contact {
    padding: 18px;
    border-radius: 24px;
  }
  .scan-products-contact__intro {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
  }
  .scan-products-contact__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 28px;
  }
  .scan-products-contact__button {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .scan-merchant-gallery-card:hover img {
    transform: scale(1.04);
  }
}
.scan-game-card {
  background: var(--scan-surface);
  border: 1px solid var(--scan-border);
  border-radius: var(--scan-radius);
  box-shadow: var(--scan-shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.scan-game-merchant-logo {
  display: flex;
  justify-content: center;
  margin: 25px auto 18px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.scan-game-merchant-logo img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.scan-page--game-shell {
  position: relative;
  height: 100dvh;
  min-height: 100dvh;
  padding: 0;
  overflow: hidden;
}

html:has(.scan-page--game-shell),
body:has(.scan-page--game-shell) {
  height: 100%;
  overflow: hidden;
}

.scan-page--game-shell-background::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--scan-game-page-background);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(5px);
  transform: scale(1.08);
  transform-origin: center;
  z-index: 0;
  pointer-events: none;
}

.scan-page--game-shell-background::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.36), rgba(15, 23, 42, 0.58));
  z-index: 0;
  pointer-events: none;
}

.scan-page--game-scratch::after {
  display: none;
}

.scan-page--game-scratch {
  min-height: 100dvh;
  padding: 0;
}

.scan-page--game-scratch:not(.scan-page--game-shell-background) {
  background: #fff;
}

.scan-page--game-scratch .scan-shell--merchant-list {
  width: 100%;
  min-height: 100dvh;
  height: auto;
  padding: 0;
}

.scan-game-card--scratch {
  width: 100%;
  min-height: 100dvh;
  justify-content: stretch;
  gap: clamp(14px, 2.5vh, 24px);
  padding: calc(clamp(20px, 4vh, 42px) + env(safe-area-inset-top, 0px)) clamp(14px, 4vw, 48px) calc(clamp(18px, 3vh, 32px) + env(safe-area-inset-bottom, 0px));
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.scan-game-card--scratch .scan-game-card__header {
  width: min(100%, 58rem);
  margin-inline: auto;
  align-items: center;
  text-align: center;
}

.scan-page--game-shell-background .scan-game-card--scratch,
.scan-page--game-shell-background .scan-game-card--scratch .scan-game-card__header p {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.scan-game-card--scratch .scan-game-card__playground--scratch {
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  display: grid;
  place-items: center;
}

.scan-page--game-shell .scan-shell--merchant-list {
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.scan-game-card__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scan-game-card__header h1 {
  margin: 0;
  text-align: center;
  font-size: 1.4rem;
  font-variant: small-caps;
}

.scan-game-card__header p {
  margin: 0;
  color: var(--scan-muted);
  text-align: center;
  font-size: 0.8rem;
}

.scan-game-card__playground {
  place-items: center;
  color: #fff;
}

.scan-game-card__playground--scratch {
  background: transparent;
}

.scratch-game {
  width: min(100%, 58rem);
  height: 100%;
  display: grid;
  align-content: center;
  padding: 0;
  color: var(--scratch-ticket-text, inherit);
}

.scratch-game__intro {
  display: grid;
  gap: 4px;
  text-align: center;
}

.scratch-game__instruction,
.scratch-game__rule,
.scratch-game__status {
  margin: 0;
}

.scratch-game__instruction {
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  font-weight: 800;
}

.scratch-game__rule {
  font-size: clamp(0.76rem, 2.5vw, 0.9rem);
  opacity: 0.84;
}

.scratch-game__status {
  min-height: 1.25em;
  margin-top: 14px;
  text-align: center;
  font-size: 0.8rem;
}

.scratch-ticket-frame {
  position: relative;
  width: 100%;
}

.scratch-ticket {
  position: absolute;
  top: var(--scratch-cards-top);
  right: var(--scratch-cards-right);
  bottom: var(--scratch-cards-bottom);
  left: var(--scratch-cards-left);
  z-index: 2;
  display: grid;
  align-items: center;
  margin: 0;
  padding: 0;
  color: var(--scratch-ticket-text, #0f172a);
  background: var(--scratch-ticket-background, #fff7ed);
}

.scratch-ticket__cells {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: var(--scratch-cards-gap);
}

.scratch-ticket__frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.scratch-ticket-frame.is-frame-unavailable {
  aspect-ratio: 3/2;
}

.scratch-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: clamp(12px, 3vw, 20px);
  outline: none;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: var(--scratch-cover-color, #cbd5e1);
}

.scratch-card:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.scratch-card__result,
.scratch-card__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scratch-card__result {
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 19%;
  background: var(--scratch-card-background, #fff7ed);
  color: var(--scratch-card-text, #0f172a);
}

.scratch-card__pending-cover {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 7px), linear-gradient(135deg, #8e99a6 0%, #f7fafc 20%, var(--scratch-cover-color, #cbd5e1) 45%, #fff 70%, #98a4b1 100%);
}

.scratch-card__symbol {
  width: 80%;
  height: 64%;
  object-fit: contain;
}

.scratch-card__label {
  font-size: clamp(0.62rem, 2.8vw, 0.86rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: anywhere;
}

.scratch-card__canvas {
  z-index: 3;
  display: block;
  touch-action: none;
  cursor: crosshair;
  transition: opacity 240ms ease;
}

.scratch-card__canvas.is-revealing {
  opacity: 0;
  pointer-events: none;
}

.scratch-card--revealed {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.72), 0 12px 28px rgba(0, 0, 0, 0.24);
}

@media (max-width: 390px) {
  .scratch-game {
    padding-inline: 10px;
  }
  .scratch-ticket__cells {
    gap: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scratch-card__canvas {
    transition-duration: 1ms;
  }
}
.scan-game-card--slot-machine {
  --slot-background: #7c2d12;
  color: #fff;
  background: var(--slot-background);
}

.scan-game-card__playground--slot_machine {
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  display: grid;
  place-items: center;
}

.slot-machine {
  width: min(100%, 42rem);
  display: grid;
  gap: 14px;
  place-items: center;
}

.slot-machine__stage {
  position: relative;
  width: min(100%, 34rem);
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: clamp(22px, 6vw, 48px);
  background: radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.28), transparent 28%), linear-gradient(145deg, var(--slot-machine-color), color-mix(in srgb, var(--slot-machine-color), #000 32%));
  box-shadow: inset 0 0 0 4px var(--slot-accent), 0 24px 58px rgba(0, 0, 0, 0.32);
}

.slot-machine__stage.has-frame {
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.slot-machine__frame {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  pointer-events: none;
  user-select: none;
}

.slot-machine__reels {
  position: absolute;
  z-index: 2;
  top: var(--slot-reels-top);
  right: var(--slot-reels-right);
  bottom: var(--slot-reels-bottom);
  left: var(--slot-reels-left);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(5px, 1.8vw, 14px);
  min-width: 0;
}

.slot-machine__reel {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--slot-accent), #fff 35%);
  border-radius: clamp(8px, 2vw, 18px);
  background: #fff7ed;
  box-shadow: inset 0 8px 18px rgba(15, 23, 42, 0.14);
}

.slot-machine__track {
  width: 100%;
  height: 100%;
  will-change: transform;
}

.slot-machine__symbol {
  width: 100%;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8%;
  color: var(--slot-symbol-color, #0f172a);
  background: var(--slot-symbol-background, #fff7ed);
  text-align: center;
}

.slot-machine__symbol img {
  display: block;
  width: min(82%, 8rem);
  height: min(74%, 8rem);
  object-fit: contain;
  background: transparent;
  mix-blend-mode: normal;
}

.slot-machine__symbol i {
  font-size: clamp(1.7rem, 9vw, 5rem);
  color: var(--slot-accent);
}

.slot-machine__symbol span {
  font-size: clamp(0.62rem, 2.7vw, 0.9rem);
  font-weight: 800;
  line-height: 1.05;
}

.slot-machine__status {
  min-height: 1.25em;
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.slot-machine__button {
  position: relative;
  z-index: 10;
  width: min(100%, 24rem);
  min-height: 48px;
  color: var(--slot-button-text) !important;
  background: var(--slot-button) !important;
  border-color: color-mix(in srgb, var(--slot-button), #000 12%) !important;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.scan-game-form--slot_machine {
  position: relative;
  z-index: 10;
  width: min(100%, 24rem);
  align-self: center;
  pointer-events: auto;
}

.slot-machine__button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.slot-machine.is-won .slot-machine__reel {
  box-shadow: 0 0 0 3px var(--slot-accent), 0 0 32px color-mix(in srgb, var(--slot-accent), transparent 40%);
}

@media (max-width: 420px) {
  .slot-machine__reels {
    gap: 4px;
  }
  .slot-machine__reel {
    border-width: 1px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .slot-machine__track {
    will-change: auto;
  }
}
.scan-game-card__visual {
  width: min(260px, 100%);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.game-wheel-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.game-wheel {
  --wheel-size: min(82vw, 360px);
  width: var(--wheel-size);
  max-width: 100%;
}

.game-wheel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  isolation: isolate;
}

.game-wheel__canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: 88%;
  height: 88%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  font-family: inherit;
}

.game-wheel__shadow {
  position: absolute;
  inset: 6%;
  z-index: 0;
  border-radius: 50%;
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.3);
}

.game-wheel__frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.game-wheel__pointer {
  --color-pointer: #fff;
  position: absolute;
  top: 2.3%;
  left: 50%;
  z-index: 6;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-top: 30px solid var(--color-pointer);
  border-right: 17px solid transparent;
  border-left: 17px solid transparent;
  filter: drop-shadow(0 8px 12px rgba(15, 23, 42, 0.28));
}

.game-wheel__center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: grid;
  width: 22%;
  aspect-ratio: 1;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #0f2740;
  border: 2px solid rgba(255, 255, 255, 0.72);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.25);
  overflow: hidden;
}

.game-wheel__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.game-wheel__center-label {
  max-width: 78%;
  overflow: hidden;
  font-size: clamp(0.58rem, 2.7vw, 0.8rem);
  text-align: center;
  text-overflow: ellipsis;
}

.game-wheel-status {
  margin: 0;
  color: var(--scan-text);
  font-size: 0.8rem;
}

.game-wheel-rewards {
  width: min(100%, 360px);
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--scan-border) 72%, transparent);
  border-radius: 18px;
  background: color-mix(in srgb, var(--scan-surface) 84%, transparent);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.game-wheel-rewards__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--scan-text);
  font-size: 0.9rem;
  line-height: 1.25;
}

.game-wheel-rewards__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.game-wheel-rewards--scrollable .game-wheel-rewards__list {
  max-height: min(216px, 25dvh);
  padding-right: 4px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.game-wheel-rewards__item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.game-wheel-rewards__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  object-fit: contain;
}

.game-wheel-rewards__content {
  min-width: 0;
}

.game-wheel-rewards__content strong {
  display: block;
  color: var(--scan-text);
  font-size: 0.86rem;
  line-height: 1.25;
}

.game-wheel-rewards__content p {
  margin: 2px 0 0;
  color: var(--scan-muted);
  font-size: 0.74rem;
  line-height: 1.3;
}

.scan-game-form--wheel .game-wheel-button[disabled] {
  opacity: 0.72;
  cursor: progress;
}

.scan-game-card__playground--scratch .scan-game-card__visual {
  border-radius: 28px;
}

.scan-game-result {
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(15, 39, 64, 0.06);
  border: 1px solid rgba(15, 39, 64, 0.08);
}

.scan-game-result--won {
  background: rgba(77, 124, 54, 0.12);
  border-color: rgba(77, 124, 54, 0.2);
}

.scan-game-result--already_played,
.scan-game-result--email_required {
  background: rgba(216, 166, 59, 0.12);
  border-color: rgba(216, 166, 59, 0.18);
}

.scan-game-result p {
  margin: 0;
  color: var(--scan-text);
}

.game-result-token {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 4px;
  padding: 0.65rem 0.85rem;
  overflow-wrap: anywhere;
  border: 2px solid #15803d;
  border-radius: 12px;
  background: #f0fdf4;
  color: #166534;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin: auto;
}

.scan-game-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scan-game-skip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 8px;
  min-height: 44px;
  margin: 0 auto;
  padding: 0 18px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.scan-game-skip .material-symbols-outlined {
  font-size: 18px;
}

.scan-game-skip:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .scan-game-skip:hover {
    background: #fff;
    color: var(--scan-primary);
    transform: translateY(-1px);
  }
}
.scan-game-form__field {
  background: #fff;
  border-radius: 18px;
}

@media (max-width: 520px) {
  .game-wheel {
    --wheel-size: min(86vw, 320px);
  }
  .game-wheel__pointer {
    border-top-width: 26px;
    border-right-width: 15px;
    border-left-width: 15px;
  }
  .game-wheel-rewards {
    width: min(100%, 320px);
    padding: 12px;
  }
  .game-wheel-rewards--scrollable .game-wheel-rewards__list {
    max-height: min(176px, 24dvh);
  }
  .game-wheel-rewards__title {
    margin-bottom: 8px;
    font-size: 0.84rem;
  }
  .game-wheel-rewards__item {
    gap: 9px;
  }
  .game-wheel-rewards__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
}
.scan-grid--merchant-promotions-simple {
  grid-template-columns: 1fr;
  padding: 0 14px;
}

.scan-card--merchant-promo-simple {
  overflow: hidden;
}

.scan-card__media--merchant-promo {
  aspect-ratio: 16/9;
}

.scan-shell--claim {
  width: 100%;
  max-width: 760px;
}

.scan-page--claim-ready {
  padding: 14px 12px 28px;
}

.scan-claim-card,
.scan-claim-coupon {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.scan-claim-card {
  border-radius: 0;
}

.scan-claim-card--activation {
  max-width: 540px;
  margin: 0 auto;
}

.scan-claim-card__media {
  position: relative;
  min-height: 220px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 74%, black) 0%, color-mix(in srgb, var(--secondary) 68%, black) 100%);
}

.scan-claim-card__media--image {
  background-image: var(--scan-claim-image);
  background-size: cover;
  background-position: center;
}

.scan-claim-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 33, 0.08) 0%, rgba(9, 18, 33, 0.62) 100%);
}

.scan-claim-card__media-content {
  position: relative;
  z-index: 1;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px;
  color: #fff;
}

.scan-claim-card__media-content h1,
.scan-claim-coupon__header h1 {
  margin: 0;
  font-size: clamp(28px, 6vw, 40px);
  line-height: 1.05;
}

.scan-claim-card__media-content p,
.scan-claim-coupon__header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.scan-claim-card__body,
.scan-claim-coupon {
  padding: 22px 18px 26px;
}

.scan-claim-summary {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 18px;
}

.scan-claim-summary--offer {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 8px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.98) 0%, rgba(255, 243, 214, 0.94) 100%);
  border-radius: 8px;
}
.scan-claim-summary--offer > span {
  color: #f59e0b;
}
.scan-claim-summary--offer p {
  margin: 0;
  font-size: 0.7rem;
}

.scan-claim-summary__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 7px;
}

.scan-claim-summary__details p {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: #5f4a2d;
  line-height: 1.45;
}

.scan-claim-summary__details .material-symbols-outlined {
  flex: 0 0 auto;
  margin-top: 1px;
  font-size: 1rem;
}

.scan-claim-summary__conditions {
  white-space: pre-line;
}

.scan-claim-summary p,
.scan-claim-coupon__summary p,
.scan-claim-coupon__hint {
  margin: 0;
}

.scan-claim-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scan-claim-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scan-claim-form__field label {
  font-weight: 700;
}

.scan-claim-form__field label,
.scan-claim-form__consent {
  color: var(--on-surface);
  font-size: 0.8rem;
}

.scan-claim-form__field input[type=email] {
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--on-surface);
  padding: 0 16px;
  font-size: 16px;
  width: 100%;
}

.scan-claim-form__input {
  position: relative;
}

.scan-claim-form__input--icon .material-symbols-outlined {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1;
  pointer-events: none;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.scan-claim-form__input--icon input[type=email] {
  padding-left: 46px;
}

.scan-claim-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.scan-claim-form__consent input {
  margin-top: 2px;
}

.scan-actions--claim {
  flex-direction: column;
}

.scan-actions--claim .scan-action {
  min-height: 54px;
  border-radius: 16px;
}

.scan-claim-coupon {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.scan-claim-coupon__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scan-claim-coupon__header p {
  color: var(--on-surface-variant);
}

.scan-claim-coupon__status {
  display: flex;
}

.scan-claim-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.scan-claim-status--issued {
  background: color-mix(in srgb, #1f9d55 15%, white);
  color: #1f7a45;
}

.scan-claim-status--redeemed {
  background: color-mix(in srgb, var(--primary) 14%, white);
  color: var(--primary);
}

.scan-claim-status--expired,
.scan-claim-status--cancelled {
  background: color-mix(in srgb, var(--error) 12%, white);
  color: var(--error);
}

.scan-claim-coupon__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.scan-claim-coupon__grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.scan-claim-coupon__grid strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-surface-variant);
}

.scan-claim-coupon__qr {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

.scan-claim-coupon__qr img {
  display: block;
  width: min(100%, 280px);
  height: auto;
}

.scan-coupon-ready {
  width: min(100%, 480px);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.scan-coupon-ready__hero {
  position: relative;
  min-height: 350px;
  padding: calc(18px + env(safe-area-inset-top, 0px)) 18px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at top right, rgba(216, 90, 48, 0.28), transparent 26%), linear-gradient(160deg, #132335 0%, #344255 54%, #1f2d3f 100%);
  color: #fff;
}

.scan-coupon-ready__hero--image {
  background: linear-gradient(160deg, rgba(19, 35, 53, 0.28) 0%, rgba(52, 66, 85, 0.22) 100%), var(--scan-coupon-hero-image) center/cover no-repeat;
}

.scan-coupon-ready__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 15, 24, 0.24) 0%, rgba(8, 15, 24, 0.42) 26%, rgba(8, 15, 24, 0.76) 100%);
}

.scan-coupon-ready__hero-top,
.scan-coupon-ready__hero-content {
  position: relative;
  z-index: 1;
}

.scan-coupon-ready__hero-top {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
}

.scan-coupon-ready__hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: #ff9c14;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(216, 90, 48, 0.24);
}

.scan-coupon-ready__hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.scan-coupon-ready__hero-logo {
  width: 110px;
  max-width: 44%;
  border-radius: 50%;
  overflow: hidden;
}

.scan-coupon-ready__hero-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.scan-coupon-ready__hero-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.scan-coupon-ready__hero-text h1 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.scan-coupon-ready__hero-text p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: balance;
}

.scan-coupon-ready__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 18px 24px;
}

.scan-coupon-ready__confirm,
.scan-coupon-ready__split-card,
.scan-coupon-ready__terms,
.scan-coupon-ready__qr-card,
.scan-coupon-ready__notify,
.scan-coupon-ready__trust {
  background: #fff;
  border: 1px solid rgba(52, 199, 89, 0.24);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.scan-coupon-ready__terms {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px;
  border-color: rgba(15, 23, 42, 0.08);
}

.scan-coupon-ready__terms-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.scan-coupon-ready__terms-heading .material-symbols-outlined {
  color: #d85a30;
  font-size: 1.35rem;
}

.scan-coupon-ready__terms h3,
.scan-coupon-ready__terms p {
  margin: 0;
}

.scan-coupon-ready__terms h3 {
  color: #1e2f43;
  font-size: 0.86rem;
}

.scan-coupon-ready__validity {
  color: #172635;
  font-size: 0.82rem;
  font-weight: 700;
}

.scan-coupon-ready__conditions {
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.5;
  white-space: pre-line;
}

.scan-coupon-ready__confirm {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: radial-gradient(circle at top right, rgba(52, 199, 89, 0.1), transparent 34%), linear-gradient(180deg, rgba(245, 255, 249, 0.98) 0%, rgb(255, 255, 255) 100%);
}

.scan-coupon-ready__confirm-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #13a44b;
  color: #fff;
  box-shadow: 0 12px 24px rgba(19, 164, 75, 0.22);
}

.scan-coupon-ready__confirm-icon .material-symbols-outlined,
.scan-coupon-ready__confirm-mail .material-symbols-outlined,
.scan-coupon-ready__trust-icon .material-symbols-outlined,
.scan-coupon-ready__split-icon .material-symbols-outlined,
.scan-coupon-ready__qr-icon .material-symbols-outlined,
.scan-coupon-ready__meta-card .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.scan-coupon-ready__confirm-icon .material-symbols-outlined {
  font-size: 2rem;
}

.scan-coupon-ready__confirm-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scan-coupon-ready__confirm-copy h2 {
  margin: 0;
  color: #15803d;
  font-size: 1rem;
  line-height: 1.05;
}

.scan-coupon-ready__confirm-copy p {
  margin: 0;
  color: #223245;
  font-size: 0.8rem;
}

.scan-coupon-ready__confirm-mail {
  position: relative;
  width: 76px;
  height: 76px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.92);
  color: #94a3b8;
}

.scan-coupon-ready__confirm-mail > .material-symbols-outlined:first-child {
  font-size: 2.5rem;
}

.scan-coupon-ready__confirm-mail-check {
  position: absolute;
  right: 6px;
  bottom: 6px;
  color: #16a34a;
  background: #fff;
  border-radius: 999px;
}

.scan-coupon-ready__status {
  display: flex;
}

.scan-claim-status--issued,
.scan-claim-status--active {
  background: rgba(52, 199, 89, 0.12);
  color: #15803d;
}

.scan-claim-status--redeemed {
  background: rgba(52, 66, 85, 0.12);
  color: #344255;
}

.scan-claim-status--expired,
.scan-claim-status--cancelled,
.scan-claim-status--inactive {
  background: rgba(216, 90, 48, 0.12);
  color: #c2410c;
}

.scan-coupon-ready__meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scan-coupon-ready__meta-card:last-child {
  grid-column: 1/-1;
}

.scan-coupon-ready__meta-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}
.scan-coupon-ready__meta-card > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.scan-coupon-ready__meta-card .material-symbols-outlined {
  font-size: 1.5rem;
  color: #344255;
}

.scan-coupon-ready__meta-card strong,
.scan-coupon-ready__split-col strong,
.scan-coupon-ready__trust-item strong {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e2f43;
}

.scan-coupon-ready__meta-card span {
  color: #172635;
  font-size: 0.7rem;
  word-break: break-word;
}

.scan-coupon-ready__meta-card--expiry .material-symbols-outlined {
  color: #d85a30;
}

.scan-coupon-ready__split-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-color: rgba(15, 23, 42, 0.08);
}

.scan-coupon-ready__split-col {
  display: flex;
  align-items: center;
  gap: 14px;
}

.scan-coupon-ready__split-col > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.scan-coupon-ready__split-col p,
.scan-coupon-ready__split-col span {
  margin: 0;
}

.scan-coupon-ready__split-col p {
  color: #172635;
  font-size: 1rem;
  line-height: 1.3;
}

.scan-coupon-ready__split-col span {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.35;
}

.scan-coupon-ready__split-col--highlight .scan-coupon-ready__split-icon {
  background: rgba(255, 154, 40, 0.14);
  color: #d85a30;
}

.scan-coupon-ready__split-icon,
.scan-coupon-ready__trust-icon,
.scan-coupon-ready__qr-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 154, 40, 0.12);
  color: #d85a30;
}

.scan-coupon-ready__split-icon .material-symbols-outlined,
.scan-coupon-ready__trust-icon .material-symbols-outlined,
.scan-coupon-ready__qr-icon .material-symbols-outlined {
  font-size: 1.8rem;
}

.scan-coupon-ready__split-divider {
  display: none;
}

.scan-coupon-ready__benefit {
  color: #d85a30;
  font-size: clamp(1.4rem, 6vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.scan-coupon-ready__qr-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-color: rgba(15, 23, 42, 0.08);
}

.scan-coupon-ready__qr-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.scan-coupon-ready__qr-visual img {
  display: block;
  width: min(100%, 260px);
  height: auto;
}

.scan-coupon-ready__qr-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.scan-coupon-ready__qr-copy h3,
.scan-coupon-ready__footer p {
  margin: 0;
}

.scan-coupon-ready__qr-copy h3 {
  color: #172635;
  font-size: clamp(1.5rem, 6.2vw, 2rem);
  line-height: 1.08;
}

.scan-coupon-ready__qr-copy p {
  margin: 0;
  color: #172635;
  font-size: 1rem;
  line-height: 1.5;
}

.scan-coupon-ready__notify {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-color: rgba(15, 23, 42, 0.08);
}

.scan-coupon-ready__notify-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scan-coupon-ready__notify-copy strong,
.scan-coupon-ready__notify-copy p {
  margin: 0;
}

.scan-coupon-ready__notify-copy strong {
  color: #172635;
  font-size: 0.95rem;
  line-height: 1.4;
}

.scan-coupon-ready__notify-copy p {
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.45;
}

.scan-coupon-ready__notify-button {
  min-height: 56px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(15, 39, 64, 0.2);
  border-radius: 18px;
  padding: 12px 18px;
  background: #fff;
  color: #132f4d;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.scan-coupon-ready__notify-button .material-symbols-outlined {
  font-size: 1.3rem;
  color: #d85a30;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.scan-coupon-ready__notify-button[disabled] {
  cursor: default;
  opacity: 0.78;
}

.scan-coupon-ready__notify-button[data-enabled=true] {
  border-color: rgba(21, 128, 61, 0.22);
  background: rgba(240, 253, 244, 0.96);
  color: #166534;
}

.scan-coupon-ready__notify-button[data-enabled=true] .material-symbols-outlined {
  color: #16a34a;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.scan-coupon-ready__notify-feedback {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #344255;
}

.scan-coupon-ready__notify-feedback[data-state=info] {
  color: #15803d;
}

.scan-coupon-ready__notify-feedback[data-state=error] {
  color: #c2410c;
}

.scan-coupon-ready__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scan-coupon-ready__wallet,
.scan-coupon-ready__secondary {
  min-height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.scan-coupon-ready__wallet {
  width: 100%;
  background: linear-gradient(180deg, #0f2740 0%, #132f4d 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(15, 39, 64, 0.24);
}

.scan-coupon-ready__wallet img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.scan-coupon-ready__secondary-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.scan-coupon-ready__secondary {
  background: #fff;
  color: #10243b;
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.scan-coupon-ready__secondary--filled {
  background: #10243b;
  color: #fff;
  border-color: #10243b;
}

.scan-coupon-ready__secondary .material-symbols-outlined {
  font-size: 1.4rem;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.scan-coupon-ready__trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 18px;
  border-color: rgba(15, 23, 42, 0.08);
}

.scan-coupon-ready__trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scan-coupon-ready__trust-item span {
  color: #64748b;
  font-size: 0.96rem;
  line-height: 1.45;
}

.scan-coupon-ready__footer {
  width: min(100%, 480px);
  margin: 18px auto 0;
  padding: 0 12px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.scan-coupon-ready__footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 0.95rem;
}

.scan-coupon-ready__footer-brand img {
  width: 48px;
  height: auto;
}

.scan-coupon-ready__footer p {
  color: #64748b;
  font-size: 0.95rem;
}

.scan-merchant-hero {
  padding: 22px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scan-merchant-hero__card {
  background: var(--scan-surface);
  border: 1px solid var(--scan-border);
  border-radius: var(--scan-radius);
  overflow: hidden;
  box-shadow: var(--scan-shadow);
}

.scan-merchant-hero__cover {
  aspect-ratio: 16/9;
  background: var(--scan-surface-soft);
}

.scan-merchant-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scan-merchant-hero__content {
  padding: 20px;
}

.scan-merchant-hero__content h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 9vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.scan-merchant-logo {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--scan-border);
  margin-bottom: 14px;
}

.scan-merchant-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (min-width: 760px) {
  .scan-page {
    padding: 0 0 48px;
  }
  .scan-page--claim-ready {
    padding: 22px 18px 40px;
  }
  .scan-page--merchant-list {
    padding-bottom: 42px;
  }
  .scan-page--with-floating-continue {
    padding-bottom: calc(124px + env(safe-area-inset-bottom, 0px));
  }
  .scan-page--merchant-detail {
    padding-bottom: 44px;
  }
  .scan-hero {
    padding: 42px 28px 54px;
  }
  .scan-hero__content {
    gap: 20px;
  }
  .scan-hero__actions {
    right: 28px;
    bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }
  .scan-section {
    padding: 0 22px;
  }
  .scan-shell--merchant-list {
    padding: 0 22px;
  }
  .scan-shell--merchant-detail {
    padding: 0 22px;
  }
  .scan-list-header {
    padding-top: calc(22px + env(safe-area-inset-top, 0px));
  }
  .scan-floating-phone {
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }
  .scan-grid--promotions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .scan-grid--merchants {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .scan-grid--merchant-promotions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .scan-coupon-ready__confirm {
    padding: 22px;
  }
  .scan-coupon-ready__confirm-mail {
    display: inline-flex;
  }
  .scan-coupon-ready__meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .scan-coupon-ready__meta-card:last-child {
    grid-column: auto;
  }
  .scan-coupon-ready__split-card {
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    align-items: center;
  }
  .scan-coupon-ready__split-divider {
    display: block;
    width: 1px;
    min-height: 88px;
    background: rgba(15, 23, 42, 0.08);
  }
  .scan-coupon-ready__qr-card {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    align-items: center;
  }
  .scan-coupon-ready__secondary-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .scan-coupon-ready__trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .scan-merchant-promo-rail {
    grid-auto-columns: minmax(360px, 44vw);
    padding: 0 22px 6px;
  }
  .scan-merchant-gallery-rail {
    grid-auto-columns: minmax(168px, 18vw);
    padding: 0 22px 6px;
  }
  .scan-grid--merchant-promotions-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 22px;
  }
  .scan-story-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
  .scan-story-card__media {
    aspect-ratio: auto;
    min-height: 100%;
  }
  .scan-merchant-list-card__media {
    width: 144px;
    height: 144px;
  }
  .scan-merchant-list-card__content h2 {
    font-size: 24px;
  }
  .scan-promotions-chrome {
    top: calc(20px + env(safe-area-inset-top, 0px));
    left: 20px;
  }
  .scan-merchant-page__hero {
    border-radius: 0;
  }
  .scan-merchant-page__hero-image {
    max-height: min(58svh, 560px);
    clip-path: polygon(100% 0, 100% 95%, 68% 100%, 0 95%, 0 0);
  }
  .scan-merchant-page__hero-overlay {
    clip-path: polygon(100% 0, 100% 95%, 68% 100%, 0 95%, 0 0);
  }
  .scan-merchant-page__hero-top {
    top: calc(20px + env(safe-area-inset-top, 0px));
    left: 20px;
  }
  .scan-merchant-page__logo {
    left: 24px;
    bottom: 24px;
    width: 116px;
    height: 116px;
  }
  .scan-merchant-page__identity,
  .scan-merchant-page__actions,
  .scan-merchant-page__secondary-actions,
  .scan-loyalty-section,
  .scan-section--merchant-detail {
    padding: 0 22px;
  }
  .scan-merchant-game-banner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    margin-inline: 22px;
  }
  .scan-merchant-game-banner__cta {
    grid-column: auto;
  }
  .scan-page--claim {
    padding-inline: 24px;
  }
  .scan-merchant-page__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .scan-merchant-page__action-note {
    padding-inline: 14px;
    font-size: 0.84rem;
  }
  .merchant-hours-card {
    margin-left: 22px;
    margin-right: 22px;
  }
  .scan-google-review-card {
    margin: 0 22px 22px;
  }
  .scan-promo-slide__top {
    top: calc(20px + env(safe-area-inset-top, 0px));
    right: 20px;
  }
  .scan-promo-slide__content {
    padding: calc(88px + env(safe-area-inset-top, 0px)) 34px calc(140px + env(safe-area-inset-bottom, 0px)) 34px;
  }
  .scan-promo-slide__footer {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    max-width: none;
  }
  .scan-promo-slide__footer--center {
    justify-content: center;
  }
  .scan-promo-slide__footer:has(.scan-promo-slide__continue) {
    right: 34px;
    bottom: calc(28px + env(safe-area-inset-bottom, 0px));
    align-items: flex-end;
  }
  .scan-claim-coupon__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.public-menu {
  --menu-bg: var(--scan-surface-soft, #f7f4ee);
  --menu-surface: rgba(255, 255, 255, .92);
  --menu-text: var(--scan-text, #172219);
  --menu-muted: var(--scan-muted, #68736b);
  --menu-primary: var(--scan-secondary, #294f3a);
  --menu-accent: var(--scan-accent, #b98237);
  --menu-border: color-mix(in srgb, var(--menu-accent) 22%, #dfe3dc);
  min-height: 100vh;
  padding-bottom: calc(44px + env(safe-area-inset-bottom, 0px));
  color: var(--menu-text);
  background: radial-gradient(circle at 8% 28%, rgba(216, 166, 59, 0.08), transparent 24%), radial-gradient(circle at 92% 82%, rgba(77, 124, 54, 0.08), transparent 22%), linear-gradient(180deg, #fbfaf7 0%, var(--menu-bg) 100%);
}

.public-menu__container {
  width: min(100% - 32px, 1040px);
  margin-inline: auto;
}

.public-menu__topbar {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 16px;
  padding-top: env(safe-area-inset-top, 0px);
}

.public-menu__back,
.public-menu__call,
.public-menu__footer-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  color: var(--menu-text);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.public-menu__back {
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  left: max(12px, env(safe-area-inset-left, 0px));
  z-index: 20;
  justify-self: start;
  max-width: calc(100vw - 24px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
  padding: 0 14px 0 10px;
  overflow: hidden;
  background: rgba(6, 16, 28, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: 0 10px 24px rgba(4, 12, 22, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.public-menu__back:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.public-menu__back .material-symbols-outlined,
.public-menu__call .material-symbols-outlined,
.public-menu__footer-action .material-symbols-outlined {
  font-size: 20px;
}

.public-menu__brand {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.public-menu__brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 14px rgba(27, 38, 29, 0.1);
}

.public-menu__brand-logo img,
.public-menu__cover-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.public-menu__brand-name {
  max-width: 280px;
  overflow: hidden;
  color: var(--menu-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-menu__call {
  justify-self: end;
  padding: 0 18px;
  color: var(--public-menu-quick-nav-color, #fff);
  background: var(--public-menu-quick-nav-bg, var(--menu-primary));
  box-shadow: 0 8px 22px color-mix(in srgb, var(--menu-primary) 26%, transparent);
}

.public-menu__hero-heading {
  padding: clamp(18px, 3.5vw, 34px) 0 clamp(15px, 2.5vw, 24px);
  text-align: center;
}

.public-menu__hero-heading h1 {
  margin: 0;
  color: var(--menu-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5.6vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.public-menu__hero-heading p {
  margin: 8px 0 0;
  color: var(--menu-muted);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
}

.public-menu__cover {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(260px, 38vw, 410px);
  isolation: isolate;
  overflow: hidden;
  background: #25342c;
  box-shadow: 0 22px 55px rgba(31, 36, 31, 0.14);
}

.public-menu__cover-image,
.public-menu__cover-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.public-menu__cover-image {
  z-index: -2;
  object-fit: cover;
}

.public-menu__cover-overlay {
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.46) 42%, rgba(0, 0, 0, 0.1) 72%, transparent 100%);
}

.public-menu__cover-content {
  position: absolute;
  top: 50%;
  right: 22px;
  left: 22px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  transform: translateY(-50%);
}

.public-menu__cover-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.18);
}

.public-menu__eyebrow {
  margin-bottom: 5px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.public-menu__cover h1 {
  margin: 0;
  font-family: var(--scan-font);
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.2);
  color: #FFF;
}

.public-menu__cover p {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.92rem, 2vw, 1.08rem);
  line-height: 1.45;
}

.public-menu__quick-nav {
  position: sticky;
  z-index: 8;
  top: 10px;
  width: fit-content;
  margin: -1px auto 0;
  margin-top: 15px;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 10px;
  border: 1px solid rgba(35, 49, 40, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(30, 39, 32, 0.09);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

.public-menu__quick-nav::-webkit-scrollbar {
  display: none;
}

.public-menu__quick-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 17px;
  border-radius: 999px;
  color: #000;
  font-size: 0.84rem;
  font-weight: normal;
  text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.public-menu__quick-nav a.is-active {
  color: var(--public-menu-quick-nav-color, #fff);
  background: var(--public-menu-quick-nav-bg, var(--menu-primary));
  font-weight: 750;
  box-shadow: 0 7px 16px color-mix(in srgb, var(--menu-primary) 24%, transparent);
}

.public-menu__content {
  display: grid;
  gap: clamp(54px, 8vw, 82px);
  padding: clamp(52px, 7vw, 76px) 0 34px;
}

.public-menu__section {
  scroll-margin-top: 92px;
}

.public-menu__section-heading {
  max-width: 680px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.public-menu__section-icon {
  margin-bottom: 4px;
  color: var(--menu-accent);
  font-size: 31px;
  font-variation-settings: "wght" 300;
}

.public-menu__kicker {
  color: var(--menu-accent);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.public-menu__section-heading h2 {
  position: relative;
  margin: 7px 0 0;
  padding: 0 48px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.public-menu__section-heading h2::before,
.public-menu__section-heading h2::after {
  content: "";
  position: absolute;
  top: 55%;
  width: 30px;
  height: 1px;
  background: var(--menu-accent);
}

.public-menu__section-heading h2::before {
  left: 4px;
}

.public-menu__section-heading h2::after {
  right: 4px;
}

.public-menu__section-heading p {
  margin: 9px 0 0;
  color: var(--menu-muted);
  line-height: 1.55;
}

.public-menu__daily-list,
.public-menu__formula-grid,
.public-menu__category-grid {
  display: grid;
  gap: 18px;
}

.public-menu__daily-card,
.public-menu__formula-card,
.public-menu__category {
  border: 1px solid var(--menu-border);
  background: var(--menu-surface);
  box-shadow: 0 18px 42px rgba(45, 48, 42, 0.07);
}

.public-menu__daily-card {
  padding: clamp(20px, 4vw, 34px);
  border-radius: 26px;
}

.public-menu__daily-header,
.public-menu__formula-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.public-menu__daily-header h3,
.public-menu__formula-card h3,
.public-menu__category h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.public-menu__daily-header h3 {
  margin-top: 7px;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.public-menu__formula-label {
  display: block;
  color: var(--menu-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.public-menu__service {
  margin: 7px 0 0;
  color: var(--menu-muted);
  font-size: 0.82rem;
}

.public-menu__daily-header p,
.public-menu__formula-card p,
.public-menu__category header p {
  margin: 7px 0 0;
  color: var(--menu-muted);
  line-height: 1.5;
}

.public-menu__daily-header small,
.public-menu__availability {
  display: block;
  margin-top: 7px;
  color: var(--menu-muted);
  font-size: 0.8rem;
}

.public-menu__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.public-menu__meta-row span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--menu-primary);
  background: color-mix(in srgb, var(--menu-primary) 9%, white);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.public-menu__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 82px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #7b531f;
  background: color-mix(in srgb, var(--menu-accent) 13%, white);
  font-size: 1rem;
  white-space: nowrap;
}

.public-menu__price--large {
  min-width: 102px;
  min-height: 54px;
  font-size: 1.16rem;
}

.public-menu__daily-choices {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  border-top: 1px solid rgba(36, 48, 39, 0.09);
}

.public-menu__choice-group {
  min-width: 0;
  padding: 22px clamp(4px, 1.5vw, 18px) 4px;
}

.public-menu__choice-group + .public-menu__choice-group {
  border-left: 1px solid rgba(36, 48, 39, 0.1);
}

.public-menu__daily-pricing {
  margin-top: 26px;
  padding: 17px;
  border: 1px solid color-mix(in srgb, var(--menu-primary) 10%, var(--menu-border));
  border-radius: 18px;
  background: color-mix(in srgb, var(--menu-primary) 4%, white);
}

.public-menu__daily-pricing-title {
  margin: 0 0 11px;
  color: var(--menu-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.public-menu__daily-pricing-list {
  display: grid;
  gap: 12px;
}

.public-menu__daily-pricing-row {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.public-menu__daily-pricing-price {
  color: var(--menu-primary);
  font-size: 1.05rem;
  line-height: 1.4;
  white-space: nowrap;
}

.public-menu__daily-pricing-options {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 7px;
  color: var(--menu-text);
  font-size: 0.87rem;
  line-height: 1.55;
}

.public-menu__daily-pricing-or {
  color: var(--menu-muted);
  font-size: 0.78rem;
  font-style: italic;
}

.public-menu__choice-group header {
  margin-bottom: 16px;
  text-align: center;
}

.public-menu__choice-group h4,
.public-menu__formula-sections h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.public-menu__choice-group header span {
  display: block;
  margin-top: 4px;
  color: var(--menu-muted);
  font-size: 0.72rem;
}

.public-menu__choice-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: center;
}

.public-menu__choice strong,
.public-menu__formula-choice span {
  font-size: 0.9rem;
  line-height: 1.4;
}

.public-menu__choice {
  width: 100%;
  padding: 2px 0;
}

.public-menu__choice p {
  margin: 4px 0 0;
  color: var(--menu-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.public-menu__choice small {
  display: block;
  margin-top: 4px;
  color: var(--menu-accent);
  font-size: 0.74rem;
  font-weight: 700;
}

.public-menu__or {
  position: relative;
  padding: 0 10px;
  color: var(--menu-muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.public-menu__or::before,
.public-menu__or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--menu-border);
}

.public-menu__or::before {
  right: 100%;
}

.public-menu__or::after {
  left: 100%;
}

.public-menu__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--menu-primary);
  background: color-mix(in srgb, var(--menu-primary) 9%, white);
  font-size: 0.67rem;
  font-weight: 750;
}

.public-menu__badge--muted {
  color: #6b6259;
  background: #eeeae4;
}

.public-menu__formula-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-menu__price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.public-menu__price-card {
  min-height: 138px;
  padding: 21px;
  border: 1px solid var(--menu-border);
  border-radius: 20px;
  background: var(--menu-surface);
  box-shadow: 0 14px 34px rgba(45, 48, 42, 0.06);
}

.public-menu__price-card > header {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.public-menu__price-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

.public-menu__formula-card {
  padding: 24px;
  border-radius: 22px;
}

.public-menu__formula-card h3 {
  font-size: 1.35rem;
}

.public-menu__formula-sections {
  margin-top: 20px;
  display: grid;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 48, 39, 0.09);
}

.public-menu__formula-pricing {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(36, 48, 39, 0.09);
}

.public-menu__formula-pricing > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.public-menu__formula-pricing span {
  color: var(--menu-muted);
  font-size: 0.84rem;
}

.public-menu__formula-pricing strong {
  flex: 0 0 auto;
  color: var(--menu-primary);
  font-size: 0.95rem;
  white-space: nowrap;
}

.public-menu__formula-sections section {
  display: grid;
  gap: 9px;
}

.public-menu__formula-sections h4 {
  color: var(--menu-accent);
  font-size: 0.88rem;
}

.public-menu__formula-choice {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.public-menu__formula-choice small {
  flex: 0 0 auto;
  color: var(--menu-muted);
}

.public-menu__choice-list--compact {
  align-items: stretch;
  text-align: left;
}

.public-menu__choice-list--compact .public-menu__or {
  align-self: center;
}

.public-menu__category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.public-menu__category {
  overflow: hidden;
  border-radius: 22px;
}

.public-menu__category > header {
  padding: 20px 22px 14px;
}

.public-menu__category h3 {
  font-size: 1.4rem;
}

.public-menu__items {
  padding: 0 22px 8px;
}

.public-menu__item {
  display: flex;
  align-items: start;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(36, 48, 39, 0.085);
}

.public-menu__item-content {
  min-width: 0;
  flex: 1;
}

.public-menu__item-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 12px;
}

.public-menu__item-title strong {
  line-height: 1.3;
}

.public-menu__item-title b {
  color: var(--menu-primary);
  font-size: 0.91rem;
  white-space: nowrap;
}

.public-menu__item p {
  margin: 4px 0 0;
  color: var(--menu-muted);
  font-size: 0.8rem;
  line-height: 1.42;
}

.public-menu__allergens {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin: 8px 0 0;
  color: var(--menu-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.public-menu__allergens-icon {
  flex: 0 0 auto;
  color: var(--menu-primary);
  font-size: 15px;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}

.public-menu__allergens strong {
  color: var(--menu-text);
  font-weight: 650;
}

.public-menu__item-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.public-menu__item-image {
  order: -1;
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 7px 18px rgba(34, 43, 36, 0.1);
}

.public-menu__item.is-unavailable {
  opacity: 0.62;
}

.public-menu__reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.public-menu__reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.public-menu__reveal.is-visible.header {
  opacity: 1;
  transform: translateY(-50%);
}

.public-menu__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0 8px;
  border-top: 1px solid rgba(36, 48, 39, 0.1);
}

.public-menu__footer-action {
  padding: 0 18px;
  border: 1px solid rgba(35, 49, 40, 0.14);
  background: rgba(255, 255, 255, 0.75);
}

.public-menu__continue {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

@media (hover: hover) {
  .public-menu__back:hover,
  .public-menu__call:hover,
  .public-menu__footer-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(31, 39, 33, 0.11);
  }
}
@media (max-width: 700px) {
  .public-menu__container {
    width: min(100% - 24px, 520px);
  }
  .public-menu__topbar {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }
  .public-menu__brand {
    display: none;
  }
  .public-menu__back,
  .public-menu__call {
    padding-inline: 12px;
  }
  .public-menu__cover {
    min-height: clamp(240px, 72vw, 300px);
  }
  .public-menu__cover-content {
    right: 18px;
    left: 18px;
  }
  .public-menu__cover-logo {
    width: 54px;
    height: 54px;
  }
  .public-menu__cover h1 {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
  }
  .public-menu__quick-nav {
    top: 8px;
    max-width: none;
    gap: 4px;
    padding: 6px;
    justify-content: space-between;
  }
  .public-menu__quick-nav a {
    min-height: 36px;
    padding: 0 11px;
    font-size: 0.76rem;
  }
  .public-menu__content {
    gap: 56px;
    padding-top: 48px;
  }
  .public-menu__daily-header,
  .public-menu__formula-card > header {
    flex-direction: column;
    gap: 14px;
  }
  .public-menu__daily-choices,
  .public-menu__formula-grid,
  .public-menu__category-grid,
  .public-menu__price-grid {
    grid-template-columns: 1fr;
  }
  .public-menu__choice-group {
    padding-inline: 2px;
  }
  .public-menu__choice-group + .public-menu__choice-group {
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(36, 48, 39, 0.1);
    border-left: 0;
  }
  .public-menu__daily-pricing-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}
@media (max-width: 370px) {
  .public-menu__container {
    width: min(100% - 18px, 520px);
  }
  .public-menu__back span:last-child,
  .public-menu__call span:last-child {
    display: none;
  }
  .public-menu__back,
  .public-menu__call {
    width: 44px;
    justify-content: center;
    padding: 0;
  }
  .public-menu__quick-nav {
    gap: 2px;
    padding: 4px;
  }
  .public-menu__quick-nav a {
    min-height: 34px;
    padding: 0 9px;
    font-size: 0.7rem;
  }
  .public-menu__daily-card,
  .public-menu__formula-card {
    padding: 18px;
  }
  .public-menu__category > header,
  .public-menu__items {
    padding-inline: 17px;
  }
  .public-menu__item-image {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .public-menu *,
  .public-menu *::before,
  .public-menu *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
@media (min-width: 1024px) {
  .scan-grid--promotions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* Public SpotCard lead form */
.spot-join {
  --spot-join-ink: #17283a;
  --spot-join-muted: #657487;
  --spot-join-accent: #dc5b2e;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(28px, 7vw, 68px) 18px;
  background: radial-gradient(circle at 8% 10%, rgba(220, 91, 46, 0.1), transparent 30%), radial-gradient(circle at 92% 84%, rgba(77, 124, 54, 0.1), transparent 32%), #f7f8f5;
  color: var(--spot-join-ink);
}

.spot-join__glow {
  position: absolute;
  width: min(320px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.spot-join__glow--top {
  top: -190px;
  right: -130px;
  border: 1px solid rgba(220, 91, 46, 0.12);
}

.spot-join__glow--bottom {
  bottom: -230px;
  left: -140px;
  border: 1px solid rgba(77, 124, 54, 0.14);
}

.spot-join__shell {
  position: relative;
  z-index: 1;
  width: min(100%, 510px);
  display: grid;
  gap: clamp(26px, 5vh, 42px);
}

.spot-join__hero {
  display: grid;
  justify-items: center;
  text-align: center;
}

.spot-join__logo {
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  object-fit: contain;
}

.spot-join__hero h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.spot-join__subtitle {
  margin: 8px 0 0;
  color: var(--spot-join-accent);
  font-size: clamp(1.45rem, 6vw, 2.25rem);
  font-weight: 760;
  letter-spacing: -0.035em;
}

.spot-join__intro {
  max-width: 43ch;
  margin: 18px 0 0;
  color: var(--spot-join-muted);
  font-size: clamp(0.96rem, 3.6vw, 1.08rem);
  line-height: 1.6;
}

.spot-join__card {
  position: relative;
  padding: clamp(22px, 6vw, 34px);
  border: 1px solid rgba(23, 40, 58, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 64px rgba(23, 40, 58, 0.1);
  backdrop-filter: blur(16px);
}

.spot-join__form {
  display: grid;
  gap: 13px;
}

.spot-join__label {
  font-size: 0.86rem;
  font-weight: 720;
}

.spot-join__field {
  min-height: 58px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(23, 40, 58, 0.14);
  border-radius: 15px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.spot-join__field:focus-within {
  border-color: var(--spot-join-accent);
  box-shadow: 0 0 0 4px rgba(220, 91, 46, 0.1);
}

.spot-join__field > .material-symbols-outlined {
  color: #8994a1;
  font-size: 21px;
}

.spot-join__field input {
  min-width: 0;
  width: 100%;
  height: 56px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--spot-join-ink);
  font: inherit;
  font-size: 1rem;
}

.spot-join__field input::placeholder {
  color: #a0a9b3;
}

.spot-join__message {
  min-height: 18px;
  margin: -4px 2px 0;
  color: #b42318;
  font-size: 0.8rem;
  line-height: 1.4;
}

.spot-join__submit {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 0;
  border-radius: 15px;
  background: var(--spot-join-ink);
  box-shadow: 0 13px 28px rgba(23, 40, 58, 0.18);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  transition: transform 160ms ease, opacity 160ms ease;
}

.spot-join__submit > span:first-child {
  grid-column: 2;
}

.spot-join__submit > .material-symbols-outlined {
  grid-column: 3;
  justify-self: end;
  font-size: 22px;
}

.spot-join__submit:hover,
.spot-join__submit:focus-visible {
  transform: translateY(-2px);
}

.spot-join__submit:focus-visible {
  outline: 3px solid rgba(220, 91, 46, 0.34);
  outline-offset: 3px;
}

.spot-join__submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.spot-join__submit.is-loading > .material-symbols-outlined {
  animation: spot-join-pulse 900ms ease-in-out infinite alternate;
}

.spot-join__reassurance {
  margin: 3px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #61705f;
  font-size: 0.8rem;
}

.spot-join__reassurance .material-symbols-outlined {
  font-size: 16px;
}

.spot-join__consent {
  margin: 3px 0 0;
  color: #8a95a1;
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

.spot-join__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.spot-join__confirmation {
  min-height: 300px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  outline: 0;
}

.spot-join__confirmation[hidden],
.spot-join__form[hidden] {
  display: none;
}

.spot-join__confirmation-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 18px;
  background: rgba(77, 124, 54, 0.12);
  color: var(--scan-secondary, #4d7c36);
  font-size: 32px;
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 32;
}

.spot-join__confirmation h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  letter-spacing: -0.035em;
}

.spot-join__confirmation p {
  margin: 0;
  color: var(--spot-join-muted);
  line-height: 1.5;
}

.spot-join__official {
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
}

.spot-join__official p {
  margin: 0;
  color: var(--spot-join-muted);
  font-size: 0.8rem;
}

.spot-join__official a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--spot-join-ink);
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration: none;
}

.spot-join__official a .material-symbols-outlined {
  font-size: 17px;
  transition: transform 160ms ease;
}

.spot-join__official a:hover .material-symbols-outlined,
.spot-join__official a:focus-visible .material-symbols-outlined {
  transform: translateX(3px);
}

.spot-join__official a:focus-visible {
  outline: 2px solid var(--spot-join-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

@keyframes spot-join-pulse {
  to {
    transform: translateX(4px);
  }
}
@media (max-width: 380px) {
  .spot-join {
    padding-inline: 12px;
  }
  .spot-join__card {
    border-radius: 21px;
  }
  .spotcard-join-link {
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .spot-join *,
  .spotcard-join-link {
    animation: none !important;
    transition: none !important;
  }
}
.game-reminder {
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #f8fafc;
  color: #334155;
}
.game-reminder h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}
.game-reminder p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
.game-reminder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  justify-content: space-between;
}
.game-reminder [data-reminder-status] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(21, 128, 61, 0.22);
  border-radius: 18px;
  background: rgba(240, 253, 244, 0.96);
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
  color: #166534;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  justify-content: center;
}
.game-reminder [data-reminder-status]::before {
  content: "notifications_active";
  flex: 0 0 auto;
  color: #16a34a;
  font-family: "Material Symbols Outlined";
  font-size: 1.3rem;
  font-weight: normal;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}
.game-reminder [data-reminder-status][data-state=error] {
  border-color: rgba(194, 65, 12, 0.22);
  background: rgba(255, 247, 237, 0.96);
  color: #c2410c;
}
.game-reminder [data-reminder-status][data-state=error]::before {
  color: #ea580c;
}
.game-reminder button {
  cursor: pointer;
}
.game-reminder button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.game-reminder [hidden] {
  display: none !important;
}
.game-reminder [data-reminder-status]:empty {
  display: none;
}

/*# sourceMappingURL=scan.css.map */
