/*===================================== 
YOU CAN WRIGHT CUSTOME CSS 
======================================*/
.btn-whatsapp {
    position: fixed;
    bottom: 50px;
    right: 50px;
    background-color: #25D366;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.3s ease;
}
.btn-whatsapp i {
    font-size: 22px;
    margin-right: 10px;
}
.btn-whatsapp:hover {
    background-color: #1ebe5a;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    transform: translateY(-4px);
}
@media (max-width: 768px) {
    .btn-whatsapp {
        bottom: 30px;
        right: 30px;
        padding: 10px 14px;
        font-size: 14px;
    }
    .btn-whatsapp i {
        font-size: 20px;
        margin-right: 6px;
    }

.mobilehide{
       display:none !important;
    }

.mobileshow{
       display:block !important;
    }

}

.btn-instagram-mobile {
    display: none; /* default: gizli */
}

/* yalnızca mobilde göster */
@media (max-width: 768px) {
    .btn-instagram-mobile {
        display: flex;
        position: fixed;
        bottom: 30px;
        left: 20px;
        background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        color: #fff;
        font-size: 22px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        z-index: 9999;
        transition: all 0.3s ease;
    }
    .btn-instagram-mobile:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    }
}