.store-shell-offset {
  height: 112px;
}

.nav-cart-btn {
  position: relative;
}

.nav-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 18px rgba(147, 51, 234, 0.35);
}

.store-footer-shell {
  margin-top: 72px;
}

.store-footer-shell .footer-nr {
  margin-top: 0;
}

.topbar-cupom {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background:
    linear-gradient(180deg, rgba(16, 10, 27, 0.94), rgba(8, 5, 14, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 12px 30px rgba(0,0,0,0.18);
}

.topbar-cupom-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.12), transparent 22%),
    radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.1), transparent 24%);
  opacity: 0.95;
}

.topbar-cupom-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 54px;
  min-width: max-content;
  padding: 0 24px;
  white-space: nowrap;
  color: #f5f3ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: topbarCupomMove 28s linear infinite;
}

.topbar-cupom-track strong {
  color: #d8b4fe;
}

@keyframes topbarCupomMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

@media (max-width: 980px) {
  .store-shell-offset {
    height: 90px;
  }

  .topbar-cupom {
    min-height: 42px;
    margin-bottom: 20px;
  }

  .topbar-cupom-track {
    gap: 34px;
    font-size: 10px;
    padding: 0 16px;
  }
}