/* Bridelux – Online zkouška tlačítko na detailu produktu */
#bl-online-try-btn.bl-online-try-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.1;
  max-width: 100%;
  background: #111;
  color: #fff;
  border: 1px solid #111;

  /* Hover/active animace + plynulost */
  transition: opacity .15s ease, transform .2s ease;
  transform-origin: center;
  will-change: transform;

  /* Nonstop "dýchání" – jemné zvětšení a zmenšení */
  animation: blCtaBreathe 2.6s ease-in-out infinite;
}

/* Nonstop zvětšování/zmenšování (není lineární) */
@keyframes blCtaBreathe{
  0%   { transform: scale(1); }
  50%  { transform: scale(1.025); } /* o ďibec víc než předtím */
  100% { transform: scale(1); }
}

/* Hover: vypneme breathe, aby se to netlouklo, a dáme klasický lift */
#bl-online-try-btn.bl-online-try-btn:hover{
  animation: none;
  opacity: .92;
  transform: translateY(-1px);
}

/* Active */
#bl-online-try-btn.bl-online-try-btn:active{
  transform: translateY(0);
}

/* Mobil */
@media (max-width: 480px){
  #bl-online-try-btn.bl-online-try-btn{
    width: 100%;
    text-align: center;
  }
}

/* Respektování uživatelů s vypnutými animacemi */
@media (prefers-reduced-motion: reduce){
  #bl-online-try-btn.bl-online-try-btn{
    animation: none !important;
    transition: none !important;
  }
}
