/* ════════════════════════════════════════════════════════
   PetCare — Footer
   ════════════════════════════════════════════════════════ */

footer {
  padding: 52px 6% 32px;
  background: var(--footer-bg);
  transition: background .35s;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-row svg { width: 28px; height: 28px; }
.footer-logo-row span {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; font-weight: 400;
  color: #fff;
}
.footer-brand p {
  max-width: 210px;
  font-size: .84rem; line-height: 1.7;
  color: var(--footer-text);
}

.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.soc-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--footer-text);
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.soc-icon:hover { background: var(--orange); border-color: transparent; color: #fff; }
.soc-icon svg { width: 16px; height: 16px; }

.footer-col h4 {
  margin-bottom: 16px;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--footer-h);
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; list-style: none; }
.footer-col ul a {
  font-size: .86rem;
  color: var(--footer-text);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--orange-l); }

.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  padding-top: 24px;
}
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.22); text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
