/* === Базовые стили подвала === */
.footer {
  background: #3a2f23;
  color: #ccc;
  font-family: Arial, sans-serif;
  font-size: 15px;
  padding: 40px 0 0 0;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-columns {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 180px;
  flex: 1 1 0;
}
.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 6px;
}
.footer-list a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-list a:hover {
  color: #ff9900;
}
.footer-subscribe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #5a4c3a;
  padding: 24px 0 0 0;
}
.footer-subscribe-text {
  font-weight: bold;
}
.footer-subscribe-form {
  display: flex;
  gap: 8px;
}
.footer-subscribe-form input[type="email"] {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}
.footer-subscribe-form button {
  background: #ff9900;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-subscribe-form button:hover {
  background: #e67c00;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 0 0;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: #3a2f23;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-social-link:hover {
  background: #ff9900;
  color: #fff;
}
.footer-apps {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 0 0;
}
.footer-app-link img {
  height: 40px;
  width: auto;
  display: block;
}
.footer-bottom {
  margin-top: 32px;
  background: #2c241a;
  padding: 24px 0 16px 0;
  text-align: center;
  color: #ccc;
  font-size: 14px;
}
.footer-bottom-links {
  margin-bottom: 8px;
}
.footer-bottom-links a {
  color: #ccc;
  text-decoration: underline;
  margin: 0 4px;
}
.footer-bottom-copy {
  margin-bottom: 8px;
}
.footer-bottom-payments {
  margin-bottom: 8px;
}
.footer-bottom-payments img {
  height: 24px;
  margin: 0 4px;
  vertical-align: middle;
}
.footer-bottom-feedback {
  margin-top: 8px;
}
.footer-bottom-feedback a {
  color: #ff9900;
  text-decoration: underline;
}

/* === Адаптивность === */
@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    gap: 24px;
  }
  .footer-col {
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .footer-columns {
    display: none;
  }
  .footer-subscribe {
    display: none;
  }
  .footer {
    padding: 12px 0 0 0;
    font-size: 13px;
  }
  .footer-top {
    padding: 0 4px;
    gap: 10px;
  }
  .footer-columns {
    gap: 8px;
  }
  .footer-title {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .footer-list li {
    margin-bottom: 3px;
  }
  .footer-subscribe {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px 0 0 0;
  }
  .footer-subscribe-form {
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }
  .footer-subscribe-form input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    font-size: 13px;
    padding: 7px 10px;
  }
  .footer-subscribe-form button {
    width: 100%;
    font-size: 13px;
    padding: 7px 0;
  }
  .footer-social {
    margin: 12px 0 0 0;
    gap: 10px;
  }
  .footer-apps {
    margin: 10px 0 0 0;
    gap: 6px;
  }
  .footer-app-link img {
    height: 32px;
  }
  .footer-bottom {
    padding: 8px 0 4px 0;
    font-size: 12px;
  }
  .footer-bottom-links {
    margin-bottom: 4px;
  }
  .footer-bottom-copy {
    margin-bottom: 4px;
  }
  .footer-bottom-payments {
    margin-bottom: 4px;
  }
  .footer-bottom-feedback {
    margin-top: 4px;
  }
} 

.page-footer, .page-footer__inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
} 