:root {
  --bg: #0f1117;
  --bg2: #161b27;
  --bg3: #1e2535;
  --bg4: #252d40;
  --border: #2d3650;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-light: #1d3461;
  --text: #e2e8f0;
  --text2: #94a3b8;
  --text3: #64748b;
  --danger: #ef4444;
  --danger-hover: #dc2626;
  --success: #22c55e;
  --warning: #f59e0b;
  --radius: 8px;
  --radius-lg: 12px;
  --sidebar-w: 300px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  height: 100vh;
  overflow: hidden;
}

/* Layout */
.layout { display: flex; height: 100vh; }

/* Sidebar */
.sidebar {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.logo { display: flex; flex-direction: column; gap: 4px; }
.logo-img { width: 140px; height: auto; display: block; }
.logo-sub { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: .05em; }

.sidebar-actions { padding: 12px 16px 8px; }

.search-box { padding: 0 16px 8px; }
.search-box input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 13px;
  padding: 7px 10px;
  outline: none;
}
.search-box input:focus { border-color: var(--accent); }
.search-box input::placeholder { color: var(--text3); }

.filter-bar { padding: 0 16px 8px; }
.filter-bar select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text2);
  font-size: 12px;
  padding: 6px 10px;
  outline: none;
  cursor: pointer;
}
.filter-bar select:focus { border-color: var(--accent); }

.product-list {
  flex: 1;
  overflow-y: auto;
  padding: 4px 8px;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  margin-bottom: 2px;
  transition: background .1s;
}
.product-item:hover { background: var(--bg3); }
.product-item.active { background: var(--accent-light); border-color: var(--accent); }

.product-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--bg4);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { overflow: hidden; flex: 1; }
.product-name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-cat {
  font-size: 11px;
  color: var(--text3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Main */
.main {
  flex: 1;
  overflow-y: auto;
  background: var(--bg);
}

/* Welcome */
.welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--text2);
}
.welcome-icon { font-size: 48px; }
.welcome h2 { font-size: 20px; color: var(--text); }
.welcome p { font-size: 14px; }
.welcome-stats { display: flex; gap: 24px; margin-top: 8px; }
.stat-item { text-align: center; }
.stat-num { font-size: 28px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--text3); }

/* Editor */
.editor {
  padding: 24px;
  max-width: 900px;
}

.editor-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.editor-title-group { flex: 1; }
.editor-title-group h2 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.editor-title-group .editor-slug { font-size: 12px; color: var(--text3); font-family: monospace; }

.editor-actions { display: flex; gap: 8px; }

/* Tabs */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.tab {
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text2);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 500; color: var(--text2); text-transform: uppercase; letter-spacing: .04em; }
.field input, .field textarea, .field select {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  padding: 8px 12px;
  outline: none;
  font-family: var(--font);
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--text3); }
.field textarea { resize: vertical; min-height: 80px; }

.field-hint { font-size: 11px; color: var(--text3); }

/* Specs editor */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th { font-size: 11px; color: var(--text3); text-align: left; padding: 0 8px 6px 0; text-transform: uppercase; }
.specs-table td { padding: 3px 4px 3px 0; }
.specs-table input {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 13px;
  padding: 6px 10px;
  outline: none;
  width: 100%;
  font-family: var(--font);
}
.specs-table input:focus { border-color: var(--accent); }
.spec-del {
  background: none;
  border: none;
  color: var(--text3);
  cursor: pointer;
  font-size: 16px;
  padding: 4px 6px;
  border-radius: 4px;
  line-height: 1;
}
.spec-del:hover { color: var(--danger); background: rgba(239,68,68,.1); }

.btn-add-spec {
  background: none;
  border: 1px dashed var(--border);
  color: var(--text2);
  padding: 6px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  margin-top: 8px;
  transition: border-color .15s, color .15s;
}
.btn-add-spec:hover { border-color: var(--accent); color: var(--accent); }

/* Images editor */
.images-editor { display: flex; flex-direction: column; gap: 16px; }
.images-list { display: flex; flex-direction: column; gap: 8px; }

.image-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
}
.image-row-thumb {
  width: 56px;
  height: 42px;
  border-radius: 6px;
  background: var(--bg4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.image-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.image-row-fields { display: flex; flex-direction: column; gap: 5px; }
.image-row-fields input {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 12px;
  padding: 5px 8px;
  outline: none;
  font-family: monospace;
}
.image-row-fields input:focus { border-color: var(--accent); }
.image-row-fields input.alt-input { font-family: var(--font); }
.image-row-actions { display: flex; flex-direction: column; gap: 4px; }

.btn-pick-image {
  background: var(--bg3);
  border: 1px dashed var(--border);
  color: var(--text2);
  padding: 10px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  text-align: center;
  transition: border-color .15s, color .15s;
}
.btn-pick-image:hover { border-color: var(--accent); color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: background .15s, opacity .15s;
  white-space: nowrap;
}
.btn:disabled { opacity: .5; cursor: default; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--accent-hover); }
.btn-secondary { background: var(--bg3); color: var(--text2); border: 1px solid var(--border); }
.btn-secondary:hover:not(:disabled) { background: var(--bg4); color: var(--text); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover:not(:disabled) { background: var(--danger-hover); }
.btn-sm { padding: 5px 10px; font-size: 12px; }
.link-btn { background: none; border: none; color: var(--accent); cursor: pointer; font-size: inherit; text-decoration: underline; padding: 0; font-family: inherit; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(4px);
}
.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 500px;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-large { width: 800px; }
.modal-small { width: 400px; }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 15px; font-weight: 600; }
.modal-close {
  background: none;
  border: none;
  color: var(--text3);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 4px;
}
.modal-close:hover { color: var(--text); background: var(--bg4); }
.modal-body { padding: 20px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.modal-footer { display: flex; justify-content: flex-end; gap: 8px; padding-top: 8px; }

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.upload-zone.dragover { border-color: var(--accent); background: rgba(59,130,246,.05); }
.upload-zone-inner { pointer-events: none; }
.upload-icon { font-size: 36px; margin-bottom: 8px; }
.upload-zone p { color: var(--text2); font-size: 13px; margin-bottom: 4px; }
.upload-hint { color: var(--text3); font-size: 12px; }

.progress-bar {
  height: 6px;
  background: var(--bg4);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  width: 0%;
  transition: width .2s;
}
#progress-text, #picker-progress-text { font-size: 12px; color: var(--text2); }

/* Image grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.image-card {
  background: var(--bg3);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s;
  position: relative;
}
.image-card:hover { border-color: var(--accent); }
.image-card.selected { border-color: var(--success); }
.image-card img { width: 100%; height: 90px; object-fit: cover; display: block; }
.image-card-info { padding: 6px 8px; }
.image-card-name { font-size: 11px; color: var(--text2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.image-card-size { font-size: 10px; color: var(--text3); }
.image-card-del {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0,0,0,.7);
  border: none;
  color: var(--text2);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .15s;
}
.image-card:hover .image-card-del { opacity: 1; }
.image-card-del:hover { color: var(--danger); }

/* Export info */
.export-step {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.export-step h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.export-cmd {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  font-family: monospace;
  font-size: 12px;
  color: var(--success);
  overflow-x: auto;
  white-space: pre;
}
.export-meta { font-size: 12px; color: var(--text2); margin-top: 6px; }

/* Loading */
.loading { color: var(--text3); font-size: 13px; padding: 16px; text-align: center; }
.empty { color: var(--text3); font-size: 13px; padding: 24px; text-align: center; }

/* Notification */
.notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 13px;
  z-index: 200;
  transform: translateY(80px);
  opacity: 0;
  transition: transform .25s, opacity .25s;
  max-width: 320px;
}
.notification.show { transform: translateY(0); opacity: 1; }
.notification.success { border-color: var(--success); color: var(--success); }
.notification.error { border-color: var(--danger); color: var(--danger); }

/* Section headings in editor */
.section-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text3);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text3); }

/* Category path tags */
.path-tags { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.path-tag {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 12px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 4px;
}
.path-tag .del { cursor: pointer; color: var(--text3); }
.path-tag .del:hover { color: var(--danger); }
.path-tag-add {
  background: none;
  border: 1px dashed var(--border);
  color: var(--text3);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 12px;
  cursor: pointer;
}
.path-tag-add:hover { border-color: var(--accent); color: var(--accent); }

/* Specs grid — 2 columns */
.specs-grid { grid-template-columns: 1fr 1fr; }

/* Category paths */
.catpaths-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.catpath-group {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 12px 14px;
}
.catpath-group:last-child { border-bottom: none; }

.catpath-group-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.catpath-group-icon { font-size: 15px; }
.catpath-group-label { font-size: 13px; font-weight: 600; color: var(--text); flex: 1; }

.catpath-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 8px;
}

.catpath-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 3px 10px 3px 12px;
  font-size: 12px;
  color: var(--text);
}
.catpath-chip-del {
  background: none;
  border: none;
  color: var(--text3);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0 2px;
  border-radius: 50%;
}
.catpath-chip-del:hover { color: var(--danger); }

.catpath-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 10px;
  background: var(--bg3);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

.catpath-sel {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 12px;
  padding: 5px 8px;
  outline: none;
  cursor: pointer;
  max-width: 200px;
}
.catpath-sel:focus { border-color: var(--accent); }

/* Files editor */
.files-editor { display: flex; flex-direction: column; gap: 16px; }

.file-upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.file-upload-zone.dragover { border-color: var(--accent); background: rgba(59,130,246,.05); }
.file-upload-zone p { color: var(--text2); font-size: 13px; margin-bottom: 4px; }

.files-list { display: flex; flex-direction: column; gap: 8px; }

.file-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
}
.file-icon { font-size: 22px; text-align: center; }
.file-name { font-size: 13px; font-weight: 500; color: var(--text); }
.file-meta { font-size: 11px; color: var(--text3); }
.file-path-hint { font-size: 10px; color: var(--text3); font-family: monospace; margin-top: 2px; }
.file-row-actions { display: flex; gap: 6px; }

/* Upload progress (reused for files) */
.upload-progress { display: flex; flex-direction: column; gap: 4px; }

/* Material Symbols */
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  user-select: none;
}

/* Spec sections */
.spec-section { margin-bottom: 28px; }
.spec-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text3);
  padding: 0 0 10px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.spec-section-label span {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 7px;
  font-size: 10px;
}
.spec-section-placeholder {
  font-size: 13px;
  color: var(--text3);
  font-style: italic;
  padding: 16px;
  background: var(--bg2);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  text-align: center;
}

/* Primary image badge */
.image-row-primary { border-color: var(--accent); }
.image-primary-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 10px;
  margin-bottom: 4px;
  width: fit-content;
}

/* File category bar */
.file-category-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.file-category-bar label { font-size: 12px; font-weight: 600; color: var(--text2); white-space: nowrap; }
.file-category-bar select {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 13px;
  padding: 6px 10px;
  outline: none;
  cursor: pointer;
}
.file-category-bar select:focus { border-color: var(--accent); }

/* File category badge */
.file-category-badge {
  display: inline-block;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 10px;
  color: var(--text2);
  padding: 1px 6px;
  margin-top: 3px;
}

/* Highlights editor */
.highlights-editor { display: flex; flex-direction: column; gap: 20px; }

.highlights-list { display: flex; flex-direction: column; gap: 8px; }

.highlight-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 10px;
}
.highlight-preview {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-preview .material-symbols-rounded { font-size: 22px; }

.highlight-label-input {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 13px;
  padding: 7px 10px;
  outline: none;
  font-family: var(--font);
  width: 100%;
}
.highlight-label-input:focus { border-color: var(--accent); }

.highlight-del {
  background: none;
  border: none;
  color: var(--text3);
  cursor: pointer;
  font-size: 18px;
  padding: 4px 6px;
  border-radius: 4px;
  line-height: 1;
}
.highlight-del:hover { color: var(--danger); background: rgba(239,68,68,.1); }

/* Highlight add form */
.highlight-add-section {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.highlight-add-section .section-heading { margin-bottom: 0; border: none; padding: 0; }

/* Color presets */
.color-presets { display: flex; flex-wrap: wrap; gap: 8px; }
.color-preset {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 12px;
  font-weight: 700;
  transition: border-color .15s, transform .1s;
}
.color-preset:hover { transform: scale(1.1); }
.color-preset.active { border-color: var(--text); box-shadow: 0 0 0 2px var(--bg2); }

/* Icon grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  gap: 6px;
}
.icon-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: var(--radius);
  background: var(--bg3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.icon-cell:hover { background: var(--bg4); }
.icon-cell.active { border-color: var(--accent); background: var(--accent-light); }
.icon-cell .material-symbols-rounded { font-size: 24px; color: var(--text2); }
.icon-cell.active .material-symbols-rounded { color: var(--accent); }
.icon-cell-label { font-size: 10px; color: var(--text3); text-align: center; line-height: 1.2; }
