/**
 * zPayy marketing site — design tokens & skeuomorphic utilities
 * Single theme: black + gold + off-white (no light/dark toggle)
 */

:root {
  --zp-void: #060607;
  --zp-black: #0c0c0f;
  --zp-panel: #121216;
  --zp-panel-mid: #18181e;
  --zp-elevated: #1e1e26;
  --zp-gold: #f4c419;
  --zp-gold-mid: #d4a512;
  --zp-gold-deep: #8a6b08;
  --zp-white: #f4f4f0;
  --zp-muted: #9d9d94;
  --zp-faint: #5c5c56;
  --zp-rim: rgba(244, 196, 25, 0.45);
  --zp-highlight: rgba(255, 255, 255, 0.14);
  --zp-shadow-deep: rgba(0, 0, 0, 0.65);
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --zp-radius: 1.125rem;
  --zp-radius-lg: 1.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.zp-site {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 130% 90% at 50% -25%, rgba(244, 196, 25, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 80%, rgba(244, 196, 25, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #12121a 0%, var(--zp-black) 28%, #060607 100%);
  color: var(--zp-white);
  -webkit-font-smoothing: antialiased;
}

.zp-wrap {
  position: relative;
  z-index: 1;
}

/* Machined nav rail */
.zp-nav-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.65rem 1rem 0;
}

.zp-nav-shell {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.85rem 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #24242c 0%, #141418 55%, #0a0a0d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 var(--zp-highlight) inset,
    0 12px 40px var(--zp-shadow-deep),
    0 0 0 1px rgba(0, 0, 0, 0.5);
}

.zp-nav-shell::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--zp-gold), transparent);
  opacity: 0.35;
  pointer-events: none;
}

.zp-nav-shell {
  position: relative;
}

.zp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--zp-white);
}

.zp-brand img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 8px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.zp-brand span {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.zp-brand .zp-accent {
  color: var(--zp-gold);
}

.zp-nav-links {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

@media (min-width: 900px) {
  .zp-nav-links {
    display: flex;
  }
}

.zp-nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--zp-muted);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.zp-nav-links a:hover {
  color: var(--zp-white);
  background: rgba(244, 196, 25, 0.08);
  box-shadow: 0 0 0 1px rgba(244, 196, 25, 0.2);
}

.zp-nav-cta {
  display: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #141008;
  padding: 0.58rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8d0 0%, var(--zp-gold) 45%, #c9a008 100%);
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-top-color: rgba(255, 255, 255, 0.45);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.45) inset,
    0 -2px 6px rgba(0, 0, 0, 0.12) inset,
    0 6px 0 rgba(90, 70, 8, 0.9),
    0 10px 22px rgba(0, 0, 0, 0.45);
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease;
}

@media (min-width: 640px) {
  .zp-nav-cta {
    display: inline-flex;
  }
}

.zp-nav-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.zp-nav-cta:active {
  transform: translateY(4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 2px 0 rgba(90, 70, 8, 0.95),
    0 6px 14px rgba(0, 0, 0, 0.4);
}

.zp-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #1f1f26 0%, #121216 100%);
  color: var(--zp-white);
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

@media (min-width: 900px) {
  .zp-nav-toggle {
    display: none;
  }
}

.zp-mobile-panel {
  display: none;
  margin-top: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--zp-radius-lg);
  background: linear-gradient(180deg, #1a1a22 0%, #0e0e12 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.zp-mobile-panel.open {
  display: block;
}

.zp-mobile-panel a {
  display: block;
  padding: 0.65rem 0.75rem;
  color: var(--zp-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0.75rem;
}

.zp-mobile-panel a:hover {
  color: var(--zp-white);
  background: rgba(244, 196, 25, 0.08);
}

.zp-mobile-panel .zp-nav-cta {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
}

/* Hero with London header image */
.zp-hero-header {
  position: relative;
  margin-top: 4.5rem;
  border-radius: var(--zp-radius-lg);
  overflow: hidden;
  min-height: clamp(220px, 38vw, 420px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 24px 80px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(244, 196, 25, 0.12);
}

.zp-hero-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  min-height: clamp(220px, 38vw, 420px);
  filter: saturate(1.05) contrast(1.05);
}

.zp-hero-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6, 6, 7, 0.92) 0%, rgba(6, 6, 7, 0.55) 42%, rgba(6, 6, 7, 0.25) 100%);
  pointer-events: none;
}

/* landing.png: show file as authored — intrinsic pixel size, no crop/scale/stretch */
.zp-hero-header.zp-hero-header--landing {
  min-height: unset;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.zp-hero-header--landing::after {
  display: none;
}

.zp-hero-header.zp-hero-header--landing img {
  width: auto;
  height: auto;
  max-width: 100%;
  min-height: unset;
  object-fit: unset;
  object-position: unset;
  filter: none;
}

.zp-page-hero .zp-hero-header.zp-hero-header--landing {
  min-height: unset;
}

.zp-page-hero .zp-hero-header.zp-hero-header--landing img {
  min-height: unset;
  object-position: unset;
}

.zp-hero-inner--landing {
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: clamp(1rem, 3vw, 1.75rem) clamp(1.25rem, 4vw, 2.75rem);
  pointer-events: none;
}

.zp-hero-inner--landing .zp-hero-actions {
  margin-top: 0;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .zp-hero-inner--landing {
    align-items: stretch;
    /* Light foot only so CTAs stay readable; not a solid block */
    background: linear-gradient(180deg, transparent 70%, rgba(6, 6, 7, 0.45) 100%);
  }

  .zp-hero-inner--landing .zp-hero-actions {
    justify-content: center;
  }
}

.zp-hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 4vw, 2.75rem);
  z-index: 2;
}

.zp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zp-gold);
  margin-bottom: 0.75rem;
}

.zp-eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--zp-gold);
  box-shadow: 0 0 12px var(--zp-gold);
  animation: zp-pulse 2.4s ease-in-out infinite;
}

@keyframes zp-pulse {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.zp-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}

.zp-hero-title .zp-gold-text {
  background: linear-gradient(180deg, #fff6c2 0%, var(--zp-gold) 55%, var(--zp-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.zp-hero-sub {
  margin: 0;
  max-width: 40ch;
  color: rgba(244, 244, 240, 0.88);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}

.zp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Raised “machined brass” primary control */
.zp-btn-primary {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #141008;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    #fff8d0 0%,
    #ffe566 12%,
    var(--zp-gold) 38%,
    #c9a008 78%,
    #8a6e0a 100%
  );
  border: 1px solid rgba(0, 0, 0, 0.55);
  border-top-color: rgba(255, 255, 255, 0.55);
  border-left-color: rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.55) inset,
    0 -3px 10px rgba(0, 0, 0, 0.2) inset,
    0 10px 0 rgba(90, 70, 8, 0.85),
    0 14px 28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(244, 196, 25, 0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.zp-btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.zp-btn-primary:active {
  transform: translateY(6px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 4px 0 rgba(90, 70, 8, 0.95),
    0 6px 16px rgba(0, 0, 0, 0.45);
}

/* Long mailto: readable sentence case on gold */
.zp-btn-mail {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: clamp(0.75rem, 2.5vw, 0.88rem);
  word-break: break-word;
  text-align: center;
  line-height: 1.35;
}

/* Inset / recessed secondary */
.zp-btn-secondary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--zp-white);
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #1a1a22 0%, #0c0c10 100%);
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-top-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.45) inset,
    0 -1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.12s ease, filter 0.12s ease;
}

.zp-btn-secondary:hover {
  filter: brightness(1.08);
  border-color: rgba(244, 196, 25, 0.35);
}

.zp-btn-secondary:active {
  transform: translateY(2px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.55) inset,
    0 4px 14px rgba(0, 0, 0, 0.3);
}

/* Embossed section label */
.zp-section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--zp-gold);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #1f1f28 0%, #121216 100%);
  border: 1px solid rgba(244, 196, 25, 0.25);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 20px rgba(0, 0, 0, 0.35);
}

.zp-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 1rem 0 0.5rem;
}

.zp-section-lead {
  color: var(--zp-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 42rem;
  margin: 0 auto;
}

/* Skeuo plates — beveled vault panel */
.zp-plate {
  position: relative;
  border-radius: var(--zp-radius-lg);
  background: linear-gradient(168deg, #22222e 0%, #14141a 42%, #0a0a0d 100%);
  border: 1px solid rgba(0, 0, 0, 0.65);
  border-top-color: rgba(255, 255, 255, 0.11);
  border-left-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.07) inset,
    0 -4px 24px rgba(0, 0, 0, 0.55) inset,
    0 28px 56px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(244, 196, 25, 0.08);
  padding: 1.5rem;
}

.zp-plate::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(244, 196, 25, 0.45) 0%,
    transparent 35%,
    transparent 65%,
    rgba(255, 255, 255, 0.05) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.zp-plate h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.zp-plate p {
  margin: 0;
  color: var(--zp-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.zp-icon-bump {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #2a2a34 0%, #15151a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 6px 14px rgba(0, 0, 0, 0.4);
  color: var(--zp-gold);
  font-size: 1.35rem;
}

.zp-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .zp-grid-12 {
    grid-template-columns: repeat(12, 1fr);
  }

  .zp-span-8 {
    grid-column: span 8;
  }

  .zp-span-4 {
    grid-column: span 4;
  }

  .zp-span-6 {
    grid-column: span 6;
  }

  .zp-span-12 {
    grid-column: span 12;
  }
}

/* Full-viewport background inside a max-width main (limited-width parent) */
.zp-strip {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  background: radial-gradient(ellipse 80% 120% at 50% 0%, rgba(244, 196, 25, 0.12) 0%, transparent 55%), var(--zp-void);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.zp-faq details {
  border-radius: var(--zp-radius);
  background: linear-gradient(180deg, #1a1a22 0%, #0e0e12 100%);
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-top-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.35) inset,
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 8px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.65rem;
}

.zp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.zp-faq summary::-webkit-details-marker {
  display: none;
}

.zp-faq details[open] {
  border-color: rgba(244, 196, 25, 0.35);
  box-shadow: 0 0 0 1px rgba(244, 196, 25, 0.12);
}

.zp-faq .zp-answer {
  padding: 0 1.15rem 1.1rem;
  color: var(--zp-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.zp-footer {
  background: linear-gradient(180deg, #070708 0%, #020203 100%);
  border-top: 1px solid rgba(244, 196, 25, 0.2);
  padding: 3rem 1.5rem 2rem;
}

.zp-footer a {
  color: var(--zp-muted);
  text-decoration: none;
  font-size: 0.875rem;
}

.zp-footer a:hover {
  color: var(--zp-gold);
}

/* Download section — APK row: narrow column so copy wraps evenly above the button */
.zp-download-apk-block {
  margin-top: 2.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.zp-apk-download-heading {
  margin: 0 0 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zp-gold);
}

.zp-apk-download-btn-wrap {
  margin-top: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.zp-apk-download-btn {
  width: 100%;
  max-width: 17.5rem;
}

.zp-store-badge {
  display: inline-block;
  line-height: 0;
  border-radius: 0.5rem;
  padding: 0.35rem 0.45rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s, box-shadow 0.15s;
}

.zp-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}

.zp-store-badge img {
  display: block;
  height: 52px;
  width: auto;
}

.zp-store-badge.apple img {
  height: 52px;
}

/* Legal / inner pages */
.zp-page-hero {
  margin-top: 5.25rem;
  padding: 0 1.25rem 1.5rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.zp-page-hero .zp-hero-header {
  margin-top: 0;
  min-height: 160px;
}

.zp-page-hero .zp-hero-header img {
  min-height: 160px;
  object-position: center 40%;
}

.zp-page-hero .zp-hero-inner {
  justify-content: center;
}

.zp-page-hero .zp-hero-title {
  max-width: none;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.zp-doc {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.zp-doc-inner {
  padding: 2rem 1.5rem;
}

@media (min-width: 640px) {
  .zp-doc-inner {
    padding: 2.5rem 2.75rem;
  }
}

.zp-doc h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  margin: 0 0 0.35rem;
}

.zp-doc .zp-meta {
  color: var(--zp-faint);
  font-size: 0.8rem;
  margin-bottom: 2rem;
}

.zp-doc section {
  margin-bottom: 1.75rem;
}

.zp-doc h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.65rem;
}

.zp-doc .zp-num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--zp-black);
  background: linear-gradient(180deg, #ffe066 0%, var(--zp-gold) 100%);
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.zp-doc p,
.zp-doc li {
  color: var(--zp-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.zp-doc a {
  color: var(--zp-gold);
  font-weight: 600;
}

.zp-doc a.zp-btn-primary {
  color: #141008;
}

.zp-doc a.zp-btn-secondary {
  color: var(--zp-white);
}

.zp-doc ul {
  padding-left: 1.1rem;
}

.zp-pay-card {
  max-width: 26rem;
  margin: 0 auto;
  text-align: center;
}

.zp-pay-card .zp-icon-bump {
  margin-left: auto;
  margin-right: auto;
}

.fade-zp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-zp.visible {
  opacity: 1;
  transform: translateY(0);
}

::selection {
  background: rgba(244, 196, 25, 0.35);
  color: var(--zp-white);
}
