
/* V21.5 Floating Marka Rehberi Butonu */
.k2-brand-float{
  position:fixed;
  right:22px;
  bottom:112px;
  width:82px;
  height:82px;
  z-index:999;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:50%;
  isolation:isolate;
  filter:drop-shadow(0 20px 35px rgba(0,0,0,.34));
}

.k2-brand-float::before{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:50%;
  background:conic-gradient(from 0deg,#4aa3ff,#64ef9f,#ffffff,#4aa3ff);
  animation:k2BrandSpin 4.8s linear infinite;
  z-index:-2;
}

.k2-brand-float::after{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:50%;
  background:linear-gradient(145deg,#10263c,#061622);
  border:1px solid rgba(255,255,255,.22);
  z-index:-1;
}

.k2-brand-float-inner{
  width:66px;
  height:66px;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  background:radial-gradient(circle at 35% 25%,rgba(255,255,255,.20),rgba(255,255,255,.04));
  color:#fff;
  font-weight:950;
  letter-spacing:.02em;
  text-align:center;
  line-height:1;
  transform:translateZ(0);
  transition:transform .25s ease;
}

.k2-brand-float:hover .k2-brand-float-inner{
  transform:scale(1.06) rotate(-3deg);
}

.k2-brand-float-icon{
  font-size:24px;
  line-height:1;
}

.k2-brand-float-text{
  font-size:10px;
  text-transform:uppercase;
  color:#dff4ff;
}

.k2-brand-float-badge{
  position:absolute;
  top:-4px;
  right:-4px;
  min-width:24px;
  height:24px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#64ef9f;
  color:#061622;
  font-size:11px;
  font-weight:950;
  border:2px solid #061622;
}

@keyframes k2BrandSpin{
  to{transform:rotate(360deg)}
}

/* Ana sayfada biraz daha görünür */
body.k2-home .k2-brand-float{
  bottom:118px;
}

/* Mobilde sağ dikey butonlarla çakışmaması için sol alta alınır */
@media(max-width:768px){
  .k2-brand-float{
    left:16px;
    right:auto;
    bottom:88px;
    width:70px;
    height:70px;
  }
  .k2-brand-float-inner{
    width:56px;
    height:56px;
  }
  .k2-brand-float-icon{
    font-size:20px;
  }
  .k2-brand-float-text{
    font-size:9px;
  }
  .k2-brand-float-badge{
    min-width:21px;
    height:21px;
    font-size:10px;
  }
}

/* Çok küçük ekranlarda daha kompakt */
@media(max-width:380px){
  .k2-brand-float{
    width:64px;
    height:64px;
    bottom:82px;
    left:12px;
  }
  .k2-brand-float-inner{
    width:50px;
    height:50px;
  }
}
