.footer {
  background-color: white;
  border-top: 1px solid var(--border-color);
  padding-top: 0;
}

.footer-newsletter {
  background-color: var(--primary-light);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.footer-newsletter-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-newsletter-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1F2937;
}

.footer-newsletter-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  font-size: 1rem;
}

.footer-newsletter-form {
  display: flex;
  width: 100%;
  max-width: 600px;
  position: relative;
}

.footer-newsletter-input {
  width: 100%;
  padding: 1.25rem 2rem;
  border-radius: var(--radius-full);
  border: 1px solid #E5E7EB;
  outline: none;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.footer-newsletter-btn {
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 8px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  padding: 0 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.footer-main {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand-icon {
  background: var(--primary);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.footer-brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.footer-brand-dot {
  color: var(--primary);
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: #FFA642;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1F2937;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #FFA642;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-payments {
  display: flex;
  gap: 1rem;
}

.footer-payment-icon {
  width: 40px;
  height: 25px;
  background-color: var(--bg-color);
  border-radius: 4px;
}

/* Responsive Footer Styles */
@media (max-width: 1024px) {
  .footer-grid {
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .footer-newsletter {
    padding: 3rem 0;
  }
  .footer-newsletter-title {
    font-size: 1.5rem;
  }
  .footer-main {
    padding-top: 3rem;
  }
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-newsletter {
    padding: 2rem 0;
  }
  .footer-newsletter-form {
    flex-direction: column;
    gap: 1rem;
    background: transparent;
  }
  .footer-newsletter-input {
    border-radius: var(--radius-md);
  }
  .footer-newsletter-btn {
    position: relative;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: var(--radius-md);
    padding: 1rem 2rem;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
