/* Offline utility layer for B2B (Tailwind-compatible naming subset)
   Built to avoid CDN dependency in production where npm toolchain is unavailable. */
:root { color-scheme: light; }
*,::before,::after { box-sizing: border-box; }
html,body { margin: 0; padding: 0; }
img,svg,video,canvas,audio,iframe,embed,object { display: block; max-width: 100%; }
button,input,select,textarea { font: inherit; color: inherit; }
.hidden { display: none !important; }
.block { display: block !important; }
.flex { display: flex !important; }
.grid { display: grid !important; }
.items-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.gap-2 { gap: .5rem !important; }
.gap-3 { gap: .75rem !important; }
.gap-4 { gap: 1rem !important; }
.w-full { width: 100% !important; }
.max-w-full { max-width: 100% !important; }
.rounded-xl { border-radius: .75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.border { border-width: 1px !important; border-style: solid !important; }
.border-slate-200 { border-color: #e2e8f0 !important; }
.bg-white { background: #fff !important; }
.text-slate-700 { color: #334155 !important; }
.text-slate-900 { color: #0f172a !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-extrabold { font-weight: 800 !important; }
.text-sm { font-size: .875rem !important; line-height: 1.25rem !important; }
.text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
.p-2 { padding: .5rem !important; }
.p-3 { padding: .75rem !important; }
.p-4 { padding: 1rem !important; }
.px-3 { padding-left: .75rem !important; padding-right: .75rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.py-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
.py-3 { padding-top: .75rem !important; padding-bottom: .75rem !important; }
.shadow-sm { box-shadow: 0 1px 2px rgba(15,23,42,.06) !important; }
.shadow-md { box-shadow: 0 8px 20px rgba(15,23,42,.08) !important; }
@media (max-width: 768px) {
  .md\\:hidden { display: none !important; }
  .md\\:block { display: block !important; }
}
