/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --css-primary: #0057a8;
  --css-primary-dark: #004785;
  --css-secondary: #fd0;
  --css-text: #002348;
  --css-muted: #5d7085;
  --css-surface: #fff;
  --css-border: #d7e0e8;
  --css-soft: #eef5fb;
  --css-success: #027a48;
  --css-danger: #b42318;
  --font-primary: "Roboto", "Segoe UI", Arial, sans-serif;
  --font-secondary: "Ubuntu", "Roboto", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  color: var(--css-text);
  font-family: var(--font-primary);
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
  background: #edf3f8;
}

button, input, select {
  font: inherit;
  touch-action: manipulation;
}

button:focus-visible, input:focus-visible, select:focus-visible {
  outline-offset: 4px;
  outline: 5px solid #ffdd00d1;
}

button[aria-label^="Open basket"] {
  grid-template-columns: 25px auto 24px;
  min-width: 136px;
}

button[aria-label^="Open basket"] > b {
  align-self: center;
  min-width: 24px;
  min-height: 24px;
  position: static;
}

button[aria-label="My account"] + div > strong + span + span + span {
  display: none;
}

@media (hover: none) and (pointer: coarse) {
  button[aria-label="My account"]:focus:not(:focus-visible) {
    outline: none;
  }
}

.kiosk-stage {
  background: radial-gradient(circle at 8% 4%, #0057a81f, #0000 32rem), linear-gradient(#f7fafc 0%, #edf4fa 100%);
  grid-template-rows: auto 1fr;
  width: min(100vw, 1080px);
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  overflow: hidden;
  box-shadow: 0 0 80px #0023481f;
}

.kiosk-stage-catalogue {
  background: #f4f7fa;
  grid-template-rows: 1fr;
}

.kiosk-brand {
  text-align: center;
  border-bottom: 1px solid var(--css-border);
  background: #fffffff0;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 170px;
  padding: 30px 42px 24px;
  display: grid;
}

.brand-logo {
  object-fit: contain;
  width: min(420px, 72vw);
  height: auto;
  display: block;
}

.brand-context {
  color: var(--css-muted);
  margin: 0;
  font-size: 20px;
}

.kiosk-main {
  place-items: center;
  padding: 46px 42px 140px;
  display: grid;
}

.kiosk-main-catalogue {
  place-items: start center;
  padding: 18px 24px 40px;
}

.auth-panel {
  background: var(--css-surface);
  border: 1px solid var(--css-border);
  border-top: 7px solid var(--css-secondary);
  border-radius: 28px;
  gap: 28px;
  width: min(820px, 100%);
  padding: 54px;
  display: grid;
  box-shadow: 0 30px 80px #00234824;
}

.auth-panel-centred {
  text-align: center;
  justify-items: center;
}

.eyebrow {
  color: var(--css-primary);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}

h1 {
  font-family: var(--font-secondary);
  letter-spacing: -.035em;
  margin: 0;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.05;
}

.lead {
  max-width: 680px;
  color: var(--css-muted);
  margin: 0;
  font-size: 25px;
  line-height: 1.5;
}

.nfc-target {
  width: min(510px, 100%);
  min-height: 390px;
  color: var(--css-primary);
  background: linear-gradient(#f7fbff 0%, #e6f2fc 100%);
  border: 3px solid #8eb9dd;
  border-radius: 42px;
  align-content: center;
  place-items: center;
  gap: 26px;
  margin-top: 10px;
  display: grid;
  box-shadow: inset 0 0 0 10px #fff, 0 18px 35px #0057a81a;
}

.nfc-target.is-reading {
  animation: .75s ease-in-out infinite alternate nfc-pulse;
}

@keyframes nfc-pulse {
  from {
    border-color: #8eb9dd;
    transform: scale(1);
  }

  to {
    border-color: var(--css-primary);
    transform: scale(1.012);
  }
}

.nfc-icon {
  place-items: center;
  width: 150px;
  height: 150px;
  display: grid;
}

.nfc-icon svg, .field-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 100%;
  height: 100%;
}

.nfc-label {
  font-family: var(--font-secondary);
  font-size: 34px;
  font-weight: 800;
}

.privacy-note, .security-note {
  color: var(--css-muted);
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.security-note {
  background: #f5f8fb;
  border-radius: 16px;
  padding: 20px 22px;
}

.link-form {
  gap: 26px;
  display: grid;
}

.link-form label {
  gap: 11px;
  font-size: 21px;
  font-weight: 800;
  display: grid;
}

.input-shell {
  display: block;
  position: relative;
}

.field-icon {
  color: #6e8498;
  pointer-events: none;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 23px;
  transform: translateY(-50%);
}

.input-shell:focus-within .field-icon {
  color: var(--css-primary);
}

.input-shell input {
  width: 100%;
  min-height: 78px;
  color: var(--css-text);
  background: #fff;
  border: 2px solid #aebdca;
  border-radius: 16px;
  padding: 15px 22px 15px 72px;
  font-size: 25px;
}

.input-shell input:focus {
  border-color: var(--css-primary);
  box-shadow: 0 0 0 5px #0057a81a;
}

.form-error {
  color: var(--css-danger);
  background: #fff1f0;
  border: 1px solid #f2b8b5;
  border-radius: 14px;
  margin: -6px 0 0;
  padding: 16px 18px;
  font-size: 19px;
  line-height: 1.45;
}

.primary-button, .secondary-button, .text-button {
  cursor: pointer;
  border-radius: 16px;
  min-height: 72px;
  font-weight: 800;
}

.primary-button {
  border: 2px solid var(--css-primary);
  background: var(--css-primary);
  color: #fff;
  padding: 18px 28px;
  font-size: 24px;
  box-shadow: 0 10px 22px #0057a82e;
}

.primary-button:hover {
  background: var(--css-primary-dark);
  border-color: var(--css-primary-dark);
}

.primary-button:disabled {
  opacity: .55;
  cursor: wait;
}

.secondary-button {
  color: var(--css-primary);
  background: #fff;
  border: 2px solid #9db4c7;
  padding: 18px 28px;
  font-size: 23px;
}

.text-button {
  width: fit-content;
  min-height: 54px;
  color: var(--css-primary);
  background: none;
  border: 0;
  padding: 8px 4px;
  font-size: 21px;
}

.customer-card {
  background: #f4f9fd;
  border: 2px solid #b8d3e8;
  border-radius: 18px;
  gap: 10px;
  padding: 28px;
  font-size: 22px;
  display: grid;
}

.customer-card strong {
  font-family: var(--font-secondary);
  font-size: 29px;
}

.customer-card span {
  color: var(--css-muted);
}

.customer-card.compact {
  width: 100%;
}

.success-badge, .error-badge {
  border-radius: 999px;
  place-items: center;
  width: 104px;
  height: 104px;
  font-size: 54px;
  font-weight: 900;
  display: grid;
}

.success-badge {
  color: var(--css-success);
  background: #e9f9f0;
}

.error-badge {
  color: var(--css-danger);
  background: #fff0ef;
}

.demo-message {
  color: var(--css-muted);
  margin: 0;
  font-size: 19px;
}

.prototype-tools {
  left: max(18px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 10;
  width: min(520px, 100vw - 36px);
  color: var(--css-text);
  background: #fffffff7;
  border: 1px solid #adc0d0;
  border-radius: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 10px 12px;
  padding: 16px;
  font-size: 13px;
  display: grid;
  position: fixed;
  box-shadow: 0 10px 30px #00234829;
}

.prototype-tools > strong, .prototype-tools > span {
  grid-column: 1 / -1;
}

.prototype-tools > span {
  color: var(--css-muted);
}

.prototype-tools label {
  color: var(--css-muted);
  gap: 4px;
  font-weight: 700;
  display: grid;
}

.prototype-tools select, .prototype-tools button {
  width: 100%;
  min-height: 40px;
  color: var(--css-text);
  background: #fff;
  border: 1px solid #9db4c7;
  border-radius: 8px;
  padding: 7px 9px;
}

.prototype-tools button {
  cursor: pointer;
  align-self: end;
  font-weight: 800;
}

.prototype-tools button:disabled {
  opacity: .5;
  cursor: wait;
}

@media (max-width: 700px) {
  button[aria-label^="Open basket"] {
    grid-template-columns: 26px 24px;
    gap: 6px;
    min-width: 76px;
    padding-inline: 8px;
  }

  .kiosk-brand {
    gap: 8px;
    min-height: 120px;
    padding: 20px 22px 16px;
  }

  .brand-logo {
    width: min(330px, 78vw);
  }

  .brand-context {
    font-size: 15px;
  }

  .kiosk-main {
    padding: 24px 18px 150px;
  }

  .kiosk-main-catalogue {
    padding: 12px 12px 28px;
  }

  .auth-panel {
    border-radius: 22px;
    gap: 22px;
    padding: 32px 24px;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 20px;
  }

  .nfc-target {
    min-height: 300px;
  }

  .nfc-icon {
    width: 118px;
    height: 118px;
  }

  .nfc-label {
    font-size: 29px;
  }

  .prototype-tools {
    grid-template-columns: 1fr;
    max-height: 44vh;
    overflow: auto;
  }

  .prototype-tools > strong, .prototype-tools > span {
    grid-column: auto;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/