/* === LOGO (header + footer) === */
:root {
  --pps-logo-header: url("logo-head.png");
  --pps-logo-footer: url("logo-foot.png"); /* <- сложи друг файл за футъра */
}

/* Header: заменя иконката с твоето лого */
nav .cursor-pointer > .bg-primary.p-2.rounded-lg{
  background-color: transparent !important;
  padding: 0 !important;
  width: 120px;
  height: 70px;
  background-image: var(--pps-logo-header);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
nav .cursor-pointer > .bg-primary.p-2.rounded-lg svg{
  display: none !important;
}

/* Footer: заменя иконката с твоето лого */
footer .cursor-pointer .bg-blue-600.p-2.rounded-lg{
  background-color: transparent !important;
  padding: 0 !important;
  width: 120px;
  height: 70px;
  background-image: var(--pps-logo-footer);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
footer .cursor-pointer .bg-blue-600.p-2.rounded-lg svg{
  display: none !important;
}

