/* Global Mall lightweight illustration and motion layer. No external libraries. */
.gm-illustration {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px;
  align-items: center;
  gap: 14px;
  min-height: 118px;
  margin: 0 0 14px;
  overflow: hidden;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 14%, rgba(216,173,60,.2), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(232,249,250,.76));
  box-shadow: 0 16px 38px rgba(16,76,92,.08);
  backdrop-filter: blur(16px);
  transform: translateY(8px);
  opacity: 0;
  animation: gmSlideUp .45s ease forwards;
}

.gm-illustration-auth {
  max-width: 468px;
  margin: 0 auto 14px;
}

.gm-illustration-copy {
  min-width: 0;
}

.gm-illustration-copy strong,
.gm-illustration-copy span {
  display: block;
}

.gm-illustration-copy strong {
  color: #102d39;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.gm-illustration-copy span {
  margin-top: 5px;
  color: #66808a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.gm-illustration-art {
  position: relative;
  display: grid;
  width: 145px;
  height: 100px;
  place-items: center;
}

.gm-svg {
  width: 155px;
  height: auto;
  overflow: visible;
}

.gm-svg .blob {
  fill: rgba(18,183,172,.1);
  animation: gmFloat 4.6s ease-in-out infinite;
}

.gm-svg .blob-b {
  fill: rgba(216,173,60,.18);
  animation-delay: -1.8s;
}

.gm-svg .floor,
.gm-svg .person path,
.gm-svg .person circle,
.gm-svg .object path,
.gm-svg .object rect,
.gm-svg .object circle {
  fill: none;
  stroke: #102d39;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gm-svg .object .accent {
  fill: rgba(18,183,172,.18);
  stroke: #07899a;
}

.gm-svg .person-a {
  animation: gmPersonBob 3.8s ease-in-out infinite;
}

.gm-svg .person-b {
  animation: gmPersonBob 4.2s ease-in-out infinite reverse;
}

.gm-svg .object {
  animation: gmFloat 4s ease-in-out infinite;
  transform-origin: 120px 126px;
}

.gm-illustration-wallet .object .accent,
.gm-illustration-payment .object .accent {
  fill: rgba(216,173,60,.22);
  stroke: #b88614;
}

.gm-illustration-stock .object .accent,
.gm-illustration-task .object .accent {
  fill: rgba(37,117,252,.12);
  stroke: #07899a;
}

.gm-animate-ready [data-gm-animate] {
  opacity: 0;
  transform: translateY(12px);
}

.gm-animate-ready [data-gm-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease;
}

.gm-motion-icon {
  position: relative;
}

.gm-motion-icon::after {
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(18,183,172,.24), transparent 66%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(.8);
  transition: opacity .25s ease, transform .25s ease;
}

.gm-motion-icon:hover::after,
.gm-motion-icon:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.customer-body .card,
.customer-body .premium-profile-card,
.customer-body .dash-actions a,
.customer-body .quick-actions a,
.customer-body button,
.customer-body .task-submit {
  will-change: transform;
}

.customer-body .card:hover,
.customer-body .dash-actions a:hover,
.customer-body .quick-actions a:hover {
  transform: translateY(-2px);
  transition: transform .24s ease, box-shadow .24s ease;
}

.bottom-nav.floating-nav a.active .nav-active-orb {
  animation: gmNavBubble .25s cubic-bezier(.2,1.45,.35,1);
}

@keyframes gmSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gmFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(1.5deg); }
}

@keyframes gmPersonBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes gmNavBubble {
  0% { transform: scale(.92); }
  70% { transform: scale(1.08); }
  100% { transform: scale(1.06); }
}

@media (max-width: 520px) {
  .gm-illustration {
    grid-template-columns: minmax(0, 1fr) 105px;
    min-height: 96px;
    padding: 12px 13px;
    border-radius: 18px;
  }

  .gm-illustration-copy strong {
    font-size: 15px;
  }

  .gm-illustration-copy span {
    font-size: 11px;
  }

  .gm-illustration-art {
    width: 105px;
    height: 78px;
  }

  .gm-svg {
    width: 122px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gm-illustration,
  .gm-svg .blob,
  .gm-svg .person-a,
  .gm-svg .person-b,
  .gm-svg .object,
  .bottom-nav.floating-nav a.active .nav-active-orb {
    animation: none !important;
  }

  .gm-animate-ready [data-gm-animate] {
    opacity: 1;
    transform: none;
  }
}
