/* Desktop Styles - 1024px and above */
@media (min-width: 1024px) {
  .sidebar {
    width: 465px;
    position: static;
  }

  .mobile-toggle {
    display: none;
  }

  /* Tour Stats */
  .tour-stats {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 1px 3px var(--shadow-color);
    color: var(--text-primary);
  }

  /* Transport Info */
  .transport-info {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px var(--shadow-color), 0 4px 8px 3px var(--shadow-color);
    border: 1px solid var(--border-color);
    display: none;
  }

  .transport-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .transport-info h3 .material-icons {
    color: #4285f4;
    font-size: 20px;
  }

  .transport-details {
    font-size: 12px;
  }

  /* Search Suggestions */
  .search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-color);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
  }

  .suggestion-category {
    padding: 8px 16px;
    background: var(--bg-secondary);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .suggestion-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
  }

  .suggestion-item:hover {
    background: var(--bg-secondary);
  }

  .suggestion-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.4;
  }

  .suggestion-actions {
    display: flex;
    gap: 4px;
  }

  .suggestion-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .suggestion-btn.find {
    background: #e8f0fe;
    color: #1a73e8;
  }

  .suggestion-btn.add {
    background: #e8f5e8;
    color: #137333;
  }

  .suggestion-btn:hover {
    transform: scale(1.1);
  }

  /* Map Controls */
  .map-controls {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1000;
  }

  .traffic-toggle {
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
  }

  /* AI Chat */
  .ai-chat-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4);
    z-index: 1001;
    transition: transform 0.2s;
  }

  .ai-chat-bubble:hover {
    transform: scale(1.1);
  }

  .ai-chat-bubble .material-icons {
    color: white;
    font-size: 24px;
  }

  .chat-notification {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ea4335;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
  }

  .ai-chat-popup {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 1002;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  }

  .ai-chat-popup.show {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* FAB */
  .fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: #34a853;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.4);
    z-index: 1001;
    transition: transform 0.2s;
  }

  .fab:hover {
    transform: scale(1.1);
  }

  .fab .material-icons {
    color: white;
    font-size: 20px;
  }
}