.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  font-size: 12px;
  color: #252525;
  background-color: #ffffff;
}

.bottom-bar-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bottom-bar-left a {
  color: #6b7280;
  text-decoration: none;
}

.bottom-bar-left a:hover {
  text-decoration: underline;
}

.bottom-bar-right {
  position: relative;
  display: flex;
  align-items: center;
}

.language-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  gap: 4px;
}

.language-toggle:hover {
  background-color: #e5e7eb;
}

.dropdown-language {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 160px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
  z-index: 1000;
  padding: 4px 0;
  list-style: none;
}

.dropdown-language .dropdown-item {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-language .dropdown-item:hover {
  background-color: #f3f4f6;
  color: #111827;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .bottom-bar {
    position: static;
    background: #ffffff00;
  }

  .bottom-bar-content {
    align-items: center;
    row-gap: 16px;
  }

  .bottom-bar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}