/* ── MechaRusty — Metal & Forge Theme ────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

[x-cloak] { display: none !important; }

/* Scrollbar */
* { scrollbar-width: thin; scrollbar-color: rgba(251,146,60,.45) rgba(15,15,20,.6); }
*::-webkit-scrollbar { width: 6px; height: 6px; }
*::-webkit-scrollbar-thumb { background: rgba(251,146,60,.55); border-radius: 999px; }
*::-webkit-scrollbar-track { background: rgba(10,10,14,.4); }

html { text-rendering: optimizeLegibility; }
body {
  letter-spacing: -0.01em;
  font-family: 'Inter', sans-serif;
}

/* ── Metal background noise texture ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
}
body > div { position: relative; z-index: 1; }

/* ── Glass blur ─── */
.glass { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }

/* ── Field inputs ─── */
.field {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(100,100,120,.35);
  background: rgba(20,20,28,.72);
  padding: .7rem .85rem;
  color: #e8eaf0;
  outline: none;
  font-size: .875rem;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field:focus {
  border-color: rgba(251,146,60,.7);
  box-shadow: 0 0 0 3px rgba(251,146,60,.18), inset 0 1px 3px rgba(0,0,0,.3);
  background: rgba(22,22,32,.95);
}
.field::placeholder { color: rgba(180,180,200,.4); }

/* Light mode fields */
:not(.dark) .field {
  background: rgba(240,240,248,.9);
  color: #1a1a2e;
  border-color: rgba(80,80,110,.25);
}
:not(.dark) .field:focus {
  background: #fff;
  border-color: rgba(234,88,12,.65);
  box-shadow: 0 0 0 3px rgba(234,88,12,.12);
}

/* ── Primary button ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 60%, #fb923c 100%);
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .04em;
  padding: .65rem 1.2rem;
  box-shadow: 0 2px 12px rgba(234,88,12,.35), inset 0 1px 0 rgba(255,255,255,.15);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  text-transform: uppercase;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(234,88,12,.5), inset 0 1px 0 rgba(255,255,255,.2);
  filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0); filter: brightness(.95); }
.btn-primary:disabled { opacity: .5; transform: none; box-shadow: none; filter: none; }

/* dark mode identical */
.dark .btn-primary { background: linear-gradient(135deg, #ea580c 0%, #f97316 60%, #fb923c 100%); color: #fff; }

/* ── Secondary button ─── */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 6px;
  border: 1px solid rgba(120,120,150,.35);
  background: rgba(30,30,42,.6);
  color: #a8aab8;
  font-size: .875rem;
  font-weight: 600;
  padding: .6rem 1rem;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-secondary:hover { background: rgba(50,50,68,.8); color: #e8eaf0; border-color: rgba(251,146,60,.4); }

:not(.dark) .btn-secondary {
  background: rgba(230,230,240,.7);
  color: #3a3a5c;
  border-color: rgba(80,80,110,.2);
}
:not(.dark) .btn-secondary:hover { background: rgba(210,210,228,.9); color: #1a1a2e; border-color: rgba(234,88,12,.35); }

/* ── Chip / filter pill ─── */
.chip {
  border-radius: 4px;
  border: 1px solid rgba(100,100,130,.3);
  padding: .38rem .7rem;
  color: #8a8c9e;
  background: rgba(22,22,32,.5);
  font-size: .8rem;
  transition: background .15s, color .15s, border-color .15s;
}
.chip:hover { background: rgba(251,146,60,.15); color: #fb923c; border-color: rgba(251,146,60,.5); }

/* ── Navigation ─── */
.nav-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-radius: 6px;
  padding: .58rem .75rem;
  transition: background .15s ease, color .15s ease, border-left .15s ease;
  border-left: 2px solid transparent;
  font-size: .875rem;
  font-weight: 500;
}
.nav-item:hover { border-left-color: rgba(251,146,60,.5); }

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
}
.nav-icon svg { width: 1.1rem; height: 1.1rem; display: block; }

.nav-active {
  background: linear-gradient(90deg, rgba(234,88,12,.22) 0%, rgba(234,88,12,.08) 100%);
  border-left-color: #f97316;
  color: #fb923c;
  font-weight: 700;
}
.dark .nav-active { background: linear-gradient(90deg, rgba(251,146,60,.2) 0%, rgba(251,146,60,.05) 100%); border-left-color: #fb923c; color: #fdba74; }

.nav-idle { color: #6b6d80; }
.nav-idle:hover { background: rgba(251,146,60,.07); color: #c8cadc; }
.dark .nav-idle { color: #5c5e72; }
.dark .nav-idle:hover { background: rgba(251,146,60,.09); color: #a8aabb; }

/* ── Cards & panels ─── */
.panel,
.metric-card,
.info-card,
.table-card {
  border: 1px solid rgba(60,62,80,.7);
  background: rgba(18,18,26,.75);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Light mode cards */
:not(.dark) .panel,
:not(.dark) .metric-card,
:not(.dark) .info-card,
:not(.dark) .table-card {
  background: rgba(240,241,250,.92);
  border-color: rgba(180,182,210,.45);
  box-shadow: 0 1px 6px rgba(30,30,60,.08), inset 0 1px 0 rgba(255,255,255,.7);
}

.dark .panel,
.dark .metric-card,
.dark .info-card,
.dark .table-card {
  border-color: rgba(60,62,80,.7);
  background: rgba(14,14,22,.8);
}

/* Metric cards – orange accent stripe */
.metric-card {
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}
.metric-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, #f97316, #ea580c);
  border-radius: 2px 0 0 2px;
}
.metric-label { font-size: .72rem; color: #6b6d80; text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }
.dark .metric-label { color: #5c5e72; }
.metric-value { margin-top: .45rem; font-size: 2rem; line-height: 1; font-weight: 800; letter-spacing: -.04em; color: #e8eaf0; }
:not(.dark) .metric-value { color: #1a1a2e; }

.info-card { padding: 1.2rem; }
.info-card h4 { margin-top: .75rem; font-weight: 700; color: #e0e2f0; }
.info-card p { margin-top: .4rem; color: #6b6d80; font-size: .875rem; line-height: 1.55; }
.dark .info-card h4 { color: #e8eaf8; }
.dark .info-card p { color: #5c5e72; }
:not(.dark) .info-card h4 { color: #1a1a2e; }
:not(.dark) .info-card p { color: #5a5c70; }

.info-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(251,146,60,.15);
  color: #f97316;
  border: 1px solid rgba(251,146,60,.25);
}

/* ── Section headings ─── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.section-head h3 {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  color: #e8eaf0;
  text-transform: uppercase;
}
:not(.dark) .section-head h3 { color: #1a1a2e; }

.section-kicker {
  text-transform: uppercase;
  font-size: .65rem;
  letter-spacing: .1em;
  color: #f97316;
  margin-bottom: .15rem;
  font-weight: 700;
}
.dark .section-kicker { color: #fb923c; }

/* ── Data table ─── */
.table-card { overflow: hidden; }
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .875rem;
}
.data-table thead { background: rgba(20,20,30,.9); }
.dark .data-table thead { background: rgba(10,10,16,.7); }
:not(.dark) .data-table thead { background: rgba(220,222,240,.7); }

.data-table th {
  padding: .75rem 1rem;
  text-align: left;
  font-size: .68rem;
  font-weight: 700;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(251,146,60,.2);
}
.dark .data-table th { color: #fb923c; border-bottom-color: rgba(251,146,60,.15); }
:not(.dark) .data-table th { color: #c2440a; border-bottom-color: rgba(234,88,12,.2); }

.data-table td {
  padding: .85rem 1rem;
  border-top: 1px solid rgba(40,42,60,.8);
  color: #c8cadc;
}
.dark .data-table td { border-top-color: rgba(30,32,50,.9); color: #a8aabb; }
:not(.dark) .data-table td { border-top-color: rgba(180,182,210,.4); color: #2a2a40; }

.data-table tbody tr { transition: background .12s ease; }
.data-table tbody tr:hover { background: rgba(251,146,60,.05); }
.dark .data-table tbody tr:hover { background: rgba(251,146,60,.06); }

.muted { color: #5c5e72; }
.dark .muted { color: #4a4c60; }

/* ── Badge / pill ─── */
.badge {
  display: inline-flex;
  border-radius: 4px;
  background: rgba(30,32,48,.8);
  color: #a8aabb;
  padding: .25rem .55rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: 1px solid rgba(60,62,85,.6);
}
.dark .badge { background: rgba(20,22,38,.9); color: #8a8ca0; }
:not(.dark) .badge { background: rgba(220,222,240,.8); color: #3a3c58; border-color: rgba(160,162,190,.4); }

.empty-cell {
  padding: 2.5rem 1rem !important;
  text-align: center;
  color: #4a4c60;
}

/* ── Link actions ─── */
.link-action { color: #f97316; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.link-action:hover { color: #fb923c; text-decoration: underline; }
.link-danger { color: #ef4444; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.link-danger:hover { color: #f87171; text-decoration: underline; }

/* ── Modal ─── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,8,.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-card {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(251,146,60,.2);
  background: rgba(14,14,22,.98);
  padding: 1.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(251,146,60,.08);
}
:not(.dark) .modal-card {
  background: rgba(235,236,248,.98);
  border-color: rgba(234,88,12,.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.2), 0 0 0 1px rgba(234,88,12,.1);
}
.dark .modal-card {
  border-color: rgba(251,146,60,.18);
  background: rgba(10,10,18,.98);
}

/* ── Fade in animation ─── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fadeIn { animation: fadeIn .25s ease-out; }

/* ── Sidebar metal gradient ─── */
.sidebar-metal {
  background: linear-gradient(180deg,
    rgba(16,14,20,1) 0%,
    rgba(12,12,18,1) 40%,
    rgba(14,12,20,1) 100%
  );
  border-right: 1px solid rgba(251,146,60,.12) !important;
}
:not(.dark) .sidebar-metal {
  background: linear-gradient(180deg, #1a1825 0%, #12101e 100%);
  border-right: 1px solid rgba(234,88,12,.15) !important;
}

/* ── Top header metal strip ─── */
.header-metal {
  background: rgba(10,10,16,.95);
  border-bottom: 1px solid rgba(251,146,60,.14);
  backdrop-filter: blur(12px);
}
:not(.dark) .header-metal {
  background: rgba(18,16,28,.92);
  border-bottom: 1px solid rgba(234,88,12,.18);
}

/* ── Orange glow utility ─── */
.glow-orange {
  box-shadow: 0 0 18px rgba(251,146,60,.35), 0 0 4px rgba(251,146,60,.2);
}
.text-orange { color: #f97316; }
.dark .text-orange { color: #fb923c; }

/* ── Forge divider ─── */
.forge-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251,146,60,.3), transparent);
  margin: 1.25rem 0;
}

/* ── Status badges themed ─── */
.status-green  { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.25); border-radius: 4px; padding: .2rem .5rem; font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.status-amber  { background: rgba(251,146,60,.15);  color: #fb923c;  border: 1px solid rgba(251,146,60,.3);  border-radius: 4px; padding: .2rem .5rem; font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.status-red    { background: rgba(239,68,68,.15);   color: #f87171;  border: 1px solid rgba(239,68,68,.25);  border-radius: 4px; padding: .2rem .5rem; font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.status-gray   { background: rgba(100,100,130,.12); color: #94a3b8;  border: 1px solid rgba(100,100,130,.2); border-radius: 4px; padding: .2rem .5rem; font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }

/* ═══════════════════════════════════════════════════════════════════════
   MECHARUSTY — METAL OVERRIDE LAYER
   Fuerza el tema metálico acero sobre todas las clases Tailwind grises
   que usan los formularios y tablas generados por scaffold.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Fondo general y texto ─── */
html, body { background-color: #0d0e10 !important; }
.text-gray-100, .text-gray-200 { color: #d0d4d8 !important; }
.text-gray-300 { color: #9aa0a8 !important; }
.text-gray-400, .text-gray-500 { color: #6b7380 !important; }
.text-gray-600 { color: #7a8290 !important; }
.text-gray-700, .text-gray-800, .text-gray-900 { color: #c0c6cc !important; }

/* ── Sidebar y header ─── */
.bg-gray-900, .dark\:bg-gray-900:is(.dark *),
.bg-gray-950, .dark\:bg-gray-950:is(.dark *) {
  background-color: #0d0e10 !important;
}
.bg-gray-800, .dark\:bg-gray-800:is(.dark *) {
  background-color: #141618 !important;
}
.bg-gray-700, .dark\:bg-gray-700:is(.dark *) {
  background-color: #1a1d20 !important;
}

/* ── Bordes en todos los contextos ─── */
.border-gray-700, .dark\:border-gray-700:is(.dark *),
.border-gray-800, .dark\:border-gray-800:is(.dark *) {
  border-color: rgba(70,80,90,.45) !important;
}
.border-gray-200, .dark\:border-gray-200,
.border-gray-300 { border-color: rgba(70,80,90,.35) !important; }

/* ── Inputs y selects ─── */
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
select,
textarea {
  background-color: rgba(18,20,22,.85) !important;
  border-color: rgba(60,72,82,.5) !important;
  color: #c8cdd2 !important;
  border-radius: 6px;
  transition: border-color .15s, box-shadow .15s;
}
input:not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
  border-color: rgba(255,107,0,.65) !important;
  box-shadow: 0 0 0 3px rgba(255,107,0,.15) !important;
  outline: none;
  background-color: rgba(20,23,25,.95) !important;
}
input::placeholder, textarea::placeholder { color: rgba(100,108,116,.55) !important; }
select option { background: #141618; color: #c8cdd2; }

/* ── Labels ─── */
label { color: #8a9099 !important; font-size: .8rem; font-weight: 500; letter-spacing: .025em; }

/* ── Cards y paneles (Tailwind) ─── */
.bg-white, .dark\:bg-gray-800:is(.dark *) {
  background-color: #141618 !important;
}
.rounded-xl, .rounded-lg, .rounded-2xl {
  border-color: rgba(60,72,82,.4);
}
/* Forzar cualquier card visible con borde acero */
[class*="rounded"] {
  --tw-ring-color: rgba(60,72,82,.4);
}

/* ── Clases shadow / card genéricas ─── */
.shadow-sm, .shadow, .shadow-md, .shadow-lg {
  box-shadow: 0 2px 12px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.03) !important;
}

/* ── Tablas Tailwind ─── */
table { border-collapse: separate; border-spacing: 0; }
thead { background: rgba(16,18,20,.95) !important; }
th {
  color: #ff6b00 !important;
  font-size: .68rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  border-bottom: 1px solid rgba(255,107,0,.22) !important;
  background: rgba(13,14,16,.98) !important;
}
td {
  border-top: 1px solid rgba(40,48,56,.7) !important;
  color: #b0b8c0 !important;
}
tbody tr:hover { background: rgba(255,107,0,.04) !important; }

/* ── Botones Brand/Indigo → Naranja forja ─── */
.bg-brand-600, .dark\:bg-brand-600,
[class*="bg-indigo-"], [class*="bg-blue-"],
[class*="bg-violet-"], [class*="bg-purple-"] {
  background-color: #e05a00 !important;
}
.text-brand-600, .dark\:text-brand-600,
[class*="text-indigo-"], [class*="text-blue-"],
[class*="text-violet-"], [class*="text-purple-"] {
  color: #f97316 !important;
}
.border-brand-600, [class*="border-indigo-"],
[class*="border-blue-"], [class*="border-violet-"] {
  border-color: rgba(249,115,22,.45) !important;
}

/* ── Hover states naranja ─── */
.hover\:bg-brand-700:hover,
[class*="hover:bg-indigo-"]:hover,
[class*="hover:bg-blue-"]:hover {
  background-color: #cc4a00 !important;
}

/* ── Ring focus naranja ─── */
[class*="focus:ring-"] { --tw-ring-color: rgba(255,107,0,.35) !important; }
[class*="focus:border-"] { border-color: rgba(255,107,0,.65) !important; }

/* ── Modales ─── */
.fixed.inset-0[class*="bg-black"], .fixed.inset-0[class*="bg-gray"] {
  background-color: rgba(0,0,0,.82) !important;
}
.bg-white.rounded,
.dark\:bg-gray-800.rounded,
.bg-white.rounded-xl,
.bg-white.rounded-lg,
[class*="rounded"][class*="bg-white"],
[class*="rounded"][class*="bg-gray-800"] {
  background: #141618 !important;
  border: 1px solid rgba(70,80,90,.5) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,.75), 0 0 30px rgba(255,107,0,.06) !important;
}

/* ── Sidebar especial: fondo sidebar fijo ─── */
aside, [class*="sidebar"], nav.flex-col,
div.fixed.inset-y-0.flex-col {
  background: linear-gradient(180deg, #0c0d0f 0%, #101214 60%, #0d0e10 100%) !important;
  border-right-color: rgba(255,107,0,.15) !important;
}

/* ── Header top bar ─── */
header {
  background: rgba(10,11,13,.97) !important;
  border-bottom-color: rgba(255,107,0,.16) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.5), 0 1px 0 rgba(255,107,0,.06) !important;
}

/* ── Scrollbar acero/naranja ─── */
* { scrollbar-width: thin; scrollbar-color: rgba(255,107,0,.4) rgba(12,13,14,.7); }
*::-webkit-scrollbar-thumb { background: rgba(255,107,0,.45) !important; }
*::-webkit-scrollbar-track { background: rgba(10,11,13,.5) !important; }

/* ── Forge decorative stripe en el header del modal ─── */
.modal-card::before {
  content: '';
  display: block;
  height: 2px;
  margin: -1.5rem -1.5rem 1.25rem;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, transparent 5%, #ff6b00 30%, #ff8c00 70%, transparent 95%);
  opacity: .9;
}

/* ── Logo / badge icon ─── */
.logo-badge {
  background: linear-gradient(135deg, #1a1c1e, #101214) !important;
  border: 1px solid rgba(255,107,0,.28) !important;
  box-shadow: 0 0 16px rgba(255,107,0,.18) !important;
}

/* ── Active nav item reinforcement ─── */
.nav-active {
  background: linear-gradient(90deg, rgba(255,107,0,.2) 0%, rgba(255,107,0,.06) 100%) !important;
  border-left-color: #ff6b00 !important;
  color: #ff8c00 !important;
}

/* ── Metric card stripe more vivid ─── */
.metric-card::before {
  background: linear-gradient(180deg, #ff6b00, #cc4000) !important;
  width: 4px !important;
  box-shadow: 2px 0 12px rgba(255,107,0,.4);
}

/* ── Toast dark metal ─── */
[class*="toast"], [id*="toast"] {
  background: #1a1c1e !important;
  border: 1px solid rgba(255,107,0,.3) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.6) !important;
  color: #c8cdd2 !important;
}

/* ── Section headers font Rajdhani ─── */
h2, h3, .section-head h3, [class*="text-xl"][class*="font-bold"],
[class*="text-2xl"][class*="font-bold"], [class*="text-lg"][class*="font-bold"] {
  font-family: 'Rajdhani', 'Inter', sans-serif !important;
  letter-spacing: .04em;
}

/* ── Divider lines ─── */
hr, [class*="divide-"] > * + * {
  border-color: rgba(60,72,82,.4) !important;
}

/* ── Empty state text ─── */
.text-gray-400 { color: #5a6370 !important; }
.text-gray-500 { color: #4e5560 !important; }

/* ── KPI number colors ─── */
.metric-value, [class*="text-3xl"][class*="font-"],
[class*="text-4xl"][class*="font-"] { color: #e0e4e8 !important; }

/* ── Forge glow on brand buttons hover ─── */
button[class*="bg-brand"]:hover,
button[class*="btn-primary"]:hover {
  box-shadow: 0 4px 20px rgba(255,107,0,.5) !important;
}
