/* ───── GoldenBee shared styles ───── */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #fdf6ec;
  color: #3d2800;
  -webkit-font-smoothing: antialiased;
}

.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 90%, rgba(251,191,36,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(249,115,22,0.08) 0%, transparent 60%);
}

.bg-honeycomb {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zm0 34L0 84V50l28-16 28 16v34L28 100z' fill='none' stroke='%23d97706' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

/* Toast root (injected by admin.js) */
#toast-root { pointer-events: none; }

/* Scrollbar styling */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(245,158,11,0.3);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(245,158,11,0.5); background-clip: padding-box; }

/* Focus outline */
*:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
