/* ФУТЕР */

.footer {
  background-color: #000;
  color: #fff;
  width: 100%;
  padding: 2rem 1rem;
}

.footer-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-lang-select select {
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.footer-menu {
  width: 100%;
}

.footer-section {
  border-top: 1px solid #222;
  padding: 1rem 0;
}

.accordion-title {
  width: 100%;
  background: none;
  color: #ccc;
  font-size: 1rem;
  text-align: left;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-title::after {
  content: '▼';
  font-size: 0.75rem;
  transform: rotate(0deg);
  transition: transform 0.2s;
}

.footer-section.open .accordion-title::after {
  transform: rotate(180deg);
}

.accordion-content {
  list-style: none;
  padding-left: 0;
  margin-top: 0.75rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section.open .accordion-content {
  display: flex;
}

.accordion-content a {
  color: #888;
  text-decoration: none;
  font-size: 0.95rem;
}

.accordion-content a:hover {
  color: var(--brand-yellow, #fff700);
}

.accordion-content p {
  color: #888;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}