/* Studio OS — Global Stylesheet */
/* Font: DM Sans + DM Mono */

:root {
  --bg: #f5efe6;
  --bg-accent: #efe3d4;
  --surface: rgba(255, 251, 246, 0.92);
  --surface-strong: #fffdf9;
  --surface2: #efe7db;
  --surface3: #e5dacb;
  --border: rgba(120, 84, 46, 0.16);
  --border2: rgba(120, 84, 46, 0.28);
  --text: #1f160f;
  --text2: #675647;
  --text3: #978473;
  --accent: #cb5a2b;
  --accent-light: #fff0e7;
  --accent-dark: #a5431b;
  --accent-2: #c89b5b;
  --sidebar-bg: #17110e;
  --sidebar-bg-2: #241813;
  --sidebar-text: #dbcab9;
  --sidebar-text2: #93806f;
  --sidebar-active: #ffd5b5;
  --sidebar-active-bg: linear-gradient(135deg, rgba(203, 90, 43, 0.28), rgba(200, 155, 91, 0.14));
  --sidebar-hover: rgba(255,255,255,0.06);
  --sidebar-border: rgba(255,255,255,0.08);
  --green: #23985d;
  --green-light: #eefaf3;
  --blue: #2f79d6;
  --blue-light: #edf5ff;
  --yellow: #c98717;
  --yellow-light: #fff6df;
  --purple: #7355db;
  --purple-light: #f3efff;
  --red: #d14a43;
  --red-light: #fff1ef;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(82, 50, 20, 0.08);
  --shadow-md: 0 18px 45px rgba(82, 50, 20, 0.12);
  --shadow-lg: 0 28px 70px rgba(39, 21, 7, 0.2);
  --sidebar-w: 248px;
  --transition: 0.22s ease;
}

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

html { font-size: 15px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(203, 90, 43, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(200, 155, 91, 0.18), transparent 24%),
    linear-gradient(180deg, #f8f2ea 0%, #f4ede3 48%, #efe6da 100%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(118, 81, 45, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 81, 45, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.3), transparent 80%);
  z-index: -1;
  pointer-events: none;
}

/* ── LAYOUT ── */
.layout {
  display: flex;
  min-height: 100vh;
}

/* ── SIDEBAR ── */
.sidebar {
  width: var(--sidebar-w);
  background:
    radial-gradient(circle at top, rgba(203, 90, 43, 0.14), transparent 28%),
    linear-gradient(180deg, var(--sidebar-bg) 0%, var(--sidebar-bg-2) 100%);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  border-right: 1px solid var(--sidebar-border);
  box-shadow: 18px 0 45px rgba(11, 7, 5, 0.24);
  backdrop-filter: blur(18px);
}

.sidebar-header {
  padding: 24px 18px 18px;
  border-bottom: 1px solid var(--sidebar-border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-mark {
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
}

.logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sidebar-nav {
  flex: 1;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--sidebar-text);
  font-size: 13.5px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 1px solid transparent;
}

.nav-item:hover {
  background: var(--sidebar-hover);
  color: #FFFFFF;
  transform: translateX(2px);
}

.nav-item.active {
  background: var(--sidebar-active-bg);
  color: var(--sidebar-active);
  font-weight: 600;
  border-color: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.nav-icon {
  font-size: 14px;
  width: 18px;
  text-align: center;
  opacity: 0.8;
}

.nav-item.active .nav-icon { opacity: 1; }

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--sidebar-border);
}

.user-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 10px;
}

.avatar {
  width: 36px; height: 36px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
  font-family: 'DM Mono', monospace;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.user-info { flex: 1; min-width: 0; }

.user-name {
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logout-link {
  font-size: 11px;
  color: var(--sidebar-text2);
  text-decoration: none;
  transition: color var(--transition);
}
.logout-link:hover { color: var(--accent); }

/* ── MAIN ── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-width: 0;
  padding: 28px 34px 42px;
}

.page-header {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border: 1px solid rgba(120, 84, 46, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,249,242,0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.page-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}

/* ── CARDS ── */
.card {
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card-sm {
  border-radius: var(--radius);
  padding: 16px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(36, 25, 16, 0.08);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #e07b47);
  color: #FFFFFF;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); transform: translateY(-1px); }

.btn-secondary {
  background: rgba(255,255,255,0.7);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--surface2); }

.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid transparent;
}
.btn-ghost:hover { background: var(--surface2); color: var(--text); }

.btn-danger {
  background: var(--red-light);
  color: var(--red);
  border: 1px solid #FCA5A5;
}
.btn-danger:hover { background: var(--red); color: #fff; }

.btn-sm { padding: 6px 12px; font-size: 12.5px; }
.btn-icon { padding: 7px; aspect-ratio: 1; }

/* ── FORMS ── */
.form-group { margin-bottom: 16px; }

label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text2);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: rgba(255,255,255,0.78);
  transition: border-color var(--transition);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(203,90,43,0.12);
}

textarea { resize: vertical; min-height: 80px; }

input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(19,12,9,0.5);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition);
  backdrop-filter: blur(10px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: linear-gradient(180deg, rgba(255,253,249,0.98), rgba(251,245,237,0.96));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(120, 84, 46, 0.14);
  padding: 28px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(12px);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.modal-title { font-size: 17px; font-weight: 600; }
.modal-close {
  background: none; border: none; cursor: pointer;
  font-size: 20px; color: var(--text3); padding: 2px;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--text); }

.modal-footer {
  display: flex; gap: 10px; justify-content: flex-end;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--border);
}

/* ── TABLES ── */
.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

thead th {
  text-align: left;
  padding: 10px 14px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text3);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--surface2); }

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 500;
  white-space: nowrap;
}

/* ── STATS GRID ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.stat-card {
  background: linear-gradient(180deg, rgba(255,253,249,0.94), rgba(250,244,236,0.88));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.stat-value {
  font-size: 26px;
  font-weight: 600;
  font-family: 'DM Mono', monospace;
  color: var(--text);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 11.5px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.stat-accent { color: var(--accent) !important; }

/* ── PROGRESS BAR ── */
.progress-bar {
  height: 6px;
  background: var(--surface2);
  border-radius: 99px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.4s ease;
}

/* ── TASK ITEM ── */
.task-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.task-item:last-child { border-bottom: none; }

.task-check {
  width: 18px; height: 18px;
  border: 2px solid var(--border2);
  border-radius: 5px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.task-check.done {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.task-text { flex: 1; }
.task-title { font-size: 14px; font-weight: 400; }
.task-title.done { text-decoration: line-through; color: var(--text3); }
.task-meta { font-size: 11.5px; color: var(--text3); margin-top: 2px; }

/* ── HABIT GRID ── */
.habit-tracker { display: flex; flex-direction: column; gap: 14px; }

.habit-row {
  display: flex; align-items: center; gap: 14px;
}

.habit-name {
  width: 160px; flex-shrink: 0;
  font-size: 13.5px; font-weight: 500;
  display: flex; align-items: center; gap: 7px;
}

.habit-dots { display: flex; gap: 5px; flex-wrap: wrap; }

.habit-dot {
  width: 28px; height: 28px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: var(--text3);
  background: var(--surface);
}

.habit-dot:hover { border-color: var(--accent); }
.habit-dot.done { color: #fff; border-color: transparent; }
.habit-dot.future { opacity: 0.35; cursor: default; }

/* ── GOAL CARD ── */
.goal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: box-shadow var(--transition);
}
.goal-card:hover { box-shadow: var(--shadow-md); }

.goal-title { font-size: 14.5px; font-weight: 600; margin-bottom: 5px; }
.goal-desc { font-size: 13px; color: var(--text2); margin-bottom: 12px; }

.goal-meta {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.goal-tag {
  font-size: 11.5px; padding: 3px 8px;
  background: var(--surface2); border-radius: 4px; color: var(--text2);
}

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--text3);
}
.empty-icon { font-size: 36px; margin-bottom: 10px; opacity: 0.4; }
.empty-text { font-size: 14px; }

/* ── ALERTS ── */
.alert {
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  margin-bottom: 16px;
}
.alert-error { background: var(--red-light); color: var(--red); border: 1px solid #FCA5A5; }
.alert-success { background: var(--green-light); color: #15803D; border: 1px solid #86EFAC; }

/* ── AUTH PAGES ── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(203, 90, 43, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(200, 155, 91, 0.18), transparent 28%),
    linear-gradient(135deg, #f7efe6 0%, #f1e5d7 48%, #eadbc9 100%);
  padding: 28px;
}

.auth-box {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,249,242,0.95));
  border: 1px solid rgba(120, 84, 46, 0.14);
  border-radius: 32px;
  padding: 40px 40px 32px;
  width: 100%;
  max-width: 430px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}

.auth-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203,90,43,0.18), transparent 62%);
  pointer-events: none;
}

.auth-logo {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.auth-logo .logo-mark {
  font-size: 34px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 10px 25px rgba(203, 90, 43, 0.2);
}

.auth-logo .logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}

.auth-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 22px;
  text-align: center;
  letter-spacing: -0.03em;
}

.auth-link {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text3);
}
.auth-link a { color: var(--accent); text-decoration: none; font-weight: 500; }

/* ── MONEY DISPLAY ── */
.money { font-family: 'DM Mono', monospace; }
.money-green { color: var(--green); }
.money-red { color: var(--red); }
.money-orange { color: var(--accent); }

/* ── SECTION HEADER ── */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.section-title {
  font-size: 15px; font-weight: 600;
}

/* ── DATE CHIP ── */
.date-chip {
  font-family: 'DM Mono', monospace;
  font-size: 11.5px;
  background: var(--surface2);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--text2);
}

/* ── TABS ── */
.tabs { display: flex; gap: 4px; margin-bottom: 20px; }
.tab {
  padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; cursor: pointer;
  border: none; background: none; color: var(--text2);
  transition: all var(--transition);
}
.tab.active { background: var(--accent); color: #fff; }
.tab:hover:not(.active) { background: var(--surface2); color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .page-header {
    padding: 14px 16px;
    border-radius: 18px;
  }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .auth-page {
    padding: 18px;
  }
  .auth-box {
    padding: 32px 22px 24px;
    border-radius: 24px;
  }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 99px; }

/* ── PRIORITY INDICATORS ── */
.priority-high { color: var(--red); }
.priority-medium { color: var(--yellow); }
.priority-low { color: var(--blue); }

/* ── OVERDUE ── */
.task-overdue .task-title { color: var(--red); }
.task-overdue .task-meta { color: var(--red); opacity: 0.7; }

/* ── DASHBOARD GRID ── */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dashboard-grid .full-width { grid-column: 1 / -1; }

@media (max-width: 900px) {
  .dashboard-grid { grid-template-columns: 1fr; }
}

/* ── Refactor: Mobile Navigation Layer ───────────────────────── */
.page-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-btn,
.mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  border-radius: 12px;
  width: 38px;
  height: 38px;
  font-size: 16px;
  cursor: pointer;
}
.mobile-close { margin-left: auto; }

@media (min-width: 901px) {
  .mobile-close {
    display: none;
  }
}

.sidebar { transition: transform .24s ease; }
.main-content { transition: margin-left .24s ease, padding .24s ease; }
body.sidebar-collapsed .sidebar {
  transform: translateX(calc(-1 * var(--sidebar-w) - 28px));
}
body.sidebar-collapsed .main-content {
  margin-left: 0;
}
@media (min-width: 901px) {
  .mobile-nav-overlay.open {
    opacity: 0;
    pointer-events: none;
  }
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 8, 0.42);
  backdrop-filter: blur(2px);
  z-index: 96;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 900px) {
  .mobile-close {
    display: inline-flex;
  }

  body.menu-open {
    overflow: hidden;
  }

  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(84vw, 320px);
    height: 100vh;
    transform: translateX(-104%);
    transition: transform .24s ease;
    z-index: 110;
    flex-direction: column;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-header {
    padding: 20px 16px 14px;
    border-bottom: 1px solid var(--sidebar-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sidebar-nav {
    flex-direction: column;
    gap: 3px;
    padding: 10px;
    overflow-y: auto;
  }

  .sidebar-footer {
    display: block;
    border-top: 1px solid var(--sidebar-border);
    padding: 12px;
  }

  .logo-text {
    display: inline;
  }

  .sidebar .nav-item span {
    display: inline;
  }

  .sidebar .nav-item .nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .user-info {
    display: block;
  }

  .nav-item {
    justify-content: flex-start;
    min-width: 0;
    width: 100%;
    padding: 11px 12px;
  }

  .main-content {
    margin-left: 0;
    padding: 14px 14px 94px;
  }

  .page-header {
    position: sticky;
    top: 10px;
    z-index: 80;
    margin-bottom: 14px;
    padding: 12px 14px;
  }

  .page-title {
    font-size: 21px;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    z-index: 115;
    background: rgba(21, 15, 11, 0.96);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(8, 5, 3, 0.34);
    backdrop-filter: blur(14px);
    padding: 8px;
  }

  .bottom-item {
    color: #d8cbc0;
    text-decoration: none;
    border-radius: 12px;
    padding: 7px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    transition: background .2s ease, color .2s ease;
  }

  .bottom-icon {
    font-size: 14px;
  }

  .bottom-item.active {
    background: linear-gradient(135deg, rgba(203, 90, 43, 0.86), rgba(224, 123, 71, 0.82));
    color: #fff;
  }

  .bottom-item:not(.active):hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
  }
}
