/* Pet Shop Footer Variant */

.pet-footer {
  background: #1a2a1a;
  color: rgba(255,255,255,.75);
}

.pet-footer-main { padding: 56px 0 32px; }

.pet-footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.pet-footer-logo {
  display: inline-block; margin-bottom: 14px;
  font-size: 1.4rem; font-weight: 800; color: #fff; text-decoration: none;
}
.pet-footer-about {
  font-size: 13.5px; line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}

/* Social */
.pet-footer .molla-footer-social { display: flex; gap: 10px; }
.pet-footer .molla-footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75); font-size: 16px; text-decoration: none;
  transition: background .2s, color .2s;
}
.pet-footer .molla-footer-social a:hover {
  background: var(--molla-accent); color: #fff;
}

/* Col titles */
.pet-footer .molla-footer-col-title {
  font-size: 14px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* Links */
.pet-footer .molla-footer-links {
  list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px;
}
.pet-footer .molla-footer-links a {
  color: rgba(255,255,255,.65); text-decoration: none; font-size: 13.5px;
  transition: color .15s;
}
.pet-footer .molla-footer-links a:hover { color: var(--molla-accent); }

/* Bottom */
.pet-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
}
.pet-footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.pet-footer .molla-footer-copy { font-size: 12.5px; color: rgba(255,255,255,.5); }
.pet-footer .molla-footer-payment { display: flex; gap: 12px; font-size: 20px; color: rgba(255,255,255,.5); }

/* Responsive */
@media (max-width: 991px) {
  .pet-footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 576px) {
  .pet-footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pet-footer-main { padding: 36px 0 24px; }
}
