/* Ragadós Kapcsolat Gombok */
.sticky-action-container {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 9999;
}

.sticky-btn {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    color: #fff !important;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.btn-call { 
    background-color: #dc3545; 
    border: 2px solid #fff; 
} 

.btn-messenger { 
    background-color: #0084ff; 
    border: 2px solid #fff; 
} 

@media (max-width: 768px) {
    .sticky-btn span { 
        display: none; 
    }
    .sticky-btn { 
        padding: 15px; 
        border-radius: 50%; 
        width: 55px; 
        height: 55px; 
        justify-content: center; 
        font-size: 22px; 
    }
    .sticky-action-container { 
        padding: 0 15px; 
        bottom: 15px; 
    }
}
