body.portal-body.portal-ui-v2 .portal-v2-muted {
  color: var(--portal-v2-muted);
}

body.portal-body.portal-ui-v2 .portal-v2-center {
  text-align: center;
}

body.portal-body.portal-ui-v2 .portal-v2-stack-sm {
  display: grid;
  gap: 8px;
}

body.portal-body.portal-ui-v2 .portal-v2-stack-md {
  display: grid;
  gap: 12px;
}

body.portal-body.portal-ui-v2 .portal-v2-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #c8d5eb;
  color: #37537a;
  background: #f6f9ff;
  font-size: 11px;
  font-weight: 700;
}

/* ── Display Number (Cormorant Garamond for key numeric values) ── */
body.portal-body.portal-ui-v2 .portal-display-number {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(40px, 10vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--portal-v2-text);
}

/* ── Skeleton Loader System ── */
@keyframes portal-skeleton-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

body.portal-body.portal-ui-v2 .portal-skeleton {
  background: linear-gradient(
    90deg,
    rgba(200,165,175,0.2) 0%,
    rgba(220,185,195,0.35) 40%,
    rgba(200,165,175,0.2) 100%
  );
  background-size: 200% 100%;
  animation: portal-skeleton-shimmer 1.6s ease-in-out infinite;
  border-radius: var(--portal-v2-radius-sm);
}

body.portal-body.portal-ui-v2 .portal-skeleton--text-line {
  height: 14px;
  border-radius: 7px;
}

body.portal-body.portal-ui-v2 .portal-skeleton--text-title {
  height: 32px;
  width: 60%;
  border-radius: 10px;
}

body.portal-body.portal-ui-v2 .portal-skeleton--card {
  height: 120px;
  border-radius: var(--portal-v2-radius-md);
}

body.portal-body.portal-ui-v2 .portal-skeleton--booking-card {
  height: 160px;
  border-radius: var(--portal-v2-radius-lg);
}

body.portal-body.portal-ui-v2 .portal-skeleton--quick-card {
  height: 138px;
  border-radius: 16px;
}

body.portal-body.portal-ui-v2 .portal-skeleton--avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
}

/* Hide actual content until ready, hide skeletons after ready */
body:not(.portal-ui-v2-ready) [data-skeleton-section] > :not(.portal-skeleton) {
  visibility: hidden;
}

body.portal-ui-v2-ready [data-skeleton-section] > .portal-skeleton {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  body.portal-body.portal-ui-v2 .portal-skeleton {
    animation: none;
    background: rgba(200,165,175,0.2);
  }
}
