/* ═══════════════════════════════════════════
   Denali Trading Group — Styles
   Modern, premium, trustworthy
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --primary: #1a3a5c;
  --primary-light: #2a5a8c;
  --primary-dark: #0f2640;
  --accent: #e8a838;
  --accent-hover: #d4952e;
  --bg: #f7f8fb;
  --bg-white: #ffffff;
  --bg-dark: #111827;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-white: #f9fafb;
  --border: #e5e7eb;
  --success: #059669;
  --error: #dc2626;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: .25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── Container ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border: none; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition); line-height: 1;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: var(--primary-dark);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--primary-dark); }
.btn-secondary {
  background: transparent; color: var(--bg-white); border: 2px solid rgba(255,255,255,.4);
}
.btn-secondary:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--primary); border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-block { width: 100%; }

/* ══════════════════
   HEADER / NAV
   ══════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 1.25rem; font-weight: 800; color: var(--primary-dark);
  display: flex; align-items: center; gap: 10px;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--text);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }
.nav-links .btn { padding: 10px 24px; }

/* Mobile hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--bg-white); flex-direction: column;
    padding: 40px 24px; gap: 24px;
    transform: translateX(100%); transition: transform .35s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
}

/* ══════════════════
   HERO
   ══════════════════ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--text-white); padding: 100px 0 120px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,56,.15) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 20px;
}
.hero .subtitle {
  font-size: 1.15rem; opacity: .85; margin-bottom: 36px;
  letter-spacing: .5px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ══════════════════
   SECTIONS
   ══════════════════ */
.section { padding: 80px 0; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--primary-dark); text-align: center; margin-bottom: 12px;
}
.section-subtitle {
  text-align: center; color: var(--text-light); font-size: 1.05rem;
  max-width: 600px; margin: 0 auto 48px;
}

/* ── Benefits ── */
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--bg-white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon {
  font-size: 2rem; margin-bottom: 16px; display: block;
}
.benefit-card h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
  color: var(--primary-dark);
}
.benefit-card p { color: var(--text-light); font-size: .92rem; }

/* ── Service Cards ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-white); border-radius: var(--radius);
  padding: 0; overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: all var(--transition);
  display: flex; flex-direction: column;
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card.popular { border: 2px solid var(--accent); }
.service-badge {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-Consulting { background: #e0e7ff; color: #3730a3; }
.badge-Facebook { background: #dbeafe; color: #1d4ed8; }
.badge-Premium { background: #fef3c7; color: #92400e; }
.badge-Google { background: #dcfce7; color: #166534; }
.badge-Platinum { background: #f3e8ff; color: #6b21a8; }
.badge-Gold { background: #fef3c7; color: #92400e; }
.popular-tag {
  position: absolute; top: 0; right: 24px;
  background: var(--accent); color: var(--primary-dark);
  padding: 6px 16px; border-radius: 0 0 8px 8px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
}
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 {
  font-size: 1.15rem; font-weight: 700; margin: 12px 0 4px;
  color: var(--primary-dark);
}
.service-card-body .price {
  font-size: 1.8rem; font-weight: 800; color: var(--primary);
  margin: 8px 0 12px;
}
.service-card-body .price small { font-size: .85rem; font-weight: 400; color: var(--text-light); }
.service-card-body .desc { color: var(--text-light); font-size: .9rem; flex: 1; margin-bottom: 20px; }
.service-card-actions { display: flex; gap: 10px; }
.service-card-actions .btn { flex: 1; padding: 10px 16px; font-size: .85rem; }

/* ── Process / How it works ── */
.process-steps {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.process-step {
  flex: 1; min-width: 180px; max-width: 220px; text-align: center;
  position: relative;
}
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; margin: 0 auto 16px;
}
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: .85rem; color: var(--text-light); }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.testimonial-card .stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card blockquote {
  font-size: .95rem; color: var(--text); line-height: 1.7;
  margin-bottom: 16px; font-style: italic;
}
.testimonial-author { font-weight: 700; font-size: .9rem; }
.testimonial-company { color: var(--text-light); font-size: .82rem; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden; background: var(--bg-white);
}
.faq-question {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: .95rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg); }
.faq-question .icon {
  font-size: 1.2rem; transition: transform var(--transition);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light); font-size: .9rem; line-height: 1.7;
}

/* ══════════════════
   PRICING PAGE
   ══════════════════ */
.filter-tabs {
  display: flex; gap: 10px; justify-content: center; margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 10px 24px; border: 2px solid var(--border); border-radius: 30px;
  font-size: .88rem; font-weight: 600; cursor: pointer;
  background: var(--bg-white); color: var(--text);
  transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--primary); color: var(--primary); }
.filter-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ══════════════════
   SERVICE DETAIL
   ══════════════════ */
.service-detail { max-width: 800px; margin: 0 auto; }
.service-detail .price-big {
  font-size: 2.5rem; font-weight: 800; color: var(--primary);
  margin: 8px 0 24px;
}
.service-detail h1 {
  font-size: 2rem; font-weight: 800; color: var(--primary-dark);
}
.service-detail .subtitle {
  color: var(--text-light); margin-bottom: 8px;
}
.service-detail .badge-wrap { margin-bottom: 16px; }
.detail-section { margin-top: 32px; }
.detail-section h2 {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 16px;
  color: var(--primary-dark);
}
.check-list li {
  padding: 10px 0; padding-left: 28px; position: relative;
  font-size: .92rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '\2713'; position: absolute; left: 0; color: var(--success);
  font-weight: 700;
}
.outcome-list li::before {
  content: '\2192'; color: var(--accent);
}
.timeline-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; padding: 20px 28px; border-radius: var(--radius-sm);
  margin-top: 24px; font-size: .95rem;
}
.timeline-box strong { display: block; margin-bottom: 4px; }

/* ══════════════════
   FORMS
   ══════════════════ */
.form-card {
  background: var(--bg-white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: .88rem;
  margin-bottom: 6px; color: var(--text);
}
.form-group label .req { color: var(--error); }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .92rem;
  transition: border-color var(--transition);
  background: var(--bg);
}
.form-control:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,.08);
}
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 20px;
}
.form-check input[type="checkbox"] {
  margin-top: 3px; width: 18px; height: 18px;
  accent-color: var(--primary);
}
.form-check label { font-size: .88rem; font-weight: 400; }
.form-error {
  color: var(--error); font-size: .82rem; margin-top: 4px;
  display: none;
}
.form-group.has-error .form-control { border-color: var(--error); }
.form-group.has-error .form-error { display: block; }
.order-summary {
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 24px; margin-bottom: 28px;
  border: 1px solid var(--border);
}
.order-summary h3 { font-size: 1rem; margin-bottom: 8px; }
.order-summary .price { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.hp-field { display: none !important; }

/* ══════════════════
   THANK YOU PAGE
   ══════════════════ */
.thank-you {
  text-align: center; padding: 80px 0;
}
.thank-you .check-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--success); color: #fff; font-size: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.thank-you h1 { font-size: 2rem; margin-bottom: 12px; color: var(--primary-dark); }
.thank-you p { color: var(--text-light); max-width: 500px; margin: 0 auto 32px; font-size: 1.05rem; }

/* ══════════════════
   CONTACT PAGE
   ══════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; border-radius: var(--radius); padding: 40px;
}
.contact-info-card h2 { font-size: 1.4rem; margin-bottom: 24px; }
.contact-info-item {
  display: flex; gap: 14px; margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info-item .icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-item p { font-size: .92rem; opacity: .9; }
.contact-info-item strong { display: block; opacity: 1; margin-bottom: 2px; }

/* ══════════════════
   PRIVACY
   ══════════════════ */
.prose {
  max-width: 800px; margin: 0 auto;
}
.prose h1 { font-size: 2rem; margin-bottom: 24px; color: var(--primary-dark); }
.prose h2 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--primary-dark); }
.prose p { margin-bottom: 16px; color: var(--text); line-height: 1.8; font-size: .95rem; }
.prose ul { padding-left: 24px; margin-bottom: 16px; }
.prose ul li { list-style: disc; margin-bottom: 6px; font-size: .92rem; color: var(--text); }

/* ══════════════════
   FOOTER
   ══════════════════ */
.site-footer {
  background: var(--bg-dark); color: var(--text-white); padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-size: .95rem; font-weight: 700; margin-bottom: 16px;
  color: var(--accent);
}
.footer-col p, .footer-col a {
  font-size: .88rem; color: rgba(255,255,255,.7);
  line-height: 1.8;
}
.footer-col a:hover { color: var(--accent); }
.footer-col .links a { display: block; margin-bottom: 6px; }
.footer-brand { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.footer-brand span { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; text-align: center;
  font-size: .82rem; color: rgba(255,255,255,.5);
}

/* ══════════════════
   ADMIN PANEL
   ══════════════════ */
.admin-wrap {
  display: flex; min-height: 100vh;
}
.admin-sidebar {
  width: 250px; background: var(--primary-dark); color: #fff;
  padding: 24px 0; flex-shrink: 0;
}
.admin-sidebar .logo {
  color: #fff; padding: 0 24px; margin-bottom: 32px;
}
.admin-sidebar nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px; color: rgba(255,255,255,.7);
  font-size: .9rem; transition: all var(--transition);
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active {
  background: rgba(255,255,255,.1); color: #fff;
}
.admin-main { flex: 1; padding: 32px; background: var(--bg); overflow-x: auto; }
.admin-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.admin-header h1 { font-size: 1.6rem; color: var(--primary-dark); }

/* Admin stats */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-bottom: 32px;
}
.stat-card {
  background: var(--bg-white); border-radius: var(--radius-sm);
  padding: 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.stat-card .number { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-card .label { font-size: .85rem; color: var(--text-light); margin-top: 4px; }

/* Admin tables */
.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-white); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.admin-table th, .admin-table td {
  padding: 14px 18px; text-align: left; font-size: .88rem;
  border-bottom: 1px solid var(--border);
}
.admin-table th {
  background: var(--bg); font-weight: 700; color: var(--primary-dark);
  white-space: nowrap;
}
.admin-table tr:hover td { background: rgba(26,58,92,.02); }
.status-badge {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: .76rem; font-weight: 700;
}
.status-New { background: #dbeafe; color: #1d4ed8; }
.status-In-progress { background: #fef3c7; color: #92400e; }
.status-Done { background: #dcfce7; color: #166534; }
.status-Canceled { background: #fee2e2; color: #991b1b; }
.status-Awaiting-payment { background: #f3e8ff; color: #6b21a8; }

/* Admin filters */
.admin-filters {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px;
  align-items: flex-end;
}
.admin-filters .form-group { margin-bottom: 0; }
.admin-filters .form-control { padding: 8px 12px; font-size: .85rem; }

/* Pagination */
.pagination {
  display: flex; gap: 6px; justify-content: center; margin-top: 24px;
}
.pagination a, .pagination span {
  padding: 8px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: .85rem;
  color: var(--text); transition: all var(--transition);
}
.pagination a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination .current {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

/* Admin login */
.admin-login {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 24px;
}
.admin-login .form-card { max-width: 400px; width: 100%; }
.admin-login h1 {
  text-align: center; margin-bottom: 8px; color: var(--primary-dark);
  font-size: 1.5rem;
}
.admin-login .sub { text-align: center; color: var(--text-light); margin-bottom: 24px; font-size: .9rem; }

/* Alert messages */
.alert {
  padding: 14px 20px; border-radius: var(--radius-sm);
  margin-bottom: 20px; font-size: .9rem;
}
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }

/* ══════════════════
   ANIMATIONS
   ══════════════════ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════
   PAGE HEADER (inner pages)
   ══════════════════ */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; padding: 50px 0; text-align: center;
}
.page-header h1 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: 8px; }
.page-header p { opacity: .8; font-size: 1rem; }

/* ══════════════════
   RESPONSIVE
   ══════════════════ */
@media (max-width: 768px) {
  .hero { padding: 60px 0 80px; }
  .hero h1 { font-size: 1.8rem; }
  .section { padding: 50px 0; }
  .form-card { padding: 24px; }
  .admin-sidebar { display: none; }
  .admin-main { padding: 16px; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .service-card-actions { flex-direction: column; }
  .process-steps { flex-direction: column; align-items: center; }
}

/* ── Mobile admin toggle ── */
.admin-mobile-toggle {
  display: none; position: fixed; bottom: 20px; right: 20px; z-index: 1000;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none;
  font-size: 1.3rem; cursor: pointer; box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .admin-mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .admin-sidebar.show {
    display: block; position: fixed; top: 0; left: 0; bottom: 0;
    z-index: 999; width: 250px;
  }
}
