/*
  irg_base.css — Tailwind CDN fallback
  Loaded before Tailwind <script async> so layout never breaks when CDN is slow/blocked.
  Values match Tailwind v3 defaults exactly — no visual conflict when Tailwind does load.
*/

/* ── Preflight ── */
*, ::before, ::after { box-sizing: border-box; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: inherit; }
button, input, select, textarea { font-family: inherit; font-size: 100%; line-height: inherit; color: inherit; }
button { cursor: pointer; background: transparent; border: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
ul, ol { list-style: none; margin: 0; padding: 0; }

/* ── SVG: prevent 300×150 default render ── */
svg { display: block; max-width: 100%; overflow: visible; }
svg.h-3    { width: .75rem;   height: .75rem;   }
svg.h-3\.5 { width: .875rem;  height: .875rem;  }
svg.h-4    { width: 1rem;     height: 1rem;     }
svg.h-4\.5 { width: 1.125rem; height: 1.125rem; }
svg.h-5    { width: 1.25rem;  height: 1.25rem;  }
svg.h-6    { width: 1.5rem;   height: 1.5rem;   }
svg.h-7    { width: 1.75rem;  height: 1.75rem;  }
svg.h-8    { width: 2rem;     height: 2rem;     }
svg.h-9    { width: 2.25rem;  height: 2.25rem;  }
svg.h-10   { width: 2.5rem;   height: 2.5rem;   }
svg.h-12   { width: 3rem;     height: 3rem;     }

/* ── Display ── */
.block        { display: block; }
.inline-block { display: inline-block; }
.inline       { display: inline; }
.hidden       { display: none !important; }

/* ── Flex ── */
.flex          { display: flex; }
.inline-flex   { display: inline-flex; }
.flex-col      { flex-direction: column; }
.flex-row      { flex-direction: row; }
.flex-wrap     { flex-wrap: wrap; }
.flex-nowrap   { flex-wrap: nowrap; }
.flex-1        { flex: 1 1 0%; }
.flex-auto     { flex: 1 1 auto; }
.flex-none     { flex: none; }
.flex-shrink-0 { flex-shrink: 0; }
.shrink-0      { flex-shrink: 0; }
.flex-grow     { flex-grow: 1; }
.items-start    { align-items: flex-start; }
.items-center   { align-items: center; }
.items-end      { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.items-stretch  { align-items: stretch; }
.justify-start   { justify-content: flex-start; }
.justify-center  { justify-content: center; }
.justify-end     { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around  { justify-content: space-around; }
.self-center  { align-self: center; }
.self-start   { align-self: flex-start; }
.self-end     { align-self: flex-end; }

/* ── Gap ── */
.gap-0   { gap: 0; }
.gap-0\.5{ gap: .125rem; }
.gap-1   { gap: .25rem;  }
.gap-1\.5{ gap: .375rem; }
.gap-2   { gap: .5rem;   }
.gap-2\.5{ gap: .625rem; }
.gap-3   { gap: .75rem;  }
.gap-3\.5{ gap: .875rem; }
.gap-4   { gap: 1rem;    }
.gap-5   { gap: 1.25rem; }
.gap-6   { gap: 1.5rem;  }
.gap-8   { gap: 2rem;    }
.gap-10  { gap: 2.5rem;  }

/* ── Grid ── */
.grid             { display: grid; }
.grid-cols-1      { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3      { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4      { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ── Max width / Width / Height ── */
.max-w-xs  { max-width: 20rem; }
.max-w-sm  { max-width: 24rem; }
.max-w-md  { max-width: 28rem; }
.max-w-lg  { max-width: 32rem; }
.max-w-xl  { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-full{ max-width: 100%; }
.w-full  { width: 100%; }
.h-full  { height: 100%; }
.w-0     { width: 0; }         .h-0     { height: 0; }
.w-0\.5  { width: .125rem; }   .h-0\.5  { height: 2px; }
.w-1     { width: .25rem; }    .h-1     { height: .25rem; }
.w-1\.5  { width: .375rem; }   .h-1\.5  { height: .375rem; }
.w-2     { width: .5rem;   }   .h-2     { height: .5rem;   }
.w-2\.5  { width: .625rem; }   .h-2\.5  { height: .625rem; }
.w-3     { width: .75rem;  }   .h-3     { height: .75rem;  }
.w-3\.5  { width: .875rem; }   .h-3\.5  { height: .875rem; }
.w-4     { width: 1rem;    }   .h-4     { height: 1rem;    }
.w-5     { width: 1.25rem; }   .h-5     { height: 1.25rem; }
.w-6     { width: 1.5rem;  }   .h-6     { height: 1.5rem;  }
.w-7     { width: 1.75rem; }   .h-7     { height: 1.75rem; }
.w-8     { width: 2rem;    }   .h-8     { height: 2rem;    }
.w-9     { width: 2.25rem; }   .h-9     { height: 2.25rem; }
.w-10    { width: 2.5rem;  }   .h-10    { height: 2.5rem;  }
.w-11    { width: 2.75rem; }   .h-11    { height: 2.75rem; }
.w-12    { width: 3rem;    }   .h-12    { height: 3rem;    }
.w-14    { width: 3.5rem;  }   .h-14    { height: 3.5rem;  }
.w-16    { width: 4rem;    }   .h-16    { height: 4rem;    }
.w-20    { width: 5rem;    }   .h-20    { height: 5rem;    }
.w-24    { width: 6rem;    }   .h-24    { height: 6rem;    }
.w-32    { width: 8rem;    }
.min-w-0 { min-width: 0; }
.min-h-0 { min-height: 0; }
.min-h-screen { min-height: 100vh; }

/* ── Padding ── */
.p-0   { padding: 0; }
.p-1   { padding: .25rem; }
.p-1\.5{ padding: .375rem; }
.p-2   { padding: .5rem; }
.p-2\.5{ padding: .625rem; }
.p-3   { padding: .75rem; }
.p-4   { padding: 1rem; }
.p-5   { padding: 1.25rem; }
.p-6   { padding: 1.5rem; }
.p-8   { padding: 2rem; }
.px-1   { padding-left: .25rem;  padding-right: .25rem;  }
.px-1\.5{ padding-left: .375rem; padding-right: .375rem; }
.px-2   { padding-left: .5rem;   padding-right: .5rem;   }
.px-2\.5{ padding-left: .625rem; padding-right: .625rem; }
.px-3   { padding-left: .75rem;  padding-right: .75rem;  }
.px-4   { padding-left: 1rem;    padding-right: 1rem;    }
.px-5   { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6   { padding-left: 1.5rem;  padding-right: 1.5rem;  }
.py-0\.5{ padding-top: .125rem;  padding-bottom: .125rem; }
.py-1   { padding-top: .25rem;   padding-bottom: .25rem;  }
.py-1\.5{ padding-top: .375rem;  padding-bottom: .375rem; }
.py-2   { padding-top: .5rem;    padding-bottom: .5rem;   }
.py-2\.5{ padding-top: .625rem;  padding-bottom: .625rem; }
.py-3   { padding-top: .75rem;   padding-bottom: .75rem;  }
.py-3\.5{ padding-top: .875rem;  padding-bottom: .875rem; }
.py-4   { padding-top: 1rem;     padding-bottom: 1rem;    }
.py-5   { padding-top: 1.25rem;  padding-bottom: 1.25rem; }
.py-6   { padding-top: 1.5rem;   padding-bottom: 1.5rem;  }
.py-8   { padding-top: 2rem;     padding-bottom: 2rem;    }
.py-10  { padding-top: 2.5rem;   padding-bottom: 2.5rem;  }
.pt-0   { padding-top: 0; }
.pt-0\.5{ padding-top: .125rem; }
.pt-1   { padding-top: .25rem;  }
.pt-1\.5{ padding-top: .375rem; }
.pt-2   { padding-top: .5rem;   }
.pt-3   { padding-top: .75rem;  }
.pt-4   { padding-top: 1rem;    }
.pt-5   { padding-top: 1.25rem; }
.pt-6   { padding-top: 1.5rem;  }
.pt-8   { padding-top: 2rem;    }
.pb-0   { padding-bottom: 0; }
.pb-1   { padding-bottom: .25rem; }
.pb-2   { padding-bottom: .5rem;  }
.pb-3   { padding-bottom: .75rem; }
.pb-4   { padding-bottom: 1rem;   }
.pb-5   { padding-bottom: 1.25rem;}
.pb-6   { padding-bottom: 1.5rem; }
.pb-8   { padding-bottom: 2rem;   }
.pb-10  { padding-bottom: 2.5rem; }
.pl-1   { padding-left: .25rem; }
.pl-2   { padding-left: .5rem;  }
.pl-3   { padding-left: .75rem; }
.pl-4   { padding-left: 1rem;   }
.pr-1   { padding-right: .25rem; }
.pr-2   { padding-right: .5rem;  }
.pr-3   { padding-right: .75rem; }
.pr-4   { padding-right: 1rem;   }

/* ── Margin ── */
.m-0    { margin: 0; }
.m-auto { margin: auto; }
.mx-auto{ margin-left: auto; margin-right: auto; }
.mx-1   { margin-left: .25rem;  margin-right: .25rem;  }
.mx-2   { margin-left: .5rem;   margin-right: .5rem;   }
.mx-4   { margin-left: 1rem;    margin-right: 1rem;    }
.my-1   { margin-top: .25rem;   margin-bottom: .25rem;  }
.my-2   { margin-top: .5rem;    margin-bottom: .5rem;   }
.my-4   { margin-top: 1rem;     margin-bottom: 1rem;    }
.mt-0   { margin-top: 0; }
.mt-0\.5{ margin-top: .125rem; }
.mt-1   { margin-top: .25rem;  }
.mt-1\.5{ margin-top: .375rem; }
.mt-2   { margin-top: .5rem;   }
.mt-3   { margin-top: .75rem;  }
.mt-4   { margin-top: 1rem;    }
.mt-5   { margin-top: 1.25rem; }
.mt-6   { margin-top: 1.5rem;  }
.mt-8   { margin-top: 2rem;    }
.mb-0   { margin-bottom: 0; }
.mb-0\.5{ margin-bottom: .125rem; }
.mb-1   { margin-bottom: .25rem;  }
.mb-1\.5{ margin-bottom: .375rem; }
.mb-2   { margin-bottom: .5rem;   }
.mb-3   { margin-bottom: .75rem;  }
.mb-4   { margin-bottom: 1rem;    }
.mb-5   { margin-bottom: 1.25rem; }
.mb-6   { margin-bottom: 1.5rem;  }
.mb-8   { margin-bottom: 2rem;    }
.mb-10  { margin-bottom: 2.5rem;  }
.ml-1   { margin-left: .25rem; }
.ml-2   { margin-left: .5rem;  }
.ml-auto{ margin-left: auto;   }
.mr-1   { margin-right: .25rem; }
.mr-2   { margin-right: .5rem;  }
.mr-auto{ margin-right: auto;   }
.-mx-1  { margin-left: -.25rem; margin-right: -.25rem; }

/* ── Space-Y / Space-X ── */
.space-y-1 > * + * { margin-top: .25rem;  }
.space-y-2 > * + * { margin-top: .5rem;   }
.space-y-3 > * + * { margin-top: .75rem;  }
.space-y-4 > * + * { margin-top: 1rem;    }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem;  }
.space-x-2 > * + * { margin-right: .5rem; }
.space-x-3 > * + * { margin-right: .75rem;}

/* ── Border radius ── */
.rounded        { border-radius: .25rem; }
.rounded-sm     { border-radius: .125rem; }
.rounded-md     { border-radius: .375rem; }
.rounded-lg     { border-radius: .5rem; }
.rounded-xl     { border-radius: .75rem; }
.rounded-2xl    { border-radius: 1rem; }
.rounded-3xl    { border-radius: 1.5rem; }
.rounded-full   { border-radius: 9999px; }
.rounded-none   { border-radius: 0; }
.rounded-t-xl   { border-top-left-radius: .75rem; border-top-right-radius: .75rem; }
.rounded-b-xl   { border-bottom-left-radius: .75rem; border-bottom-right-radius: .75rem; }
.rounded-t-2xl  { border-top-left-radius: 1rem; border-top-right-radius: 1rem; }
.rounded-b-2xl  { border-bottom-left-radius: 1rem; border-bottom-right-radius: 1rem; }

/* ── Typography ── */
.text-xs   { font-size: .75rem;   line-height: 1rem;    }
.text-sm   { font-size: .875rem;  line-height: 1.25rem; }
.text-base { font-size: 1rem;     line-height: 1.5rem;  }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem;  line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem;   line-height: 2rem;    }
.text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl  { font-size: 2.25rem;  line-height: 2.5rem;  }
.font-thin       { font-weight: 100; }
.font-light      { font-weight: 300; }
.font-normal     { font-weight: 400; }
.font-medium     { font-weight: 500; }
.font-semibold   { font-weight: 600; }
.font-bold       { font-weight: 700; }
.font-extrabold  { font-weight: 800; }
.font-black      { font-weight: 900; }
.text-left   { text-align: left;   }
.text-center { text-align: center; }
.text-right  { text-align: right;  }
.leading-none     { line-height: 1; }
.leading-tight    { line-height: 1.25; }
.leading-snug     { line-height: 1.375; }
.leading-normal   { line-height: 1.5; }
.leading-relaxed  { line-height: 1.625; }
.leading-loose    { line-height: 2; }
.tracking-wide    { letter-spacing: .025em; }
.tracking-wider   { letter-spacing: .05em; }
.whitespace-nowrap{ white-space: nowrap; }
.whitespace-pre   { white-space: pre; }
.truncate         { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uppercase        { text-transform: uppercase; }
.lowercase        { text-transform: lowercase; }
.antialiased      { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.ltr              { direction: ltr; }
.rtl              { direction: rtl; }

/* ── Colors (common) ── */
.text-white      { color: #fff; }
.text-black      { color: #000; }
.text-current    { color: currentColor; }
/* slate */
.text-slate-400  { color: #94a3b8; }
.text-slate-500  { color: #64748b; }
.text-slate-600  { color: #475569; }
.text-slate-700  { color: #334155; }
.text-slate-800  { color: #1e293b; }
.text-slate-900  { color: #0f172a; }
/* stone */
.text-stone-400  { color: #a8a29e; }
.text-stone-500  { color: #78716c; }
.text-stone-600  { color: #57534e; }
.text-stone-700  { color: #44403c; }
.text-stone-800  { color: #292524; }
.text-stone-900  { color: #1c1917; }
.text-stone-950  { color: #0c0a09; }
/* amber */
.text-amber-500  { color: #f59e0b; }
.text-amber-600  { color: #d97706; }
.text-amber-700  { color: #b45309; }
.text-amber-800  { color: #92400e; }
/* emerald/teal/green */
.text-emerald-400{ color: #34d399; }
.text-teal-600   { color: #0d9488; }
.text-teal-700   { color: #0f766e; }
.text-green-600  { color: #16a34a; }
.text-green-700  { color: #15803d; }
/* red */
.text-red-500    { color: #ef4444; }
.text-red-600    { color: #dc2626; }
.text-red-700    { color: #b91c1c; }
/* blue */
.text-blue-600   { color: #2563eb; }
.text-blue-700   { color: #1d4ed8; }
/* gray */
.text-gray-400   { color: #9ca3af; }
.text-gray-500   { color: #6b7280; }
.text-gray-600   { color: #4b5563; }
.text-gray-700   { color: #374151; }
.text-gray-800   { color: #1f2937; }
.text-gray-900   { color: #111827; }
.text-gray-950   { color: #030712; }

/* Backgrounds */
.bg-white        { background-color: #fff; }
.bg-transparent  { background-color: transparent; }
.bg-slate-50     { background-color: #f8fafc; }
.bg-slate-100    { background-color: #f1f5f9; }
.bg-slate-200    { background-color: #e2e8f0; }
.bg-gray-50      { background-color: #f9fafb; }
.bg-gray-100     { background-color: #f3f4f6; }
.bg-gray-200     { background-color: #e5e7eb; }
.bg-gray-700     { background-color: #374151; }
.bg-gray-800     { background-color: #1f2937; }
.bg-green-500    { background-color: #22c55e; }
.bg-emerald-500  { background-color: #10b981; }
.bg-red-500      { background-color: #ef4444; }
.bg-amber-400    { background-color: #fbbf24; }
.bg-amber-500    { background-color: #f59e0b; }
.bg-yellow-50    { background-color: #fefce8; }

/* ── Border ── */
.border       { border-width: 1px; border-style: solid; }
.border-0     { border: 0; }
.border-2     { border-width: 2px; border-style: solid; }
.border-t     { border-top-width: 1px; border-top-style: solid; }
.border-b     { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l     { border-left-width: 1px; border-left-style: solid; }
.border-r     { border-right-width: 1px; border-right-style: solid; }
.border-dashed{ border-style: dashed; }
.border-dotted{ border-style: dotted; }
.border-none  { border-style: none; }
.border-gray-200  { border-color: #e5e7eb; }
.border-gray-300  { border-color: #d1d5db; }
.border-slate-200 { border-color: #e2e8f0; }
.border-transparent{ border-color: transparent; }

/* ── Shadow ── */
.shadow      { box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1); }
.shadow-sm   { box-shadow: 0 1px 2px 0 rgba(0,0,0,.05); }
.shadow-md   { box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1); }
.shadow-lg   { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1); }
.shadow-xl   { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); }
.shadow-none { box-shadow: none; }

/* ── Position ── */
.static   { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.sticky   { position: sticky; }
.top-0    { top: 0; }
.right-0  { right: 0; }
.bottom-0 { bottom: 0; }
.left-0   { left: 0; }
.inset-0  { top: 0; right: 0; bottom: 0; left: 0; }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* ── Z-index ── */
.z-0   { z-index: 0; }
.z-10  { z-index: 10; }
.z-20  { z-index: 20; }
.z-50  { z-index: 50; }
.z-100 { z-index: 100; }

/* ── Overflow ── */
.overflow-hidden  { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-auto    { overflow: auto; }
.overflow-scroll  { overflow: scroll; }
.overflow-x-hidden{ overflow-x: hidden; }
.overflow-y-auto  { overflow-y: auto; }

/* ── Cursor ── */
.cursor-pointer      { cursor: pointer; }
.cursor-not-allowed  { cursor: not-allowed; }
.cursor-default      { cursor: default; }
.pointer-events-none { pointer-events: none; }

/* ── Opacity ── */
.opacity-0   { opacity: 0; }
.opacity-40  { opacity: .4; }
.opacity-50  { opacity: .5; }
.opacity-70  { opacity: .7; }
.opacity-90  { opacity: .9; }
.opacity-100 { opacity: 1; }

/* ── Transition ── */
.transition     { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(.4,0,.2,1); transition-duration: .15s; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(.4,0,.2,1); transition-duration: .15s; }
.duration-200   { transition-duration: .2s; }

/* ── Select / user-select ── */
.select-none { user-select: none; }
.select-all  { user-select: all; }

/* ── Object fit ── */
.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center  { object-position: center; }

/* ── Misc ── */
.antialiased    { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.sr-only        { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.not-sr-only    { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }
.appearance-none{ -webkit-appearance: none; appearance: none; }
.resize-none    { resize: none; }
.outline-none   { outline: 0; }
.list-none      { list-style-type: none; }
.break-all      { word-break: break-all; }
.break-words    { overflow-wrap: break-word; }

/* ── Ring (focus outline substitute) ── */
.ring-1 { box-shadow: 0 0 0 1px rgba(0,0,0,.1); }
.ring-2 { box-shadow: 0 0 0 2px rgba(59,130,246,.5); }
.ring-offset-2 { /* handled by box-shadow offset, skip */ }

/* ── Aspect ratio ── */
.aspect-square { aspect-ratio: 1/1; }
.aspect-video  { aspect-ratio: 16/9; }

/* ── Tab size ── */
.tabular-nums { font-variant-numeric: tabular-nums; }

/* ── Transform / Rotate ── */
.rotate-0   { transform: rotate(0deg); }
.rotate-45  { transform: rotate(45deg); }
.rotate-90  { transform: rotate(90deg); }
.rotate-180 { transform: rotate(180deg); }
.-rotate-90 { transform: rotate(-90deg); }

/* ── H-px (1px divider) ── */
.h-px { height: 1px; }

/* ── Tiny sizes (0.625rem = 10px) ── */
.w-2\.5 { width: .625rem; }
.h-2\.5 { height: .625rem; }

/* ── Gap 3.5 ── */
.gap-3\.5 { gap: .875rem; }

/* ── Inline-size / container max ── */
.w-screen { width: 100vw; }
.h-screen  { height: 100vh; }

/* ── Overflow-x scroll (tabs) ── */
.overflow-x-scroll { overflow-x: scroll; }
.overflow-x-auto   { overflow-x: auto; }

/* ── Visibility ── */
.invisible { visibility: hidden; }
.visible   { visibility: visible; }

/* ── Arbitrary text sizes used in existing templates ── */
.text-\[9px\]  { font-size: 9px;  line-height: 1.4; }
.text-\[10px\] { font-size: 10px; line-height: 1.4; }
.text-\[11px\] { font-size: 11px; line-height: 1.5; }

/* ── Gradient utilities (used in deposit_success, orders) ── */
.bg-gradient-to-r  { background-image: linear-gradient(to right,  var(--tw-grad-from, transparent), var(--tw-grad-to, transparent)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-grad-from, transparent), var(--tw-grad-to, transparent)); }
.from-amber-500 { --tw-grad-from: #f59e0b; background-image: linear-gradient(to right, #f59e0b, var(--tw-grad-to, #f59e0b)); }
.from-amber-600 { --tw-grad-from: #d97706; background-image: linear-gradient(to right, #d97706, var(--tw-grad-to, #d97706)); }
.to-amber-500   { --tw-grad-to: #f59e0b; }
.to-amber-400   { --tw-grad-to: #fbbf24; }
.from-emerald-600 { --tw-grad-from: #059669; background-image: linear-gradient(to right, #059669, var(--tw-grad-to, #059669)); }
.to-emerald-500   { --tw-grad-to: #10b981; }
.from-red-600   { --tw-grad-from: #dc2626; background-image: linear-gradient(to right, #dc2626, var(--tw-grad-to, #dc2626)); }
.to-red-500     { --tw-grad-to: #ef4444; }

/* ── Extra padding for py-3.5 ── */
.py-3\.5 { padding-top: .875rem; padding-bottom: .875rem; }
.px-3\.5 { padding-left: .875rem; padding-right: .875rem; }

/* ── Icon helper (Tabler Icons sprite, جایگزین ایموجی) ── */
.icon {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.2em;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}
.icon-filled { fill: currentColor; stroke: none; }
