/* DUFTBUDDY V2.6.0 - Promo Floating Button */
.duftbuddy-promo-float {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%) translateY(18px);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(92vw, 520px);
  min-height: 58px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  color: #1a1200;
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: .01em;
  text-align: center;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.95), rgba(255,255,255,0) 22%),
    linear-gradient(135deg, #fff2a8 0%, #f7ce45 22%, #d6a51c 44%, #fff0a2 62%, #c78e08 100%);
  box-shadow:
    0 18px 42px rgba(0,0,0,.28),
    0 0 30px rgba(247,206,69,.55),
    inset 0 1px 0 rgba(255,255,255,.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
  overflow: hidden;
}

.duftbuddy-promo-float::before {
  content: "";
  position: absolute;
  inset: -80% -30%;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.8) 48%, transparent 62%);
  transform: translateX(-55%) rotate(8deg);
  animation: duftbuddyPromoShine 3.1s ease-in-out infinite;
}

.duftbuddy-promo-float::after {
  content: "✨";
  position: relative;
  font-size: 18px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.85));
}

.duftbuddy-promo-float span {
  position: relative;
  z-index: 1;
}

.duftbuddy-promo-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.duftbuddy-promo-float.is-hidden-at-products {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px);
}

@keyframes duftbuddyPromoShine {
  0%, 40% { transform: translateX(-70%) rotate(8deg); }
  70%, 100% { transform: translateX(70%) rotate(8deg); }
}

@media (max-width: 760px) {
  .duftbuddy-promo-float {
    bottom: 112px;
    min-height: 54px;
    padding: 13px 18px;
    font-size: 15px;
    width: min(88vw, 420px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .duftbuddy-promo-float::before {
    animation: none;
  }
}

/* V2.7.4 - Promo Button hoeher und auffaelliger */
.duftbuddy-promo-float {
  bottom: 96px;
}
@media (max-width: 760px) {
  .duftbuddy-promo-float {
    bottom: 112px;
  }
}
