/* ===== 1ToolThree 全局样式 ===== */
:root {
  /* 主品牌色 - 靛紫 */
  --primary: #6366F1;
  --primary-light: #818CF8;
  --primary-dark: #4F46E5;
  --primary-bg: #EEF2FF;
  /* 强调色 - 粉橙渐变系 */
  --accent-pink: #EC4899;
  --accent-orange: #F97316;
  --accent-violet: #8B5CF6;
  --accent-cyan: #06B6D4;
  --accent-emerald: #10B981;
  --accent-amber: #F59E0B;
  /* 语义色 */
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  /* 灰阶 */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  /* 圆角 */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  /* 阴影 */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 12px -2px rgba(0,0,0,.08), 0 2px 6px -1px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 24px -4px rgba(0,0,0,.1), 0 4px 8px -2px rgba(0,0,0,.06);
  --shadow-glow: 0 0 24px -4px rgba(99,102,241,.25);
  /* 布局 */
  --max-width: 960px;
  /* 渐变 */
  --grad-brand: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
  --grad-warm: linear-gradient(135deg, #F97316 0%, #EC4899 100%);
  --grad-cool: linear-gradient(135deg, #06B6D4 0%, #6366F1 100%);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: var(--gray-800);
  background: var(--gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }

/* ===== 顶部导航 ===== */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand .logo-icon {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.navbar-right { display: flex; align-items: center; gap: 16px; }
.navbar-points {
  display: flex; align-items: center; gap: 6px;
  background: var(--primary-bg);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.navbar-points .dot {
  width: 8px; height: 8px;
  background: var(--warning);
  border-radius: 50%;
}
.btn-recharge {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-recharge:hover { background: var(--primary-dark); color: #fff; }

/* ===== 面包屑 ===== */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px 0;
  font-size: 13px;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* ===== 工具页面主体 ===== */
.tool-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
}
.tool-header {
  text-align: center;
  margin-bottom: 28px;
}
.tool-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.tool-header h1 .tool-icon {
  display: inline-flex;
  color: var(--primary);
}
.tool-header p {
  font-size: 15px;
  color: var(--gray-500);
}

/* ===== 工具卡片 ===== */
.tool-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

/* ===== 表单元素 ===== */
textarea, input[type="text"], input[type="number"], select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Courier New', monospace;
  transition: border-color .2s;
  background: #fff;
  color: var(--gray-800);
}
textarea:focus, input:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}
textarea { min-height: 180px; resize: vertical; line-height: 1.5; }

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-700);
}
.btn-secondary:hover { background: var(--gray-200); }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #059669; color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ===== 拖拽上传区 ===== */
.drop-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  background: var(--gray-50);
}
.drop-zone:hover, .drop-zone.dragover {
  border-color: var(--primary);
  background: var(--primary-bg);
}
.drop-zone .icon { margin-bottom: 12px; color: var(--gray-400); display: flex; justify-content: center; }
.drop-zone .text { font-size: 15px; color: var(--gray-600); }
.drop-zone .hint { font-size: 13px; color: var(--gray-400); margin-top: 6px; }

/* ===== 结果展示 ===== */
.result-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 16px;
  min-height: 60px;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Courier New', monospace;
  font-size: 13px;
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 400px;
  overflow-y: auto;
}
.result-box.success { border-color: var(--success); background: #ECFDF5; }
.result-box.error { border-color: var(--danger); background: #FEF2F2; }

/* ===== 统计信息 ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.stat-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.stat-item .value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}
.stat-item .label {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ===== 复选框/单选 ===== */
.checkbox-group, .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.checkbox-item, .radio-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.checkbox-item:hover, .radio-item:hover { border-color: var(--primary-light); }
.checkbox-item.active, .radio-item.active {
  border-color: var(--primary);
  background: var(--primary-bg);
  color: var(--primary-dark);
}
input[type="checkbox"], input[type="radio"] {
  width: 16px; height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* ===== 滑块 ===== */
input[type="range"] {
  width: 100%;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
}

/* ===== 工具说明区 ===== */
.info-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 48px;
}
.info-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  margin-top: 32px;
}
.info-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  margin-top: 20px;
}
.info-section p, .info-section li {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}
.info-section ul, .info-section ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.info-section .faq-item {
  margin-bottom: 16px;
}
.info-section .faq-item .q {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.info-section .faq-item .a {
  font-size: 14px;
  color: var(--gray-600);
}

/* ===== 相关工具 ===== */
.related-tools {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 48px;
}
.related-tools h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.related-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all .2s;
  color: var(--gray-700);
}
.related-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  color: var(--primary);
}
.related-card .icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-bg);
  color: var(--primary);
  flex-shrink: 0;
}
.related-card .name { font-size: 14px; font-weight: 600; }

/* ===== 页脚 ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 32px 20px;
  text-align: center;
  font-size: 13px;
}
.footer a { color: var(--gray-300); margin: 0 8px; }
.footer a:hover { color: #fff; }

/* ===== Toast 提示 ===== */
.toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-900);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.toast.show { opacity: 1; }
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.warning { background: var(--warning); }

/* ===== 付费弹窗 ===== */
.paywall-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.paywall-overlay.show { display: flex; }
.paywall-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
}
.paywall-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.paywall-box p { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; }
.paywall-options { display: flex; flex-direction: column; gap: 12px; }
.paywall-option {
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all .2s;
  text-align: left;
}
.paywall-option:hover { border-color: var(--primary); }
.paywall-option.selected { border-color: var(--primary); background: var(--primary-bg); }
.paywall-option .title { font-size: 16px; font-weight: 700; }
.paywall-option .desc { font-size: 13px; color: var(--gray-500); }

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .navbar-inner { padding: 0 12px; height: 52px; }
  .navbar-brand { font-size: 18px; }
  .navbar-brand .logo-icon { width: 28px; height: 28px; font-size: 15px; }
  .navbar-points { padding: 4px 10px; font-size: 12px; }
  .btn-recharge { padding: 6px 12px; font-size: 12px; }
  .breadcrumb { padding: 12px 12px 0; }
  .tool-container { padding: 12px; }
  .tool-header h1 { font-size: 22px; }
  .tool-header p { font-size: 13px; }
  .tool-card { padding: 16px; }
  .info-section, .related-tools { padding: 0 12px 32px; }
  .info-section h2 { font-size: 18px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .drop-zone { padding: 32px 16px; }
  .drop-zone .icon { font-size: 32px; }
  .drop-zone .text { font-size: 14px; }
  textarea { min-height: 120px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 浮动操作栏（工具页） ===== */
.action-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
}

.fab-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  transition: all 0.3s;
  position: relative;
}

.fab-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.fab-toggle svg {
  width: 24px;
  height: 24px;
}

.action-bar.open .fab-toggle {
  transform: rotate(135deg);
  background: var(--gray-600);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.action-bar.open .fab-toggle svg {
  width: 20px;
  height: 20px;
}

.fab-menu {
  position: absolute;
  bottom: 64px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transform-origin: bottom right;
  transition: all 0.25s ease;
}

.action-bar.open .fab-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.fab-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s;
  text-decoration: none;
}

.fab-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
  transform: translateX(-4px);
}

.fab-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.fab-icon svg {
  width: 16px;
  height: 16px;
}

/* ===== 共享：背景装饰 + 顶部导航栏（与首页同步） ===== */
body {
  background: linear-gradient(180deg, #F0F4FF 0%, #FFFFFF 35%, #FFFFFF 100%);
  position: relative;
  overflow-x: hidden;
}

.bg-decoration {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: blobFloat 20s ease-in-out infinite;
}

.bg-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #C7D2FE 0%, transparent 70%);
  top: -200px; right: -150px;
}
.bg-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FBCFE8 0%, transparent 70%);
  top: 200px; left: -200px;
  animation-delay: -8s;
}
.bg-blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #A5F3FC 0%, transparent 70%);
  top: 600px; right: 20%;
  animation-delay: -14s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* 顶部导航栏 */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.08);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 64px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-weight: 700; font-size: 18px; color: #1F2937;
  flex-shrink: 0;
}

.logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  box-shadow: 0 4px 12px -2px rgba(99, 102, 241, 0.4);
}

.logo-text {
  background: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex; gap: 28px;
  list-style: none; margin: 0; padding: 0;
  flex: 1;
}

.nav-menu a {
  color: #4B5563; text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-menu a:hover { color: #6366F1; }

.nav-actions {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}

.btn-install {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 16px;
  border: 1.5px solid #6366F1;
  background: rgba(99, 102, 241, 0.04);
  color: #6366F1;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-install:hover {
  background: #6366F1; color: #fff;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-membership {
  background: linear-gradient(135deg, #F97316 0%, #EC4899 100%);
  color: white;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
  transition: all 0.2s;
}
.btn-membership:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.nav-avatar {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: #4B5563; font-size: 13px;
  padding: 6px 12px; border-radius: 8px;
  background: rgba(99, 102, 241, 0.06);
}
.nav-avatar-img {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(99, 102, 241, 0.35);
  transition: transform .2s, box-shadow .2s;
}
.nav-avatar-img svg {
  width: 15px; height: 15px; display: block;
}
.nav-avatar:hover .nav-avatar-img {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.45);
}

/* ===== 工具页：SEO 关键词标签云 ===== */
.tool-keyword-tags {
  max-width: 860px;
  margin: 0 auto 28px;
  padding: 0 24px;
}
.tool-keyword-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
  color: #6B7280; font-size: 13px; font-weight: 500;
}
.tool-keyword-header svg { width: 15px; height: 15px; color: #6366F1; }
.tool-keyword-list {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tool-keyword-chip {
  display: inline-flex; align-items: center;
  padding: 5px 14px;
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.14);
  color: #4F46E5;
  font-size: 12.5px; font-weight: 500;
  border-radius: 999px;
  transition: all 0.2s;
  text-decoration: none;
}
.tool-keyword-chip:hover {
  background: rgba(99, 102, 241, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}
.tool-keyword-chip.primary {
  background: linear-gradient(135deg, rgba(99,102,241,0.14) 0%, rgba(236,72,153,0.12) 100%);
  border-color: rgba(99, 102, 241, 0.3);
  color: #6366F1;
  font-weight: 600;
}

/* ===== 工具页内容容器 z-index（与 bg 装饰共存） ===== */
.breadcrumb, .tool-container, .info-section, .related-tools {
  position: relative;
  z-index: 1;
}

/* ===== 响应式（导航栏 + 标签云） ===== */
@media (max-width: 1024px) {
  .nav-container { padding: 0 20px; gap: 24px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-container { padding: 0 16px; gap: 10px; }
  .btn-membership { padding: 6px 12px; font-size: 12px; }
  .btn-install span { display: none; }
  .btn-install { padding: 7px 10px; }
  .nav-avatar span { display: none; }
  .bg-blob { filter: blur(80px); opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-blob { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

.fab-fav.active {
  background: #FEF3C7;
  border-color: #F59E0B;
  color: #92400E;
}

.fab-fav.active .fab-icon {
  background: #F59E0B;
  color: #fff;
}

.fab-fav.active .fab-icon svg {
  fill: currentColor;
}

@media (max-width: 768px) {
  .action-bar {
    bottom: 16px;
    right: 16px;
  }
  .fab-toggle {
    width: 46px;
    height: 46px;
  }
  .fab-toggle svg {
    width: 20px;
    height: 20px;
  }
  .fab-item {
    font-size: 12px;
    padding: 8px 14px 8px 12px;
  }
  .fab-icon {
    width: 28px;
    height: 28px;
  }
}
