/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(33, 37, 41, 0.95);
  padding: 1rem;
  z-index: 1000;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

/* Company Info */
.footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

.company-info {
  font-size: 0.9rem;
}

.company-name {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Legal Links */
.legal-links {
  font-size: 0.85rem;
}

.legal-links a {
  color: inherit;
  text-decoration: none;
}

.legal-links a:hover {
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.payment-methods img {
  height: 24px;
  margin-left: 0.5rem;
}

/* Footer Copyright Section */
.footer-copyright {
  padding: 20px 0;
  background-color: #1c1c1c;
  color: #fff;
}

.copyright-text {
  font-size: 14px;
  color: #9b9b9b;
}

.footer-links {
  text-align: right;
}

.footer-links a {
  color: #9b9b9b;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links .separator {
  color: #9b9b9b;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .payment-methods {
    text-align: center;
    margin-top: 1rem;
  }

  .footer-copyright .row>div {
    text-align: center !important;
  }

  .footer-links {
    margin-top: 15px;
    text-align: center;
  }

  .copyright-text {
    display: block;
    margin-bottom: 15px;
  }
}