/* Getir Floating Logo Button Styles */

.getir-floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5d3ebc;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.getir-floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.getir-floating-button:active {
    transform: scale(0.95);
}

.getir-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 8px;
    box-sizing: border-box;
}

/* Masaüstü ekranlar için ayarlama */
@media screen and (min-width: 768px) {
    .getir-floating-button {
        display: flex;
        bottom: 150px;
        right: 30px;
        width: 50px;
        height: 50px;
    }
}

/* Çok küçük ekranlar için ayarlama */
@media screen and (max-width: 480px) {
    .getir-floating-button {
        bottom: 155px;
        right: 30px;
        width: 53px;
        height: 53px;
    }
    
    .getir-logo-img {
        padding: 6px;
    }
}

