@media (max-width: 768px) {
  /* Bottom Dock Adjustments */
  .bottom-dock-container {
    bottom: 20px;
    width: 95%;
  }

  .dock-glass {
    padding: 10px 10px;
    gap: 4px;
    width: 100%;
    justify-content: space-between;
  }

  .dock-item {
    width: 36px;
    height: 36px;
    font-size: 20px;
    border-radius: 10px;
  }

  .dock-item::after {
    display: none;
  } /* Hide tooltips on mobile */

  /* Analysis Sidebar -> Bottom Sheet */
  .analysis-sidebar-panel {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(110%);
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
  }

  .analysis-sidebar-panel.active {
    transform: translateY(0);
  }

  /* Results Toast Mobile */
  .results-toast {
    width: 90%;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    max-height: 40vh;
  }

  /* Dark Mode Mobile Adjustments */
  [data-theme="dark"] .analysis-sidebar-panel {
    background: #0f172a;
    border-top-color: rgba(255, 255, 255, 0.1);
  }
}
