.progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 80px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(95, 58, 252, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;    
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .progress-wrap {
      right: 20px;
      bottom: 80px;
    }
  }
  @media (max-width: 767px) {
    .progress-wrap {
        right: 20px;
        bottom: 50px;
    }
  }

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: "\f176";
    font-family: "Font Awesome 5 Pro";
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: #DAC461;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #DAC461;
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.whatsapp-floating {
    position: fixed;
    right: 50px; /* progress-wrap ile aynı hizadan başladı */
    bottom: 150px; /* progress-wrap'in ÜSTÜNDE duruyor */
    width: 46px;
    height: 46px;
    background: #25D366; /* WhatsApp yeşili */
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    transition: .25s ease;
}

/* Hover */
.whatsapp-floating:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}



/* Mobil hizalama */
@media (max-width: 767px) {
    .whatsapp-floating {
        right: 20px;
        bottom: 110px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}