.footer-root {
  background: #053321;
  color: #ffffff;
  padding: 40px 20px 15px 20px;
  font-family: 'Inter', sans-serif;
  border-top: 3px solid #25D366;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header Alignment */
.section-title {
  font-size: 16px;
  font-weight: 700;
  color: #25D366;
  margin-bottom: 15px;
  text-align: left; /* Strict Left Alignment */
}

.footer-links, .contact-list {
  list-style: none !important;
 padding-left: 0 !important;
  margin: 0;
  text-align: left; /* Bullet/Text adjustment */
}

.footer-links li, .contact-list li {
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
}

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

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 12px;
}

#footer-powered-store { color: #25D366; font-weight: 600; }

/* Mobile View Fix */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr 1fr; /* Two columns side by side */
    gap: 20px;
  }
  .brand-info {
    grid-column: span 2;
    text-align: center;
    margin-bottom: 10px;
  }
  .brand-info .section-title, .brand-info .footer-desc {
    text-align: center;
  }
  .social-icons { justify-content: center; }
  
  /* Links Alignment in Mobile Grid */
  .footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Headers and links align to left of their grid cell */
  }
}
