.theme-footer {
  background-color:#010101;
  color: #fff;
  padding: 80px 0 40px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.6;
}

.footer-links a:hover {
  color: #fff;
}

.new-badge {
  background-color: #00b090;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  text-transform: uppercase;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 15px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-section {
  margin-bottom: 30px;
}

.footer-logo img {
  height: 35px;
  filter: brightness(1.1);
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.payment-icon {
  height: 20px;
}

.and-more {
  color: #b4b4c7;
  font-size: 14px;
}

.social-media {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  justify-content: center;
}

.social-icon {
  color: #fff;
  font-size: 20px;
  transition: opacity 0.3s;
}

.social-icon:hover {
  opacity: 0.8;
}

.policy-links {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.policy-links a {
  color: #b4b4c7;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.policy-links a:hover {
  color: #fff;
}

.copyright-text {
  color: #b4b4c7;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1200px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .theme-footer {
    padding: 60px 0 30px;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-column h4 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .policy-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
  
  .payment-methods {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .social-media {
    justify-content: center;
  }
}