/* ==================================================
   PROMO BANNER – Sitewide Ankündigung
================================================== */

.promo-banner{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 10px 44px 10px 16px;

  background: linear-gradient(135deg, #ff3b30, #ffb000);
  color: #fff;

  text-align: center;
  box-shadow: 0 2px 10px rgba(11,16,32,.18);
}

.promo-banner p{
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.promo-banner a{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.promo-banner a:hover{
  text-decoration-thickness: 2px;
}

.promo-banner__close{
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);

  width: 28px;
  height: 28px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,.18);
  color: #fff;

  font-size: 16px;
  line-height: 1;
  cursor: pointer;

  transition: background .15s ease;
}

.promo-banner__close:hover{
  background: rgba(255,255,255,.32);
}

@media (max-width: 600px){
  .promo-banner{
    padding: 8px 40px 8px 12px;
  }

  .promo-banner p{
    font-size: 12.5px;
  }
}

@media (prefers-reduced-motion: reduce){
  .promo-banner__close{
    transition: none;
  }
}
