/**
 * Icons Base Styles
 * Base styles for icon buttons and wrappers
 */

/* Icons Component */
.search-icon-button,
.language-icon-wrapper {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
  padding: 0;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 28px;
  min-width: 28px;
  color: var(--border-color);
}

/* Icon Hover States */
.search-icon-button:hover,
.language-icon-wrapper:hover {
  color: var(--primary-color);
  transform: scale(1.05);
}

/* Icon Focus States */
.search-icon-button:focus,
.language-icon-wrapper:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* SVG Icons */
.icon-wrapper svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  transition: var(--transition-default);
}

.icon-wrapper:hover svg {
  fill: var(--primary-color);
}
