/* barra compacta, SEM quebrar linha */
.offer-inline {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #2563eb 0%, #22c55e 100%);
  color: #fff;
  border-radius: 12px;
  padding: 6px 8px;
  white-space: nowrap; /* <- chave p/ não quebrar */
  flex-wrap: nowrap; /* <- impede wrap */
  max-width: 100%;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}
.offer-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
}
.offer-text .price {
  font-size: 0.95rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}
.offer-text .dot {
  opacity: 0.8;
}
.offer-cta {
  flex: 0 0 auto;
  background: #fff;
  color: #0b5ed7;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 4px 10px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(11, 94, 215, 0.22);
}

/* tira o sublinhado do link inteiro */
.offer-inline {
  text-decoration: none !important;
}

/* também tira de spans internos */
.offer-inline .price,
.offer-inline .count {
  text-decoration: none !important;
}

.offer-inline {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 10px;
  margin-top: 8px;
  background: linear-gradient(90deg, #2563eb 0%, #22c55e 100%);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  flex-wrap: nowrap;
  max-width: 100%;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

/* reflexo sempre ativo */
.offer-inline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 2.5s ease-in-out infinite;
}

@keyframes shine {
  from {
    left: -75%;
  }
  to {
    left: 125%;
  }
}
