/* Shared kit utilities — load after colors_and_type.css */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: var(--gp-font-primary); color: var(--gp-fg-body); background: var(--gp-surface-page); -webkit-font-smoothing: antialiased; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, select, textarea { font-family: inherit; }

/* Stroke icon defaults */
.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Loading spinner + skeleton — used across booking/portal/crm fetch points */
@keyframes gp-spin { to { transform: rotate(360deg); } }
.gp-spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid var(--gp-beige); border-top-color: var(--gp-warm-brown); border-radius: 50%; animation: gp-spin 0.7s linear infinite; }
.gp-loading-row { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 32px; color: var(--gp-fg-light); font-size: 13px; }
@keyframes gp-pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.7; } }
.gp-skeleton { background: var(--gp-cream); border-radius: 6px; animation: gp-pulse 1.4s ease-in-out infinite; }
