
.site-footer {
  position: relative;
  background: #f8fafc;
  color: #475569;
  margin-top: 4rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer-wave {
  display: none;
}

.footer-content {
  padding: 3rem 0 2rem;
  position: relative;
}

.footer-content::before {
  display: none;
}

.footer-section {
  height: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #172033;
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: 0;
}

.footer-logo i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eef1ff;
  color: #5b4ad8;
  font-size: 1.35rem;
}

.footer-description {
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.footer-store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-store-links a {
  min-height: 40px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(99, 102, 241, 0.16);
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.88rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.footer-store-links a:hover {
  background: #f1f3ff;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: #172033;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  display: none;
}

.footer-heading i {
  color: #8b5cf6;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
  font-size: 0.95rem;
  position: relative;
  padding-left: 0;
}

.footer-links a i {
  font-size: 0.75rem;
  color: #a78bfa;
  transition: all 0.3s ease;
}

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

.footer-links a:hover i {
  color: #6366f1;
}

.footer-social {
  display: none;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 2px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  border-color: transparent;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover i {
  color: white;
  transform: scale(1.1);
}

.footer-newsletter-text {
  display: none;
}

.newsletter-form {
  display: none;
}

.newsletter-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid rgba(99, 102, 241, 0.15);
  border-radius: 14px;
  padding: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
}

.newsletter-input-wrapper:focus-within {
  border-color: #6366f1;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.newsletter-input-wrapper > i {
  position: absolute;
  left: 1rem;
  color: #a78bfa;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  z-index: 1;
}

.newsletter-input-wrapper:focus-within > i {
  color: #6366f1;
  transform: scale(1.1);
}

.newsletter-input-wrapper .form-control {
  border: none;
  background: transparent;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  color: #334155;
  font-size: 0.95rem;
}

.newsletter-input-wrapper .form-control:focus {
  box-shadow: none;
  outline: none;
}

.newsletter-input-wrapper .form-control::placeholder {
  color: #94a3b8;
}

.newsletter-input-wrapper .btn {
  border-radius: 10px;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.newsletter-input-wrapper .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.newsletter-input-wrapper .btn i {
  font-size: 1rem;
}

.footer-badges {
  display: none;
}

.footer-note {
  margin: 0.8rem 0 0;
  color: #7b8497;
  font-size: 0.84rem;
  line-height: 1.55;
}

.footer-badges .badge {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-bottom {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1.2rem 0;
}

.footer-copyright {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-copyright i {
  color: #a78bfa;
}

.footer-copyright strong {
  color: #4f46e5;
  font-weight: 800;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transition: width 0.3s ease;
}

.footer-legal a:hover {
  color: #6366f1;
}

.footer-legal a:hover::after {
  width: 100%;
}

/* Responsywność */
@media (max-width: 768px) {
  .site-footer {
    margin-top: 3rem;
  }
  
  .footer-content {
    padding: 2.4rem 0 1rem;
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-store-links {
    justify-content: center;
  }
  
  .footer-heading {
    justify-content: center;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .footer-note {
    text-align: center;
  }
  
  .footer-bottom {
    padding: 1.25rem 0;
  }
  
  .footer-copyright {
    margin-bottom: 1rem;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }
}
