/* =======================================================================
   WP COLORING V2 - TOOLBAR STYLES
   ======================================================================= */

/* Desktop Toolbar (Horizontal) - HIDDEN */
.wp-coloring-toolbar {
  display: none !important; /* Hide top toolbar - all controls in sidebar */
}

.tool-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.tool-btn svg {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.tool-btn:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.tool-btn.active {
  border-color: #ff9500;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 149, 0, 0.15),
    0 4px 16px rgba(255, 149, 0, 0.25);
}

.tool-btn.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #ff9500;
  border-radius: 50%;
}

/* Tool-specific colors */
.tool-eraser:hover {
  border-color: #e0e0e0;
}

.tool-fill:hover {
  border-color: #4caf50;
}

.tool-brush:hover {
  border-color: #2196f3;
}

.tool-pencil:hover {
  border-color: #9c27b0;
}

.tool-picker {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.tool-picker svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Desktop only */
.desktop-only {
  display: flex;
}

@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }
}

/* Bottom Toolbar - HIDDEN */
.wp-coloring-bottom-toolbar {
  display: none !important; /* Hide bottom toolbar - all controls in sidebar */
}

.bottom-tool-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bottom-tool-btn svg {
  width: 24px;
  height: 24px;
  stroke: #666;
  transition: stroke 0.2s ease;
}

.bottom-tool-btn:hover {
  transform: translateY(-2px);
  border-color: #ff9500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bottom-tool-btn:hover svg {
  stroke: #ff9500;
}

.bottom-tool-btn:active {
  transform: translateY(0);
}
