
.ogulcan-float-buttons{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.ogulcan-btn{
  background:#ff5a00;
  color:#fff;
  padding:14px 18px;
  border-radius:30px;
  font-weight:800;
  font-size:15px;
  text-decoration:none;
  box-shadow:0 0 18px rgba(255,90,0,.45);
  transition:.25s ease;
  display:flex;
  align-items:center;
  gap:8px;
}
.ogulcan-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 28px rgba(255,90,0,.7);
}
.ogulcan-btn.whatsapp{
  background:#1ebe5d;
  box-shadow:0 0 18px rgba(30,190,93,.45);
}
@media(max-width:600px){
  .ogulcan-btn{
    font-size:14px;
    padding:12px 16px;
  }
}
