/* =============================================
   SCARCITY BAR + FOOTER
   ============================================= */

/* ——— Scarcity Bar ——— */
#scarcity {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  height: 60px;
  background: #090300;
  border-top: 1.5px solid rgba(255,85,0,0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 clamp(16px, 5vw, 64px);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
}
#scarcity.in { transform: translateY(0); }

.sc-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.sc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--o);
  flex-shrink: 0;
  position: relative;
}
.sc-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255,85,0,0.25);
  animation: ring 2.4s ease infinite;
}
@keyframes ring { 0%{transform:scale(.7);opacity:1} 100%{transform:scale(2.2);opacity:0} }

.sc-text {
  font-family: var(--fh);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(237,237,237,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc-text strong { color: var(--t); }
.sc-text .ot { color: var(--o); font-weight: 700; }

.sc-center {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sc-p-old {
  font-family: var(--fh);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: line-through;
  opacity: 0.75;
}
.sc-p-new {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.03em;
}
.sc-right { flex-shrink: 0; }

@media (max-width: 680px) { .sc-center { display: none; } }
@media (max-width: 440px) {
  .sc-text { font-size: 0.73rem; }
  #scarcity { gap: 8px; }
}
@media (max-width: 480px) {
  .sc-left {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
  }
  .sc-left::-webkit-scrollbar { display: none; }
  .sc-text {
    overflow: visible;
    text-overflow: unset;
    padding-right: 12px;
  }
}

/* ——— Footer — slim, same dark as CTA ——— */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0 88px; /* 88px bottom clears scarcity bar */
}

.footer-slim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand-slim {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.footer-brand-slim .logo-text {
  font-family: var(--fh);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(237,237,237,0.5);
}

.footer-links-slim {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links-slim a {
  font-family: var(--fh);
  font-size: 0.78rem;
  color: rgba(237,237,237,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-slim a:hover { color: rgba(237,237,237,0.7); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(237,237,237,0.2);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .footer-slim { flex-direction: column; align-items: flex-start; gap: 16px; }
}
