.company-logo {
  display: none;
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.company-logo--menu {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
  border-radius: 14px;
  padding: 6px;
}

.qr-xploro-footer {
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(148, 107, 75, 0.18);
  color: #64748b;
  flex: 0 0 auto;
  padding: 10px 16px;
  width: 100%;
}

.qr-xploro-footer__inner {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1100px;
}

.qr-xploro-footer p {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.qr-xploro-footer a {
  color: inherit;
  text-decoration: none;
}

.qr-xploro-footer a:hover {
  color: #946b4b;
}

.qr-xploro-footer .brand-link {
  color: #946b4b !important;
  text-decoration: underline !important;
}

.qr-xploro-footer .heart-icon {
  color: #ef4444;
  padding: 0 4px;
}

.qr-xploro-footer__links {
  align-items: center;
  display: flex;
  gap: 14px;
  white-space: nowrap;
}

.qr-xploro-footer__links a {
  font-size: 11px;
  font-weight: 700;
}

.qr-xploro-footer--dark {
  background: rgba(74, 55, 40, 0.88);
  border-top-color: rgba(255, 255, 255, 0.12);
  color: #d9ccbe;
}

.qr-xploro-footer--dark .brand-link {
  color: #f5d0b5 !important;
}

.qr-xploro-footer--dark a:hover {
  color: #ffffff;
}

.qr-xploro-footer--menu {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.96) 100%
  );
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(148, 107, 75, 0.24);
  box-shadow: 0 -10px 28px rgba(74, 55, 40, 0.08);
  border-radius: 20px 20px 0 0;
  padding: 14px 20px 16px;
}

.qr-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.qr-page__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 12px;
}

.qr-page__footer {
  width: 100%;
  margin-top: auto;
}

.loader-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 360px;
}

.loader-brand {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-company-logo {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  padding: 10px;
  box-shadow: 0 12px 28px rgba(74, 55, 40, 0.16);
  z-index: 2;
}

.loader-stack.has-company-logo .loader-company-logo {
  display: block;
  animation: logoReveal 0.55s ease forwards;
}

.loader-venta-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(74, 55, 40, 0.22))
    brightness(0) saturate(100%) invert(38%) sepia(18%) saturate(900%)
    hue-rotate(346deg) brightness(94%) contrast(92%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.loader-stack.loading .loader-venta-logo {
  animation: ventaPulse 1.25s ease-in-out infinite;
}

.loader-stack.has-company-logo .loader-venta-logo {
  width: 42px;
  height: 42px;
  margin-top: 72px;
  opacity: 0.95;
}

.loader-status {
  margin-top: 20px;
  color: #4a3728;
  font-size: 14px;
  letter-spacing: 0.6px;
  font-weight: 600;
}

@keyframes ventaPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@media (max-width: 600px) {
  .loader-brand {
    width: 108px;
    height: 108px;
  }

  .loader-company-logo {
    width: 84px;
    height: 84px;
  }

  .loader-stack.has-company-logo .loader-venta-logo {
    margin-top: 64px;
  }
}

@media (max-width: 700px) {
  .qr-xploro-footer {
    padding: 10px 12px;
  }

  .qr-xploro-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
