/* ============================================================
   Portal del Empleado · Vidoomy
   Sistema visual — marca Vidoomy
   ============================================================ */

:root {
  /* Marca */
  --pink: #FF176B;
  --pink-strong: #FF246B;
  --purple: #5323C5;
  --purple-2: #8F23C4;
  --grad: linear-gradient(135deg, #8F23C4 0%, #FF246B 100%);
  --grad-soft: linear-gradient(135deg, rgba(143,35,196,.12), rgba(255,36,107,.12));

  /* Neutros */
  --ink: #1A1A1A;
  --ink-2: #3a3a40;
  --muted: #8b8b95;
  --line: #ececf1;
  --paper: #F7F7F7;
  --white: #ffffff;

  /* Estados */
  --green: #10b981;
  --amber: #f59e0b;
  --blue: #3b82f6;
  --red: #ef4444;

  /* Sistema */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(26,26,26,.04), 0 2px 8px rgba(26,26,26,.05);
  --shadow-md: 0 6px 24px rgba(26,26,26,.08);
  --shadow-lg: 0 20px 60px rgba(26,26,26,.16);
  --sidebar-w: 264px;
  --topbar-h: 68px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html, body {
  height: 100%;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; }

/* ---------- Logo / marca ---------- */
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--grad);
  display: grid; place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 4px 14px rgba(255,36,107,.35);
}
.brand .mark svg { width: 14px; height: 14px; }
.brand .word { font-size: 19px; }
.brand .word b { font-weight: 800; }
.brand .word .sub { display:block; font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }

/* ============================================================
   LOGIN
   ============================================================ */
.login-wrap { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 100vh; }

.login-hero {
  position: relative;
  background: var(--grad);
  color: #fff;
  padding: 56px 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.login-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 80% 10%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(500px 500px at 10% 90%, rgba(255,255,255,.10), transparent 60%);
  pointer-events: none;
}
.login-hero .brand { color: #fff; position: relative; z-index: 1; }
.login-hero .brand .mark { background: rgba(255,255,255,.18); box-shadow: none; backdrop-filter: blur(4px); }
.login-hero .brand .word .sub { color: rgba(255,255,255,.8); }
.login-hero .hero-body { position: relative; z-index: 1; max-width: 460px; }
.login-hero h1 { font-size: 40px; line-height: 1.1; letter-spacing: -.03em; font-weight: 800; margin-bottom: 18px; }
.login-hero p { font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,.9); }
.login-hero .hero-points { list-style: none; margin-top: 30px; display: grid; gap: 14px; }
.login-hero .hero-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,.95); }
.login-hero .hero-points .dot { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.18); display:grid; place-items:center; flex:0 0 auto; font-size: 13px; }
.login-hero .foot { position: relative; z-index: 1; font-size: 13px; color: rgba(255,255,255,.7); }

.login-panel { display: grid; place-items: center; padding: 40px; background: var(--white); }
.login-card { width: 100%; max-width: 380px; }
.login-card .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--pink); }
.login-card h2 { font-size: 26px; letter-spacing: -.02em; margin: 8px 0 6px; }
.login-card .lead { color: var(--muted); font-size: 14.5px; margin-bottom: 28px; }

.btn-google {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  padding: 13px 16px; border-radius: 12px; font-size: 15px; font-weight: 600;
  transition: border-color .15s, box-shadow .15s, transform .05s;
}
.btn-google:hover { border-color: #d9d9e3; box-shadow: var(--shadow-sm); }
.btn-google:active { transform: translateY(1px); }
.btn-google svg { width: 20px; height: 20px; }

.divider { display: flex; align-items: center; gap: 14px; margin: 22px 0; color: var(--muted); font-size: 12.5px; }
.divider::before, .divider::after { content: ""; height: 1px; background: var(--line); flex: 1; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--ink-2); }
.field input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  font-size: 15px; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(83,35,197,.12); }
.field-row { display: flex; justify-content: space-between; align-items: center; }
.field-row a { font-size: 12.5px; color: var(--purple); font-weight: 600; }

.btn-primary {
  width: 100%; background: var(--grad); color: #fff; padding: 13px 16px; border-radius: 12px;
  font-size: 15px; font-weight: 700; letter-spacing: .01em; transition: filter .15s, transform .05s, box-shadow .2s;
  box-shadow: 0 8px 22px rgba(255,36,107,.28);
}
.btn-primary:hover { filter: brightness(1.05); box-shadow: 0 10px 28px rgba(255,36,107,.36); }
.btn-primary:active { transform: translateY(1px); }

.login-note { margin-top: 22px; font-size: 12.5px; color: var(--muted); text-align: center; line-height: 1.6; }
.demo-hint { font-weight: 500; color: var(--muted); font-size: 11.5px; }
.select-wrap.light { position: relative; }
.select-wrap.light svg { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); pointer-events: none; }
.select-wrap.light select {
  width: 100%; appearance: none; -webkit-appearance: none;
  padding: 12px 40px 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: #fff; cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.select-wrap.light select:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(83,35,197,.12); }

/* ============================================================
   APP SHELL
   ============================================================ */
.app { display: grid; grid-template-columns: var(--sidebar-w) 1fr; min-height: 100vh; }

.sidebar {
  background: var(--ink); color: #fff;
  padding: 22px 16px; display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
}
.sidebar .brand { color: #fff; padding: 6px 8px 22px; }
.sidebar .brand .word .sub { color: rgba(255,255,255,.55); }

.nav-label { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); padding: 0 12px; margin: 10px 0 8px; }
.nav { display: flex; flex-direction: column; gap: 4px; }
.nav-item {
  display: flex; align-items: center; gap: 13px; width: 100%;
  padding: 11px 12px; border-radius: 11px; color: rgba(255,255,255,.72);
  font-size: 14.5px; font-weight: 600; text-align: left; transition: background .15s, color .15s;
}
.nav-item svg { width: 19px; height: 19px; flex: 0 0 auto; opacity: .9; }
.nav-item:hover { background: rgba(255,255,255,.07); color: #fff; }
.nav-item.active { background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(255,36,107,.35); }
.nav-item .badge { margin-left: auto; background: rgba(255,255,255,.22); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.nav-item.active .badge { background: rgba(255,255,255,.28); }

/* Selector de equipo (demo) */
.team-switch { margin-top: 18px; padding: 0 4px; }
.team-switch .nav-label { display: flex; align-items: center; gap: 8px; }
.demo-tag { font-size: 8.5px; font-weight: 800; letter-spacing: .08em; color: #fff; background: var(--grad); padding: 2px 6px; border-radius: 999px; }
.select-wrap { position: relative; }
.select-wrap svg { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: rgba(255,255,255,.5); pointer-events: none; }
#team-select {
  width: 100%; appearance: none; -webkit-appearance: none;
  background: rgba(255,255,255,.07); color: #fff; border: 1px solid rgba(255,255,255,.14);
  border-radius: 11px; padding: 11px 34px 11px 13px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background .15s, border-color .15s;
}
#team-select:hover { background: rgba(255,255,255,.12); }
#team-select:focus { outline: none; border-color: rgba(255,255,255,.35); }
#team-select option { color: #1A1A1A; }

.sidebar .spacer { flex: 1; }
.user-chip { display: flex; align-items: center; gap: 11px; padding: 10px; border-radius: 12px; background: rgba(255,255,255,.06); }
.user-chip .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 700; font-size: 14px; flex: 0 0 auto; }
.user-chip .meta { line-height: 1.25; min-width: 0; }
.user-chip .meta .n { font-size: 13.5px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-chip .meta .r { font-size: 11.5px; color: rgba(255,255,255,.55); }
.user-chip .logout { margin-left: auto; color: rgba(255,255,255,.5); padding: 4px; border-radius: 8px; }
.user-chip .logout:hover { color: #fff; background: rgba(255,255,255,.1); }

/* ---------- Main ---------- */
.main { min-width: 0; display: flex; flex-direction: column; }
.topbar {
  height: var(--topbar-h); background: rgba(247,247,247,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 18px; padding: 0 32px;
}
.topbar .page-title { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.search {
  margin-left: auto; display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px; padding: 9px 14px; width: 300px;
  transition: border-color .15s, box-shadow .15s;
}
.search:focus-within { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(83,35,197,.1); }
.search svg { width: 17px; height: 17px; color: var(--muted); flex: 0 0 auto; }
.search input { border: none; outline: none; font-size: 14px; width: 100%; background: none; color: var(--ink); }
.icon-btn { position: relative; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: var(--ink-2); background: #fff; border: 1.5px solid var(--line); transition: border-color .15s; }
.icon-btn:hover { border-color: #d9d9e3; }
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn .dot { position: absolute; top: 9px; right: 10px; width: 8px; height: 8px; background: var(--pink); border-radius: 50%; border: 2px solid #fff; }

.content { padding: 32px; max-width: 1180px; width: 100%; }
.section { display: none; animation: fade .25s ease; }
.section.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.section-head { margin-bottom: 24px; }
.section-head h1 { font-size: 27px; letter-spacing: -.025em; margin-bottom: 6px; }
.section-head p { color: var(--muted); font-size: 15px; max-width: 620px; line-height: 1.55; }

/* ---------- Access banner + groups ---------- */
.access-banner {
  display: flex; align-items: center; gap: 13px;
  background: var(--grad-soft); border: 1px solid rgba(143,35,196,.15);
  border-radius: 14px; padding: 14px 18px; margin-bottom: 26px; font-size: 14px; color: var(--ink-2); line-height: 1.5;
}
.access-banner b { color: var(--ink); font-weight: 700; }
.access-banner .ab-ico { width: 38px; height: 38px; border-radius: 11px; background: #fff; display: grid; place-items: center; flex: 0 0 auto; box-shadow: var(--shadow-sm); }
.access-banner .ab-ico svg { width: 20px; height: 20px; }

.group { margin-bottom: 34px; }
.group-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.group-head .group-ico { width: 34px; height: 34px; border-radius: 10px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; flex: 0 0 auto; }
.group-head .group-ico svg { width: 18px; height: 18px; }
.group-head h2 { font-size: 17px; letter-spacing: -.02em; }
.group-head span { font-size: 12.5px; color: var(--muted); }
.mini-empty { grid-column: 1/-1; padding: 22px; text-align: center; color: var(--muted); font-size: 13.5px; background: #fff; border: 1px dashed var(--line); border-radius: 14px; }

/* ---------- Department filter pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.pill {
  padding: 8px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  background: #fff; color: var(--ink-2); border: 1.5px solid var(--line); transition: all .15s;
}
.pill:hover { border-color: #d9d9e3; }
.pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Cards grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .2s, border-color .15s;
  display: flex; flex-direction: column; gap: 14px;
}
.card.clickable { cursor: pointer; }
.card.clickable:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--purple);
}
.card .ico svg { width: 22px; height: 22px; }
.card h3 { font-size: 16.5px; letter-spacing: -.01em; }
.card .desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; flex: 1; }
.card .card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 2px; }
.card .count { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.card .go { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--pink); }
.card .go svg { width: 15px; height: 15px; transition: transform .15s; }
.card.clickable:hover .go svg { transform: translateX(3px); }

/* ---------- Procedure row / list ---------- */
.proc-list { display: flex; flex-direction: column; gap: 12px; }
.proc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 18px;
  transition: box-shadow .2s, border-color .15s;
}
.proc:hover { box-shadow: var(--shadow-md); }
.proc .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-soft); color: var(--purple); display: grid; place-items: center; flex: 0 0 auto; }
.proc .ico svg { width: 21px; height: 21px; }
.proc .body { min-width: 0; flex: 1; }
.proc .body h4 { font-size: 15.5px; margin-bottom: 3px; }
.proc .body p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.proc .body .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }
.proc .tag { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 600; color: var(--ink-2); background: var(--paper); border: 1px solid var(--line); padding: 3px 9px; border-radius: 999px; }
.proc .tag svg { width: 12px; height: 12px; }
.proc .tag.owner { color: var(--purple); background: rgba(83,35,197,.07); border-color: rgba(83,35,197,.15); }
.proc .sla { font-size: 12px; color: var(--muted); white-space: nowrap; text-align: right; }
.proc .sla b { display: block; color: var(--ink); font-size: 13px; }
.btn-request {
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 11px; font-size: 13.5px; font-weight: 700;
  white-space: nowrap; transition: background .15s, transform .05s; flex: 0 0 auto;
}
.btn-request:hover { background: #000; }
.btn-request:active { transform: translateY(1px); }

/* ---------- Notificaciones / tickets ---------- */
.ticket-tabs { display: flex; gap: 6px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.ticket-tab { padding: 10px 4px; margin-right: 18px; font-size: 14px; font-weight: 600; color: var(--muted); border-bottom: 2.5px solid transparent; margin-bottom: -1px; }
.ticket-tab.active { color: var(--ink); border-color: var(--pink); }
.ticket-tab .n { font-size: 12px; color: var(--muted); margin-left: 5px; }

.ticket {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm); margin-bottom: 12px;
  display: flex; align-items: flex-start; gap: 16px;
}
.ticket .stat-ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: 0 0 auto; }
.ticket .stat-ico svg { width: 19px; height: 19px; }
.ticket .body { flex: 1; min-width: 0; }
.ticket .body .top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ticket .body h4 { font-size: 15.5px; }
.ticket .body .ref { font-size: 12px; color: var(--muted); font-weight: 600; }
.ticket .body .meta { font-size: 12.5px; color: var(--muted); margin-top: 5px; }
.ticket .body .meta b { color: var(--ink-2); font-weight: 600; }

.status { font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; letter-spacing: .01em; }
.status.open { background: rgba(59,130,246,.12); color: var(--blue); }
.status.progress { background: rgba(245,158,11,.14); color: var(--amber); }
.status.closed { background: rgba(16,185,129,.13); color: var(--green); }

.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty .ico { width: 64px; height: 64px; border-radius: 20px; background: var(--grad-soft); color: var(--purple); display: grid; place-items: center; margin: 0 auto 16px; }
.empty .ico svg { width: 30px; height: 30px; }
.empty h3 { color: var(--ink); font-size: 17px; margin-bottom: 6px; }

/* ---------- Modal ---------- */
.overlay {
  position: fixed; inset: 0; background: rgba(26,26,26,.5); backdrop-filter: blur(3px);
  display: none; place-items: center; z-index: 100; padding: 24px;
}
.overlay.open { display: grid; animation: fade .18s ease; }
.modal {
  background: #fff; border-radius: 22px; width: 100%; max-width: 520px; box-shadow: var(--shadow-lg);
  max-height: 90vh; overflow: auto; animation: pop .2s cubic-bezier(.2,.8,.3,1);
}
@keyframes pop { from { transform: scale(.96) translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-head { padding: 24px 26px 0; display: flex; gap: 14px; align-items: flex-start; }
.modal-head .ico { width: 48px; height: 48px; border-radius: 13px; background: var(--grad-soft); color: var(--purple); display: grid; place-items: center; flex: 0 0 auto; }
.modal-head .ico svg { width: 23px; height: 23px; }
.modal-head h3 { font-size: 20px; letter-spacing: -.02em; }
.modal-head p { font-size: 13.5px; color: var(--muted); margin-top: 3px; line-height: 1.5; }
.modal-head .x { margin-left: auto; color: var(--muted); width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; }
.modal-head .x:hover { background: var(--paper); color: var(--ink); }
.modal-body { padding: 22px 26px; }
.modal-body .assignee { display: flex; align-items: center; gap: 10px; background: var(--paper); border-radius: 12px; padding: 12px 14px; margin-bottom: 20px; font-size: 13.5px; }
.modal-body .assignee .avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 12px; }
.modal-body .assignee .who b { display: block; }
.modal-body .assignee .who span { color: var(--muted); font-size: 12px; }
.modal-body textarea {
  width: 100%; min-height: 96px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 14.5px; resize: vertical; transition: border-color .15s, box-shadow .15s;
}
.modal-body textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(83,35,197,.1); }
.modal-body select, .modal-body input[type=text] {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; font-family: inherit; font-size: 14.5px; background:#fff;
}
.modal-foot { padding: 0 26px 26px; display: flex; gap: 12px; }
.modal-foot .btn-primary { width: auto; flex: 1; }
.btn-ghost { padding: 13px 20px; border-radius: 12px; font-weight: 700; font-size: 15px; color: var(--ink-2); background: var(--paper); }
.btn-ghost:hover { background: #eeeef2; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 14px 20px; border-radius: 14px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 600;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .check { width: 22px; height: 22px; border-radius: 50%; background: var(--green); display: grid; place-items: center; flex: 0 0 auto; }
.toast .check svg { width: 13px; height: 13px; }

/* ---------- Detail view (manual) ---------- */
.back-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 18px; }
.back-link:hover { color: var(--ink); }
.back-link svg { width: 16px; height: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .login-wrap { grid-template-columns: 1fr; }
  .login-hero { display: none; }
  .app { grid-template-columns: 1fr; }
  .sidebar { position: fixed; z-index: 50; transform: translateX(-100%); transition: transform .25s; width: var(--sidebar-w); }
  .sidebar.open { transform: none; }
  .search { width: auto; flex: 1; }
  .content { padding: 20px; }
  .topbar { padding: 0 16px; }
  .menu-toggle { display: grid !important; }
}
.menu-toggle { display: none; }
