:root {
  --base-spacer: 4px;
  --base-border-radius: 4px;
  --border-radius--sm: var(--base-border-radius);
  --border-radius: calc(var(--base-border-radius) * 2);
  --border-radius--lg: calc(var(--base-border-radius) * 3);
  --border-radius--xl: calc(var(--base-border-radius) * 4);
  --border-radius--xxl: 30px;
  --border-radius--pill: 9999px;
  --border-radius--circle: 50%;
  --spacer-1: calc(var(--base-spacer) * 1);
  --spacer-2: calc(var(--base-spacer) * 2);
  --spacer-3: calc(var(--base-spacer) * 3);
  --spacer-4: calc(var(--base-spacer) * 4);
  --spacer-5: calc(var(--base-spacer) * 5);
  --spacer-6: calc(var(--base-spacer) * 6);
  --spacer-7: calc(var(--base-spacer) * 7);
  --spacer-8: calc(var(--base-spacer) * 8);
  --spacer-9: calc(var(--base-spacer) * 9);
  --spacer-10: calc(var(--base-spacer) * 10);
  --spacer-12: calc(var(--base-spacer) * 12);
  --spacer-14: calc(var(--base-spacer) * 14);
  --spacer-15: calc(var(--base-spacer) * 15);
  --gap-1: calc(var(--base-spacer) * 1);
  --gap-3: calc(var(--base-spacer) * 3);
  --gap-4: calc(var(--base-spacer) * 4);
  --gap-5: calc(var(--base-spacer) * 5);
  --gap-6: calc(var(--base-spacer) * 6);
  --gap-8: calc(var(--base-spacer) * 8);
  --gap-10: calc(var(--base-spacer) * 10);
  --h6-font-size: 1.25rem;
  --h6-font-weight: 500;
  --h6-line-height: 2rem;
  --h6-letter-spacing: 0.0125em;
  --elevation-umbra-opacity: rgba(0, 0, 0, 0.2);
  --elevation-penumbra-opacity: rgba(0, 0, 0, 0.14);
  --elevation-ambient-opacity: rgba(0, 0, 0, 0.12);
  --clr-black: #000000;
  --clr-white: #ffffff;
  --clr-black-contrast: #ffffff;
  --clr-white-contrast: #000000;
  --clr-a: #faa019;
  --clr-a-contrast: var(--clr-black);
  --clr-b: #59323c;
  --clr-b-contrast: var(--clr-white);
  --clr-c: #1abc9c;
  --clr-c-contrast: var(--clr-black);
  --clr-d: #e74c3c;
  --clr-d-contrast: var(--clr-black);
  --clr-e: #2ecc71;
  --clr-e-contrast: var(--clr-black);
  --clr-f: #f1c40f;
  --clr-f-contrast: var(--clr-black);
  --clr-g: #3498db;
  --clr-g-contrast: var(--clr-black);
  --clr-h: #34495e;
  --clr-h-contrast: var(--clr-white);
  --clr-i: #bfaf80;
  --clr-i-contrast: var(--clr-black);
  --clr-l: #9b59b6;
  --clr-l-contrast: var(--clr-white);
  --clr-primary: #2980b9;
  --clr-primary-contrast: #ffffff;
  --clr-secondary: #f39c12;
  --clr-secondary-contrast: #000000;
  --clr-success: var(--clr-e);
  --clr-success-contrast: var(--clr-e-contrast);
  --clr-neutral-a: #f2f2f2;
  --bg-green: #25d366;
  --bg-neutral: #f0f0f7;
  --token-card-height: 212px;
  --shell-height: 100dvh;
  --app-width: 500px;
  --app-max-width: 500px;
  --app-height: calc(var(--shell-height, 100vh) - var(--snackbar-height, 0));
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scrollbar-width: none;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  overscroll-behavior-x: contain;
}

::-webkit-scrollbar {
  display: none;
}

html,
body {
  margin: 0;
  height: 100%;
  background: #000;
  color: #000;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03125em;
}

button,
input,
a {
  font-family: inherit;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

#app {
  overflow: hidden;
  min-height: var(--shell-height);
  max-height: var(--shell-height);
  height: var(--shell-height);
  display: flex;
  flex-direction: column;
}

#shell {
  width: min(var(--app-max-width), 100%);
  max-width: var(--app-max-width);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: #fff;
}

#shell-content,
#view {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Vuetify-like utilities */
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.flex-column { flex-direction: column !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.align-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }
.me-3 { margin-right: var(--spacer-3) !important; }
.mb-auto { margin-bottom: auto !important; }
.mt-auto { margin-top: auto !important; }
.mt-10 { margin-top: var(--spacer-10) !important; }
.pl-4 { padding-left: var(--spacer-4) !important; }
.ps-5 { padding-inline-start: var(--spacer-5) !important; }
.pa-2 { padding: var(--spacer-2) !important; }
.pa-3 { padding: var(--spacer-3) !important; }
.pa-4 { padding: var(--spacer-4) !important; }
.pa-5 { padding: var(--spacer-5) !important; }
.pa-6 { padding: var(--spacer-6) !important; }
.pa-9 { padding: var(--spacer-9) !important; }
.pa-12 { padding: var(--spacer-12) !important; }
.px-3 { padding-left: var(--spacer-3) !important; padding-right: var(--spacer-3) !important; }
.px-4 { padding-left: var(--spacer-4) !important; padding-right: var(--spacer-4) !important; }
.px-5 { padding-left: var(--spacer-5) !important; padding-right: var(--spacer-5) !important; }
.px-7 { padding-left: var(--spacer-7) !important; padding-right: var(--spacer-7) !important; }
.px-8 { padding-left: var(--spacer-8) !important; padding-right: var(--spacer-8) !important; }
.py-2 { padding-top: var(--spacer-2) !important; padding-bottom: var(--spacer-2) !important; }
.py-4 { padding-top: var(--spacer-4) !important; padding-bottom: var(--spacer-4) !important; }
.py-5 { padding-top: var(--spacer-5) !important; padding-bottom: var(--spacer-5) !important; }
.pt-3 { padding-top: var(--spacer-3) !important; }
.pt-4 { padding-top: var(--spacer-4) !important; }
.pt-5 { padding-top: var(--spacer-5) !important; }
.pt-7 { padding-top: var(--spacer-7) !important; }
.pt-14 { padding-top: var(--spacer-14) !important; }
.pb-1 { padding-bottom: var(--spacer-1) !important; }
.pb-7 { padding-bottom: var(--spacer-7) !important; }
.pb-8 { padding-bottom: var(--spacer-8) !important; }
.pb-15 { padding-bottom: var(--spacer-15) !important; }
.gap-1 { gap: var(--gap-1) !important; }
.gap-3 { gap: var(--gap-3) !important; }
.gap-4 { gap: var(--gap-4) !important; }
.gap-5 { gap: var(--gap-5) !important; }
.gap-6 { gap: var(--gap-6) !important; }
.gap-8 { gap: var(--gap-8) !important; }
.gap-10 { gap: var(--gap-10) !important; }
.rounded-sm { border-radius: var(--border-radius--sm) !important; }
.rounded-xxl { border-radius: var(--border-radius--xxl) !important; }
.rounded-t-xxl {
  border-top-left-radius: var(--border-radius--xxl) !important;
  border-top-right-radius: var(--border-radius--xxl) !important;
}
.rounded-pill { border-radius: var(--border-radius--pill) !important; }
.rounded-circle { border-radius: var(--border-radius--circle) !important; }
.font-weight-medium { font-weight: 500 !important; }
.text-center { text-align: center !important; }
.text-decoration-line-through { text-decoration: line-through !important; }
.text-primary { color: var(--clr-primary) !important; caret-color: var(--clr-primary) !important; }
.text-secondary { color: var(--clr-secondary) !important; caret-color: var(--clr-secondary) !important; }
.text-black { color: var(--clr-black) !important; }
.bg-white { background-color: var(--clr-white) !important; color: var(--clr-white-contrast); }
.bg-black { background-color: var(--clr-black) !important; color: var(--clr-black-contrast); }
.bg-success { background-color: var(--clr-success) !important; color: var(--clr-success-contrast); }
.bg-neutral { background-color: var(--bg-neutral) !important; }
.bg-neutral-a { background-color: var(--clr-neutral-a) !important; }
.bg-green { background-color: var(--bg-green) !important; }
.bg-a { background-color: var(--clr-a) !important; color: var(--clr-a-contrast); }
.bg-b { background-color: var(--clr-b) !important; color: var(--clr-b-contrast); }
.bg-c { background-color: var(--clr-c) !important; color: var(--clr-c-contrast); }
.bg-d { background-color: var(--clr-d) !important; color: var(--clr-d-contrast); }
.bg-e { background-color: var(--clr-e) !important; color: var(--clr-e-contrast); }
.bg-f { background-color: var(--clr-f) !important; color: var(--clr-f-contrast); }
.bg-g { background-color: var(--clr-g) !important; color: var(--clr-g-contrast); }
.bg-h { background-color: var(--clr-h) !important; color: var(--clr-h-contrast); }
.bg-i { background-color: var(--clr-i) !important; color: var(--clr-i-contrast); }
.bg-l { background-color: var(--clr-l) !important; color: var(--clr-l-contrast); }
.elevation-3 {
  box-shadow: 0px 3px 3px -2px var(--elevation-umbra-opacity),
    0px 3px 4px 0px var(--elevation-penumbra-opacity),
    0px 1px 8px 0px var(--elevation-ambient-opacity) !important;
}
.elevation-4 {
  box-shadow: 0px 2px 4px -1px var(--elevation-umbra-opacity),
    0px 4px 5px 0px var(--elevation-penumbra-opacity),
    0px 1px 10px 0px var(--elevation-ambient-opacity) !important;
}
.z-index-1 { z-index: 1 !important; }
.z-index-9 { z-index: 9 !important; }
.z-index-10 { z-index: 10 !important; }
.absolute-tr { position: absolute; top: 0; right: 0; z-index: 1; }
.absolute-tlr { position: absolute; top: 0; left: 0; right: 0; z-index: 1; }
.absolute-cover {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.pointer-events-off { pointer-events: none; }
.pointer-events-on { pointer-events: auto; }

.text-h6 {
  font-size: var(--h6-font-size) !important;
  font-weight: var(--h6-font-weight);
  line-height: var(--h6-line-height);
  letter-spacing: var(--h6-letter-spacing) !important;
  font-family: Roboto, sans-serif !important;
}

.eat-view {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.eat-top-bar {
  position: relative;
  z-index: 6;
  min-height: 59px;
  flex-shrink: 0;
}

.eat-top-bar__content {
  min-height: 59px;
}

.logo-circle {
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.logo-circle.size-44,
.logo-rounded.size-44 {
  width: 44px;
  height: 44px;
}

.logo-rounded {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background: linear-gradient(226deg, rgb(197, 245, 49) 10%, rgb(0, 113, 242) 92%);
}

.logo-circle img,
.logo-rounded img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222;
}

.icon-btn.svg-18 {
  width: 34px;
  height: 34px;
}

.icon-btn svg {
  width: 24px;
  height: 24px;
}

.icon-btn.svg-18 svg {
  width: 18px;
  height: 18px;
}

/* Loading spinner — text-secondary = arancione SPACE (#f39c12) */
.spinner-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.loading-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--clr-secondary);
}

.progress-circular__container {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
}

.progress-circular {
  margin: auto;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  animation: progress-circular-rotate 1.4s linear infinite;
  transform-origin: center center;
  transition: all 0.2s ease-in-out;
}

.progress-circular__overlay {
  stroke: currentColor;
  fill: transparent;
  transition: all 0.6s ease-in-out;
  animation: progress-circular-dash 1.4s ease-in-out infinite;
  stroke-linecap: round;
  stroke-dasharray: 80, 200;
  stroke-dashoffset: 0px;
}

@keyframes progress-circular-rotate {
  100% { transform: rotate(360deg); }
}

@keyframes progress-circular-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0px;
  }
  50% {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -125px;
  }
}

/* Ritira */
.onboarding {
  background-color: #f0f0f7;
}

.onboarding__title {
  font-size: 1.75rem;
  line-height: 2rem;
}

.ritira-scroll {
  flex: 1;
  overflow: auto;
  background: #fff;
  position: relative;
}

.preserve3d {
  transform-style: preserve-3d;
}

/* Extra room so ScrollTrigger card-flip can scrub even with few tokens */
.token-scroll-spacer {
  flex-shrink: 0;
  height: 55vh;
  pointer-events: none;
}

.token-card__container {
  position: relative;
  transform-origin: center center;
  max-height: calc(var(--token-card-height) * 0.85);
}

.token-card__container .ripple {
  position: absolute;
  opacity: 0.1;
  scale: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  translate: -50% -50%;
  background-color: #ffffff;
  transition: scale 0.2s ease-in;
  pointer-events: none;
  z-index: 1;
}

.token-card__container.clicked .ripple {
  scale: 1;
}

.token-card__content {
  position: relative;
  cursor: pointer;
  height: var(--token-card-height);
}

.collected-watermark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.collected-label {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
  line-height: 24px;
  font-size: 16px;
}

.token-thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.backdrop-ripple {
  position: absolute;
  height: 2000px;
  width: 2000px;
  border-radius: 50%;
  translate: -50% -50%;
  scale: 2;
  opacity: 1;
}

.ripple-grow-enter-active .backdrop-ripple {
  transition: all 0.3s ease-in;
}

.ripple-grow-enter-active .slide-up-transition,
.ripple-grow-enter-active .back-btn {
  transition: all 0.3s ease-in 0.25s;
}

.ripple-grow-leave-active .backdrop-ripple,
.ripple-grow-leave-active .back-btn {
  transition: all 0.3s ease-in 0.25s;
}

.ripple-grow-leave-active .slide-up-transition {
  transition: all 0.3s ease-in;
}

.ripple-grow-enter-from .back-btn,
.ripple-grow-leave-to .back-btn {
  opacity: 0;
}

.ripple-grow-enter-from .backdrop-ripple,
.ripple-grow-leave-to .backdrop-ripple {
  scale: 0;
  opacity: 0;
}

.ripple-grow-enter-from .slide-up-transition,
.ripple-grow-leave-to .slide-up-transition {
  transform: translateY(100px);
  opacity: 0;
}

.success-snackbar {
  background-color: rgba(255, 255, 255, 0.6666666667);
  backdrop-filter: blur(20px);
  height: 80px;
}

.slide-down-enter-active,
.slide-down-leave-active {
  transition: all 0.5s ease;
  opacity: 1;
}

.slide-down-enter-from,
.slide-down-leave-to {
  transform: translateY(-100px);
  opacity: 0;
}

.snack-thumb-wrap {
  height: 100%;
  aspect-ratio: 1 / 1;
}

.snack-thumb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.check-circle svg {
  width: 20px;
  height: 20px;
}

.collect-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.pill-btn {
  border-radius: var(--border-radius--pill);
  padding: var(--spacer-2);
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.wait-icon svg {
  width: 32px;
  height: 32px;
}

/* Menu / order — ProductCard layout (iPratico) */
.menu-scroll {
  flex: 1;
  overflow: auto;
  background: #fff;
}

.sticky-container {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
}

.categories-slider {
  min-height: 57px;
  height: 57px;
  flex-wrap: nowrap;
  align-items: stretch;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.border-b {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cat-menu-btn {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.cat-menu-btn svg {
  width: 24px;
  height: 24px;
}

.cat-tabs {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow-x: auto;
  flex-shrink: 0;
  background: #fff;
}

.cat-tabs::-webkit-scrollbar {
  display: none;
}

.category-slider__btn,
.cat-tab {
  position: relative;
  flex-shrink: 0;
  min-width: max-content;
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.0125em;
  border-bottom: none;
}

.category-slider__btn.active,
.cat-tab.active {
  color: #000;
}

.category-slider__btn.active::after,
.cat-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 3px solid black;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
}

.my-3 {
  margin-top: var(--spacer-3) !important;
  margin-bottom: var(--spacer-3) !important;
}

.text-body-1 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03125em;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pb-1 { padding-bottom: var(--spacer-1) !important; }
.pe-4 { padding-inline-end: var(--spacer-4) !important; }
.mr-auto { margin-right: auto !important; }
.rounded { border-radius: var(--border-radius) !important; }
.justify-center { justify-content: center !important; }
.font-weight-regular { font-weight: 400 !important; }

.card {
  height: 140px;
  max-height: 140px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: #fff;
}

.card__text {
  width: calc(100% - 116px);
  min-height: 116px;
  min-width: 0;
}

.card__image-container {
  height: 116px;
  width: 116px;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__placeholder {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 8px;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-align: center;
  line-height: 1.2;
}

.absolute-blr {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.absolute-tl {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.add-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.qty-badge {
  min-width: 28px;
  height: 28px;
  padding: 0 7px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.product-price {
  font-size: 1rem;
  color: #111;
}

.navbar {
  flex-shrink: 0;
  display: flex;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  min-height: 56px;
}

.eat-nav {
  width: 100%;
}

.nav-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 12px 8px 8px;
  font-size: 12px;
  color: #000;
}

.nav-item .eat-nav__icon {
  color: rgba(0, 0, 0, 0.7);
}

.nav-item .eat-nav__icon.active,
.nav-item.active .eat-nav__icon {
  color: var(--clr-primary) !important;
}

.nav-item.active {
  color: var(--clr-primary);
}

.nav-item svg {
  width: 24px;
  height: 24px;
}

.bg-primary {
  background-color: var(--clr-primary) !important;
  color: var(--clr-primary-contrast) !important;
}

.nav-badge,
.cart-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 22px);
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-primary-contrast);
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  z-index: 3;
}

.legal {
  padding: 20px 16px 28px;
  text-align: center;
  font-size: 13px;
  color: #888;
}

.legal a {
  text-decoration: underline;
}

.page-body {
  flex: 1;
  overflow: auto;
  background: #fff;
}

.cart-empty {
  padding: 48px 32px;
  text-align: center;
  color: #666;
}

.cart-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.qty-ctrl button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-box {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  color: #666;
}

.field input {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 16px;
  outline: none;
}

.cta {
  margin: 16px;
  border-radius: 999px;
  padding: 14px 20px;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.cta:disabled {
  opacity: 0.4;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  font-weight: 500;
  font-size: 18px;
}

.success-wrap {
  flex: 1;
  background: #fff;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.success-logo {
  width: 168px;
  height: 168px;
}

.success-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.success-cta {
  width: 100%;
}

.error-box {
  padding: 32px 24px;
  text-align: center;
  color: #666;
}

.top-border {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

#landscape {
  display: none;
}

@media (orientation: landscape) and (max-height: 500px) {
  #landscape {
    display: flex;
    position: absolute;
    inset: 0;
    background: var(--clr-primary);
    z-index: 100;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 32px;
  }
  .landscape-inner img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 32px;
  }
}
