/* Footer Styles - Modern Futuristic Theme */

.footer {
  background: var(--bg-secondary);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-primary);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer p {
  color: var(--text-secondary);
}

.footer .text-muted {
  color: var(--text-muted) !important;
}

.footer .text-primary {
  color: var(--primary-color) !important;
}

.footer .text-secondary {
  color: var(--text-secondary) !important;
}

.social-links a {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-secondary);
  text-align: center;
  line-height: 32px;
  transition: var(--transition-fast);
  color: var(--text-secondary);
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
  border-color: var(--primary-color);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.policy-links a {
  text-decoration: none;
  transition: var(--transition-fast);
  color: var(--text-muted);
}

.policy-links a:hover {
  color: var(--primary-color) !important;
  text-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.footer hr {
  border-color: var(--border-secondary);
  opacity: 0.5;
}

/* Fixed footer for order history */
.footer.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-secondary);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-primary);
}

/* Responsive */
@media (max-width: 767.98px) {
  .footer .text-md-end {
    text-align: center !important;
    margin-top: 1rem;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer .policy-links {
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer .col-md-4.text-md-end {
    text-align: center !important;
  }
}

/* Force remove any white backgrounds */
.footer,
.footer * {
  background-color: transparent !important;
}

.footer {
  background: var(--bg-secondary) !important;
  backdrop-filter: blur(12px) !important;
}