.pc-footer {
  background: var(--navy); color: #ccc;
  padding: 40px var(--px) 20px;
}
.pc-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 32px;
}
.pc-footer__brand p { font-size: 12px; line-height: 1.7; color: #aaa; margin: 10px 0 14px; }
.pc-footer__social   { display: flex; gap: 8px; }
.pc-social-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none;
  transition: background 0.2s;
}
.pc-social-icon:hover { background: var(--coral); }
.pc-footer h4 { font-size: 13px; font-weight: var(--fw-bold); color: #fff; margin-bottom: 12px; }
.pc-footer__list { list-style: none; margin: 0; padding: 0; }
.pc-footer__list li { margin-bottom: 8px; }
.pc-footer__list li a { font-size: 12px; color: #aaa; text-decoration: none; transition: color 0.2s; }
.pc-footer__list li a:hover { color: var(--coral); }
.pc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.pc-footer__bottom p { font-size: 11px; color: #666; }
.pc-footer__payments { display: flex; gap: 6px; align-items: center; }
.pc-pay-badge {
  background: rgba(255,255,255,0.08);
  border-radius: 4px; padding: 3px 8px;
  font-size: 10px; color: #aaa; font-weight: var(--fw-semi);
}

/* WHATSAPP FAB */
.pc-whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  background: #25d366; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  text-decoration: none; z-index: var(--z-fab);
  transition: transform 0.2s;
}
.pc-whatsapp-fab:hover { transform: scale(1.1); }
