/* ============================================
   FOOTER - AbiYarn
   ============================================ */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  height: 56px;
  width: 56px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-col p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-col a {
  display: block;
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fb7185; }

.footer-location {
  margin-top: 0.75rem;
  font-size: 0.875rem !important;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  text-align: center;
  color: var(--gray-light);
  font-size: 0.875rem;
}

/* ── Social Icons ──────────────────────────── */
.footer-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

/* Override .footer-col a with matching specificity */
.footer-col a.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-col a.social-icon:hover {
  color: #fff;
  transform: translateY(-3px);
  opacity: 0.88;
}

.social-facebook  { background: #1877f2; }
.social-tiktok    { background: #010101; }
.social-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }



/* Social label text */
.social-label {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-left: 0.4rem;
  transition: color 0.2s;
}

.footer-col a.social-icon:hover .social-label {
  color: #fff;
}